Skip to content

Commit cbd7ca7

Browse files
committed
chore: bump zag-js
1 parent cdd583e commit cbd7ca7

10 files changed

Lines changed: 569 additions & 580 deletions

File tree

bun.lock

Lines changed: 302 additions & 302 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react/CHANGELOG.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,15 @@
77
### Fixed
88

99
- **Carousel**: Fix issue where full page carousel could trap scrolling
10-
- **Collection**: Export `UseListCollectionReturn` type
11-
- **File Upload**:
10+
11+
- **ListCollection**:Export `UseListCollectionReturn` type
12+
13+
- **TreeCollection**: Fix issue where the `filter` method completely deletes the children key from the node when there
14+
are no matching children
15+
16+
- **Number Input**: Fix issue where default pattern does not allow negative numbers with decimal point
17+
18+
- **File Upload**
1219
- Export `FileError`, `FileMimeType`, and `FileRejection` types
1320
- Fix issue where calling `api.setFiles` invokes validation with incorrect `acceptedFiles`
1421
- Fix issue where the browser might not be able to infer the mime type of a file due to limitations, drag source or
@@ -20,12 +27,10 @@
2027
### Fixed
2128

2229
- **Combobox**
23-
2430
- Expose `reason` to `onOpenChange` and `onInputValueChange` callbacks
2531
- Expose `api.clearHighlightedValue` function to clear highlighted value
2632

2733
- **Date Picker**
28-
2934
- Fix issue where datepicker errors when setting `selectionMode=range` and `minView=year`
3035
- Fix issue where `focusedValue` could not be fully controlled
3136

@@ -36,7 +41,6 @@
3641
- **Progress**: Improve `valueAsString` formatting
3742

3843
- **Select**
39-
4044
- Select highlighted item only if it exists in the collection
4145
- Expose `api.clearHighlightedValue` function to clear highlighted value
4246

@@ -83,15 +87,13 @@
8387
is now required. A warning will be logged if it is not provided
8488

8589
- **Tree View**
86-
8790
- Fix issue where clicking a branch with indeterminate state doesn't check its child nodes
8891
- Remove `aria-busy` attribute from branch trigger when not loading children
8992
- Expose node details in `onExpandChange`, `onSelectionChange` and `onFocusChange`
9093

9194
- **Angle Slider**: Fix issue where scrubbing doesn't feel smooth on touch devices
9295

9396
- **Timer**:
94-
9597
- Fix issue where timer could continue beyond `targetMs` when window is not visible
9698
- Add validation to ensure `startMs` and `targetMs` are configured correctly
9799
- Fix `progressPercent` calculation for countdown timers
@@ -107,7 +109,6 @@
107109
### Added
108110

109111
- **Tree View**
110-
111112
- Add support for checkbox state for checkbox trees via `defaultCheckedValue`, `checkedValue`, `onCheckedChange` props
112113
- Add callback for when `loadChildren` fails via `onLoadChildrenError` prop
113114

@@ -195,7 +196,6 @@
195196
### Added
196197

197198
- **Tree View**: Added support for lazy loading node children. To use this, you need to provide:
198-
199199
- `loadChildren` is a function that is used to load the children of a node.
200200
- `onLoadChildrenComplete` is a callback that is called when the children of a node are loaded. Used to update the
201201
tree collection.
@@ -204,7 +204,6 @@
204204
### Fixed
205205

206206
- **Slider**
207-
208207
- Fixed issue where `Shift` + `ArrowRight` set value to `0` instead of `max` when step is too large (e.g. `20`)
209208
- Fixed issue where `onValueChangeEnd` doesn't return the latest value when dragging very fast
210209

