@metaphor-cloud/ui 0.1.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 (109) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +420 -0
  3. package/dist/components/Accordion.d.ts +14 -0
  4. package/dist/components/Accordion.d.ts.map +1 -0
  5. package/dist/components/Alert.d.ts +14 -0
  6. package/dist/components/Alert.d.ts.map +1 -0
  7. package/dist/components/AlertDialog.d.ts +27 -0
  8. package/dist/components/AlertDialog.d.ts.map +1 -0
  9. package/dist/components/AnimatedCounter.d.ts +13 -0
  10. package/dist/components/AnimatedCounter.d.ts.map +1 -0
  11. package/dist/components/Badge.d.ts +9 -0
  12. package/dist/components/Badge.d.ts.map +1 -0
  13. package/dist/components/Breadcrumb.d.ts +31 -0
  14. package/dist/components/Breadcrumb.d.ts.map +1 -0
  15. package/dist/components/Button.d.ts +10 -0
  16. package/dist/components/Button.d.ts.map +1 -0
  17. package/dist/components/Card.d.ts +21 -0
  18. package/dist/components/Card.d.ts.map +1 -0
  19. package/dist/components/Checkbox.d.ts +7 -0
  20. package/dist/components/Checkbox.d.ts.map +1 -0
  21. package/dist/components/CodeBlock.d.ts +8 -0
  22. package/dist/components/CodeBlock.d.ts.map +1 -0
  23. package/dist/components/Combobox.d.ts +40 -0
  24. package/dist/components/Combobox.d.ts.map +1 -0
  25. package/dist/components/Dialog.d.ts +23 -0
  26. package/dist/components/Dialog.d.ts.map +1 -0
  27. package/dist/components/DropdownMenu.d.ts +36 -0
  28. package/dist/components/DropdownMenu.d.ts.map +1 -0
  29. package/dist/components/EmptyState.d.ts +11 -0
  30. package/dist/components/EmptyState.d.ts.map +1 -0
  31. package/dist/components/Input.d.ts +7 -0
  32. package/dist/components/Input.d.ts.map +1 -0
  33. package/dist/components/Label.d.ts +7 -0
  34. package/dist/components/Label.d.ts.map +1 -0
  35. package/dist/components/MetaHead.d.ts +43 -0
  36. package/dist/components/MetaHead.d.ts.map +1 -0
  37. package/dist/components/Nav.d.ts +59 -0
  38. package/dist/components/Nav.d.ts.map +1 -0
  39. package/dist/components/PageHeader.d.ts +10 -0
  40. package/dist/components/PageHeader.d.ts.map +1 -0
  41. package/dist/components/Pagination.d.ts +12 -0
  42. package/dist/components/Pagination.d.ts.map +1 -0
  43. package/dist/components/Popover.d.ts +9 -0
  44. package/dist/components/Popover.d.ts.map +1 -0
  45. package/dist/components/Progress.d.ts +7 -0
  46. package/dist/components/Progress.d.ts.map +1 -0
  47. package/dist/components/RadioGroup.d.ts +10 -0
  48. package/dist/components/RadioGroup.d.ts.map +1 -0
  49. package/dist/components/Select.d.ts +22 -0
  50. package/dist/components/Select.d.ts.map +1 -0
  51. package/dist/components/Separator.d.ts +7 -0
  52. package/dist/components/Separator.d.ts.map +1 -0
  53. package/dist/components/Sheet.d.ts +25 -0
  54. package/dist/components/Sheet.d.ts.map +1 -0
  55. package/dist/components/Sidebar.d.ts +36 -0
  56. package/dist/components/Sidebar.d.ts.map +1 -0
  57. package/dist/components/Skeleton.d.ts +6 -0
  58. package/dist/components/Skeleton.d.ts.map +1 -0
  59. package/dist/components/StatCard.d.ts +40 -0
  60. package/dist/components/StatCard.d.ts.map +1 -0
  61. package/dist/components/StructuredData.d.ts +91 -0
  62. package/dist/components/StructuredData.d.ts.map +1 -0
  63. package/dist/components/Switch.d.ts +7 -0
  64. package/dist/components/Switch.d.ts.map +1 -0
  65. package/dist/components/Table.d.ts +27 -0
  66. package/dist/components/Table.d.ts.map +1 -0
  67. package/dist/components/Tabs.d.ts +14 -0
  68. package/dist/components/Tabs.d.ts.map +1 -0
  69. package/dist/components/Textarea.d.ts +7 -0
  70. package/dist/components/Textarea.d.ts.map +1 -0
  71. package/dist/components/ThemeProvider.d.ts +17 -0
  72. package/dist/components/ThemeProvider.d.ts.map +1 -0
  73. package/dist/components/Toast.d.ts +27 -0
  74. package/dist/components/Toast.d.ts.map +1 -0
  75. package/dist/components/Toaster.d.ts +2 -0
  76. package/dist/components/Toaster.d.ts.map +1 -0
  77. package/dist/components/Toggle.d.ts +9 -0
  78. package/dist/components/Toggle.d.ts.map +1 -0
  79. package/dist/components/Tooltip.d.ts +10 -0
  80. package/dist/components/Tooltip.d.ts.map +1 -0
  81. package/dist/hooks/use-alternate-links.d.ts +14 -0
  82. package/dist/hooks/use-alternate-links.d.ts.map +1 -0
  83. package/dist/hooks/use-canonical.d.ts +6 -0
  84. package/dist/hooks/use-canonical.d.ts.map +1 -0
  85. package/dist/hooks/use-mobile.d.ts +2 -0
  86. package/dist/hooks/use-mobile.d.ts.map +1 -0
  87. package/dist/hooks/use-scroll-nav.d.ts +2 -0
  88. package/dist/hooks/use-scroll-nav.d.ts.map +1 -0
  89. package/dist/hooks/use-theme.d.ts +9 -0
  90. package/dist/hooks/use-theme.d.ts.map +1 -0
  91. package/dist/hooks/use-toast.d.ts +26 -0
  92. package/dist/hooks/use-toast.d.ts.map +1 -0
  93. package/dist/index.d.ts +84 -0
  94. package/dist/index.d.ts.map +1 -0
  95. package/dist/lib/og-image.d.ts +57 -0
  96. package/dist/lib/og-image.d.ts.map +1 -0
  97. package/dist/lib/utils.d.ts +3 -0
  98. package/dist/lib/utils.d.ts.map +1 -0
  99. package/dist/metaphor-ui.css +3 -0
  100. package/dist/metaphor-ui.js +10355 -0
  101. package/dist/themes/adapter-all.css +149 -0
  102. package/dist/themes/adapter.css +142 -0
  103. package/dist/themes/metaphor-all.css +116 -0
  104. package/dist/themes/metaphor.css +109 -0
  105. package/dist/themes/um-all.css +155 -0
  106. package/dist/themes/um.css +148 -0
  107. package/package.json +90 -0
  108. package/tailwind.preset.cjs +136 -0
  109. package/tailwind.preset.js +162 -0
