Releases: react-bootstrap/react-bootstrap
Releases · react-bootstrap/react-bootstrap
v1.4.3
v1.4.1
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
v0.13.0
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 thekey
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
andPanel
NavBar
:navOpen
==>navExpanded
, thanks @alasdaircs
Features
Input
: Addeddisabled
prop, thanks @kroepkeInput
: Removed border fortype="file"
thanks @trentgrover-wfInput
: AddbuttonBefore
andbuttonAfter
props, thanks @mattlyModal
: Can be put in a container, thanks @mtscout6 and @bobpaceNavbar
: Addedright
prop to display childDropdownButton
s correctly, thanks @rtsao
Fixes
v0.11.1
- Change internal module system from ES6 modules -> CJS and general code clean up thanks to @kellec #158
- Added
pullRight
prop toBadge
andNav
thanks to @KnisterPeter and @JamesTrigg #162 #148 OverlayMixin
container
prop change for better compatibility with React 0.11 thanks to @jsdf #161- Better propType checking #163 #167
- Fix for toggle button in collapsed
Navbar
thanks to @brainary #154
v0.11.0
- New
Input
component thanks to @liamcmitchell - Full IE8 support thanks to @stereosteve
- Renamed
Collapsable
component props to be more Bootstrap-y- isOpen -> expanded
- defaultIsOpen -> defaultExpanded
- isCollapsable -> collapsable
- New
Pager
andPageItem
components thanks to @brainary - Added
transferPropsTo
to many component internals to allow passing of props (such asclassName
andonClick
handlers) to internal DOM elements for increased flexibility, thanks to @time4tea, @scottwoodall, @jonasoberschweiber
In addition this version includes many bug fixes and small propType changes for added API flexibility, thanks to all contributors.