You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Split containers out into their own component with the addition of the $enable-container and $enable-container-responsive (replaces $enable-grid-responsive-containers).
Moved container related Sass into .\scss\component\container.scss
Use borrowed Sass functions for add(), subtract(), and divide() to remove some interpolation and fix support for Dart Sass. Added a CI test to check Dart Sass compatibility.
Separated the backdrop and scrollbar functionality from the Modal widget so that is can be re-used within other components.
Added 'contained modals', or modal and backdrop that are set inside of a container, rather than the entire body, as specified by the modal's new rootElement option.
New focuser utility that allows for two different focus handling methods.
'focus trap' - for items like modals where you want to keep focus contained within a dialog.
'focus flow' - what we traditionally used for tooltips and popovers placed within containers. Since the tip is placed out of document flow, we simulate it being inline for keyboard navigation, but the user can 'flow' out of the tip.
z-index values for tooltip, popover, modal-backdrop and modal elements were increased slightly to make space for the new Offcanvas components.
New Offcanvas widget! Similar to the side-aligned modals, there a few slight differences in
functionality, such as the responsive drawer capabilities when contained within a navbar.
New Placeholder component - another method to indicate loading state of content or page.
New utility classes for opacity, orientation, stacks, and sticky-bottom.