Releases: dbc-team/dash-bootstrap-components
Prerelease 1.0.0-rc1
This is the first release candidate of dash-bootstrap-components version 1.0.0. Please refer to the preview documentation and the migration guide for more information.
v1 of dash-bootstrap-components! This release contains loads of new features, but also breaking changes. Please read the changelog carefully for full details.
Added
- Seven new components! Accordion, Breadcrumb, FormFloating, ModalTitle, Offcanvas, Pagination, and Switch (PR 646) (PR 689)
- New CDN links for icons from Bootstrap Icons and Font Awesome (PR 661)
- CDN Links for four new Bootswatch themes:
QUARTZ,MORPH,VAPORandZEPHYR. - All components now accept
class_nameas an alternative toclassName. If both are specified thenclass_namewill take precedence.class_nameshould be preferred from now on. (PR 642)
Fixed
- The
loading_stateis no longer passed to underlying DOM nodes in any components (PR 666) Popoverdoesn't error ifis_opendefaults to true. (PR 646)- Fixed an issue with the cursor jumping to the end of an
Inputcomponent when typing. (PR 707)
Changed
- Components are all now built for Bootstrap 5. CDN links have all been updated. There are multiple breaking changes in the component props. Please see the migration-guide for full details on the changes (PR 646).
Prerelease 1.0.0-b3
This is the third beta of dash-bootstrap-components version 1.0.0. Please refer to the preview documentation and the migration guide for more information.
v1 of dash-bootstrap-components! This release contains loads of new features, but also breaking changes. Please read the changelog carefully for full details.
Added
- Six new components! Accordion, Breadcrumb, FormFloating, Offcanvas, Pagination, and Switch (PR 646) (PR 689)
- New CDN links for icons from Bootstrap Icons and Font Awesome (PR 661)
- CDN Links for four new Bootswatch themes:
QUARTZ,MORPH,VAPORandZEPHYR. - All components now accept
class_nameas an alternative toclassName. If both are specified thenclass_namewill take precedence.class_nameshould be preferred from now on. (PR 642)
Fixed
- The
loading_stateis no longer passed to underlying DOM nodes in any components (PR 666) Popoverdoesn't error ifis_opendefaults to true. (PR 646)- Fixed an issue with the cursor jumping to the end of an
Inputcomponent when typing. (PR 707)
Changed
- Components are all now built for Bootstrap 5. CDN links have all been updated. There are multiple breaking changes in the component props. Please see the migration-guide for full details on the changes (PR 646).
Release 0.13.1
Fixed
- Fix cursor jump issue in
Inputcomponent. (PR 712)
Prerelease 0.13.1-rc1
Fixed
- Fix cursor jump issue in
Inputcomponent. (PR 712)
Prerelease 1.0.0-b2
This is the second beta of dash-bootstrap-components version 1.0.0. Please refer to the preview documentation and the migration guide for more information.
v1 of dash-bootstrap-components! This release contains loads of new features, but also breaking changes. Please read the changelog carefully for full details.
Added
- Six new components! Accordion, Breadcrumb, FormFloating, Offcanvas, Pagination, and Switch (PR 646) (PR 689)
- New CDN links for icons from Bootstrap Icons and Font Awesome (PR 661)
- CDN Links for four new Bootswatch themes:
QUARTZ,MORPH,VAPORandZEPHYR. - All components now accept
class_nameas an alternative toclassName. If both are specified thenclass_namewill take precedence.class_nameshould be preferred from now on. (PR 642)
Fixed
- The
loading_stateis no longer passed to underlying DOM nodes in any components (PR 666) Popoverdoesn't error ifis_opendefaults to true. (PR 646)
Changed
- Components are all now built for Bootstrap 5. CDN links have all been updated. There are multiple breaking changes in the component props. Please see the migration-guide for full details on the changes (PR 646).
Release 0.13.0
Added
- Adds a new
Carouselcomponent to display images in an animated slideshow. Thanks @AnnMarieW for the contribution! (PR 587) - Exposes
titleprop onButtonandBadge(PR 617) - Added
links_leftprop toNavbarSimpleto allow links to be left-aligned (PR 618)
Fixed
- Fixed bug in
Spinnercomponent that meantspinner_styleprop was not correctly applied to the spinner. (PR 578)
Changed
- Updated behaviour of
Inputwithtype="number"to match behaviour in dash-core-components. If an invalid input is entered (i.e. one outside the range ofmin/maxor with an invalidstep) the component passes the valueNoneto callbacks for the first invalid input, then doesn't fire again until a valid input is entered. PR 626)
Prerelease 0.13.0-rc1
Added
- Adds a new
Carouselcomponent to display images in an animated slideshow. Thanks @AnnMarieW for the contribution! (PR 587) - Exposes
titleprop onButtonandBadge(PR 617) - Added
links_leftprop toNavbarSimpleto allow links to be left-aligned (PR 618)
Fixed
- Fixed bug in
Spinnercomponent that meantspinner_styleprop was not correctly applied to the spinner. (PR 578)
Changed
- Updated behaviour of
Inputwithtype="number"to match behaviour in dash-core-components. If an invalid input is entered (i.e. one outside the range ofmin/maxor with an invalidstep) the component passes the valueNoneto callbacks for the first invalid input, then doesn't fire again until a valid input is entered. PR 626)
Release 0.12.2
Fixed
- Fix issue with nested
Progressbars(PR 573)
Prerelease 0.12.2-rc1
Fixed
- Fix issue with nested
Progressbars(PR 573)
Release 0.12.1
Added
- Adds
requiredproperty toInputandSelect(PR 552) - Added
debounceandshow_initiallyprops toSpinner.debouncecan be used to add a time delay to prevent the spinner from dismissing immediately when its children have finished loading. This can help reduce flickering.show_initiallycan be used to ensure that the spinner is initially showing when the app starts up to prevent flickering when initial callbacks fire. (PR 561) - Added
nameandvalueprops toButton, can be used to send additional data with form submissions. (PR 565)
Fixed
- Fix
toggleproperty ofDropdownMenuItemwhich can be used to prevent the parentDropdownMenufrom dismissing when that item is clicked on (PR 554)