braid-design-system@32.9.0
Minor Changes
-
Page: Add component (#1343)
The new
Pagecomponent establishes a consistent page-level layout by managing the relationship between the footer and the main content.By default, for pages with limited content the
footerwill at a minimum be placed at the bottom of the screen, pushed beyond as the page content grows.For pages with dynamic content, it is recommended to place the footer out of view by setting the
footerPositionprop tobelowFoldto prevent the footer from popping in and out of view when the page content changes, e.g. toggling between a loading indicator and content.EXAMPLE USAGE:
<Page footer={<Footer />}> <Header /> {/* page content... */} </Page>
Patch Changes
-
TabPanel: Align focus outline radius to scale (#1345)
Increase the radius of the focus outline to better align to the scale. A
TabPanelis typically a "large" element containing entire sections of UI, so using thelargeradius to better align to the radius scale.