Major Changes
-
#2764
1ff29cc0c
Thanks @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 thecss
prop.How to update your code: Basically move all style props to the
css
prop. E.g.<Box p="small" bg="primary">
becomes<Box css={{ p: "small, bg; "primary" }}>
. -
#2740
7a61d39f4
Thanks @sarahgm! - chore: rename onSelect to onAction in Menu component -
#2733
9cb030c11
Thanks @sarahgm! - chore: change prop onSelectionChange to onChange for select component
Minor Changes
-
#2766
6d9b36b6a
Thanks @sebald! - feat: addopen
prop toDialog.Controller
-
#2760
fafc52cbb
Thanks @sarahgm! - feat: Allow<Dialog>
to be controlled via<Dialog.Controller‚>
-
#2759
596b7b901
Thanks @sarahgm! - feat: update Menu.Trigger with open and onOpenChange property