@@ -261,7 +260,6 @@ export const Basic = () => (
261260
- **Collection**: Export `CollectionOptions`, `TreeCollectionOptions`, `GridCollectionOptions` types.
262261

263262
- **Carousel**
264-
265263
- Fixed issue where focusing on carousel region and navigating with keyboard doesn't work as expected
266264
- Fixed issue when `allowMouseDrag` is set where carousel no longer snaps after mouse interaction
267265

@@ -339,12 +337,10 @@ export const Basic = () => (
339337
- **Tabs**: Fixed issue where tabs indicator animation behaves inconsistently.
340338

341339
- **Date Picker**
342-
343340
- Fixed issue where datepicker throws error when navigating month view.
344341
- Fixed issue where range selection doesn't reset correctly when clicking the same start date.
345342

346343
- **Disclosure Components**
347-
348344
- Fixed issue where pointerdown outside doesn't work consistently on mobile devices.
349345
- Improved pointerdown outside click detection in shadow DOM environments.
350346

@@ -353,12 +349,10 @@ export const Basic = () => (
353349
### Added
354350

355351
- **Slider**
356-
357352
- Add support for `origin: end` to align the thumb to the end of the track.
358353
- Expose `thumbSize` as CSS variables in the root element. Can be useful for styling the slider.
359354

360355
- **Menu**
361-
362356
- Added `onSelect` event to the `Menu.Item` component.
363357

364358
### Fixed

packages/react/package.json

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -86,63 +86,63 @@
8686
"sideEffects": false,
8787
"dependencies": {
8888
"@internationalized/date": "3.8.2",
89-
"@zag-js/accordion": "1.18.3",
90-
"@zag-js/angle-slider": "1.18.3",
91-
"@zag-js/anatomy": "1.18.3",
92-
"@zag-js/auto-resize": "1.18.3",
93-
"@zag-js/avatar": "1.18.3",
94-
"@zag-js/carousel": "1.18.3",
95-
"@zag-js/checkbox": "1.18.3",
96-
"@zag-js/clipboard": "1.18.3",
97-
"@zag-js/collapsible": "1.18.3",
98-
"@zag-js/collection": "1.18.3",
99-
"@zag-js/color-picker": "1.18.3",
100-
"@zag-js/color-utils": "1.18.3",
101-
"@zag-js/combobox": "1.18.3",
102-
"@zag-js/core": "1.18.3",
103-
"@zag-js/date-picker": "1.18.3",
104-
"@zag-js/date-utils": "1.18.3",
105-
"@zag-js/dialog": "1.18.3",
106-
"@zag-js/dom-query": "1.18.3",
107-
"@zag-js/editable": "1.18.3",
108-
"@zag-js/file-upload": "1.18.3",
109-
"@zag-js/file-utils": "1.18.3",
110-
"@zag-js/focus-trap": "1.18.3",
111-
"@zag-js/floating-panel": "1.18.3",
112-
"@zag-js/highlight-word": "1.18.3",
113-
"@zag-js/hover-card": "1.18.3",
114-
"@zag-js/i18n-utils": "1.18.3",
115-
"@zag-js/listbox": "1.18.3",
116-
"@zag-js/menu": "1.18.3",
117-
"@zag-js/number-input": "1.18.3",
118-
"@zag-js/pagination": "1.18.3",
119-
"@zag-js/password-input": "1.18.3",
120-
"@zag-js/pin-input": "1.18.3",
121-
"@zag-js/popover": "1.18.3",
122-
"@zag-js/presence": "1.18.3",
123-
"@zag-js/progress": "1.18.3",
124-
"@zag-js/qr-code": "1.18.3",
125-
"@zag-js/radio-group": "1.18.3",
126-
"@zag-js/rating-group": "1.18.3",
127-
"@zag-js/react": "1.18.3",
128-
"@zag-js/select": "1.18.3",
129-
"@zag-js/signature-pad": "1.18.3",
130-
"@zag-js/slider": "1.18.3",
131-
"@zag-js/splitter": "1.18.3",
132-
"@zag-js/steps": "1.18.3",
133-
"@zag-js/switch": "1.18.3",
134-
"@zag-js/tabs": "1.18.3",
135-
"@zag-js/tags-input": "1.18.3",
136-
"@zag-js/time-picker": "1.18.3",
137-
"@zag-js/timer": "1.18.3",
138-
"@zag-js/toast": "1.18.3",
139-
"@zag-js/toggle": "1.18.3",
140-
"@zag-js/toggle-group": "1.18.3",
141-
"@zag-js/tooltip": "1.18.3",
142-
"@zag-js/tour": "1.18.3",
143-
"@zag-js/tree-view": "1.18.3",
144-
"@zag-js/types": "1.18.3",
145-
"@zag-js/utils": "1.18.3"
89+
"@zag-js/accordion": "1.18.4",
90+
"@zag-js/angle-slider": "1.18.4",
91+
"@zag-js/anatomy": "1.18.4",
92+
"@zag-js/auto-resize": "1.18.4",
93+
"@zag-js/avatar": "1.18.4",
94+
"@zag-js/carousel": "1.18.4",
95+
"@zag-js/checkbox": "1.18.4",
96+
"@zag-js/clipboard": "1.18.4",
97+
"@zag-js/collapsible": "1.18.4",
98+
"@zag-js/collection": "1.18.4",
99+
"@zag-js/color-picker": "1.18.4",
100+
"@zag-js/color-utils": "1.18.4",
101+
"@zag-js/combobox": "1.18.4",
102+
"@zag-js/core": "1.18.4",
103+
"@zag-js/date-picker": "1.18.4",
104+
"@zag-js/date-utils": "1.18.4",
105+
"@zag-js/dialog": "1.18.4",
106+
"@zag-js/dom-query": "1.18.4",
107+
"@zag-js/editable": "1.18.4",
108+
"@zag-js/file-upload": "1.18.4",
109+
"@zag-js/file-utils": "1.18.4",
110+
"@zag-js/focus-trap": "1.18.4",
111+
"@zag-js/floating-panel": "1.18.4",
112+
"@zag-js/highlight-word": "1.18.4",
113+
"@zag-js/hover-card": "1.18.4",
114+
"@zag-js/i18n-utils": "1.18.4",
115+
"@zag-js/listbox": "1.18.4",
116+
"@zag-js/menu": "1.18.4",
117+
"@zag-js/number-input": "1.18.4",
118+
"@zag-js/pagination": "1.18.4",
119+
"@zag-js/password-input": "1.18.4",
120+
"@zag-js/pin-input": "1.18.4",
121+
"@zag-js/popover": "1.18.4",
122+
"@zag-js/presence": "1.18.4",
123+
"@zag-js/progress": "1.18.4",
124+
"@zag-js/qr-code": "1.18.4",
125+
"@zag-js/radio-group": "1.18.4",
126+
"@zag-js/rating-group": "1.18.4",
127+
"@zag-js/react": "1.18.4",
128+
"@zag-js/select": "1.18.4",
129+
"@zag-js/signature-pad": "1.18.4",
130+
"@zag-js/slider": "1.18.4",
131+
"@zag-js/splitter": "1.18.4",
132+
"@zag-js/steps": "1.18.4",
133+
"@zag-js/switch": "1.18.4",
134+
"@zag-js/tabs": "1.18.4",
135+
"@zag-js/tags-input": "1.18.4",
136+
"@zag-js/time-picker": "1.18.4",
137+
"@zag-js/timer": "1.18.4",
138+
"@zag-js/toast": "1.18.4",
139+
"@zag-js/toggle": "1.18.4",
140+
"@zag-js/toggle-group": "1.18.4",
141+
"@zag-js/tooltip": "1.18.4",
142+
"@zag-js/tour": "1.18.4",
143+
"@zag-js/tree-view": "1.18.4",
144+
"@zag-js/types": "1.18.4",
145+
"@zag-js/utils": "1.18.4"
146146
},
147147
"devDependencies": {
148148
"@biomejs/biome": "1.9.4",

packages/solid/CHANGELOG.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,15 @@
77
### Fixed
88

99
- **Carousel**: Fix issue where full page carousel could trap scrolling
10-
- **Collection**: Export `UseListCollectionReturn` type
11-
- **File Upload**:
10+
11+
- **ListCollection**: Export `UseListCollectionReturn` type
12+
13+
- **TreeCollection**: Fix issue where the `filter` method completely deletes the children key from the node when there
14+
are no matching children
15+
16+
- **Number Input**: Fix issue where default pattern does not allow negative numbers with decimal point
17+
18+
- **File Upload**
1219
- Export `FileError`, `FileMimeType`, and `FileRejection` types
1320
- Fix issue where calling `api.setFiles` invokes validation with incorrect `acceptedFiles`
1421
- Fix issue where the browser might not be able to infer the mime type of a file due to limitations, drag source or
@@ -20,12 +27,10 @@
2027
### Fixed
2128

2229
- **Combobox**
23-
2430
- Expose `reason` to `onOpenChange` and `onInputValueChange` callbacks
2531
- Expose `api.clearHighlightedValue` function to clear highlighted value
2632

2733
- **Date Picker**
28-
2934
- Fix issue where datepicker errors when setting `selectionMode=range` and `minView=year`
3035
- Fix issue where `focusedValue` could not be fully controlled
3136

@@ -34,7 +39,6 @@
3439
- **Progress**: Improve `valueAsString` formatting
3540

3641
- **Select**
37-
3842
- Select highlighted item only if it exists in the collection
3943
- Expose `api.clearHighlightedValue` function to clear highlighted value
4044

@@ -79,15 +83,13 @@
7983
is now required. A warning will be logged if it is not provided
8084

8185
- **Tree View**
82-
8386
- Fix issue where clicking a branch with indeterminate state doesn't check its child nodes
8487
- Remove `aria-busy` attribute from branch trigger when not loading children
8588
- Expose node details in `onExpandChange`, `onSelectionChange` and `onFocusChange`
8689

8790
- **Angle Slider**: Fix issue where scrubbing doesn't feel smooth on touch devices
8891

8992
- **Timer**
90-
9193
- Fix issue where timer could continue beyond `targetMs` when window is not visible
9294
- Add validation to ensure `startMs` and `targetMs` are configured correctly
9395
- Fix `progressPercent` calculation for countdown timers
@@ -103,7 +105,6 @@
103105
### Added
104106

105107
- **Tree View**
106-
107108
- Add support for checkbox state for checkbox trees via `defaultCheckedValue`, `checkedValue`, `onCheckedChange` props
108109
- Add callback for when `loadChildren` fails via `onLoadChildrenError` prop
109110

@@ -190,7 +191,6 @@
190191
### Added
191192

192193
- **Tree View**: Add support for lazy loading node children. To use this, you need to provide:
193-
194194
- `loadChildren` is a function that is used to load the children of a node.
195195
- `onLoadChildrenComplete` is a callback that is called when the children of a node are loaded. Used to update the
196196
tree collection.
@@ -199,7 +199,6 @@
199199
### Fixed
200200

201201
- **Slider**
202-
203202
- Fixed issue where `Shift` + `ArrowRight` set value to `0` instead of `max` when step is too large (e.g. `20`)
204203
- Fixed issue where `onValueChangeEnd` doesn't return the latest value when dragging very fast
205204

@@ -256,7 +255,6 @@ export const Basic = () => (
256255
- **Collection**: Export `CollectionOptions`, `TreeCollectionOptions`, `GridCollectionOptions` types.
257256

258257
- **Carousel**
259-
260258
- Fix issue where focusing on carousel region and navigating with keyboard doesn't work as expected
261259
- Fix issue when `allowMouseDrag` is set where carousel no longer snaps after mouse interaction
262260

@@ -327,12 +325,10 @@ export const Basic = () => (
327325
- **Tabs**: Fixed issue where tabs indicator animation behaves inconsistently.
328326

329327
- **Date Picker**
330-
331328
- Fixed issue where datepicker throws error when navigating month view.
332329
- Fixed issue where range selection doesn't reset correctly when clicking the same start date.
333330

334331
- **Disclosure Components**
335-
336332
- Fixed issue where pointerdown outside doesn't work consistently on mobile devices.
337333
- Improved pointerdown outside click detection in shadow DOM environments.
338334

@@ -341,12 +337,10 @@ export const Basic = () => (
341337
### Added
342338

343339
- **Slider**
344-
345340
- Add support for `origin: end` to align the thumb to the end of the track.
346341
- Expose `thumbSize` as CSS variables in the root element. Can be useful for styling the slider.
347342

348343
- **Menu**
349-
350344
- Added `onSelect` event to the `Menu.Item` component.
351345

352346
### Fixed

0 commit comments

Comments
 (0)