File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
4
4
5
5
> For v0.x changelog, see the [ v0 branch] ( https://github.com/chakra-ui/zag/blob/v0/CHANGELOG.md )
6
6
7
+ ## [ 1.25.0] ( ./#1.25.0 ) - 2025-09-28
8
+
9
+ ### Added
10
+
11
+ - ** Collapsible** : Add support for ` collapsedHeight ` and ` collapsedWidth ` props to control the dimensions of the
12
+ collapsible content when in its collapsed state.
13
+
14
+ - ** Focus Trap** : Allow elements referenced by ` aria-controls ` to be included in the trap scope. This makes it possible
15
+ for menus, popovers, etc. to be portalled and work correctly.
16
+
17
+ - ** Pagination** : Add ` getPageUrl ` prop for generating ` href ` attributes when using pagination as links.
18
+
19
+ ``` ts
20
+ const service = useMachine (pagination .machine , {
21
+ type: " link" ,
22
+ getPageUrl : ({ page , pageSize }) => ` /products?page=${page }&size=${pageSize } ` ,
23
+ })
24
+ ```
25
+
26
+ - ** Slider** : Export ` splitMarkerProps ` helper.
27
+
28
+ ### Fixed
29
+
30
+ - ** Scroll Area** : Fix RTL horizontal scrollbar positioning on Safari
31
+
32
+ - ** Slider** : Fix issue where slider continues dragging when disabled during drag operation.
33
+
34
+ - ** Switch** : Fix issue where ` data-active ` is inconsistently applied when ` disabled ` state changes at runtime
35
+
7
36
## [ 1.24.2] ( ./#1.24.2 ) - 2025-09-18
8
37
9
38
### Fixed
You can’t perform that action at this time.
0 commit comments