Add calendar + popover components and a custom DateTimePicker wrapper. Video forms use date-only; article forms include a time picker. Also add video player preview to the video edit form. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
225 B
Svelte
8 lines
225 B
Svelte
<script lang="ts">
|
|
import { Popover as PopoverPrimitive } from "bits-ui";
|
|
|
|
let { open = $bindable(false), ...restProps }: PopoverPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<PopoverPrimitive.Root bind:open {...restProps} />
|