Skip to content

Releases: react-bootstrap/react-bootstrap

v2.0.0-alpha.2

17 May 05:42
Compare
Choose a tag to compare
v2.0.0-alpha.2 Pre-release
Pre-release

2.0.0-alpha.2 (2021-05-17)

Bug Fixes

Features

BREAKING CHANGES

  • removes alignRight and menuAlign props in favor of align

v1.6.0

11 May 00:15
Compare
Choose a tag to compare

1.6.0 (2021-05-11)

Bug Fixes

  • Popover: fix arrow alignment when running Popper >= 2.84 (#5774) (da85f30)
  • types: fix types for event key (700e944)

Features

v2.0.0-alpha.1

13 Apr 05:38
Compare
Choose a tag to compare
v2.0.0-alpha.1 Pre-release
Pre-release

2.0.0-alpha.1 (2021-04-13)

Bug Fixes

  • Nav: add .card-header-* only if nested in card header (#5720) (793e857)
  • types: fix types for event key (#5727) (6260997)

Features

v2.0.0-alpha.0

13 Mar 07:01
Compare
Choose a tag to compare
v2.0.0-alpha.0 Pre-release
Pre-release

2.0.0-alpha.0 (2021-03-13)

Bug Fixes

Features

v1.5.2

11 Mar 18:36
Compare
Choose a tag to compare

1.5.2 (2021-03-11)

Bug Fixes

v1.5.0

16 Feb 20:38
Compare
Choose a tag to compare

1.5.0 (2021-02-16)

Bug Fixes

  • Carousel: Fix ref type (#5613) (4e28124)
  • fix TS error with transition types (#5610) (bb84d81)
  • Navbar: remove invalid sticky bottom reference (#5656) (53ce159)
  • Prevent transitionend events from cutting off animations (#5649) (459b4e3)
  • Overlay: show tooltips for func overlay without transition (#5631) (278eff7)

Features

v1.4.3

07 Jan 23:59
Compare
Choose a tag to compare

Fixes build issues with 1.4.1

v1.4.1

07 Jan 21:42
Compare
Choose a tag to compare

1.4.1 (2021-01-07)

Bug Fixes

  • Carousel: fix pause not working properly with touch devices (#5435) (5a5d636)
  • fix types for DropdownButton and SplitButton (#5589) (df6024b)
  • Prevent focus on disabled nav items or list group items only (#5593) (198931d)
  • Alert: Properly spread props when transition={false} (#5545) (1352a87)
  • DropdownMenu: Fix base styles being overridden by popper styles (#5466) (aec9151)
  • Modal: Remove role="document" from ModalDialog (#5529) (af3453a)
  • types: inherit FormCheckTypes from React.InputHTMLAttributes (#5497) (4b257b6)
  • types: Set @types/react to >=16.9.35 (#5542) (d337c95)

v1.3.0

24 Aug 06:49
Compare
Choose a tag to compare
v1.3.0

v0.13.0

21 Nov 12:09
Compare
Choose a tag to compare

React 0.12 support! Thanks everyone.

Breaking changes

  • Requires React >= 0.12.0, massive thanks @trentgrover-wf, also @jquense
  • From React 0.12 it's no longer possible to access a component instance's key from within that component. Previously we were using the key prop as a unique identifier for child components. We have had to change this usage to a new prop, eventKey in: ListGroupItem, MenuItem, Nav, Navbar, NavItem, PageItem and Panel
  • NavBar: navOpen ==> navExpanded, thanks @alasdaircs

Features

  • Input: Added disabled prop, thanks @kroepke
  • Input: Removed border for type="file" thanks @trentgrover-wf
  • Input: Add buttonBefore and buttonAfter props, thanks @mattly
  • Modal: Can be put in a container, thanks @mtscout6 and @bobpace
  • Navbar: Added right prop to display child DropdownButtons correctly, thanks @rtsao

Fixes

  • CollapsableMixin: Fixed not removing event handlers correctly, thanks @justjake
  • FadeMixin: Fixed not fading in when element already had fade class, thanks @jquense