braid-design-system@33.5.0
·
346 commits
to master
since this release
Minor Changes
-
Add
tabIndexsupport to all form fields (#1697)Ensure the
tabIndexprop is available on all form fields, enabling greater control over which elements appear in the keyboard navigation flow.In line with MDN guidance, the only supported values are
0and-1to ensure best practice for keyboard navigation and assistive technologies.EXAMPLE USAGE:
<TextField tabIndex={-1} />
Patch Changes
-
Accordion: Fix
dataprop parsing (#1698)Ensure the
dataprop is correctly passed through toStackinternally, and validatedata-*attributes are not being passed in incorrectly.