Skip to content

Commit 78a9e44

Browse files
committed
docs: next changelog
1 parent 60acf60 commit 78a9e44

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
44

55
> For v0.x changelog, see the [v0 branch](https://github.com/chakra-ui/zag/blob/v0/CHANGELOG.md)
66
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+
736
## [1.24.2](./#1.24.2) - 2025-09-18
837

938
### Fixed

0 commit comments

Comments
 (0)