@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.
Files changed (322) hide show
  1. package/package.json +38 -0
  2. package/src/accordion/Accordion.astro +38 -0
  3. package/src/accordion/AccordionContent.astro +25 -0
  4. package/src/accordion/AccordionItem.astro +26 -0
  5. package/src/accordion/AccordionTrigger.astro +38 -0
  6. package/src/accordion/accordion.ts +189 -0
  7. package/src/accordion/index.ts +4 -0
  8. package/src/alert/Alert.astro +69 -0
  9. package/src/alert/AlertDescription.astro +17 -0
  10. package/src/alert/AlertTitle.astro +21 -0
  11. package/src/alert/CollapsibleAlert.astro +103 -0
  12. package/src/alert/icon.ts +32 -0
  13. package/src/alert/index.ts +4 -0
  14. package/src/alert/variants.ts +29 -0
  15. package/src/alert-dialog/AlertDialog.astro +16 -0
  16. package/src/alert-dialog/AlertDialogAction.astro +23 -0
  17. package/src/alert-dialog/AlertDialogCancel.astro +23 -0
  18. package/src/alert-dialog/AlertDialogContent.astro +37 -0
  19. package/src/alert-dialog/AlertDialogDescription.astro +18 -0
  20. package/src/alert-dialog/AlertDialogFooter.astro +18 -0
  21. package/src/alert-dialog/AlertDialogHeader.astro +18 -0
  22. package/src/alert-dialog/AlertDialogTitle.astro +18 -0
  23. package/src/alert-dialog/AlertDialogTrigger.astro +24 -0
  24. package/src/alert-dialog/alert-dialog.ts +154 -0
  25. package/src/alert-dialog/index.ts +9 -0
  26. package/src/api-doc/ApiDoc.astro +52 -0
  27. package/src/api-doc/index.ts +1 -0
  28. package/src/api-layout/ApiCodePanel.astro +21 -0
  29. package/src/api-layout/ApiLayout.astro +29 -0
  30. package/src/api-layout/ExampleBlock.astro +63 -0
  31. package/src/api-params/ApiParams.astro +96 -0
  32. package/src/api-params/index.ts +1 -0
  33. package/src/api-source/ApiSource.astro +20 -0
  34. package/src/api-source/api-source.css +32 -0
  35. package/src/api-source/index.ts +1 -0
  36. package/src/api-symbol/ApiSymbol.astro +48 -0
  37. package/src/api-symbol/api-symbol.css +89 -0
  38. package/src/api-symbol/index.ts +1 -0
  39. package/src/api-url-bar/ApiUrlBar.astro +63 -0
  40. package/src/avatar/Avatar.astro +57 -0
  41. package/src/avatar/index.ts +1 -0
  42. package/src/badge/Badge.astro +37 -0
  43. package/src/badge/index.ts +1 -0
  44. package/src/breadcrumb/Breadcrumb.astro +32 -0
  45. package/src/breadcrumb/BreadcrumbEllipsis.astro +32 -0
  46. package/src/breadcrumb/BreadcrumbItem.astro +41 -0
  47. package/src/breadcrumb/BreadcrumbSeparator.astro +33 -0
  48. package/src/breadcrumb/index.ts +4 -0
  49. package/src/button/Button.astro +70 -0
  50. package/src/button/index.ts +1 -0
  51. package/src/card/Card.astro +17 -0
  52. package/src/card/CardContent.astro +17 -0
  53. package/src/card/CardDescription.astro +17 -0
  54. package/src/card/CardFooter.astro +17 -0
  55. package/src/card/CardHeader.astro +17 -0
  56. package/src/card/CardTitle.astro +17 -0
  57. package/src/card/index.ts +6 -0
  58. package/src/checkbox/Checkbox.astro +70 -0
  59. package/src/checkbox/index.ts +1 -0
  60. package/src/checkbox-group/CheckboxGroup.astro +38 -0
  61. package/src/checkbox-group/checkbox-group.ts +53 -0
  62. package/src/checkbox-group/index.ts +1 -0
  63. package/src/code-block/CodeBlock.astro +160 -0
  64. package/src/code-rich/CodeRich.astro +267 -0
  65. package/src/code-rich/code-rich.css +68 -0
  66. package/src/code-rich/index.ts +1 -0
  67. package/src/code-samples/CodeSamples.astro +59 -0
  68. package/src/collapsible/Collapsible.astro +35 -0
  69. package/src/collapsible/CollapsibleContent.astro +24 -0
  70. package/src/collapsible/CollapsibleTrigger.astro +23 -0
  71. package/src/collapsible/collapsible.ts +42 -0
  72. package/src/collapsible/index.ts +3 -0
  73. package/src/combobox/Combobox.astro +53 -0
  74. package/src/combobox/ComboboxEmpty.astro +18 -0
  75. package/src/combobox/ComboboxItem.astro +28 -0
  76. package/src/combobox/combobox.ts +179 -0
  77. package/src/combobox/index.ts +3 -0
  78. package/src/command/Command.astro +22 -0
  79. package/src/command/CommandEmpty.astro +18 -0
  80. package/src/command/CommandGroup.astro +24 -0
  81. package/src/command/CommandInput.astro +49 -0
  82. package/src/command/CommandItem.astro +26 -0
  83. package/src/command/CommandList.astro +19 -0
  84. package/src/command/CommandSeparator.astro +16 -0
  85. package/src/command/CommandShortcut.astro +18 -0
  86. package/src/command/command.ts +212 -0
  87. package/src/command/index.ts +8 -0
  88. package/src/content-renderer/ContentRenderer.astro +410 -0
  89. package/src/content-renderer/InlineRenderer.astro +149 -0
  90. package/src/context-menu/ContextMenu.astro +22 -0
  91. package/src/context-menu/ContextMenuContent.astro +24 -0
  92. package/src/context-menu/ContextMenuItem.astro +49 -0
  93. package/src/context-menu/ContextMenuSeparator.astro +14 -0
  94. package/src/context-menu/ContextMenuShortcut.astro +14 -0
  95. package/src/context-menu/ContextMenuTrigger.astro +22 -0
  96. package/src/context-menu/context-menu.ts +238 -0
  97. package/src/context-menu/index.ts +6 -0
  98. package/src/copy-button/CopyButton.astro +88 -0
  99. package/src/copy-button/index.ts +1 -0
  100. package/src/diagram/Diagram.astro +15 -0
  101. package/src/diagram/index.ts +1 -0
  102. package/src/dialog/Dialog.astro +22 -0
  103. package/src/dialog/DialogClose.astro +32 -0
  104. package/src/dialog/DialogContent.astro +37 -0
  105. package/src/dialog/DialogDescription.astro +22 -0
  106. package/src/dialog/DialogFooter.astro +18 -0
  107. package/src/dialog/DialogHeader.astro +18 -0
  108. package/src/dialog/DialogTitle.astro +18 -0
  109. package/src/dialog/DialogTrigger.astro +33 -0
  110. package/src/dialog/dialog.ts +291 -0
  111. package/src/dialog/index.ts +8 -0
  112. package/src/docs-footer/DocsFooter.astro +50 -0
  113. package/src/docs-header/DocsHeader.astro +32 -0
  114. package/src/docs-layout/DocsLayout.astro +187 -0
  115. package/src/docs-layout/index.ts +1 -0
  116. package/src/drawer/Drawer.astro +12 -0
  117. package/src/drawer/DrawerClose.astro +12 -0
  118. package/src/drawer/DrawerContent.astro +46 -0
  119. package/src/drawer/DrawerDescription.astro +10 -0
  120. package/src/drawer/DrawerFooter.astro +10 -0
  121. package/src/drawer/DrawerHandle.astro +16 -0
  122. package/src/drawer/DrawerHeader.astro +10 -0
  123. package/src/drawer/DrawerTitle.astro +10 -0
  124. package/src/drawer/DrawerTrigger.astro +25 -0
  125. package/src/drawer/drawer.ts +262 -0
  126. package/src/drawer/index.ts +9 -0
  127. package/src/dropdown-menu/DropdownMenu.astro +22 -0
  128. package/src/dropdown-menu/DropdownMenuContent.astro +33 -0
  129. package/src/dropdown-menu/DropdownMenuGroup.astro +17 -0
  130. package/src/dropdown-menu/DropdownMenuItem.astro +48 -0
  131. package/src/dropdown-menu/DropdownMenuLabel.astro +28 -0
  132. package/src/dropdown-menu/DropdownMenuSeparator.astro +21 -0
  133. package/src/dropdown-menu/DropdownMenuShortcut.astro +18 -0
  134. package/src/dropdown-menu/DropdownMenuTrigger.astro +34 -0
  135. package/src/dropdown-menu/dropdown-menu.ts +348 -0
  136. package/src/dropdown-menu/index.ts +8 -0
  137. package/src/endpoint-card/EndpointCard.astro +60 -0
  138. package/src/endpoint-card/EndpointCardSection.astro +22 -0
  139. package/src/endpoint-card/EndpointSection.astro +35 -0
  140. package/src/field/Field.astro +31 -0
  141. package/src/field/FieldDescription.astro +22 -0
  142. package/src/field/FieldLabel.astro +24 -0
  143. package/src/field/field.ts +61 -0
  144. package/src/field/index.ts +3 -0
  145. package/src/fieldset/Fieldset.astro +24 -0
  146. package/src/fieldset/FieldsetLegend.astro +18 -0
  147. package/src/fieldset/index.ts +2 -0
  148. package/src/footnote/Footnote.astro +37 -0
  149. package/src/footnote/footnote.ts +79 -0
  150. package/src/footnote/index.ts +1 -0
  151. package/src/form/Form.astro +27 -0
  152. package/src/form/form.ts +160 -0
  153. package/src/form/index.ts +1 -0
  154. package/src/grid/Grid.astro +117 -0
  155. package/src/grid/GridItem.astro +95 -0
  156. package/src/grid/index.ts +2 -0
  157. package/src/image/Image.astro +115 -0
  158. package/src/image/index.ts +1 -0
  159. package/src/input/Input.astro +34 -0
  160. package/src/input/index.ts +1 -0
  161. package/src/kbd/Kbd.astro +17 -0
  162. package/src/kbd/index.ts +1 -0
  163. package/src/label/Label.astro +17 -0
  164. package/src/label/index.ts +1 -0
  165. package/src/link-card/LinkCard.astro +47 -0
  166. package/src/link-card/index.ts +1 -0
  167. package/src/map-view/MapView.astro +88 -0
  168. package/src/map-view/index.ts +1 -0
  169. package/src/map-view/map-view.ts +194 -0
  170. package/src/markdown-example/MarkdownExample.astro +138 -0
  171. package/src/markdown-example/index.ts +1 -0
  172. package/src/math/MathKatex.astro +35 -0
  173. package/src/math/index.ts +1 -0
  174. package/src/menubar/Menubar.astro +25 -0
  175. package/src/menubar/MenubarContent.astro +24 -0
  176. package/src/menubar/MenubarItem.astro +26 -0
  177. package/src/menubar/MenubarMenu.astro +12 -0
  178. package/src/menubar/MenubarSeparator.astro +11 -0
  179. package/src/menubar/MenubarShortcut.astro +11 -0
  180. package/src/menubar/MenubarTrigger.astro +27 -0
  181. package/src/menubar/index.ts +7 -0
  182. package/src/menubar/menubar.ts +258 -0
  183. package/src/meter/Meter.astro +75 -0
  184. package/src/meter/index.ts +1 -0
  185. package/src/method-badge/MethodBadge.astro +32 -0
  186. package/src/navigation-menu/NavigationMenu.astro +24 -0
  187. package/src/navigation-menu/NavigationMenuContent.astro +24 -0
  188. package/src/navigation-menu/NavigationMenuItem.astro +22 -0
  189. package/src/navigation-menu/NavigationMenuLink.astro +26 -0
  190. package/src/navigation-menu/NavigationMenuList.astro +22 -0
  191. package/src/navigation-menu/NavigationMenuTrigger.astro +40 -0
  192. package/src/navigation-menu/index.ts +6 -0
  193. package/src/navigation-menu/navigation-menu.ts +192 -0
  194. package/src/number-field/NumberField.astro +84 -0
  195. package/src/number-field/index.ts +1 -0
  196. package/src/number-field/number-field.ts +68 -0
  197. package/src/pagination/Pagination.astro +59 -0
  198. package/src/pagination/index.ts +1 -0
  199. package/src/parameter-table/ParameterTable.astro +75 -0
  200. package/src/popover/Popover.astro +21 -0
  201. package/src/popover/PopoverContent.astro +31 -0
  202. package/src/popover/PopoverTrigger.astro +31 -0
  203. package/src/popover/index.ts +3 -0
  204. package/src/popover/popover.ts +144 -0
  205. package/src/preview-card/PreviewCard.astro +24 -0
  206. package/src/preview-card/PreviewCardContent.astro +24 -0
  207. package/src/preview-card/PreviewCardTrigger.astro +23 -0
  208. package/src/preview-card/index.ts +3 -0
  209. package/src/preview-card/preview-card.ts +91 -0
  210. package/src/progress/Progress.astro +61 -0
  211. package/src/progress/index.ts +1 -0
  212. package/src/property-item/PropertyItem.astro +183 -0
  213. package/src/property-list/PropertyList.astro +68 -0
  214. package/src/radio-group/RadioGroup.astro +41 -0
  215. package/src/radio-group/RadioGroupItem.astro +36 -0
  216. package/src/radio-group/index.ts +2 -0
  217. package/src/radio-group/radio-group.ts +126 -0
  218. package/src/response-tabs/ResponseTabs.astro +60 -0
  219. package/src/schema-viewer/SchemaViewer.astro +42 -0
  220. package/src/scroll-area/ScrollArea.astro +44 -0
  221. package/src/scroll-area/index.ts +1 -0
  222. package/src/scroll-area/scroll-area.ts +176 -0
  223. package/src/select/Select.astro +34 -0
  224. package/src/select/SelectContent.astro +24 -0
  225. package/src/select/SelectGroup.astro +23 -0
  226. package/src/select/SelectItem.astro +28 -0
  227. package/src/select/SelectLabel.astro +18 -0
  228. package/src/select/SelectSeparator.astro +22 -0
  229. package/src/select/SelectTrigger.astro +28 -0
  230. package/src/select/SelectValue.astro +18 -0
  231. package/src/select/index.ts +8 -0
  232. package/src/select/select.ts +381 -0
  233. package/src/separator/Separator.astro +35 -0
  234. package/src/separator/index.ts +1 -0
  235. package/src/sheet/Sheet.astro +12 -0
  236. package/src/sheet/SheetClose.astro +35 -0
  237. package/src/sheet/SheetContent.astro +52 -0
  238. package/src/sheet/SheetDescription.astro +18 -0
  239. package/src/sheet/SheetFooter.astro +18 -0
  240. package/src/sheet/SheetHeader.astro +18 -0
  241. package/src/sheet/SheetTitle.astro +18 -0
  242. package/src/sheet/SheetTrigger.astro +32 -0
  243. package/src/sheet/index.ts +8 -0
  244. package/src/sheet/sheet.ts +173 -0
  245. package/src/sidebar/Sidebar.astro +113 -0
  246. package/src/sidebar/SidebarContent.astro +18 -0
  247. package/src/sidebar/SidebarFooter.astro +18 -0
  248. package/src/sidebar/SidebarGroup.astro +18 -0
  249. package/src/sidebar/SidebarGroupContent.astro +18 -0
  250. package/src/sidebar/SidebarGroupLabel.astro +18 -0
  251. package/src/sidebar/SidebarHeader.astro +18 -0
  252. package/src/sidebar/SidebarInset.astro +18 -0
  253. package/src/sidebar/SidebarMenu.astro +18 -0
  254. package/src/sidebar/SidebarMenuBadge.astro +18 -0
  255. package/src/sidebar/SidebarMenuButton.astro +71 -0
  256. package/src/sidebar/SidebarMenuItem.astro +18 -0
  257. package/src/sidebar/SidebarMenuSub.astro +18 -0
  258. package/src/sidebar/SidebarMenuSubButton.astro +45 -0
  259. package/src/sidebar/SidebarMenuSubItem.astro +12 -0
  260. package/src/sidebar/SidebarNavTree.astro +106 -0
  261. package/src/sidebar/SidebarProvider.astro +23 -0
  262. package/src/sidebar/SidebarRail.astro +25 -0
  263. package/src/sidebar/SidebarSeparator.astro +21 -0
  264. package/src/sidebar/SidebarTrigger.astro +40 -0
  265. package/src/sidebar/index.ts +19 -0
  266. package/src/sidebar/sidebar.ts +265 -0
  267. package/src/skeleton/Skeleton.astro +16 -0
  268. package/src/skeleton/index.ts +1 -0
  269. package/src/skip-link/SkipLink.astro +24 -0
  270. package/src/slider/Slider.astro +61 -0
  271. package/src/slider/index.ts +1 -0
  272. package/src/slider/slider.ts +111 -0
  273. package/src/spinner/Spinner.astro +54 -0
  274. package/src/spinner/index.ts +1 -0
  275. package/src/steps/Step.astro +16 -0
  276. package/src/steps/Steps.astro +122 -0
  277. package/src/steps/SubSteps.astro +73 -0
  278. package/src/switch/Switch.astro +52 -0
  279. package/src/switch/index.ts +1 -0
  280. package/src/switch/switch.ts +109 -0
  281. package/src/table/Table.astro +24 -0
  282. package/src/table/TableBody.astro +18 -0
  283. package/src/table/TableCaption.astro +18 -0
  284. package/src/table/TableCell.astro +18 -0
  285. package/src/table/TableFooter.astro +18 -0
  286. package/src/table/TableHead.astro +18 -0
  287. package/src/table/TableHeader.astro +18 -0
  288. package/src/table/TableRow.astro +18 -0
  289. package/src/table/index.ts +8 -0
  290. package/src/tabs/Tabs.astro +37 -0
  291. package/src/tabs/TabsContent.astro +32 -0
  292. package/src/tabs/TabsList.astro +23 -0
  293. package/src/tabs/TabsTrigger.astro +29 -0
  294. package/src/tabs/index.ts +4 -0
  295. package/src/tabs/tabs.ts +220 -0
  296. package/src/textarea/Textarea.astro +25 -0
  297. package/src/textarea/index.ts +1 -0
  298. package/src/theme-toggle/ThemeToggle.astro +67 -0
  299. package/src/theme-toggle/index.ts +1 -0
  300. package/src/toast/Toaster.astro +39 -0
  301. package/src/toast/index.ts +3 -0
  302. package/src/toast/toast.ts +104 -0
  303. package/src/toc/TableOfContents.astro +225 -0
  304. package/src/toggle/Toggle.astro +56 -0
  305. package/src/toggle/index.ts +1 -0
  306. package/src/toggle/toggle.ts +38 -0
  307. package/src/toggle-group/ToggleGroup.astro +39 -0
  308. package/src/toggle-group/ToggleGroupItem.astro +56 -0
  309. package/src/toggle-group/index.ts +2 -0
  310. package/src/toggle-group/toggle-group.ts +121 -0
  311. package/src/toolbar/Toolbar.astro +26 -0
  312. package/src/toolbar/ToolbarButton.astro +29 -0
  313. package/src/toolbar/ToolbarSeparator.astro +14 -0
  314. package/src/toolbar/index.ts +3 -0
  315. package/src/toolbar/toolbar.ts +65 -0
  316. package/src/tooltip/Tooltip.astro +21 -0
  317. package/src/tooltip/TooltipContent.astro +25 -0
  318. package/src/tooltip/TooltipTrigger.astro +31 -0
  319. package/src/tooltip/index.ts +3 -0
  320. package/src/tooltip/tooltip.ts +156 -0
  321. package/src/youtube/YouTube.astro +119 -0
  322. package/src/youtube/index.ts +1 -0
