title | description | releaseUrl | releaseDate | version |
---|---|---|---|---|
Version 2.3.6 |
Explore the changelog for Chakra UI version 2.3.6. Learn about the latest features, bug fixes, and improvements. |
October 17, 2022 |
2.3.6 |
-
Added support for styling the
AvatarGroup
from the theme by adding thegroup
part.const theme = extendTheme({ components: { Avatar: { baseStyle: { group: { // styles for the AvatarGroup }, }, }, }, })
- Expose
listProps
to allow passing props to underlyingol
element
- Implement local component style merging for upcoming optimizations
- Added
setValue
as function exposed byuseClipboard
to enable control over the value after first initialization
- Allow checkbox control and root's style to be overriden from theme
- Fixed issue where input retained focus after exiting input programmaticaly.
- Fix issue where
useInert
doesn't work consistently between the Drawer and Modal
- Fix issue where progress bar components (
Progress
andProgressFilledTrack
) did not useforwardRef
- Refactor theme
- Allow
containerStyles
to accept style props, not just React CSS properties - Expose original toast options to toast
render
options
- Force publish package due to changes in last release
- Don't inline React by making it a
peerDependency
- Moved
extendTheme
utilities to a dedicated package (@chakra-ui/theme-utils
)