Minor Changes
-
Table: Add component (#1673)
EXAMPLE USAGE:
<Table label="Table example"> <TableHeader> <TableRow> <TableHeaderCell>...</TableHeaderCell> <TableHeaderCell>...</TableHeaderCell> <TableHeaderCell>...</TableHeaderCell> </TableRow> </TableHeader> <TableBody> <TableRow> <TableCell>...</TableCell> <TableCell>...</TableCell> <TableCell>...</TableCell> </TableRow> ... </TableBody> </Table>
-
MenuRenderer, OverflowMenu: Add
small
size. (#1675)Introduce a new
small
size forMenuRenderer
andOverflowMenu
.
This is available via thesize
prop, which supports the existingstandard
(default) andsmall
.EXAMPLE USAGE:
<MenuRenderer size="small" ... />
Patch Changes
-
Tiles: Fixes a bug where nested
Tiles
components could calculate their columns incorrectly. (#1667)Previously, when using a
Tiles
component inside anotherTiles
component, the responsive column calculation could be incorrect in certain scenarios.
This change ensures nestedTiles
elements always calculate their columns correctly. -
Button, ButtonLink: Ensure inner label is full width (#1671)
Ensuring the inner label element is full width to maintain backwards compatibility with previous block layout.
-
Columns: Ensure component occupies available height (#1672)
Enables
Columns
content to occupy the available height of the parent container. -
AccordionItem: Simplify internal layout. (#1674)
-
Accordion, AccordionItem: Adjust spacing values for improved visual balance. (#1674)
This change reduces the default spacing within
Accordion
andAccordionItem
components at certain sizes, ensuring the content is better associated with the correctAccordionItem
.Within the
Accordion
component, the default space betweenAccordionItem
components has been reduced for sizelarge
with dividers, and sizessmall
andxsmall
without dividers.
Within theAccordionItem
component, the space between thelabel
and content has been reduced for sizeslarge
andsmall
.