@@ -0,0 +1,40 @@
1
+ import * as React from "react";
2
+ import * as PopoverPrimitive from "@radix-ui/react-popover";
3
+ interface ComboboxContextValue {
4
+ open: boolean;
5
+ setOpen: (open: boolean) => void;
6
+ search: string;
7
+ setSearch: (search: string) => void;
8
+ value: string;
9
+ onValueChange: (value: string) => void;
10
+ }
11
+ declare function useComboboxContext(): ComboboxContextValue;
12
+ export interface ComboboxProps {
13
+ open?: boolean;
14
+ onOpenChange?: (open: boolean) => void;
15
+ value?: string;
16
+ onValueChange?: (value: string) => void;
17
+ children: React.ReactNode;
18
+ }
19
+ declare function Combobox({ open: controlledOpen, onOpenChange, value, onValueChange, children, }: ComboboxProps): import("react/jsx-runtime").JSX.Element;
20
+ declare const ComboboxTrigger: any;
21
+ export interface ComboboxInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
22
+ ref?: React.Ref<HTMLInputElement>;
23
+ }
24
+ declare function ComboboxInput({ className, ref, ...props }: ComboboxInputProps): import("react/jsx-runtime").JSX.Element;
25
+ export interface ComboboxContentProps extends Omit<React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>, "children"> {
26
+ children: React.ReactNode;
27
+ ref?: React.Ref<React.ElementRef<typeof PopoverPrimitive.Content>>;
28
+ }
29
+ declare function ComboboxContent({ className, children, align, sideOffset, ref, ...props }: ComboboxContentProps): import("react/jsx-runtime").JSX.Element;
30
+ export interface ComboboxItemProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
31
+ value: string;
32
+ ref?: React.Ref<HTMLButtonElement>;
33
+ }
34
+ declare function ComboboxItem({ className, children, value: itemValue, ref, ...props }: ComboboxItemProps): import("react/jsx-runtime").JSX.Element;
35
+ export interface ComboboxEmptyProps extends React.HTMLAttributes<HTMLDivElement> {
36
+ ref?: React.Ref<HTMLDivElement>;
37
+ }
38
+ declare function ComboboxEmpty({ className, ref, ...props }: ComboboxEmptyProps): import("react/jsx-runtime").JSX.Element;
39
+ export { Combobox, ComboboxTrigger, ComboboxInput, ComboboxContent, ComboboxItem, ComboboxEmpty, useComboboxContext, };
40
+ //# sourceMappingURL=Combobox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["Combobox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAO5D,UAAU,oBAAoB;IAC5B,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACxC;AAID,iBAAS,kBAAkB,yBAI1B;AAMD,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,iBAAS,QAAQ,CAAC,EAChB,IAAI,EAAE,cAAc,EACpB,YAAY,EACZ,KAAU,EACV,aAAa,EACb,QAAQ,GACT,EAAE,aAAa,2CAkCf;AAMD,QAAA,MAAM,eAAe,KAA2B,CAAC;AAMjD,MAAM,WAAW,kBACf,SAAQ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IAC/E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;CACnC;AAED,iBAAS,aAAa,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,kBAAkB,2CAyBtE;AAMD,MAAM,WAAW,oBACf,SAAQ,IAAI,CACV,KAAK,CAAC,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,EAC/D,UAAU,CACX;IACD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC;CACpE;AAED,iBAAS,eAAe,CAAC,EACvB,SAAS,EACT,QAAQ,EACR,KAAe,EACf,UAAc,EACd,GAAG,EACH,GAAG,KAAK,EACT,EAAE,oBAAoB,2CAmBtB;AAMD,MAAM,WAAW,iBACf,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;IACrD,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;CACpC;AAED,iBAAS,YAAY,CAAC,EACpB,SAAS,EACT,QAAQ,EACR,KAAK,EAAE,SAAS,EAChB,GAAG,EACH,GAAG,KAAK,EACT,EAAE,iBAAiB,2CA4CnB;AAMD,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC9E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;CACjC;AAED,iBAAS,aAAa,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,kBAAkB,2CAQtE;AAMD,OAAO,EACL,QAAQ,EACR,eAAe,EACf,aAAa,EACb,eAAe,EACf,YAAY,EACZ,aAAa,EACb,kBAAkB,GACnB,CAAC"}
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ import * as DialogPrimitive from "@radix-ui/react-dialog";
3
+ declare const Dialog: any;
4
+ declare const DialogTrigger: any;
5
+ declare const DialogClose: any;
6
+ declare const DialogPortal: any;
7
+ declare function DialogOverlay({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay> & {
8
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Overlay>>;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ declare function DialogContent({ className, children, hideCloseButton, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & {
11
+ hideCloseButton?: boolean;
12
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Content>>;
13
+ }): import("react/jsx-runtime").JSX.Element;
14
+ declare const DialogHeader: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
15
+ declare const DialogFooter: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
16
+ declare function DialogTitle({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title> & {
17
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Title>>;
18
+ }): import("react/jsx-runtime").JSX.Element;
19
+ declare function DialogDescription({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description> & {
20
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Description>>;
21
+ }): import("react/jsx-runtime").JSX.Element;
22
+ export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, };
23
+ //# sourceMappingURL=Dialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["Dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAG1D,QAAA,MAAM,MAAM,KAAuB,CAAC;AACpC,QAAA,MAAM,aAAa,KAA0B,CAAC;AAC9C,QAAA,MAAM,WAAW,KAAwB,CAAC;AAC1C,QAAA,MAAM,YAAY,KAAyB,CAAC;AAE5C,iBAAS,aAAa,CAAC,EACrB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC;CACnE,2CAYA;AAED,iBAAS,aAAa,CAAC,EACrB,SAAS,EACT,QAAQ,EACR,eAAe,EACf,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClE,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC;CACnE,2CAuCA;AAED,QAAA,MAAM,YAAY,4BAGf,MAAM,cAAc,CAAC,cAAc,CAAC,4CAKtC,CAAC;AAEF,QAAA,MAAM,YAAY,4BAGf,MAAM,cAAc,CAAC,cAAc,CAAC,4CAQtC,CAAC;AAEF,iBAAS,WAAW,CAAC,EACnB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,GAAG;IAChE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;CACjE,2CAWA;AAED,iBAAS,iBAAiB,CAAC,EACzB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,WAAW,CAAC,GAAG;IACtE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC;CACvE,2CAQA;AAED,OAAO,EACL,MAAM,EACN,YAAY,EACZ,aAAa,EACb,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,iBAAiB,GAClB,CAAC"}
@@ -0,0 +1,36 @@
1
+ import * as React from "react";
2
+ import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
3
+ declare const DropdownMenu: any;
4
+ declare const DropdownMenuTrigger: any;
5
+ declare const DropdownMenuGroup: any;
6
+ declare const DropdownMenuSub: any;
7
+ declare function DropdownMenuContent({ className, sideOffset, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> & {
8
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.Content>>;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ declare function DropdownMenuItem({ className, inset, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
11
+ inset?: boolean;
12
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.Item>>;
13
+ }): import("react/jsx-runtime").JSX.Element;
14
+ declare function DropdownMenuLabel({ className, inset, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
15
+ inset?: boolean;
16
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.Label>>;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ declare function DropdownMenuSeparator({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator> & {
19
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.Separator>>;
20
+ }): import("react/jsx-runtime").JSX.Element;
21
+ declare function DropdownMenuSubTrigger({ className, inset, children, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
22
+ inset?: boolean;
23
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>>;
24
+ }): import("react/jsx-runtime").JSX.Element;
25
+ declare const DropdownMenuRadioGroup: any;
26
+ declare function DropdownMenuCheckboxItem({ className, children, checked, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> & {
27
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>>;
28
+ }): import("react/jsx-runtime").JSX.Element;
29
+ declare function DropdownMenuRadioItem({ className, children, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem> & {
30
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.RadioItem>>;
31
+ }): import("react/jsx-runtime").JSX.Element;
32
+ declare function DropdownMenuSubContent({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent> & {
33
+ ref?: React.Ref<React.ElementRef<typeof DropdownMenuPrimitive.SubContent>>;
34
+ }): import("react/jsx-runtime").JSX.Element;
35
+ export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuGroup, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuSubContent, };
36
+ //# sourceMappingURL=DropdownMenu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["DropdownMenu.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ export interface EmptyStateProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ ref?: React.Ref<HTMLDivElement>;
4
+ icon?: React.ReactNode;
5
+ title: string;
6
+ description?: string;
7
+ action?: React.ReactNode;
8
+ }
9
+ declare function EmptyState({ className, icon, title, description, action, ref, ...props }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;
10
+ export { EmptyState };
11
+ //# sourceMappingURL=EmptyState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyState.d.ts","sourceRoot":"","sources":["EmptyState.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC3E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IAChC,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B;AAED,iBAAS,UAAU,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,eAAe,2CAmBlG;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ ref?: React.Ref<HTMLInputElement>;
4
+ }
5
+ declare function Input({ className, type, ref, ...props }: InputProps): import("react/jsx-runtime").JSX.Element;
6
+ export { Input };
7
+ //# sourceMappingURL=Input.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,WAAW,UACf,SAAQ,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC;IACnD,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;CACnC;AAED,iBAAS,KAAK,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,UAAU,2CAgB5D;AAED,OAAO,EAAE,KAAK,EAAE,CAAC"}
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as LabelPrimitive from "@radix-ui/react-label";
3
+ declare function Label({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & {
4
+ ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export { Label };
7
+ //# sourceMappingURL=Label.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Label.d.ts","sourceRoot":"","sources":["Label.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AAGxD,iBAAS,KAAK,CAAC,EACb,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,IAAI,CAAC,GAAG;IAC9D,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC;CAC/D,2CAWA;AAED,OAAO,EAAE,KAAK,EAAE,CAAC"}
@@ -0,0 +1,43 @@
1
+ export interface MetaHeadProps {
2
+ /** Page title — sets <title> and og:title */
3
+ title?: string;
4
+ /** Optional title template, e.g. "%s | My Site". %s is replaced with title. */
5
+ titleTemplate?: string;
6
+ /** Meta description — sets <meta name="description"> and og:description */
7
+ description?: string;
8
+ /** Canonical URL — sets <link rel="canonical"> and og:url */
9
+ url?: string;
10
+ /** Open Graph image URL — sets og:image and twitter:image */
11
+ image?: string;
12
+ /** Open Graph image alt text */
13
+ imageAlt?: string;
14
+ /** Open Graph image width in pixels */
15
+ imageWidth?: number;
16
+ /** Open Graph image height in pixels */
17
+ imageHeight?: number;
18
+ /** Open Graph type — defaults to "website" */
19
+ type?: string;
20
+ /** Open Graph site name */
21
+ siteName?: string;
22
+ /** Open Graph locale — e.g. "en_NZ" */
23
+ locale?: string;
24
+ /** Twitter card type — defaults to "summary_large_image" */
25
+ twitterCard?: "summary" | "summary_large_image" | "app" | "player";
26
+ /** Twitter @username of the site */
27
+ twitterSite?: string;
28
+ /** Twitter @username of the content creator */
29
+ twitterCreator?: string;
30
+ /** Set to true to tell search engines not to index this page */
31
+ noindex?: boolean;
32
+ /** Set to true to tell search engines not to follow links */
33
+ nofollow?: boolean;
34
+ }
35
+ /**
36
+ * Declaratively manages `<head>` meta tags for SEO and social previews.
37
+ * Renders nothing to the DOM — all work happens via side effects.
38
+ *
39
+ * Tags created by MetaHead are marked with a `data-meta-head` attribute
40
+ * and are automatically cleaned up when the component unmounts or props change.
41
+ */
42
+ export declare function MetaHead({ title, titleTemplate, description, url, image, imageAlt, imageWidth, imageHeight, type, siteName, locale, twitterCard, twitterSite, twitterCreator, noindex, nofollow, }: MetaHeadProps): null;
43
+ //# sourceMappingURL=MetaHead.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MetaHead.d.ts","sourceRoot":"","sources":["MetaHead.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,aAAa;IAC5B,6CAA6C;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+EAA+E;IAC/E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,2EAA2E;IAC3E,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,6DAA6D;IAC7D,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,6DAA6D;IAC7D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gCAAgC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,uCAAuC;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,wCAAwC;IACxC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,8CAA8C;IAC9C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,2BAA2B;IAC3B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,uCAAuC;IACvC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,4DAA4D;IAC5D,WAAW,CAAC,EAAE,SAAS,GAAG,qBAAqB,GAAG,KAAK,GAAG,QAAQ,CAAC;IACnE,oCAAoC;IACpC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,+CAA+C;IAC/C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gEAAgE;IAChE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,6DAA6D;IAC7D,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AA0CD;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAC,EACvB,KAAK,EACL,aAAa,EACb,WAAW,EACX,GAAG,EACH,KAAK,EACL,QAAQ,EACR,UAAU,EACV,WAAW,EACX,IAAgB,EAChB,QAAQ,EACR,MAAM,EACN,WAAmC,EACnC,WAAW,EACX,cAAc,EACd,OAAO,EACP,QAAQ,GACT,EAAE,aAAa,QAyJf"}
@@ -0,0 +1,59 @@
1
+ export interface NavLinkRenderProps {
2
+ href: string;
3
+ className?: string;
4
+ onClick?: () => void;
5
+ children: React.ReactNode;
6
+ target?: string;
7
+ rel?: string;
8
+ }
9
+ export declare type NavLinkRenderFn = (props: NavLinkRenderProps) => React.ReactNode;
10
+ export interface NavDropdownItem {
11
+ label: string;
12
+ href: string;
13
+ description?: string;
14
+ icon?: React.ReactNode;
15
+ target?: string;
16
+ rel?: string;
17
+ separator?: "before" | "after";
18
+ }
19
+ export interface NavItem {
20
+ label: string;
21
+ href?: string;
22
+ active?: boolean;
23
+ children?: NavDropdownItem[];
24
+ }
25
+ export interface NavAction {
26
+ label: string;
27
+ icon?: React.ReactNode;
28
+ href?: string;
29
+ children?: NavDropdownItem[];
30
+ }
31
+ export interface NavProps {
32
+ logo: {
33
+ dark: React.ReactNode;
34
+ light: React.ReactNode;
35
+ href: string;
36
+ };
37
+ items: NavItem[];
38
+ actions?: NavAction[];
39
+ cta?: {
40
+ label: string;
41
+ href: string;
42
+ };
43
+ renderLink?: NavLinkRenderFn;
44
+ showThemeToggle?: boolean;
45
+ scrollThreshold?: number;
46
+ skipToContentId?: string;
47
+ mobileFooter?: React.ReactNode;
48
+ className?: string;
49
+ /** Navigation layout variant:
50
+ * - "floating" (default): transparent until scroll, then glass pill
51
+ * - "solid": visible background from load, transitions to glass pill on scroll
52
+ * - "static": non-fixed, no scroll effect — for inline headers */
53
+ variant?: "floating" | "solid" | "static";
54
+ /** Additional class(es) for the logo wrapper. If a function, receives the
55
+ * current `scrolled` boolean — useful for scroll-based logo opacity. */
56
+ logoClassName?: string | ((scrolled: boolean) => string);
57
+ }
58
+ export declare function Nav({ logo, items, actions, cta, renderLink, showThemeToggle, scrollThreshold, skipToContentId, mobileFooter, className, variant, logoClassName, }: NavProps): import("react/jsx-runtime").JSX.Element;
59
+ //# sourceMappingURL=Nav.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Nav.d.ts","sourceRoot":"","sources":["Nav.tsx"],"names":[],"mappings":"AAUA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,oBAAY,eAAe,GAAG,CAAC,KAAK,EAAE,kBAAkB,KAAK,KAAK,CAAC,SAAS,CAAC;AAE7E,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;CAChC;AAED,MAAM,WAAW,OAAO;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAC;CAC9B;AAED,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAC;CAC9B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE;QACJ,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;QACtB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;QACvB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IACF,KAAK,EAAE,OAAO,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,SAAS,EAAE,CAAC;IACtB,GAAG,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IACtC,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;sEAGkE;IAClE,OAAO,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,QAAQ,CAAC;IAC1C;6EACyE;IACzE,aAAa,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,QAAQ,EAAE,OAAO,KAAK,MAAM,CAAC,CAAC;CAC1D;AAoKD,wBAAgB,GAAG,CAAC,EAClB,IAAI,EACJ,KAAK,EACL,OAAY,EACZ,GAAG,EACH,UAA8B,EAC9B,eAAsB,EACtB,eAAoB,EACpB,eAAgC,EAChC,YAAY,EACZ,SAAS,EACT,OAAoB,EACpB,aAAa,GACd,EAAE,QAAQ,2CA2WV"}
@@ -0,0 +1,10 @@
1
+ import * as React from "react";
2
+ export interface PageHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ ref?: React.Ref<HTMLDivElement>;
4
+ title: string;
5
+ description?: string;
6
+ action?: React.ReactNode;
7
+ }
8
+ declare function PageHeader({ className, title, description, action, ref, ...props }: PageHeaderProps): import("react/jsx-runtime").JSX.Element;
9
+ export { PageHeader };
10
+ //# sourceMappingURL=PageHeader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PageHeader.d.ts","sourceRoot":"","sources":["PageHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC3E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B;AAED,iBAAS,UAAU,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,eAAe,2CAkB5F;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
@@ -0,0 +1,12 @@
1
+ import * as React from "react";
2
+ export interface PaginationProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ ref?: React.Ref<HTMLDivElement>;
4
+ page: number;
5
+ pageSize: number;
6
+ totalItems: number;
7
+ totalPages: number;
8
+ onPageChange: (page: number) => void;
9
+ }
10
+ declare function Pagination({ className, page, pageSize, totalItems, totalPages, onPageChange, ref, ...props }: PaginationProps): import("react/jsx-runtime").JSX.Element | null;
11
+ export { Pagination };
12
+ //# sourceMappingURL=Pagination.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC3E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACtC;AAED,iBAAS,UAAU,CAAC,EAClB,SAAS,EACT,IAAI,EACJ,QAAQ,EACR,UAAU,EACV,UAAU,EACV,YAAY,EACZ,GAAG,EACH,GAAG,KAAK,EACT,EAAE,eAAe,kDAmCjB;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ import * as PopoverPrimitive from "@radix-ui/react-popover";
3
+ declare const Popover: any;
4
+ declare const PopoverTrigger: any;
5
+ declare function PopoverContent({ className, align, sideOffset, ref, ...props }: React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> & {
6
+ ref?: React.Ref<React.ElementRef<typeof PopoverPrimitive.Content>>;
7
+ }): import("react/jsx-runtime").JSX.Element;
8
+ export { Popover, PopoverTrigger, PopoverContent };
9
+ //# sourceMappingURL=Popover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["Popover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAG5D,QAAA,MAAM,OAAO,KAAwB,CAAC;AACtC,QAAA,MAAM,cAAc,KAA2B,CAAC;AAEhD,iBAAS,cAAc,CAAC,EACtB,SAAS,EACT,KAAgB,EAChB,UAAc,EACd,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,GAAG;IACnE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC;CACpE,2CAgBA;AAED,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC"}
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as ProgressPrimitive from "@radix-ui/react-progress";
3
+ declare function Progress({ className, value, max, ref, ...props }: React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> & {
4
+ ref?: React.Ref<React.ElementRef<typeof ProgressPrimitive.Root>>;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export { Progress };
7
+ //# sourceMappingURL=Progress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["Progress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,iBAAiB,MAAM,0BAA0B,CAAC;AAG9D,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,KAAK,EACL,GAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,GAAG;IACjE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC;CAClE,2CAwBA;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
@@ -0,0 +1,10 @@
1
+ import * as React from "react";
2
+ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
3
+ declare function RadioGroup({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root> & {
4
+ ref?: React.Ref<React.ElementRef<typeof RadioGroupPrimitive.Root>>;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ declare function RadioGroupItem({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> & {
7
+ ref?: React.Ref<React.ElementRef<typeof RadioGroupPrimitive.Item>>;
8
+ }): import("react/jsx-runtime").JSX.Element;
9
+ export { RadioGroup, RadioGroupItem };
10
+ //# sourceMappingURL=RadioGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["RadioGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;AAGnE,iBAAS,UAAU,CAAC,EAClB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC,GAAG;IACnE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC,CAAC,CAAC;CACpE,2CAQA;AAED,iBAAS,cAAc,CAAC,EACtB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC,GAAG;IACnE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC,CAAC,CAAC;CACpE,2CA2BA;AAED,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,CAAC"}
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ import * as SelectPrimitive from "@radix-ui/react-select";
3
+ declare const Select: any;
4
+ declare const SelectGroup: any;
5
+ declare const SelectValue: any;
6
+ declare function SelectTrigger({ className, children, ref, ...props }: React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> & {
7
+ ref?: React.Ref<React.ElementRef<typeof SelectPrimitive.Trigger>>;
8
+ }): import("react/jsx-runtime").JSX.Element;
9
+ declare function SelectContent({ className, children, position, ref, ...props }: React.ComponentPropsWithoutRef<typeof SelectPrimitive.Content> & {
10
+ ref?: React.Ref<React.ElementRef<typeof SelectPrimitive.Content>>;
11
+ }): import("react/jsx-runtime").JSX.Element;
12
+ declare function SelectLabel({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof SelectPrimitive.Label> & {
13
+ ref?: React.Ref<React.ElementRef<typeof SelectPrimitive.Label>>;
14
+ }): import("react/jsx-runtime").JSX.Element;
15
+ declare function SelectItem({ className, children, ref, ...props }: React.ComponentPropsWithoutRef<typeof SelectPrimitive.Item> & {
16
+ ref?: React.Ref<React.ElementRef<typeof SelectPrimitive.Item>>;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ declare function SelectSeparator({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator> & {
19
+ ref?: React.Ref<React.ElementRef<typeof SelectPrimitive.Separator>>;
20
+ }): import("react/jsx-runtime").JSX.Element;
21
+ export { Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectLabel, SelectItem, SelectSeparator, };
22
+ //# sourceMappingURL=Select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAG1D,QAAA,MAAM,MAAM,KAAuB,CAAC;AACpC,QAAA,MAAM,WAAW,KAAwB,CAAC;AAC1C,QAAA,MAAM,WAAW,KAAwB,CAAC;AAE1C,iBAAS,aAAa,CAAC,EACrB,SAAS,EACT,QAAQ,EACR,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC;CACnE,2CAiCA;AAED,iBAAS,aAAa,CAAC,EACrB,SAAS,EACT,QAAQ,EACR,QAAmB,EACnB,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC;CACnE,2CA2BA;AAED,iBAAS,WAAW,CAAC,EACnB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,GAAG;IAChE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;CACjE,2CAQA;AAED,iBAAS,UAAU,CAAC,EAClB,SAAS,EACT,QAAQ,EACR,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAAG;IAC/D,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC;CAChE,2CAgCA;AAED,iBAAS,eAAe,CAAC,EACvB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,GAAG;IACpE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC,CAAC;CACrE,2CAQA;AAED,OAAO,EACL,MAAM,EACN,WAAW,EACX,WAAW,EACX,aAAa,EACb,aAAa,EACb,WAAW,EACX,UAAU,EACV,eAAe,GAChB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as SeparatorPrimitive from "@radix-ui/react-separator";
3
+ declare function Separator({ className, orientation, decorative, ref, ...props }: React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> & {
4
+ ref?: React.Ref<React.ElementRef<typeof SeparatorPrimitive.Root>>;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export { Separator };
7
+ //# sourceMappingURL=Separator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Separator.d.ts","sourceRoot":"","sources":["Separator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,kBAAkB,MAAM,2BAA2B,CAAC;AAGhE,iBAAS,SAAS,CAAC,EACjB,SAAS,EACT,WAA0B,EAC1B,UAAiB,EACjB,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,kBAAkB,CAAC,IAAI,CAAC,GAAG;IAClE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC;CACnE,2CAcA;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ import * as DialogPrimitive from "@radix-ui/react-dialog";
3
+ import { type VariantProps } from "class-variance-authority";
4
+ declare const Sheet: any;
5
+ declare const SheetTrigger: any;
6
+ declare const SheetClose: any;
7
+ declare const SheetPortal: any;
8
+ declare function SheetOverlay({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay> & {
9
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Overlay>>;
10
+ }): import("react/jsx-runtime").JSX.Element;
11
+ declare const sheetContentVariants: any;
12
+ declare function SheetContent({ side, className, children, hideCloseButton, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & VariantProps<typeof sheetContentVariants> & {
13
+ hideCloseButton?: boolean;
14
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Content>>;
15
+ }): import("react/jsx-runtime").JSX.Element;
16
+ declare const SheetHeader: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
17
+ declare const SheetFooter: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
18
+ declare function SheetTitle({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title> & {
19
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Title>>;
20
+ }): import("react/jsx-runtime").JSX.Element;
21
+ declare function SheetDescription({ className, ref, ...props }: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description> & {
22
+ ref?: React.Ref<React.ElementRef<typeof DialogPrimitive.Description>>;
23
+ }): import("react/jsx-runtime").JSX.Element;
24
+ export { Sheet, SheetPortal, SheetOverlay, SheetClose, SheetTrigger, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, };
25
+ //# sourceMappingURL=Sheet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sheet.d.ts","sourceRoot":"","sources":["Sheet.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAGlE,QAAA,MAAM,KAAK,KAAuB,CAAC;AACnC,QAAA,MAAM,YAAY,KAA0B,CAAC;AAC7C,QAAA,MAAM,UAAU,KAAwB,CAAC;AACzC,QAAA,MAAM,WAAW,KAAyB,CAAC;AAE3C,iBAAS,YAAY,CAAC,EACpB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC;CACnE,2CAYA;AAED,QAAA,MAAM,oBAAoB,KA+BzB,CAAC;AAEF,iBAAS,YAAY,CAAC,EACpB,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,eAAe,EACf,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAC/D,YAAY,CAAC,OAAO,oBAAoB,CAAC,GAAG;IAC1C,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC;CACnE,2CAmCF;AAED,QAAA,MAAM,WAAW,4BAGd,MAAM,cAAc,CAAC,cAAc,CAAC,4CAKtC,CAAC;AAEF,QAAA,MAAM,WAAW,4BAGd,MAAM,cAAc,CAAC,cAAc,CAAC,4CAQtC,CAAC;AAEF,iBAAS,UAAU,CAAC,EAClB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,GAAG;IAChE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;CACjE,2CAWA;AAED,iBAAS,gBAAgB,CAAC,EACxB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,WAAW,CAAC,GAAG;IACtE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC;CACvE,2CAQA;AAED,OAAO,EACL,KAAK,EACL,WAAW,EACX,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,WAAW,EACX,UAAU,EACV,gBAAgB,GACjB,CAAC"}
@@ -0,0 +1,36 @@
1
+ import * as React from "react";
2
+ export interface SidebarLinkRenderProps {
3
+ href: string;
4
+ className?: string;
5
+ onClick?: () => void;
6
+ children: React.ReactNode;
7
+ }
8
+ export declare type SidebarLinkRenderFn = (props: SidebarLinkRenderProps) => React.ReactNode;
9
+ export interface SidebarProps extends React.HTMLAttributes<HTMLElement> {
10
+ ref?: React.Ref<HTMLElement>;
11
+ renderLink?: SidebarLinkRenderFn;
12
+ }
13
+ declare function Sidebar({ className, children, renderLink, ref, ...props }: SidebarProps): import("react/jsx-runtime").JSX.Element;
14
+ declare function SidebarHeader({ className, ref, ...props }: React.HTMLAttributes<HTMLDivElement> & {
15
+ ref?: React.Ref<HTMLDivElement>;
16
+ }): import("react/jsx-runtime").JSX.Element;
17
+ declare function SidebarContent({ className, ref, ...props }: React.HTMLAttributes<HTMLDivElement> & {
18
+ ref?: React.Ref<HTMLDivElement>;
19
+ }): import("react/jsx-runtime").JSX.Element;
20
+ declare function SidebarFooter({ className, ref, ...props }: React.HTMLAttributes<HTMLDivElement> & {
21
+ ref?: React.Ref<HTMLDivElement>;
22
+ }): import("react/jsx-runtime").JSX.Element;
23
+ export interface SidebarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
24
+ ref?: React.Ref<HTMLDivElement>;
25
+ label?: string;
26
+ }
27
+ declare function SidebarGroup({ className, label, children, ref, ...props }: SidebarGroupProps): import("react/jsx-runtime").JSX.Element;
28
+ export interface SidebarItemProps extends React.HTMLAttributes<HTMLLIElement> {
29
+ ref?: React.Ref<HTMLLIElement>;
30
+ href: string;
31
+ icon?: React.ReactNode;
32
+ active?: boolean;
33
+ }
34
+ declare function SidebarItem({ className, href, icon, active, children, ref, ...props }: SidebarItemProps): import("react/jsx-runtime").JSX.Element;
35
+ export { Sidebar, SidebarHeader, SidebarContent, SidebarFooter, SidebarGroup, SidebarItem, };
36
+ //# sourceMappingURL=Sidebar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sidebar.d.ts","sourceRoot":"","sources":["Sidebar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,oBAAY,mBAAmB,GAAG,CAAC,KAAK,EAAE,sBAAsB,KAAK,KAAK,CAAC,SAAS,CAAC;AA8BrF,MAAM,WAAW,YAAa,SAAQ,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC;IACrE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IAC7B,UAAU,CAAC,EAAE,mBAAmB,CAAC;CAClC;AAED,iBAAS,OAAO,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,UAA8B,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,YAAY,2CAepG;AAMD,iBAAS,aAAa,CAAC,EACrB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,2CAQ5E;AAMD,iBAAS,cAAc,CAAC,EACtB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,2CAQ5E;AAMD,iBAAS,aAAa,CAAC,EACrB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,2CAQ5E;AAMD,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC7E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,iBAAS,YAAY,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,iBAAiB,2CAWrF;AAMD,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,cAAc,CAAC,aAAa,CAAC;IAC3E,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,EAAE,gBAAgB,2CAiChG;AAED,OAAO,EACL,OAAO,EACP,aAAa,EACb,cAAc,EACd,aAAa,EACb,YAAY,EACZ,WAAW,GACZ,CAAC"}
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ declare function Skeleton({ className, ref, ...props }: React.HTMLAttributes<HTMLDivElement> & {
3
+ ref?: React.Ref<HTMLDivElement>;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ export { Skeleton };
6
+ //# sourceMappingURL=Skeleton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,GAAG,EACH,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAAG;IACxC,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;CACjC,2CAUA;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
@@ -0,0 +1,40 @@
1
+ import * as React from "react";
2
+ declare const colorMap: {
3
+ readonly accent: {
4
+ readonly bg: "bg-accent/10";
5
+ readonly text: "text-accent";
6
+ readonly icon: "text-accent";
7
+ };
8
+ readonly success: {
9
+ readonly bg: "bg-success/10";
10
+ readonly text: "text-success";
11
+ readonly icon: "text-success";
12
+ };
13
+ readonly danger: {
14
+ readonly bg: "bg-danger/10";
15
+ readonly text: "text-danger";
16
+ readonly icon: "text-danger";
17
+ };
18
+ readonly warning: {
19
+ readonly bg: "bg-warning/10";
20
+ readonly text: "text-warning";
21
+ readonly icon: "text-warning";
22
+ };
23
+ readonly default: {
24
+ readonly bg: "bg-bg-elevated";
25
+ readonly text: "text-text-primary";
26
+ readonly icon: "text-text-secondary";
27
+ };
28
+ };
29
+ export declare type StatCardColor = keyof typeof colorMap;
30
+ export interface StatCardProps extends React.HTMLAttributes<HTMLDivElement> {
31
+ ref?: React.Ref<HTMLDivElement>;
32
+ icon?: React.ReactNode;
33
+ label: string;
34
+ value: React.ReactNode;
35
+ loading?: boolean;
36
+ color?: StatCardColor;
37
+ }
38
+ declare function StatCard({ className, icon, label, value, loading, color, ref, ...props }: StatCardProps): import("react/jsx-runtime").JSX.Element;
39
+ export { StatCard };
40
+ //# sourceMappingURL=StatCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StatCard.d.ts","sourceRoot":"","sources":["StatCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;CAMJ,CAAC;AAEX,oBAAY,aAAa,GAAG,MAAM,OAAO,QAAQ,CAAC;AAElD,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACzE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IAChC,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,aAAa,CAAC;CACvB;AAED,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,IAAI,EACJ,KAAK,EACL,KAAK,EACL,OAAe,EACf,KAAiB,EACjB,GAAG,EACH,GAAG,KAAK,EACT,EAAE,aAAa,2CAkCf;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}