| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| braid-design-system@34.5.0 source code.tar.gz | 2026-07-21 | 1.1 MB | |
| braid-design-system@34.5.0 source code.zip | 2026-07-21 | 1.7 MB | |
| README.md | 2026-07-21 | 1.6 kB | |
| Totals: 3 Items | 2.8 MB | 0 | |
Minor Changes
- Drawer: Allow users to add fixed footer content to Drawer. (#2091)
EXAMPLE USAGE:
jsx
<Drawer
title="Drawer"
open={true}
footer={
<Actions>
<Button variant="solid" tone="formAccent">
Save
</Button>
<Button variant="transparent" tone="formAccent">
Cancel
</Button>
</Actions>
}
>
- IconRenderer: Add
tonesupport (#2085)
Enable custom icons to use Braid tones in the same way as first-class Braid icons.
EXAMPLE USAGE:
jsx
<IconRenderer tone={tone}>
{({ className }) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
className={className}
>
...
</svg>
)}
</IconRenderer>
- Dialog: Allow users to add fixed footer content to Dialog. (#2091)
EXAMPLE USAGE:
jsx
<Dialog
title="Dialog"
open={true}
footer={
<Actions>
<Button variant="solid" tone="formAccent">
Save
</Button>
<Button variant="transparent" tone="formAccent">
Cancel
</Button>
</Actions>
}
>
Patch Changes
- Reduce consumer bundle size by including only the required fonts from
@capsizecss/metrics(#2086)