Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update DatePicker/Popover usage example #1403

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sites/docs/src/content/components/date-picker.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ See installations instructions for the [Popover](/docs/components/popover#instal
let value = $state<DateValue>();
</script>

<Popover.Root openFocus>
<Popover.Root>
<Popover.Trigger>
{#snippet child({ props })}
<Button
Expand All @@ -61,7 +61,7 @@ See installations instructions for the [Popover](/docs/components/popover#instal
{/snippet}
</Popover.Trigger>
<Popover.Content class="w-auto p-0">
<Calendar bind:value initialFocus />
<Calendar bind:value type="single" initialFocus />
</Popover.Content>
</Popover.Root>
```
Expand Down