Skip to content

Commit ad7d0a7

Browse files
chore: release packages
1 parent fea7e3e commit ad7d0a7

13 files changed

Lines changed: 107 additions & 50 deletions

.changeset/add-date-input-component.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

.changeset/fix-svelte-backdrop-presence.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-svelte-locale-prop.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-vue-datepicker-table-view.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sync-zag-1-38-1-and-1-38-2.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/react/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @ark-ui/react
22

3+
## [5.36.0] - 2026-04-01
4+
5+
### Added
6+
7+
- Add new `DateInput` component for typing dates with keyboard input.
8+
```jsx
9+
<DateInput.Root>
10+
<DateInput.Label>Date</DateInput.Label>
11+
<DateInput.Control>
12+
<DateInput.SegmentGroup>
13+
{segments.map((segment) => (
14+
<DateInput.Segment segment={segment} />
15+
))}
16+
</DateInput.SegmentGroup>
17+
</DateInput.Control>
18+
<DateInput.HiddenInput />
19+
</DateInput.Root>
20+
```
21+
22+
### Fixed
23+
24+
- - **File Upload**: Automatically reject duplicate files with `FILE_EXISTS` error. Previously, uploading the same file
25+
twice was silently accepted and deleting one duplicate removed all of them.
26+
327
## [5.35.0] - 2026-03-26
428

529
### Added

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ark-ui/react",
33
"type": "module",
4-
"version": "5.35.0",
4+
"version": "5.36.0",
55
"description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
66
"keywords": [
77
"accordion",

packages/solid/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @ark-ui/solid
22

3+
## [5.36.0] - 2026-04-01
4+
5+
### Added
6+
7+
- Add new `DateInput` component for typing dates with keyboard input.
8+
```jsx
9+
<DateInput.Root>
10+
<DateInput.Label>Date</DateInput.Label>
11+
<DateInput.Control>
12+
<DateInput.SegmentGroup>
13+
{segments.map((segment) => (
14+
<DateInput.Segment segment={segment} />
15+
))}
16+
</DateInput.SegmentGroup>
17+
</DateInput.Control>
18+
<DateInput.HiddenInput />
19+
</DateInput.Root>
20+
```
21+
22+
### Fixed
23+
24+
- - **File Upload**: Automatically reject duplicate files with `FILE_EXISTS` error. Previously, uploading the same file
25+
twice was silently accepted and deleting one duplicate removed all of them.
26+
327
## [5.35.0] - 2026-03-26
428

529
### Added

packages/solid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ark-ui/solid",
33
"type": "module",
4-
"version": "5.35.0",
4+
"version": "5.36.0",
55
"description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.",
66
"keywords": [
77
"accordion",

packages/svelte/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# @ark-ui/svelte
22

3+
## [5.21.0] - 2026-04-01
4+
5+
### Added
6+
7+
- Add new `DateInput` component for typing dates with keyboard input.
8+
```jsx
9+
<DateInput.Root>
10+
<DateInput.Label>Date</DateInput.Label>
11+
<DateInput.Control>
12+
<DateInput.SegmentGroup>
13+
{segments.map((segment) => (
14+
<DateInput.Segment segment={segment} />
15+
))}
16+
</DateInput.SegmentGroup>
17+
</DateInput.Control>
18+
<DateInput.HiddenInput />
19+
</DateInput.Root>
20+
```
21+
22+
### Fixed
23+
24+
- Fix `lazyMount` and `unmountOnExit` not working for backdrop in Dialog, Drawer, NavigationMenu, Tabs, and Tour
25+
components.
26+
27+
- Fix `NumberInput` and `Progress` not passing `locale` from `LocaleProvider` to the underlying machine.
28+
29+
- - **File Upload**: Automatically reject duplicate files with `FILE_EXISTS` error. Previously, uploading the same file
30+
twice was silently accepted and deleting one duplicate removed all of them.
31+
332
## [5.20.0] - 2026-03-26
433

534
### Added

0 commit comments

Comments
 (0)