@@ -0,0 +1,48 @@
1
+ ---
2
+ import CodeBlock from "../code-block/CodeBlock.astro";
3
+ import "./api-symbol.css";
4
+
5
+ interface Props {
6
+ name: string;
7
+ kind: "class" | "method" | "meth" | "attr" | "func" | "module";
8
+ signature?: string | null;
9
+ bases?: string[];
10
+ type?: string | null;
11
+ default?: string | null;
12
+ level?: number;
13
+ }
14
+
15
+ const { name, kind, signature, bases = [], type, level = 2 } = Astro.props;
16
+ const badgeKind = kind === "method" ? "meth" : kind;
17
+ const slug = name.toLowerCase().replace(/[^\w]/g, "-").replace(/-+/g, "-");
18
+ const HeadingTag = `h${level}` as any;
19
+ ---
20
+
21
+ <div class="api-symbol not-prose" data-kind={kind}>
22
+ <div class="api-symbol-heading">
23
+ <span class={`api-badge api-badge-${badgeKind}`}>{badgeKind}</span>
24
+ <HeadingTag id={slug} class="!mt-0 !mb-0 !border-0">
25
+ <code class="text-lg font-semibold">{name}</code>
26
+ </HeadingTag>
27
+ </div>
28
+
29
+ {signature && (
30
+ <CodeBlock code={signature} lang="python" />
31
+ )}
32
+
33
+ {bases.length > 0 && (
34
+ <p class="api-symbol-bases">
35
+ Bases: {bases.map((b) => <code>{b}</code>)}
36
+ </p>
37
+ )}
38
+
39
+ {type && !signature && (
40
+ <p class="text-sm text-muted-foreground">
41
+ <strong>Type:</strong> <code>{type}</code>
42
+ </p>
43
+ )}
44
+
45
+ <div class="mt-3">
46
+ <slot />
47
+ </div>
48
+ </div>
@@ -0,0 +1,89 @@
1
+ /* API Symbol badges — colored by kind */
2
+ .api-badge {
3
+ display: inline-flex;
4
+ align-items: center;
5
+ border-radius: 0.375rem;
6
+ padding: 0.125rem 0.5rem;
7
+ font-size: 0.7rem;
8
+ font-weight: 600;
9
+ letter-spacing: 0.025em;
10
+ text-transform: uppercase;
11
+ vertical-align: middle;
12
+ flex-shrink: 0;
13
+ }
14
+
15
+ .api-badge-class {
16
+ background-color: oklch(0.55 0.18 265 / 0.2);
17
+ color: oklch(0.55 0.18 265);
18
+ }
19
+ .dark .api-badge-class {
20
+ background-color: oklch(0.7 0.15 265 / 0.2);
21
+ color: oklch(0.7 0.15 265);
22
+ }
23
+
24
+ .api-badge-meth {
25
+ background-color: oklch(0.55 0.15 155 / 0.2);
26
+ color: oklch(0.55 0.15 155);
27
+ }
28
+ .dark .api-badge-meth {
29
+ background-color: oklch(0.7 0.15 155 / 0.2);
30
+ color: oklch(0.7 0.15 155);
31
+ }
32
+
33
+ .api-badge-attr {
34
+ background-color: oklch(0.6 0.15 55 / 0.2);
35
+ color: oklch(0.6 0.15 55);
36
+ }
37
+ .dark .api-badge-attr {
38
+ background-color: oklch(0.75 0.15 55 / 0.2);
39
+ color: oklch(0.75 0.15 55);
40
+ }
41
+
42
+ .api-badge-func {
43
+ background-color: oklch(0.55 0.18 330 / 0.2);
44
+ color: oklch(0.55 0.18 330);
45
+ }
46
+ .dark .api-badge-func {
47
+ background-color: oklch(0.7 0.15 330 / 0.2);
48
+ color: oklch(0.7 0.15 330);
49
+ }
50
+
51
+ .api-badge-module {
52
+ background-color: oklch(0.5 0.12 200 / 0.2);
53
+ color: oklch(0.5 0.12 200);
54
+ }
55
+ .dark .api-badge-module {
56
+ background-color: oklch(0.65 0.12 200 / 0.2);
57
+ color: oklch(0.65 0.12 200);
58
+ }
59
+
60
+ /* API Symbol container */
61
+ .api-symbol {
62
+ margin-top: 2rem;
63
+ padding-top: 1.5rem;
64
+ border-top: 1px solid var(--border, oklch(0.5 0 0 / 0.15));
65
+ }
66
+
67
+ .api-symbol:first-child {
68
+ margin-top: 0;
69
+ padding-top: 0;
70
+ border-top: none;
71
+ }
72
+
73
+ .api-symbol-heading {
74
+ display: flex;
75
+ align-items: center;
76
+ gap: 0.5rem;
77
+ margin-bottom: 0.75rem;
78
+ }
79
+
80
+ .api-symbol-heading code {
81
+ font-size: 1.25em;
82
+ font-weight: 600;
83
+ }
84
+
85
+ .api-symbol-bases {
86
+ font-size: 0.875rem;
87
+ color: var(--muted-foreground);
88
+ margin-bottom: 0.5rem;
89
+ }
@@ -0,0 +1 @@
1
+ export { default as ApiSymbol } from "./ApiSymbol.astro";
@@ -0,0 +1,63 @@
1
+ ---
2
+ /**
3
+ * Full endpoint URL display with method badge and copy button.
4
+ *
5
+ * Renders: [PUT] https://petstore.swagger.io/api/v3/pet/{petId} [📋]
6
+ * Path parameters ({petId}) are highlighted in a different color.
7
+ *
8
+ * The whole URL bar background and left border tint to the method
9
+ * colour (Stripe / Redoc / Mintlify convention) so the request method
10
+ * is the first thing the eye lands on.
11
+ */
12
+ import { tv } from "tailwind-variants";
13
+ import MethodBadge from "../method-badge/MethodBadge.astro";
14
+ import CopyButton from "../copy-button/CopyButton.astro";
15
+
16
+ interface Props {
17
+ method: "get" | "post" | "put" | "patch" | "delete" | "head" | "options";
18
+ path: string;
19
+ baseUrl?: string;
20
+ class?: string;
21
+ }
22
+
23
+ const { method, path, baseUrl = "", class: className } = Astro.props;
24
+
25
+ const fullUrl = `${baseUrl}${path}`;
26
+
27
+ // Split path into segments, highlighting {param} parts
28
+ const pathParts = path.split(/(\{[^}]+\})/g);
29
+
30
+ const urlBar = tv({
31
+ base:
32
+ "flex items-center gap-3 rounded-lg border-l-4 border border-l-current px-4 py-3",
33
+ variants: {
34
+ method: {
35
+ get: "bg-api-get/10 border-l-api-get",
36
+ post: "bg-api-post/10 border-l-api-post",
37
+ put: "bg-api-put/10 border-l-api-put",
38
+ patch: "bg-api-patch/10 border-l-api-patch",
39
+ delete: "bg-api-delete/10 border-l-api-delete",
40
+ head: "bg-api-head/10 border-l-api-head",
41
+ options: "bg-muted/40 border-l-muted-foreground",
42
+ },
43
+ },
44
+ });
45
+ ---
46
+
47
+ <div class={urlBar({ method, class: className })}>
48
+ <MethodBadge method={method} />
49
+ <code class="flex-1 truncate text-sm font-medium">
50
+ {baseUrl && <span class="text-muted-foreground">{baseUrl}</span>}
51
+ {pathParts.map((part) =>
52
+ part.startsWith("{") ? (
53
+ <span class="text-api-put">{part}</span>
54
+ ) : (
55
+ <span>{part}</span>
56
+ )
57
+ )}
58
+ </code>
59
+ <CopyButton
60
+ text={fullUrl}
61
+ class="shrink-0"
62
+ />
63
+ </div>
@@ -0,0 +1,57 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const avatar = tv({
5
+ base: "relative inline-flex h-10 w-10 shrink-0 items-center justify-center overflow-hidden rounded-full bg-muted",
6
+ });
7
+
8
+ const avatarImage = tv({
9
+ base: "aspect-square h-full w-full object-cover",
10
+ });
11
+
12
+ const avatarFallback = tv({
13
+ base: "flex h-full w-full items-center justify-center rounded-full bg-muted text-sm font-semibold text-muted-foreground",
14
+ });
15
+
16
+ interface Props {
17
+ src?: string;
18
+ alt?: string;
19
+ fallback?: string;
20
+ class?: string;
21
+ [key: string]: unknown;
22
+ }
23
+ const { src, alt = "", fallback, class: className, ...rest } = Astro.props;
24
+
25
+ const initials =
26
+ fallback ||
27
+ alt
28
+ .split(" ")
29
+ .map((w) => w[0])
30
+ .join("")
31
+ .slice(0, 2)
32
+ .toUpperCase();
33
+ ---
34
+
35
+ <span class={avatar({ class: className })} {...rest}>
36
+ {
37
+ src ? (
38
+ <>
39
+ <img
40
+ class={avatarImage()}
41
+ src={src}
42
+ alt={alt}
43
+ width="40"
44
+ height="40"
45
+ onerror="this.hidden=true;this.nextElementSibling.hidden=false"
46
+ />
47
+ <span class={avatarFallback()} aria-hidden="true" hidden>
48
+ {initials}
49
+ </span>
50
+ </>
51
+ ) : (
52
+ <span class={avatarFallback()} aria-hidden="true">
53
+ {initials}
54
+ </span>
55
+ )
56
+ }
57
+ </span>
@@ -0,0 +1 @@
1
+ export { default as Avatar } from "./Avatar.astro";
@@ -0,0 +1,37 @@
1
+ ---
2
+ import { tv, type VariantProps } from "tailwind-variants";
3
+
4
+ const badge = tv({
5
+ base: "inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors",
6
+ variants: {
7
+ variant: {
8
+ default: "border-transparent bg-primary text-primary-foreground",
9
+ secondary: "border-transparent bg-secondary text-secondary-foreground",
10
+ destructive:
11
+ "border-transparent bg-destructive text-destructive-foreground",
12
+ outline: "text-foreground",
13
+ },
14
+ },
15
+ defaultVariants: {
16
+ variant: "default",
17
+ },
18
+ });
19
+
20
+ type BadgeVariants = VariantProps<typeof badge>;
21
+
22
+ interface Props {
23
+ variant?: BadgeVariants["variant"];
24
+ class?: string;
25
+ [key: string]: unknown;
26
+ }
27
+
28
+ const { variant = "default", class: className, ...rest } = Astro.props;
29
+ ---
30
+
31
+ <span
32
+ class={badge({ variant, class: className })}
33
+ data-variant={variant}
34
+ {...rest}
35
+ >
36
+ <slot />
37
+ </span>
@@ -0,0 +1 @@
1
+ export { default as Badge } from "./Badge.astro";
@@ -0,0 +1,32 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const breadcrumb = tv({
5
+ base: "",
6
+ });
7
+
8
+ const breadcrumbList = tv({
9
+ base: "flex flex-wrap items-center gap-1 break-words text-sm text-muted-foreground sm:gap-1.5",
10
+ });
11
+
12
+ interface Props {
13
+ "aria-label"?: string;
14
+ class?: string;
15
+ [key: string]: unknown;
16
+ }
17
+ const {
18
+ "aria-label": ariaLabel = "Breadcrumb",
19
+ class: className,
20
+ ...rest
21
+ } = Astro.props;
22
+ ---
23
+
24
+ <nav
25
+ class={breadcrumb({ class: className })}
26
+ aria-label={ariaLabel}
27
+ {...rest}
28
+ >
29
+ <ol class={breadcrumbList()} style="list-style: none; padding: 0; margin: 0;">
30
+ <slot />
31
+ </ol>
32
+ </nav>
@@ -0,0 +1,32 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const breadcrumbEllipsis = tv({
5
+ base: "flex items-center text-muted-foreground",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <li class={breadcrumbEllipsis({ class: className })} {...rest}>
16
+ <span aria-hidden="true">
17
+ <slot>
18
+ <svg
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ width="16"
21
+ height="16"
22
+ viewBox="0 0 24 24"
23
+ fill="currentColor"
24
+ >
25
+ <circle cx="5" cy="12" r="2"></circle>
26
+ <circle cx="12" cy="12" r="2"></circle>
27
+ <circle cx="19" cy="12" r="2"></circle>
28
+ </svg>
29
+ </slot>
30
+ </span>
31
+ <span class="sr-only">More pages</span>
32
+ </li>
@@ -0,0 +1,41 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const breadcrumbItem = tv({
5
+ base: "inline-flex items-center gap-1.5",
6
+ });
7
+
8
+ const breadcrumbLink = tv({
9
+ base: "text-muted-foreground no-underline transition-colors hover:text-foreground",
10
+ });
11
+
12
+ const breadcrumbPage = tv({
13
+ base: "font-medium text-foreground",
14
+ });
15
+
16
+ interface Props {
17
+ href?: string;
18
+ current?: boolean;
19
+ class?: string;
20
+ [key: string]: unknown;
21
+ }
22
+ const { href, current = false, class: className, ...rest } = Astro.props;
23
+ ---
24
+
25
+ <li class={breadcrumbItem({ class: className })} {...rest}>
26
+ {
27
+ current ? (
28
+ <span class={breadcrumbPage()} aria-current="page">
29
+ <slot />
30
+ </span>
31
+ ) : href ? (
32
+ <a class={breadcrumbLink()} href={href}>
33
+ <slot />
34
+ </a>
35
+ ) : (
36
+ <span>
37
+ <slot />
38
+ </span>
39
+ )
40
+ }
41
+ </li>
@@ -0,0 +1,33 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const breadcrumbSeparator = tv({
5
+ base: "flex items-center text-muted-foreground [&>svg]:h-3.5 [&>svg]:w-3.5",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <li
16
+ class={breadcrumbSeparator({ class: className })}
17
+ aria-hidden="true"
18
+ {...rest}
19
+ >
20
+ <slot>
21
+ <svg
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ width="16"
24
+ height="16"
25
+ viewBox="0 0 24 24"
26
+ fill="none"
27
+ stroke="currentColor"
28
+ stroke-width="2"
29
+ stroke-linecap="round"
30
+ stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg
31
+ >
32
+ </slot>
33
+ </li>
@@ -0,0 +1,4 @@
1
+ export { default as Breadcrumb } from "./Breadcrumb.astro";
2
+ export { default as BreadcrumbItem } from "./BreadcrumbItem.astro";
3
+ export { default as BreadcrumbSeparator } from "./BreadcrumbSeparator.astro";
4
+ export { default as BreadcrumbEllipsis } from "./BreadcrumbEllipsis.astro";
@@ -0,0 +1,70 @@
1
+ ---
2
+ import { tv, type VariantProps } from "tailwind-variants";
3
+
4
+ const button = tv({
5
+ base: "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium transition-colors focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50",
6
+ variants: {
7
+ variant: {
8
+ default: "bg-primary text-primary-foreground hover:bg-primary/90",
9
+ destructive:
10
+ "bg-destructive text-destructive-foreground hover:bg-destructive/90",
11
+ outline:
12
+ "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
13
+ secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80",
14
+ ghost: "hover:bg-accent hover:text-accent-foreground",
15
+ link: "text-primary underline-offset-4 hover:underline",
16
+ },
17
+ size: {
18
+ default: "h-10 px-4 py-2",
19
+ sm: "h-9 px-3 text-xs",
20
+ lg: "h-11 px-8",
21
+ icon: "h-10 w-10",
22
+ },
23
+ },
24
+ defaultVariants: {
25
+ variant: "default",
26
+ size: "default",
27
+ },
28
+ });
29
+
30
+ type ButtonVariants = VariantProps<typeof button>;
31
+
32
+ interface Props {
33
+ variant?: ButtonVariants["variant"];
34
+ size?: ButtonVariants["size"];
35
+ href?: string;
36
+ class?: string;
37
+ [key: string]: unknown;
38
+ }
39
+
40
+ const {
41
+ variant = "default",
42
+ size = "default",
43
+ href,
44
+ class: className,
45
+ ...rest
46
+ } = Astro.props;
47
+ ---
48
+
49
+ {
50
+ href ? (
51
+ <a
52
+ class={button({ variant, size, class: className })}
53
+ data-variant={variant}
54
+ data-size={size}
55
+ href={href}
56
+ {...rest}
57
+ >
58
+ <slot />
59
+ </a>
60
+ ) : (
61
+ <button
62
+ class={button({ variant, size, class: className })}
63
+ data-variant={variant}
64
+ data-size={size}
65
+ {...rest}
66
+ >
67
+ <slot />
68
+ </button>
69
+ )
70
+ }
@@ -0,0 +1 @@
1
+ export { default as Button } from "./Button.astro";
@@ -0,0 +1,17 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const card = tv({
5
+ base: "rounded-lg border bg-card text-card-foreground shadow-sm",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <div class={card({ class: className })} {...rest}>
16
+ <slot />
17
+ </div>
@@ -0,0 +1,17 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const cardContent = tv({
5
+ base: "p-6 pt-0",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <div class={cardContent({ class: className })} {...rest}>
16
+ <slot />
17
+ </div>
@@ -0,0 +1,17 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const cardDescription = tv({
5
+ base: "text-sm text-muted-foreground",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <p class={cardDescription({ class: className })} {...rest}>
16
+ <slot />
17
+ </p>
@@ -0,0 +1,17 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const cardFooter = tv({
5
+ base: "flex items-center p-6 pt-0",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <div class={cardFooter({ class: className })} {...rest}>
16
+ <slot />
17
+ </div>
@@ -0,0 +1,17 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const cardHeader = tv({
5
+ base: "flex flex-col space-y-1.5 p-6",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <div class={cardHeader({ class: className })} {...rest}>
16
+ <slot />
17
+ </div>
@@ -0,0 +1,17 @@
1
+ ---
2
+ import { tv } from "tailwind-variants";
3
+
4
+ const cardTitle = tv({
5
+ base: "text-2xl font-semibold leading-none tracking-tight",
6
+ });
7
+
8
+ interface Props {
9
+ class?: string;
10
+ [key: string]: unknown;
11
+ }
12
+ const { class: className, ...rest } = Astro.props;
13
+ ---
14
+
15
+ <h3 class={cardTitle({ class: className })} {...rest}>
16
+ <slot />
17
+ </h3>
@@ -0,0 +1,6 @@
1
+ export { default as Card } from "./Card.astro";
2
+ export { default as CardHeader } from "./CardHeader.astro";
3
+ export { default as CardTitle } from "./CardTitle.astro";
4
+ export { default as CardDescription } from "./CardDescription.astro";
5
+ export { default as CardContent } from "./CardContent.astro";
6
+ export { default as CardFooter } from "./CardFooter.astro";