·
6 commits
to master
since this release
Minor Changes
-
Add
tabIndex
support to all form fields (#1697)Ensure the
tabIndex
prop 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
0
and-1
to ensure best practice for keyboard navigation and assistive technologies.EXAMPLE USAGE:
<TextField tabIndex={-1} />
Patch Changes
-
Accordion: Fix
data
prop parsing (#1698)Ensure the
data
prop is correctly passed through toStack
internally, and validatedata-*
attributes are not being passed in incorrectly.