We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7650ac commit fea7e3eCopy full SHA for fea7e3e
1 file changed
.changeset/add-date-input-component.md
@@ -0,0 +1,22 @@
1
+---
2
+'@ark-ui/react': minor
3
+'@ark-ui/solid': minor
4
+'@ark-ui/svelte': minor
5
+'@ark-ui/vue': minor
6
7
+
8
+Add new `DateInput` component for typing dates with keyboard input.
9
10
+```jsx
11
+<DateInput.Root>
12
+ <DateInput.Label>Date</DateInput.Label>
13
+ <DateInput.Control>
14
+ <DateInput.SegmentGroup>
15
+ {segments.map((segment) => (
16
+ <DateInput.Segment segment={segment} />
17
+ ))}
18
+ </DateInput.SegmentGroup>
19
+ </DateInput.Control>
20
+ <DateInput.HiddenInput />
21
+</DateInput.Root>
22
+```
0 commit comments