@marigold/types
1.4.0
Minor Changes
- e985fe2: feat([DST-1091]): Add multiselection mode to
<Select>
1.3.2
Patch Changes
- 81f1c9d: fix broken release
1.3.1
Patch Changes
- 0bca5d8: Update React aria components
1.3.0
Minor Changes
- c387b43: feat: allow React >=17.0.0
Patch Changes
- c387b43: feat: allow React >=17.0.0
1.2.1
Patch Changes
- 8b7be8e: fix(types): Update deps and fix peer dependency for
@types/react.
1.2.0
Minor Changes
-
2babc0b: feat(components): Mark layout components as regions for accessibility.
Added the ability to mark layout components as regions (ARIA role). This improves accessibility by allowing assistive technologies to identify significant sections of the page, making navigation easier for users with disabilities.
-
956982a: feat(components): Make
<Text>and<Headline>accessible by allowing ARIA labelling props<Text>and<Headline>will no longer cause type errors when ARIA labelling is used (aria-label,id, ...).
1.1.1
Patch Changes
1.1.0
Minor Changes
1.0.1
Patch Changes
-
#2894
b3d577339Thanks @renovate! - chore(deps): update dependency @types/react to v18.0.29 -
#2891
8972cbacaThanks @renovate! - chore(deps): update dependency type-fest to v3.7.0
1.0.0
Major Changes
-
#2764
1ff29cc0cThanks @sebald! - refa: fix polymorph types + remove style props from<Box>BREAKING CHANGE:
We deprecated the available short hands for styling on the
<Box>component (also known as style props), for example<Box p="small">. This way it is more clear what to use when -> always thecssprop.How to update your code: Basically move all style props to the
cssprop. E.g.<Box p="small" bg="primary">becomes<Box css={{ p: "small, bg; "primary" }}>.
Patch Changes
0.5.7
Patch Changes
0.5.6
Patch Changes
0.5.5
Patch Changes
0.5.4
Patch Changes
-
#2530
4af6c016Thanks @renovate! - chore(deps): update dependency type-fest to v3 -
#2543
eb7e453cThanks @renovate! - chore(deps): update dependency @types/react to v18.0.21
0.5.3
Patch Changes
0.5.2
Patch Changes
0.5.1
Patch Changes
0.5.0
Minor Changes
0.5.0-beta.0
Minor Changes
0.4.1
Patch Changes
0.4.0
Minor Changes
0.3.0
Patch Changes
- #1131
0ccc10deThanks @sebald! - feat(types): Clarify and improve polymorphic types by calling it by its actual name ... polymorphic! We also added types when norefshould be passed.
-
#1132
b6614f1fThanks @sebald! - feat(compoents): Make<Text>and<Link>polymorphic<Text>- the
asprop supports arbitrary inputs - supporst ref
- supports style props (text-align, color, cursor, user-select)
<Link>- the
asprop supports arbitrary inputs - does not support
ref! - improved accessibility (react-aria)
- the