@dogsbay/ui 0.2.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +38 -0
- package/src/accordion/Accordion.astro +38 -0
- package/src/accordion/AccordionContent.astro +25 -0
- package/src/accordion/AccordionItem.astro +26 -0
- package/src/accordion/AccordionTrigger.astro +38 -0
- package/src/accordion/accordion.ts +189 -0
- package/src/accordion/index.ts +4 -0
- package/src/alert/Alert.astro +69 -0
- package/src/alert/AlertDescription.astro +17 -0
- package/src/alert/AlertTitle.astro +21 -0
- package/src/alert/CollapsibleAlert.astro +103 -0
- package/src/alert/icon.ts +32 -0
- package/src/alert/index.ts +4 -0
- package/src/alert/variants.ts +29 -0
- package/src/alert-dialog/AlertDialog.astro +16 -0
- package/src/alert-dialog/AlertDialogAction.astro +23 -0
- package/src/alert-dialog/AlertDialogCancel.astro +23 -0
- package/src/alert-dialog/AlertDialogContent.astro +37 -0
- package/src/alert-dialog/AlertDialogDescription.astro +18 -0
- package/src/alert-dialog/AlertDialogFooter.astro +18 -0
- package/src/alert-dialog/AlertDialogHeader.astro +18 -0
- package/src/alert-dialog/AlertDialogTitle.astro +18 -0
- package/src/alert-dialog/AlertDialogTrigger.astro +24 -0
- package/src/alert-dialog/alert-dialog.ts +154 -0
- package/src/alert-dialog/index.ts +9 -0
- package/src/api-doc/ApiDoc.astro +52 -0
- package/src/api-doc/index.ts +1 -0
- package/src/api-layout/ApiCodePanel.astro +21 -0
- package/src/api-layout/ApiLayout.astro +29 -0
- package/src/api-layout/ExampleBlock.astro +63 -0
- package/src/api-params/ApiParams.astro +96 -0
- package/src/api-params/index.ts +1 -0
- package/src/api-source/ApiSource.astro +20 -0
- package/src/api-source/api-source.css +32 -0
- package/src/api-source/index.ts +1 -0
- package/src/api-symbol/ApiSymbol.astro +48 -0
- package/src/api-symbol/api-symbol.css +89 -0
- package/src/api-symbol/index.ts +1 -0
- package/src/api-url-bar/ApiUrlBar.astro +63 -0
- package/src/avatar/Avatar.astro +57 -0
- package/src/avatar/index.ts +1 -0
- package/src/badge/Badge.astro +37 -0
- package/src/badge/index.ts +1 -0
- package/src/breadcrumb/Breadcrumb.astro +32 -0
- package/src/breadcrumb/BreadcrumbEllipsis.astro +32 -0
- package/src/breadcrumb/BreadcrumbItem.astro +41 -0
- package/src/breadcrumb/BreadcrumbSeparator.astro +33 -0
- package/src/breadcrumb/index.ts +4 -0
- package/src/button/Button.astro +70 -0
- package/src/button/index.ts +1 -0
- package/src/card/Card.astro +17 -0
- package/src/card/CardContent.astro +17 -0
- package/src/card/CardDescription.astro +17 -0
- package/src/card/CardFooter.astro +17 -0
- package/src/card/CardHeader.astro +17 -0
- package/src/card/CardTitle.astro +17 -0
- package/src/card/index.ts +6 -0
- package/src/checkbox/Checkbox.astro +70 -0
- package/src/checkbox/index.ts +1 -0
- package/src/checkbox-group/CheckboxGroup.astro +38 -0
- package/src/checkbox-group/checkbox-group.ts +53 -0
- package/src/checkbox-group/index.ts +1 -0
- package/src/code-block/CodeBlock.astro +160 -0
- package/src/code-rich/CodeRich.astro +267 -0
- package/src/code-rich/code-rich.css +68 -0
- package/src/code-rich/index.ts +1 -0
- package/src/code-samples/CodeSamples.astro +59 -0
- package/src/collapsible/Collapsible.astro +35 -0
- package/src/collapsible/CollapsibleContent.astro +24 -0
- package/src/collapsible/CollapsibleTrigger.astro +23 -0
- package/src/collapsible/collapsible.ts +42 -0
- package/src/collapsible/index.ts +3 -0
- package/src/combobox/Combobox.astro +53 -0
- package/src/combobox/ComboboxEmpty.astro +18 -0
- package/src/combobox/ComboboxItem.astro +28 -0
- package/src/combobox/combobox.ts +179 -0
- package/src/combobox/index.ts +3 -0
- package/src/command/Command.astro +22 -0
- package/src/command/CommandEmpty.astro +18 -0
- package/src/command/CommandGroup.astro +24 -0
- package/src/command/CommandInput.astro +49 -0
- package/src/command/CommandItem.astro +26 -0
- package/src/command/CommandList.astro +19 -0
- package/src/command/CommandSeparator.astro +16 -0
- package/src/command/CommandShortcut.astro +18 -0
- package/src/command/command.ts +212 -0
- package/src/command/index.ts +8 -0
- package/src/content-renderer/ContentRenderer.astro +410 -0
- package/src/content-renderer/InlineRenderer.astro +149 -0
- package/src/context-menu/ContextMenu.astro +22 -0
- package/src/context-menu/ContextMenuContent.astro +24 -0
- package/src/context-menu/ContextMenuItem.astro +49 -0
- package/src/context-menu/ContextMenuSeparator.astro +14 -0
- package/src/context-menu/ContextMenuShortcut.astro +14 -0
- package/src/context-menu/ContextMenuTrigger.astro +22 -0
- package/src/context-menu/context-menu.ts +238 -0
- package/src/context-menu/index.ts +6 -0
- package/src/copy-button/CopyButton.astro +88 -0
- package/src/copy-button/index.ts +1 -0
- package/src/diagram/Diagram.astro +15 -0
- package/src/diagram/index.ts +1 -0
- package/src/dialog/Dialog.astro +22 -0
- package/src/dialog/DialogClose.astro +32 -0
- package/src/dialog/DialogContent.astro +37 -0
- package/src/dialog/DialogDescription.astro +22 -0
- package/src/dialog/DialogFooter.astro +18 -0
- package/src/dialog/DialogHeader.astro +18 -0
- package/src/dialog/DialogTitle.astro +18 -0
- package/src/dialog/DialogTrigger.astro +33 -0
- package/src/dialog/dialog.ts +291 -0
- package/src/dialog/index.ts +8 -0
- package/src/docs-footer/DocsFooter.astro +50 -0
- package/src/docs-header/DocsHeader.astro +32 -0
- package/src/docs-layout/DocsLayout.astro +187 -0
- package/src/docs-layout/index.ts +1 -0
- package/src/drawer/Drawer.astro +12 -0
- package/src/drawer/DrawerClose.astro +12 -0
- package/src/drawer/DrawerContent.astro +46 -0
- package/src/drawer/DrawerDescription.astro +10 -0
- package/src/drawer/DrawerFooter.astro +10 -0
- package/src/drawer/DrawerHandle.astro +16 -0
- package/src/drawer/DrawerHeader.astro +10 -0
- package/src/drawer/DrawerTitle.astro +10 -0
- package/src/drawer/DrawerTrigger.astro +25 -0
- package/src/drawer/drawer.ts +262 -0
- package/src/drawer/index.ts +9 -0
- package/src/dropdown-menu/DropdownMenu.astro +22 -0
- package/src/dropdown-menu/DropdownMenuContent.astro +33 -0
- package/src/dropdown-menu/DropdownMenuGroup.astro +17 -0
- package/src/dropdown-menu/DropdownMenuItem.astro +48 -0
- package/src/dropdown-menu/DropdownMenuLabel.astro +28 -0
- package/src/dropdown-menu/DropdownMenuSeparator.astro +21 -0
- package/src/dropdown-menu/DropdownMenuShortcut.astro +18 -0
- package/src/dropdown-menu/DropdownMenuTrigger.astro +34 -0
- package/src/dropdown-menu/dropdown-menu.ts +348 -0
- package/src/dropdown-menu/index.ts +8 -0
- package/src/endpoint-card/EndpointCard.astro +60 -0
- package/src/endpoint-card/EndpointCardSection.astro +22 -0
- package/src/endpoint-card/EndpointSection.astro +35 -0
- package/src/field/Field.astro +31 -0
- package/src/field/FieldDescription.astro +22 -0
- package/src/field/FieldLabel.astro +24 -0
- package/src/field/field.ts +61 -0
- package/src/field/index.ts +3 -0
- package/src/fieldset/Fieldset.astro +24 -0
- package/src/fieldset/FieldsetLegend.astro +18 -0
- package/src/fieldset/index.ts +2 -0
- package/src/footnote/Footnote.astro +37 -0
- package/src/footnote/footnote.ts +79 -0
- package/src/footnote/index.ts +1 -0
- package/src/form/Form.astro +27 -0
- package/src/form/form.ts +160 -0
- package/src/form/index.ts +1 -0
- package/src/grid/Grid.astro +117 -0
- package/src/grid/GridItem.astro +95 -0
- package/src/grid/index.ts +2 -0
- package/src/image/Image.astro +115 -0
- package/src/image/index.ts +1 -0
- package/src/input/Input.astro +34 -0
- package/src/input/index.ts +1 -0
- package/src/kbd/Kbd.astro +17 -0
- package/src/kbd/index.ts +1 -0
- package/src/label/Label.astro +17 -0
- package/src/label/index.ts +1 -0
- package/src/link-card/LinkCard.astro +47 -0
- package/src/link-card/index.ts +1 -0
- package/src/map-view/MapView.astro +88 -0
- package/src/map-view/index.ts +1 -0
- package/src/map-view/map-view.ts +194 -0
- package/src/markdown-example/MarkdownExample.astro +138 -0
- package/src/markdown-example/index.ts +1 -0
- package/src/math/MathKatex.astro +35 -0
- package/src/math/index.ts +1 -0
- package/src/menubar/Menubar.astro +25 -0
- package/src/menubar/MenubarContent.astro +24 -0
- package/src/menubar/MenubarItem.astro +26 -0
- package/src/menubar/MenubarMenu.astro +12 -0
- package/src/menubar/MenubarSeparator.astro +11 -0
- package/src/menubar/MenubarShortcut.astro +11 -0
- package/src/menubar/MenubarTrigger.astro +27 -0
- package/src/menubar/index.ts +7 -0
- package/src/menubar/menubar.ts +258 -0
- package/src/meter/Meter.astro +75 -0
- package/src/meter/index.ts +1 -0
- package/src/method-badge/MethodBadge.astro +32 -0
- package/src/navigation-menu/NavigationMenu.astro +24 -0
- package/src/navigation-menu/NavigationMenuContent.astro +24 -0
- package/src/navigation-menu/NavigationMenuItem.astro +22 -0
- package/src/navigation-menu/NavigationMenuLink.astro +26 -0
- package/src/navigation-menu/NavigationMenuList.astro +22 -0
- package/src/navigation-menu/NavigationMenuTrigger.astro +40 -0
- package/src/navigation-menu/index.ts +6 -0
- package/src/navigation-menu/navigation-menu.ts +192 -0
- package/src/number-field/NumberField.astro +84 -0
- package/src/number-field/index.ts +1 -0
- package/src/number-field/number-field.ts +68 -0
- package/src/pagination/Pagination.astro +59 -0
- package/src/pagination/index.ts +1 -0
- package/src/parameter-table/ParameterTable.astro +75 -0
- package/src/popover/Popover.astro +21 -0
- package/src/popover/PopoverContent.astro +31 -0
- package/src/popover/PopoverTrigger.astro +31 -0
- package/src/popover/index.ts +3 -0
- package/src/popover/popover.ts +144 -0
- package/src/preview-card/PreviewCard.astro +24 -0
- package/src/preview-card/PreviewCardContent.astro +24 -0
- package/src/preview-card/PreviewCardTrigger.astro +23 -0
- package/src/preview-card/index.ts +3 -0
- package/src/preview-card/preview-card.ts +91 -0
- package/src/progress/Progress.astro +61 -0
- package/src/progress/index.ts +1 -0
- package/src/property-item/PropertyItem.astro +183 -0
- package/src/property-list/PropertyList.astro +68 -0
- package/src/radio-group/RadioGroup.astro +41 -0
- package/src/radio-group/RadioGroupItem.astro +36 -0
- package/src/radio-group/index.ts +2 -0
- package/src/radio-group/radio-group.ts +126 -0
- package/src/response-tabs/ResponseTabs.astro +60 -0
- package/src/schema-viewer/SchemaViewer.astro +42 -0
- package/src/scroll-area/ScrollArea.astro +44 -0
- package/src/scroll-area/index.ts +1 -0
- package/src/scroll-area/scroll-area.ts +176 -0
- package/src/select/Select.astro +34 -0
- package/src/select/SelectContent.astro +24 -0
- package/src/select/SelectGroup.astro +23 -0
- package/src/select/SelectItem.astro +28 -0
- package/src/select/SelectLabel.astro +18 -0
- package/src/select/SelectSeparator.astro +22 -0
- package/src/select/SelectTrigger.astro +28 -0
- package/src/select/SelectValue.astro +18 -0
- package/src/select/index.ts +8 -0
- package/src/select/select.ts +381 -0
- package/src/separator/Separator.astro +35 -0
- package/src/separator/index.ts +1 -0
- package/src/sheet/Sheet.astro +12 -0
- package/src/sheet/SheetClose.astro +35 -0
- package/src/sheet/SheetContent.astro +52 -0
- package/src/sheet/SheetDescription.astro +18 -0
- package/src/sheet/SheetFooter.astro +18 -0
- package/src/sheet/SheetHeader.astro +18 -0
- package/src/sheet/SheetTitle.astro +18 -0
- package/src/sheet/SheetTrigger.astro +32 -0
- package/src/sheet/index.ts +8 -0
- package/src/sheet/sheet.ts +173 -0
- package/src/sidebar/Sidebar.astro +113 -0
- package/src/sidebar/SidebarContent.astro +18 -0
- package/src/sidebar/SidebarFooter.astro +18 -0
- package/src/sidebar/SidebarGroup.astro +18 -0
- package/src/sidebar/SidebarGroupContent.astro +18 -0
- package/src/sidebar/SidebarGroupLabel.astro +18 -0
- package/src/sidebar/SidebarHeader.astro +18 -0
- package/src/sidebar/SidebarInset.astro +18 -0
- package/src/sidebar/SidebarMenu.astro +18 -0
- package/src/sidebar/SidebarMenuBadge.astro +18 -0
- package/src/sidebar/SidebarMenuButton.astro +71 -0
- package/src/sidebar/SidebarMenuItem.astro +18 -0
- package/src/sidebar/SidebarMenuSub.astro +18 -0
- package/src/sidebar/SidebarMenuSubButton.astro +45 -0
- package/src/sidebar/SidebarMenuSubItem.astro +12 -0
- package/src/sidebar/SidebarNavTree.astro +106 -0
- package/src/sidebar/SidebarProvider.astro +23 -0
- package/src/sidebar/SidebarRail.astro +25 -0
- package/src/sidebar/SidebarSeparator.astro +21 -0
- package/src/sidebar/SidebarTrigger.astro +40 -0
- package/src/sidebar/index.ts +19 -0
- package/src/sidebar/sidebar.ts +265 -0
- package/src/skeleton/Skeleton.astro +16 -0
- package/src/skeleton/index.ts +1 -0
- package/src/skip-link/SkipLink.astro +24 -0
- package/src/slider/Slider.astro +61 -0
- package/src/slider/index.ts +1 -0
- package/src/slider/slider.ts +111 -0
- package/src/spinner/Spinner.astro +54 -0
- package/src/spinner/index.ts +1 -0
- package/src/steps/Step.astro +16 -0
- package/src/steps/Steps.astro +122 -0
- package/src/steps/SubSteps.astro +73 -0
- package/src/switch/Switch.astro +52 -0
- package/src/switch/index.ts +1 -0
- package/src/switch/switch.ts +109 -0
- package/src/table/Table.astro +24 -0
- package/src/table/TableBody.astro +18 -0
- package/src/table/TableCaption.astro +18 -0
- package/src/table/TableCell.astro +18 -0
- package/src/table/TableFooter.astro +18 -0
- package/src/table/TableHead.astro +18 -0
- package/src/table/TableHeader.astro +18 -0
- package/src/table/TableRow.astro +18 -0
- package/src/table/index.ts +8 -0
- package/src/tabs/Tabs.astro +37 -0
- package/src/tabs/TabsContent.astro +32 -0
- package/src/tabs/TabsList.astro +23 -0
- package/src/tabs/TabsTrigger.astro +29 -0
- package/src/tabs/index.ts +4 -0
- package/src/tabs/tabs.ts +220 -0
- package/src/textarea/Textarea.astro +25 -0
- package/src/textarea/index.ts +1 -0
- package/src/theme-toggle/ThemeToggle.astro +67 -0
- package/src/theme-toggle/index.ts +1 -0
- package/src/toast/Toaster.astro +39 -0
- package/src/toast/index.ts +3 -0
- package/src/toast/toast.ts +104 -0
- package/src/toc/TableOfContents.astro +225 -0
- package/src/toggle/Toggle.astro +56 -0
- package/src/toggle/index.ts +1 -0
- package/src/toggle/toggle.ts +38 -0
- package/src/toggle-group/ToggleGroup.astro +39 -0
- package/src/toggle-group/ToggleGroupItem.astro +56 -0
- package/src/toggle-group/index.ts +2 -0
- package/src/toggle-group/toggle-group.ts +121 -0
- package/src/toolbar/Toolbar.astro +26 -0
- package/src/toolbar/ToolbarButton.astro +29 -0
- package/src/toolbar/ToolbarSeparator.astro +14 -0
- package/src/toolbar/index.ts +3 -0
- package/src/toolbar/toolbar.ts +65 -0
- package/src/tooltip/Tooltip.astro +21 -0
- package/src/tooltip/TooltipContent.astro +25 -0
- package/src/tooltip/TooltipTrigger.astro +31 -0
- package/src/tooltip/index.ts +3 -0
- package/src/tooltip/tooltip.ts +156 -0
- package/src/youtube/YouTube.astro +119 -0
- package/src/youtube/index.ts +1 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Tabs from "../tabs/Tabs.astro";
|
|
3
|
+
import TabsList from "../tabs/TabsList.astro";
|
|
4
|
+
import TabsTrigger from "../tabs/TabsTrigger.astro";
|
|
5
|
+
import TabsContent from "../tabs/TabsContent.astro";
|
|
6
|
+
import CodeBlock from "../code-block/CodeBlock.astro";
|
|
7
|
+
|
|
8
|
+
interface CodeSample {
|
|
9
|
+
language: string;
|
|
10
|
+
label?: string;
|
|
11
|
+
code: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface Props {
|
|
15
|
+
samples: CodeSample[];
|
|
16
|
+
class?: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const { samples, class: className } = Astro.props;
|
|
20
|
+
|
|
21
|
+
const languageLabels: Record<string, string> = {
|
|
22
|
+
curl: "cURL",
|
|
23
|
+
python: "Python",
|
|
24
|
+
typescript: "TypeScript",
|
|
25
|
+
javascript: "JavaScript",
|
|
26
|
+
go: "Go",
|
|
27
|
+
ruby: "Ruby",
|
|
28
|
+
java: "Java",
|
|
29
|
+
csharp: "C#",
|
|
30
|
+
php: "PHP",
|
|
31
|
+
rust: "Rust",
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
// Map our language names to Shiki language IDs
|
|
35
|
+
const shikiLangMap: Record<string, string> = {
|
|
36
|
+
curl: "bash",
|
|
37
|
+
csharp: "csharp",
|
|
38
|
+
};
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
<Tabs defaultValue={samples[0]?.language} class={className}>
|
|
42
|
+
<TabsList>
|
|
43
|
+
{samples.map((s) => (
|
|
44
|
+
<TabsTrigger value={s.language}>
|
|
45
|
+
{s.label || languageLabels[s.language] || s.language}
|
|
46
|
+
</TabsTrigger>
|
|
47
|
+
))}
|
|
48
|
+
</TabsList>
|
|
49
|
+
|
|
50
|
+
{samples.map((s, i) => (
|
|
51
|
+
<TabsContent value={s.language} default={i === 0}>
|
|
52
|
+
<CodeBlock
|
|
53
|
+
code={s.code}
|
|
54
|
+
lang={shikiLangMap[s.language] || s.language}
|
|
55
|
+
copy={true}
|
|
56
|
+
/>
|
|
57
|
+
</TabsContent>
|
|
58
|
+
))}
|
|
59
|
+
</Tabs>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const collapsible = tv({
|
|
5
|
+
base: "w-full",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
defaultOpen?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
class?: string;
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const {
|
|
16
|
+
defaultOpen = false,
|
|
17
|
+
disabled = false,
|
|
18
|
+
class: className,
|
|
19
|
+
...rest
|
|
20
|
+
} = Astro.props;
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
<db-collapsible
|
|
24
|
+
class={collapsible({ class: className })}
|
|
25
|
+
default-open={defaultOpen || undefined}
|
|
26
|
+
disabled={disabled || undefined}
|
|
27
|
+
data-state={defaultOpen ? "open" : "closed"}
|
|
28
|
+
{...rest}
|
|
29
|
+
>
|
|
30
|
+
<slot />
|
|
31
|
+
</db-collapsible>
|
|
32
|
+
|
|
33
|
+
<script>
|
|
34
|
+
import "@dogsbay/elements/db-collapsible";
|
|
35
|
+
</script>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const collapsibleContent = tv({
|
|
5
|
+
base: "overflow-hidden text-sm transition-all data-[state=closed]:animate-collapse-up data-[state=open]:animate-collapse-down",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<div
|
|
17
|
+
class={collapsibleContent({ class: className })}
|
|
18
|
+
data-part="content"
|
|
19
|
+
role="region"
|
|
20
|
+
hidden
|
|
21
|
+
{...rest}
|
|
22
|
+
>
|
|
23
|
+
<slot />
|
|
24
|
+
</div>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const collapsibleTrigger = tv({
|
|
5
|
+
base: "flex items-center justify-between gap-2 font-medium transition-colors hover:text-foreground/80 disabled:pointer-events-none disabled:opacity-50 [&[aria-expanded=true]>svg]:rotate-180",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<button
|
|
17
|
+
class={collapsibleTrigger({ class: className })}
|
|
18
|
+
data-part="trigger"
|
|
19
|
+
type="button"
|
|
20
|
+
{...rest}
|
|
21
|
+
>
|
|
22
|
+
<slot />
|
|
23
|
+
</button>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Collapsible } from "@dogsbay/primitives/collapsible";
|
|
2
|
+
|
|
3
|
+
function init(root: HTMLElement) {
|
|
4
|
+
if (root.hasAttribute("data-initialized")) return;
|
|
5
|
+
root.setAttribute("data-initialized", "");
|
|
6
|
+
|
|
7
|
+
const trigger = root.querySelector<HTMLElement>("[data-part='trigger']");
|
|
8
|
+
const content = root.querySelector<HTMLElement>("[data-part='content']");
|
|
9
|
+
if (!trigger || !content) return;
|
|
10
|
+
|
|
11
|
+
const disabled = root.hasAttribute("data-disabled");
|
|
12
|
+
if (disabled) {
|
|
13
|
+
trigger.setAttribute("disabled", "");
|
|
14
|
+
trigger.setAttribute("aria-disabled", "true");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const collapsible = new Collapsible(trigger, content, {
|
|
18
|
+
onToggle(open) {
|
|
19
|
+
root.setAttribute("data-state", open ? "open" : "closed");
|
|
20
|
+
content.setAttribute("data-state", open ? "open" : "closed");
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
// Open by default if specified
|
|
25
|
+
if (root.hasAttribute("data-default-open")) {
|
|
26
|
+
collapsible.expand();
|
|
27
|
+
content.setAttribute("data-state", "open");
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function initAll() {
|
|
32
|
+
document
|
|
33
|
+
.querySelectorAll<HTMLElement>("[data-component='collapsible']")
|
|
34
|
+
.forEach(init);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (document.readyState === "loading") {
|
|
38
|
+
document.addEventListener("DOMContentLoaded", initAll);
|
|
39
|
+
} else {
|
|
40
|
+
initAll();
|
|
41
|
+
}
|
|
42
|
+
document.addEventListener("astro:page-load", initAll);
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const combobox = tv({
|
|
5
|
+
base: "relative w-full",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
name?: string;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
class?: string;
|
|
13
|
+
[key: string]: unknown;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const {
|
|
17
|
+
name,
|
|
18
|
+
placeholder = "Search...",
|
|
19
|
+
disabled = false,
|
|
20
|
+
class: className,
|
|
21
|
+
...rest
|
|
22
|
+
} = Astro.props;
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
<div
|
|
26
|
+
class={combobox({ class: className })}
|
|
27
|
+
data-component="combobox"
|
|
28
|
+
data-name={name}
|
|
29
|
+
data-disabled={disabled || undefined}
|
|
30
|
+
{...rest}
|
|
31
|
+
>
|
|
32
|
+
<input
|
|
33
|
+
class="flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50"
|
|
34
|
+
data-part="input"
|
|
35
|
+
type="text"
|
|
36
|
+
role="combobox"
|
|
37
|
+
aria-expanded="false"
|
|
38
|
+
aria-autocomplete="list"
|
|
39
|
+
aria-haspopup="listbox"
|
|
40
|
+
autocomplete="off"
|
|
41
|
+
placeholder={placeholder}
|
|
42
|
+
name={name}
|
|
43
|
+
disabled={disabled || undefined}
|
|
44
|
+
/>
|
|
45
|
+
<div
|
|
46
|
+
class="absolute z-50 mt-1 max-h-60 w-full overflow-auto rounded-md border bg-popover p-1 text-popover-foreground shadow-md"
|
|
47
|
+
data-part="listbox"
|
|
48
|
+
role="listbox"
|
|
49
|
+
hidden
|
|
50
|
+
>
|
|
51
|
+
<slot />
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const comboboxEmpty = tv({
|
|
5
|
+
base: "py-6 text-center text-sm text-muted-foreground",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<div class={comboboxEmpty({ class: className })} data-part="empty" hidden {...rest}>
|
|
17
|
+
<slot />
|
|
18
|
+
</div>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const comboboxItem = tv({
|
|
5
|
+
base: "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
value: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
class?: string;
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const { value, disabled = false, class: className, ...rest } = Astro.props;
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
<div
|
|
19
|
+
class={comboboxItem({ class: className })}
|
|
20
|
+
data-part="option"
|
|
21
|
+
data-value={value}
|
|
22
|
+
role="option"
|
|
23
|
+
aria-selected="false"
|
|
24
|
+
data-disabled={disabled ? "true" : undefined}
|
|
25
|
+
{...rest}
|
|
26
|
+
>
|
|
27
|
+
<slot />
|
|
28
|
+
</div>
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
function init(root: HTMLElement) {
|
|
2
|
+
if (root.hasAttribute("data-initialized")) return;
|
|
3
|
+
root.setAttribute("data-initialized", "");
|
|
4
|
+
|
|
5
|
+
const input = root.querySelector<HTMLInputElement>("[data-part='input']");
|
|
6
|
+
const listbox = root.querySelector<HTMLElement>("[data-part='listbox']");
|
|
7
|
+
const emptyEl = root.querySelector<HTMLElement>("[data-part='empty']");
|
|
8
|
+
if (!input || !listbox) return;
|
|
9
|
+
|
|
10
|
+
const allOptions = Array.from(listbox.querySelectorAll<HTMLElement>("[data-part='option']"));
|
|
11
|
+
let highlightedIndex = -1;
|
|
12
|
+
let isOpen = false;
|
|
13
|
+
|
|
14
|
+
function getVisible(): HTMLElement[] {
|
|
15
|
+
return allOptions.filter((o) => !o.hidden && o.getAttribute("data-disabled") !== "true");
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function open() {
|
|
19
|
+
if (isOpen) return;
|
|
20
|
+
isOpen = true;
|
|
21
|
+
listbox.hidden = false;
|
|
22
|
+
input.setAttribute("aria-expanded", "true");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function close() {
|
|
26
|
+
if (!isOpen) return;
|
|
27
|
+
isOpen = false;
|
|
28
|
+
listbox.hidden = true;
|
|
29
|
+
input.setAttribute("aria-expanded", "false");
|
|
30
|
+
clearHighlight();
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function filter(query: string) {
|
|
34
|
+
const q = query.toLowerCase();
|
|
35
|
+
let visibleCount = 0;
|
|
36
|
+
|
|
37
|
+
allOptions.forEach((option) => {
|
|
38
|
+
const text = option.textContent?.toLowerCase() || "";
|
|
39
|
+
const value = (option.getAttribute("data-value") || "").toLowerCase();
|
|
40
|
+
const matches = !q || text.includes(q) || value.includes(q);
|
|
41
|
+
option.hidden = !matches;
|
|
42
|
+
if (matches) visibleCount++;
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
// Show/hide empty state
|
|
46
|
+
if (emptyEl) {
|
|
47
|
+
emptyEl.hidden = visibleCount > 0 || !q;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
if (visibleCount > 0) {
|
|
51
|
+
open();
|
|
52
|
+
highlightItem(0);
|
|
53
|
+
} else if (q && emptyEl) {
|
|
54
|
+
open();
|
|
55
|
+
clearHighlight();
|
|
56
|
+
} else {
|
|
57
|
+
close();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function highlightItem(index: number) {
|
|
62
|
+
const visible = getVisible();
|
|
63
|
+
if (index < 0 || index >= visible.length) return;
|
|
64
|
+
|
|
65
|
+
clearHighlight();
|
|
66
|
+
highlightedIndex = allOptions.indexOf(visible[index]);
|
|
67
|
+
const item = allOptions[highlightedIndex];
|
|
68
|
+
item.setAttribute("data-highlighted", "");
|
|
69
|
+
item.scrollIntoView({ block: "nearest" });
|
|
70
|
+
input.setAttribute("aria-activedescendant", item.id || "");
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function clearHighlight() {
|
|
74
|
+
if (highlightedIndex >= 0) {
|
|
75
|
+
allOptions[highlightedIndex].removeAttribute("data-highlighted");
|
|
76
|
+
}
|
|
77
|
+
highlightedIndex = -1;
|
|
78
|
+
input.removeAttribute("aria-activedescendant");
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function selectItem(item: HTMLElement) {
|
|
82
|
+
const value = item.getAttribute("data-value") || "";
|
|
83
|
+
const text = item.textContent?.trim() || value;
|
|
84
|
+
input.value = text;
|
|
85
|
+
|
|
86
|
+
// Deselect all, select this
|
|
87
|
+
allOptions.forEach((o) => o.setAttribute("aria-selected", "false"));
|
|
88
|
+
item.setAttribute("aria-selected", "true");
|
|
89
|
+
|
|
90
|
+
close();
|
|
91
|
+
root.dispatchEvent(new CustomEvent("change", { detail: { value, text }, bubbles: true }));
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Input events
|
|
95
|
+
input.addEventListener("input", () => {
|
|
96
|
+
filter(input.value);
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
input.addEventListener("focus", () => {
|
|
100
|
+
if (input.value) {
|
|
101
|
+
filter(input.value);
|
|
102
|
+
} else {
|
|
103
|
+
open();
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
input.addEventListener("keydown", (e) => {
|
|
108
|
+
const visible = getVisible();
|
|
109
|
+
|
|
110
|
+
switch (e.key) {
|
|
111
|
+
case "ArrowDown": {
|
|
112
|
+
e.preventDefault();
|
|
113
|
+
if (!isOpen) { open(); highlightItem(0); return; }
|
|
114
|
+
const curIdx = highlightedIndex >= 0 ? visible.indexOf(allOptions[highlightedIndex]) : -1;
|
|
115
|
+
highlightItem(Math.min(curIdx + 1, visible.length - 1));
|
|
116
|
+
break;
|
|
117
|
+
}
|
|
118
|
+
case "ArrowUp": {
|
|
119
|
+
e.preventDefault();
|
|
120
|
+
if (!isOpen) return;
|
|
121
|
+
const curIdx2 = highlightedIndex >= 0 ? visible.indexOf(allOptions[highlightedIndex]) : visible.length;
|
|
122
|
+
highlightItem(Math.max(curIdx2 - 1, 0));
|
|
123
|
+
break;
|
|
124
|
+
}
|
|
125
|
+
case "Enter":
|
|
126
|
+
e.preventDefault();
|
|
127
|
+
if (highlightedIndex >= 0) {
|
|
128
|
+
selectItem(allOptions[highlightedIndex]);
|
|
129
|
+
}
|
|
130
|
+
break;
|
|
131
|
+
case "Escape":
|
|
132
|
+
e.preventDefault();
|
|
133
|
+
close();
|
|
134
|
+
break;
|
|
135
|
+
case "Home":
|
|
136
|
+
if (isOpen) { e.preventDefault(); highlightItem(0); }
|
|
137
|
+
break;
|
|
138
|
+
case "End":
|
|
139
|
+
if (isOpen) { e.preventDefault(); highlightItem(visible.length - 1); }
|
|
140
|
+
break;
|
|
141
|
+
}
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
// Option click
|
|
145
|
+
allOptions.forEach((option) => {
|
|
146
|
+
option.addEventListener("click", () => {
|
|
147
|
+
if (option.getAttribute("data-disabled") === "true") return;
|
|
148
|
+
selectItem(option);
|
|
149
|
+
});
|
|
150
|
+
option.addEventListener("pointerenter", () => {
|
|
151
|
+
if (option.getAttribute("data-disabled") === "true") return;
|
|
152
|
+
const visible = getVisible();
|
|
153
|
+
highlightItem(visible.indexOf(option));
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
// Close on click outside
|
|
158
|
+
document.addEventListener("pointerdown", (e) => {
|
|
159
|
+
if (!root.contains(e.target as Node)) close();
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
// Generate IDs for options
|
|
163
|
+
allOptions.forEach((o, i) => {
|
|
164
|
+
if (!o.id) o.id = `${input.id || "combobox"}-option-${i}`;
|
|
165
|
+
});
|
|
166
|
+
if (listbox.id === "") listbox.id = `${input.id || "combobox"}-listbox`;
|
|
167
|
+
input.setAttribute("aria-controls", listbox.id);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
function initAll() {
|
|
171
|
+
document.querySelectorAll<HTMLElement>("[data-component='combobox']").forEach(init);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
if (document.readyState === "loading") {
|
|
175
|
+
document.addEventListener("DOMContentLoaded", initAll);
|
|
176
|
+
} else {
|
|
177
|
+
initAll();
|
|
178
|
+
}
|
|
179
|
+
document.addEventListener("astro:page-load", initAll);
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const command = tv({
|
|
5
|
+
base: "flex size-full flex-col overflow-hidden rounded-xl bg-popover p-1 text-popover-foreground",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<div
|
|
17
|
+
class={command({ class: className })}
|
|
18
|
+
data-component="command"
|
|
19
|
+
{...rest}
|
|
20
|
+
>
|
|
21
|
+
<slot />
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandEmpty = tv({
|
|
5
|
+
base: "py-6 text-center text-sm text-muted-foreground",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<div class={commandEmpty({ class: className })} data-part="empty" hidden {...rest}>
|
|
17
|
+
<slot>No results found.</slot>
|
|
18
|
+
</div>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandGroup = tv({
|
|
5
|
+
base: "overflow-hidden p-1 text-foreground",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
const commandGroupHeading = tv({
|
|
9
|
+
base: "px-2 py-1.5 text-xs font-medium text-muted-foreground",
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
interface Props {
|
|
13
|
+
heading?: string;
|
|
14
|
+
class?: string;
|
|
15
|
+
[key: string]: unknown;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const { heading, class: className, ...rest } = Astro.props;
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<div class={commandGroup({ class: className })} data-part="group" role="group" {...rest}>
|
|
22
|
+
{heading && <div class={commandGroupHeading()}>{heading}</div>}
|
|
23
|
+
<slot />
|
|
24
|
+
</div>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandInputWrapper = tv({
|
|
5
|
+
base: "flex items-center gap-2 border-b px-3",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
const commandInput = tv({
|
|
9
|
+
base: "flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
interface Props {
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
class?: string;
|
|
15
|
+
[key: string]: unknown;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const { placeholder = "Type a command or search...", class: className, ...rest } = Astro.props;
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<div class={commandInputWrapper()}>
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
width="16"
|
|
25
|
+
height="16"
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
stroke="currentColor"
|
|
29
|
+
stroke-width="2"
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
class="size-4 shrink-0 text-muted-foreground"
|
|
33
|
+
aria-hidden="true"
|
|
34
|
+
>
|
|
35
|
+
<circle cx="11" cy="11" r="8"></circle>
|
|
36
|
+
<path d="m21 21-4.3-4.3"></path>
|
|
37
|
+
</svg>
|
|
38
|
+
<input
|
|
39
|
+
class={commandInput({ class: className })}
|
|
40
|
+
data-part="input"
|
|
41
|
+
type="text"
|
|
42
|
+
aria-label={placeholder}
|
|
43
|
+
placeholder={placeholder}
|
|
44
|
+
autocomplete="off"
|
|
45
|
+
autocorrect="off"
|
|
46
|
+
spellcheck="false"
|
|
47
|
+
{...rest}
|
|
48
|
+
/>
|
|
49
|
+
</div>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandItem = tv({
|
|
5
|
+
base: "relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-70 data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground [&_svg]:size-4 [&_svg]:shrink-0",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
keywords?: string;
|
|
11
|
+
class?: string;
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const { disabled = false, keywords, class: className, ...rest } = Astro.props;
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
<div
|
|
19
|
+
class={commandItem({ class: className })}
|
|
20
|
+
data-part="item"
|
|
21
|
+
data-disabled={disabled ? "true" : undefined}
|
|
22
|
+
data-keywords={keywords}
|
|
23
|
+
{...rest}
|
|
24
|
+
>
|
|
25
|
+
<slot />
|
|
26
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandList = tv({
|
|
5
|
+
base: "max-h-72 overflow-x-hidden overflow-y-auto p-1 [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
"aria-label"?: string;
|
|
10
|
+
class?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const { "aria-label": ariaLabel = "Command results", class: className, ...rest } = Astro.props;
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
<div class={commandList({ class: className })} data-part="list" {...rest}>
|
|
18
|
+
<slot />
|
|
19
|
+
</div>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandSeparator = tv({
|
|
5
|
+
base: "-mx-1 h-px bg-border",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<div class={commandSeparator({ class: className })} role="separator" {...rest}></div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
const commandShortcut = tv({
|
|
5
|
+
base: "ml-auto text-xs tracking-widest text-muted-foreground",
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
interface Props {
|
|
9
|
+
class?: string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const { class: className, ...rest } = Astro.props;
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
<span class={commandShortcut({ class: className })} {...rest}>
|
|
17
|
+
<slot />
|
|
18
|
+
</span>
|