@squadbase/vantage 0.0.1 → 0.1.1

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 (187) hide show
  1. package/README.md +24 -4
  2. package/dist/{chunk-ZGDU5YLH.js → chunk-5L2MH2NG.js} +16 -7
  3. package/dist/chunk-5L2MH2NG.js.map +1 -0
  4. package/dist/chunk-7IPAXPPY.js +51 -0
  5. package/dist/chunk-7IPAXPPY.js.map +1 -0
  6. package/dist/chunk-A2UUGASH.js +12 -0
  7. package/dist/chunk-A2UUGASH.js.map +1 -0
  8. package/dist/chunk-DTDVSFRY.js +29 -0
  9. package/dist/chunk-DTDVSFRY.js.map +1 -0
  10. package/dist/chunk-WQZYXXQW.js +2249 -0
  11. package/dist/chunk-WQZYXXQW.js.map +1 -0
  12. package/dist/{chunk-73J5ZD4C.js → chunk-YLAB6UQS.js} +17 -3
  13. package/dist/chunk-YLAB6UQS.js.map +1 -0
  14. package/dist/cli.js +607 -36
  15. package/dist/cli.js.map +1 -1
  16. package/dist/client/index.d.ts +2 -1
  17. package/dist/client/index.js +3 -1
  18. package/dist/client/index.js.map +1 -1
  19. package/dist/components/index.d.ts +575 -0
  20. package/dist/components/index.js +2097 -0
  21. package/dist/components/index.js.map +1 -0
  22. package/dist/{define-page-B6y9TOfZ.d.ts → define-page-BfhrK99G.d.ts} +5 -0
  23. package/dist/index.d.ts +2 -2
  24. package/dist/index.js +1 -1
  25. package/dist/index.js.map +1 -1
  26. package/dist/markdown/index.d.ts +9 -0
  27. package/dist/markdown/index.js +26 -0
  28. package/dist/markdown/index.js.map +1 -0
  29. package/dist/query/index.d.ts +95 -2
  30. package/dist/query/index.js +102 -1
  31. package/dist/query/index.js.map +1 -1
  32. package/dist/router/index.d.ts +86 -1
  33. package/dist/router/index.js +71 -7
  34. package/dist/router/index.js.map +1 -1
  35. package/dist/server/node.js +6 -1
  36. package/dist/server/node.js.map +1 -1
  37. package/dist/ui/index.d.ts +316 -200
  38. package/dist/ui/index.js +566 -511
  39. package/dist/ui/index.js.map +1 -1
  40. package/dist/vite/index.js +2 -2
  41. package/docs/en/agent-skills.md +89 -0
  42. package/docs/en/api-and-server.md +84 -0
  43. package/docs/en/build-and-deploy.md +280 -0
  44. package/docs/en/cli-reference.md +311 -0
  45. package/docs/en/components.md +235 -0
  46. package/docs/en/data-fetching.md +142 -0
  47. package/docs/en/environment-variables.md +69 -0
  48. package/docs/en/getting-started.md +95 -0
  49. package/docs/en/index.md +65 -0
  50. package/docs/en/markdown/markdown-renderer.md +44 -0
  51. package/docs/en/pages-and-metadata.md +59 -0
  52. package/docs/en/parts/app-shell.md +54 -0
  53. package/docs/en/parts/dashboard-card.md +64 -0
  54. package/docs/en/parts/data-table.md +86 -0
  55. package/docs/en/parts/date-range-picker.md +41 -0
  56. package/docs/en/parts/echart.md +53 -0
  57. package/docs/en/parts/filter-bar.md +66 -0
  58. package/docs/en/parts/funnel-steps.md +33 -0
  59. package/docs/en/parts/metric-value.md +23 -0
  60. package/docs/en/parts/multi-select.md +27 -0
  61. package/docs/en/parts/page-shell.md +45 -0
  62. package/docs/en/parts/placeholder.md +38 -0
  63. package/docs/en/parts/searchable-select.md +47 -0
  64. package/docs/en/parts/section-header.md +20 -0
  65. package/docs/en/parts/segmented-control.md +25 -0
  66. package/docs/en/parts/sparkline.md +47 -0
  67. package/docs/en/parts/status-badge.md +44 -0
  68. package/docs/en/parts/trend-indicator.md +26 -0
  69. package/docs/en/routing.md +177 -0
  70. package/docs/en/ui/accordion.md +36 -0
  71. package/docs/en/ui/alert.md +31 -0
  72. package/docs/en/ui/badge.md +23 -0
  73. package/docs/en/ui/breadcrumb.md +38 -0
  74. package/docs/en/ui/button.md +39 -0
  75. package/docs/en/ui/calendar.md +28 -0
  76. package/docs/en/ui/card.md +35 -0
  77. package/docs/en/ui/checkbox.md +34 -0
  78. package/docs/en/ui/cn.md +34 -0
  79. package/docs/en/ui/collapsible.md +21 -0
  80. package/docs/en/ui/command.md +37 -0
  81. package/docs/en/ui/dialog.md +52 -0
  82. package/docs/en/ui/dropdown-menu.md +50 -0
  83. package/docs/en/ui/empty.md +22 -0
  84. package/docs/en/ui/error-state.md +50 -0
  85. package/docs/en/ui/input-group.md +30 -0
  86. package/docs/en/ui/input.md +28 -0
  87. package/docs/en/ui/label.md +19 -0
  88. package/docs/en/ui/loading.md +19 -0
  89. package/docs/en/ui/popover.md +34 -0
  90. package/docs/en/ui/progress.md +28 -0
  91. package/docs/en/ui/scroll-area.md +23 -0
  92. package/docs/en/ui/select.md +63 -0
  93. package/docs/en/ui/separator.md +15 -0
  94. package/docs/en/ui/sheet.md +28 -0
  95. package/docs/en/ui/sidebar.md +92 -0
  96. package/docs/en/ui/skeleton.md +16 -0
  97. package/docs/en/ui/slider.md +21 -0
  98. package/docs/en/ui/spinner.md +14 -0
  99. package/docs/en/ui/switch.md +19 -0
  100. package/docs/en/ui/table.md +24 -0
  101. package/docs/en/ui/tabs.md +23 -0
  102. package/docs/en/ui/textarea.md +15 -0
  103. package/docs/en/ui/toggle-group.md +26 -0
  104. package/docs/en/ui/toggle.md +19 -0
  105. package/docs/en/ui/tooltip.md +22 -0
  106. package/docs/en/ui/use-is-mobile.md +18 -0
  107. package/docs/en/ui-and-theming.md +95 -0
  108. package/docs/index.json +1346 -0
  109. package/docs/ja/agent-skills.md +87 -0
  110. package/docs/ja/api-and-server.md +84 -0
  111. package/docs/ja/build-and-deploy.md +279 -0
  112. package/docs/ja/cli-reference.md +305 -0
  113. package/docs/ja/components.md +231 -0
  114. package/docs/ja/data-fetching.md +142 -0
  115. package/docs/ja/environment-variables.md +68 -0
  116. package/docs/ja/getting-started.md +95 -0
  117. package/docs/ja/index.md +65 -0
  118. package/docs/ja/markdown/markdown-renderer.md +43 -0
  119. package/docs/ja/pages-and-metadata.md +59 -0
  120. package/docs/ja/parts/app-shell.md +54 -0
  121. package/docs/ja/parts/dashboard-card.md +64 -0
  122. package/docs/ja/parts/data-table.md +85 -0
  123. package/docs/ja/parts/date-range-picker.md +41 -0
  124. package/docs/ja/parts/echart.md +52 -0
  125. package/docs/ja/parts/filter-bar.md +64 -0
  126. package/docs/ja/parts/funnel-steps.md +33 -0
  127. package/docs/ja/parts/metric-value.md +25 -0
  128. package/docs/ja/parts/multi-select.md +27 -0
  129. package/docs/ja/parts/page-shell.md +45 -0
  130. package/docs/ja/parts/placeholder.md +37 -0
  131. package/docs/ja/parts/searchable-select.md +47 -0
  132. package/docs/ja/parts/section-header.md +20 -0
  133. package/docs/ja/parts/segmented-control.md +26 -0
  134. package/docs/ja/parts/sparkline.md +47 -0
  135. package/docs/ja/parts/status-badge.md +44 -0
  136. package/docs/ja/parts/trend-indicator.md +26 -0
  137. package/docs/ja/routing.md +175 -0
  138. package/docs/ja/ui/accordion.md +37 -0
  139. package/docs/ja/ui/alert.md +31 -0
  140. package/docs/ja/ui/badge.md +23 -0
  141. package/docs/ja/ui/breadcrumb.md +38 -0
  142. package/docs/ja/ui/button.md +39 -0
  143. package/docs/ja/ui/calendar.md +28 -0
  144. package/docs/ja/ui/card.md +35 -0
  145. package/docs/ja/ui/checkbox.md +34 -0
  146. package/docs/ja/ui/cn.md +34 -0
  147. package/docs/ja/ui/collapsible.md +21 -0
  148. package/docs/ja/ui/command.md +36 -0
  149. package/docs/ja/ui/dialog.md +51 -0
  150. package/docs/ja/ui/dropdown-menu.md +50 -0
  151. package/docs/ja/ui/empty.md +22 -0
  152. package/docs/ja/ui/error-state.md +50 -0
  153. package/docs/ja/ui/input-group.md +30 -0
  154. package/docs/ja/ui/input.md +28 -0
  155. package/docs/ja/ui/label.md +19 -0
  156. package/docs/ja/ui/loading.md +19 -0
  157. package/docs/ja/ui/popover.md +34 -0
  158. package/docs/ja/ui/progress.md +28 -0
  159. package/docs/ja/ui/scroll-area.md +24 -0
  160. package/docs/ja/ui/select.md +64 -0
  161. package/docs/ja/ui/separator.md +15 -0
  162. package/docs/ja/ui/sheet.md +28 -0
  163. package/docs/ja/ui/sidebar.md +92 -0
  164. package/docs/ja/ui/skeleton.md +16 -0
  165. package/docs/ja/ui/slider.md +21 -0
  166. package/docs/ja/ui/spinner.md +14 -0
  167. package/docs/ja/ui/switch.md +19 -0
  168. package/docs/ja/ui/table.md +24 -0
  169. package/docs/ja/ui/tabs.md +24 -0
  170. package/docs/ja/ui/textarea.md +15 -0
  171. package/docs/ja/ui/toggle-group.md +27 -0
  172. package/docs/ja/ui/toggle.md +19 -0
  173. package/docs/ja/ui/tooltip.md +22 -0
  174. package/docs/ja/ui/use-is-mobile.md +18 -0
  175. package/docs/ja/ui-and-theming.md +95 -0
  176. package/package.json +29 -4
  177. package/registry/blocks/sales-overview.tsx +43 -19
  178. package/registry/ui/data-table.tsx +702 -102
  179. package/skills/vantage-add-feature/SKILL.md +153 -0
  180. package/skills/vantage-app/SKILL.md +291 -0
  181. package/skills/vantage-pitfalls/SKILL.md +139 -0
  182. package/templates/AGENTS.md +313 -0
  183. package/theme.css +178 -40
  184. package/dist/chunk-73J5ZD4C.js.map +0 -1
  185. package/dist/chunk-ATYZ45XL.js +0 -19
  186. package/dist/chunk-ATYZ45XL.js.map +0 -1
  187. package/dist/chunk-ZGDU5YLH.js.map +0 -1
@@ -1,217 +1,333 @@
1
- import * as react from 'react';
2
- import { ButtonHTMLAttributes, InputHTMLAttributes, SelectHTMLAttributes, HTMLAttributes, ReactNode, TdHTMLAttributes } from 'react';
3
-
4
- /** Join class values, dropping falsy entries. Small, dependency-free. */
5
- type ClassValue = string | number | false | null | undefined;
6
- declare function cn(...classes: ClassValue[]): string;
7
-
8
- type ButtonVariant = "default" | "secondary" | "outline" | "ghost" | "destructive";
9
- type ButtonSize = "sm" | "default" | "lg" | "icon";
10
- interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
11
- variant?: ButtonVariant;
12
- size?: ButtonSize;
13
- }
14
- declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
15
-
16
- declare const Input: react.ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & react.RefAttributes<HTMLInputElement>>;
17
- interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
18
- options?: {
19
- label: string;
20
- value: string;
21
- }[];
22
- }
23
- declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLSelectElement>>;
24
- interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
25
- label?: string;
26
- }
27
- declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
28
-
29
- type Div = HTMLAttributes<HTMLDivElement>;
30
- declare function Card({ className, ...props }: Div): react.JSX.Element;
31
- declare function CardHeader({ className, ...props }: Div): react.JSX.Element;
32
- declare function CardTitle({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react.JSX.Element;
33
- declare function CardDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react.JSX.Element;
34
- declare function CardContent({ className, ...props }: Div): react.JSX.Element;
35
- declare function CardFooter({ className, ...props }: Div): react.JSX.Element;
36
-
37
- interface TabsProps {
38
- defaultValue: string;
39
- value?: string;
40
- onValueChange?: (v: string) => void;
41
- className?: string;
42
- children: ReactNode;
43
- }
44
- declare function Tabs({ defaultValue, value, onValueChange, className, children }: TabsProps): react.JSX.Element;
45
- declare function TabsList({ className, children }: {
46
- className?: string;
47
- children: ReactNode;
48
- }): react.JSX.Element;
49
- declare function TabsTrigger({ value, children }: {
50
- value: string;
51
- children: ReactNode;
52
- }): react.JSX.Element;
53
- declare function TabsContent({ value, className, children }: {
54
- value: string;
55
- className?: string;
56
- children: ReactNode;
57
- }): react.JSX.Element | null;
58
-
59
- declare function Table({ className, ...props }: HTMLAttributes<HTMLTableElement>): react.JSX.Element;
60
- declare function TableHeader(props: HTMLAttributes<HTMLTableSectionElement>): react.JSX.Element;
61
- declare function TableBody(props: HTMLAttributes<HTMLTableSectionElement>): react.JSX.Element;
62
- declare function TableRow({ className, ...props }: HTMLAttributes<HTMLTableRowElement>): react.JSX.Element;
63
- declare function TableHead({ className, ...props }: HTMLAttributes<HTMLTableCellElement>): react.JSX.Element;
64
- declare function TableCell({ className, ...props }: TdHTMLAttributes<HTMLTableCellElement>): react.JSX.Element;
65
- interface Column<T> {
66
- key: string;
67
- header: string;
68
- render?: (row: T) => ReactNode;
69
- sortable?: boolean;
70
- align?: "left" | "right" | "center";
71
- accessor?: (row: T) => string | number;
72
- }
73
- interface DataTableProps<T> {
74
- columns: Column<T>[];
75
- data: T[];
76
- pageSize?: number;
77
- getRowId?: (row: T, index: number) => string;
78
- empty?: ReactNode;
79
- className?: string;
80
- }
81
- declare function DataTable<T extends Record<string, unknown>>({ columns, data, pageSize, getRowId, empty, className, }: DataTableProps<T>): react.JSX.Element;
82
- interface PaginationProps {
83
- page: number;
84
- pageCount: number;
85
- total?: number;
86
- onPageChange: (page: number) => void;
87
- }
88
- declare function Pagination({ page, pageCount, total, onPageChange }: PaginationProps): react.JSX.Element;
89
-
90
- interface MetricCardProps {
91
- label: string;
92
- value: ReactNode;
93
- delta?: number;
94
- deltaLabel?: string;
95
- icon?: ReactNode;
96
- className?: string;
97
- }
98
- /** A KPI tile: label, big value, and an optional trend delta. */
99
- declare function MetricCard({ label, value, delta, deltaLabel, icon, className }: MetricCardProps): react.JSX.Element;
100
-
101
- interface FilterBarProps extends HTMLAttributes<HTMLDivElement> {
102
- children: ReactNode;
103
- }
104
- /** A responsive row of filter controls. */
105
- declare function FilterBar({ className, children, ...props }: FilterBarProps): react.JSX.Element;
106
- declare function FilterField({ label, children }: {
107
- label: string;
108
- children: ReactNode;
109
- }): react.JSX.Element;
110
-
111
- interface DashboardShellProps {
112
- title?: ReactNode;
113
- description?: ReactNode;
114
- actions?: ReactNode;
115
- nav?: ReactNode;
116
- children: ReactNode;
1
+ import { ClassValue } from 'clsx';
2
+ export { ClassValue } from 'clsx';
3
+ import * as React$1 from 'react';
4
+ import { ReactNode } from 'react';
5
+ import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
6
+ import * as class_variance_authority_types from 'class-variance-authority/types';
7
+ import { VariantProps } from 'class-variance-authority';
8
+ import { useRender } from '@base-ui/react/use-render';
9
+ import { Button as Button$1 } from '@base-ui/react/button';
10
+ import { DayPicker, DayButton, Locale } from 'react-day-picker';
11
+ import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
12
+ import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
13
+ import { Command as Command$1 } from 'cmdk';
14
+ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
15
+ import { Menu } from '@base-ui/react/menu';
16
+ import { Popover as Popover$1 } from '@base-ui/react/popover';
17
+ import { Progress as Progress$1 } from '@base-ui/react/progress';
18
+ import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
19
+ import { Select as Select$1 } from '@base-ui/react/select';
20
+ import { Separator as Separator$1 } from '@base-ui/react/separator';
21
+ import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
22
+ import { Slider as Slider$1 } from '@base-ui/react/slider';
23
+ import { Switch as Switch$1 } from '@base-ui/react/switch';
24
+ import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
25
+ import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
26
+ import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
27
+
28
+ /**
29
+ * Class merger used by every component in the kit. `clsx` resolves conditional
30
+ * class values, `tailwind-merge` drops the earlier of two conflicting Tailwind
31
+ * utilities so a caller's `className` always wins over a component default.
32
+ */
33
+
34
+ declare function cn(...inputs: ClassValue[]): string;
35
+
36
+ declare function Accordion({ className, ...props }: Accordion$1.Root.Props): React$1.JSX.Element;
37
+ declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): React$1.JSX.Element;
38
+ declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): React$1.JSX.Element;
39
+ declare function AccordionContent({ className, children, ...props }: Accordion$1.Panel.Props): React$1.JSX.Element;
40
+
41
+ declare const alertVariants: (props?: ({
42
+ variant?: "default" | "destructive" | null | undefined;
43
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
44
+ declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): React$1.JSX.Element;
45
+ declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
46
+ declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
47
+ declare function AlertAction({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
48
+
49
+ declare const badgeVariants: (props?: ({
50
+ variant?: "link" | "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
51
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
52
+ declare function Badge({ className, variant, render, ...props }: useRender.ComponentProps<"span"> & VariantProps<typeof badgeVariants>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
53
+
54
+ declare function Breadcrumb({ className, ...props }: React$1.ComponentProps<"nav">): React$1.JSX.Element;
55
+ declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): React$1.JSX.Element;
56
+ declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
57
+ declare function BreadcrumbLink({ className, render, ...props }: useRender.ComponentProps<"a">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
58
+ declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
59
+ declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
60
+ declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
61
+
62
+ declare const buttonVariants: (props?: ({
63
+ variant?: "link" | "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
64
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
65
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
66
+ declare function Button({ className, variant, size, ...props }: Button$1.Props & VariantProps<typeof buttonVariants>): React$1.JSX.Element;
67
+
68
+ declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, locale, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
69
+ buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
70
+ }): React$1.JSX.Element;
71
+ declare function CalendarDayButton({ className, day, modifiers, locale, ...props }: React$1.ComponentProps<typeof DayButton> & {
72
+ locale?: Partial<Locale>;
73
+ }): React$1.JSX.Element;
74
+
75
+ declare function Card({ className, size, ...props }: React$1.ComponentProps<"div"> & {
76
+ size?: "default" | "sm";
77
+ }): React$1.JSX.Element;
78
+ declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
79
+ declare function CardTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
80
+ declare function CardDescription({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
81
+ declare function CardAction({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
82
+ declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
83
+ declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
84
+
85
+ declare function Checkbox({ className, ...props }: Checkbox$1.Root.Props): React$1.JSX.Element;
86
+
87
+ declare function Collapsible({ ...props }: Collapsible$1.Root.Props): React$1.JSX.Element;
88
+ declare function CollapsibleTrigger({ ...props }: Collapsible$1.Trigger.Props): React$1.JSX.Element;
89
+ declare function CollapsibleContent({ ...props }: Collapsible$1.Panel.Props): React$1.JSX.Element;
90
+
91
+ declare function Dialog({ ...props }: Dialog$1.Root.Props): React$1.JSX.Element;
92
+ declare function DialogTrigger({ ...props }: Dialog$1.Trigger.Props): React$1.JSX.Element;
93
+ declare function DialogPortal({ ...props }: Dialog$1.Portal.Props): React$1.JSX.Element;
94
+ declare function DialogClose({ ...props }: Dialog$1.Close.Props): React$1.JSX.Element;
95
+ declare function DialogOverlay({ className, ...props }: Dialog$1.Backdrop.Props): React$1.JSX.Element;
96
+ declare function DialogContent({ className, children, showCloseButton, ...props }: Dialog$1.Popup.Props & {
97
+ showCloseButton?: boolean;
98
+ }): React$1.JSX.Element;
99
+ declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
100
+ declare function DialogFooter({ className, showCloseButton, children, ...props }: React$1.ComponentProps<"div"> & {
101
+ showCloseButton?: boolean;
102
+ }): React$1.JSX.Element;
103
+ declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): React$1.JSX.Element;
104
+ declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): React$1.JSX.Element;
105
+
106
+ declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): React$1.JSX.Element;
107
+ declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit<React$1.ComponentProps<typeof Dialog>, "children"> & {
108
+ title?: string;
109
+ description?: string;
117
110
  className?: string;
118
- }
119
- /** Page-level layout: sticky header with title/actions, then content. */
120
- declare function DashboardShell({ title, description, actions, nav, children, className }: DashboardShellProps): react.JSX.Element;
111
+ showCloseButton?: boolean;
112
+ children: React$1.ReactNode;
113
+ }): React$1.JSX.Element;
114
+ declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): React$1.JSX.Element;
115
+ declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): React$1.JSX.Element;
116
+ declare function CommandEmpty({ className, ...props }: React$1.ComponentProps<typeof Command$1.Empty>): React$1.JSX.Element;
117
+ declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): React$1.JSX.Element;
118
+ declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): React$1.JSX.Element;
119
+ declare function CommandItem({ className, children, ...props }: React$1.ComponentProps<typeof Command$1.Item>): React$1.JSX.Element;
120
+ declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
121
+
122
+ declare function DropdownMenu({ ...props }: Menu.Root.Props): React$1.JSX.Element;
123
+ declare function DropdownMenuPortal({ ...props }: Menu.Portal.Props): React$1.JSX.Element;
124
+ declare function DropdownMenuTrigger({ ...props }: Menu.Trigger.Props): React$1.JSX.Element;
125
+ declare function DropdownMenuContent({ align, alignOffset, side, sideOffset, className, ...props }: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): React$1.JSX.Element;
126
+ declare function DropdownMenuGroup({ ...props }: Menu.Group.Props): React$1.JSX.Element;
127
+ declare function DropdownMenuLabel({ className, inset, ...props }: Menu.GroupLabel.Props & {
128
+ inset?: boolean;
129
+ }): React$1.JSX.Element;
130
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: Menu.Item.Props & {
131
+ inset?: boolean;
132
+ variant?: "default" | "destructive";
133
+ }): React$1.JSX.Element;
134
+ declare function DropdownMenuSub({ ...props }: Menu.SubmenuRoot.Props): React$1.JSX.Element;
135
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: Menu.SubmenuTrigger.Props & {
136
+ inset?: boolean;
137
+ }): React$1.JSX.Element;
138
+ declare function DropdownMenuSubContent({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): React$1.JSX.Element;
139
+ declare function DropdownMenuCheckboxItem({ className, children, checked, inset, ...props }: Menu.CheckboxItem.Props & {
140
+ inset?: boolean;
141
+ }): React$1.JSX.Element;
142
+ declare function DropdownMenuRadioGroup({ ...props }: Menu.RadioGroup.Props): React$1.JSX.Element;
143
+ declare function DropdownMenuRadioItem({ className, children, inset, ...props }: Menu.RadioItem.Props & {
144
+ inset?: boolean;
145
+ }): React$1.JSX.Element;
146
+ declare function DropdownMenuSeparator({ className, ...props }: Menu.Separator.Props): React$1.JSX.Element;
147
+ declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
148
+
149
+ declare function Input({ className, type, ...props }: React$1.ComponentProps<"input">): React$1.JSX.Element;
150
+
151
+ declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
152
+ declare const inputGroupAddonVariants: (props?: ({
153
+ align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
154
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
155
+ declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): React$1.JSX.Element;
156
+ declare const inputGroupButtonVariants: (props?: ({
157
+ size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
158
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
159
+ declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
160
+ type?: "button" | "submit" | "reset";
161
+ }): React$1.JSX.Element;
162
+ declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
163
+ declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): React$1.JSX.Element;
164
+ declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): React$1.JSX.Element;
165
+
166
+ declare function Label({ className, ...props }: React$1.ComponentProps<"label">): React$1.JSX.Element;
167
+
168
+ declare function Popover({ ...props }: Popover$1.Root.Props): React$1.JSX.Element;
169
+ declare function PopoverTrigger({ ...props }: Popover$1.Trigger.Props): React$1.JSX.Element;
170
+ declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): React$1.JSX.Element;
171
+ declare function PopoverHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
172
+ declare function PopoverTitle({ className, ...props }: Popover$1.Title.Props): React$1.JSX.Element;
173
+ declare function PopoverDescription({ className, ...props }: Popover$1.Description.Props): React$1.JSX.Element;
174
+
175
+ declare function Progress({ className, children, value, ...props }: Progress$1.Root.Props): React$1.JSX.Element;
176
+ declare function ProgressTrack({ className, ...props }: Progress$1.Track.Props): React$1.JSX.Element;
177
+ declare function ProgressIndicator({ className, ...props }: Progress$1.Indicator.Props): React$1.JSX.Element;
178
+ declare function ProgressLabel({ className, ...props }: Progress$1.Label.Props): React$1.JSX.Element;
179
+ declare function ProgressValue({ className, ...props }: Progress$1.Value.Props): React$1.JSX.Element;
180
+
181
+ declare function ScrollArea({ className, children, ...props }: ScrollArea$1.Root.Props): React$1.JSX.Element;
182
+ declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): React$1.JSX.Element;
183
+
184
+ declare const Select: typeof Select$1.Root;
185
+ declare function SelectGroup({ className, ...props }: Select$1.Group.Props): React$1.JSX.Element;
186
+ declare function SelectValue({ className, ...props }: Select$1.Value.Props): React$1.JSX.Element;
187
+ declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & {
188
+ size?: "sm" | "default";
189
+ }): React$1.JSX.Element;
190
+ declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): React$1.JSX.Element;
191
+ declare function SelectLabel({ className, ...props }: Select$1.GroupLabel.Props): React$1.JSX.Element;
192
+ declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): React$1.JSX.Element;
193
+ declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): React$1.JSX.Element;
194
+ declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): React$1.JSX.Element;
195
+ declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): React$1.JSX.Element;
196
+
197
+ declare function Separator({ className, orientation, ...props }: Separator$1.Props): React$1.JSX.Element;
198
+
199
+ declare function Sheet({ ...props }: Dialog$1.Root.Props): React$1.JSX.Element;
200
+ declare function SheetTrigger({ ...props }: Dialog$1.Trigger.Props): React$1.JSX.Element;
201
+ declare function SheetClose({ ...props }: Dialog$1.Close.Props): React$1.JSX.Element;
202
+ declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog$1.Popup.Props & {
203
+ side?: "top" | "right" | "bottom" | "left";
204
+ showCloseButton?: boolean;
205
+ }): React$1.JSX.Element;
206
+ declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
207
+ declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
208
+ declare function SheetTitle({ className, ...props }: Dialog$1.Title.Props): React$1.JSX.Element;
209
+ declare function SheetDescription({ className, ...props }: Dialog$1.Description.Props): React$1.JSX.Element;
210
+
211
+ declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): React$1.JSX.Element;
212
+ declare function Tooltip({ ...props }: Tooltip$1.Root.Props): React$1.JSX.Element;
213
+ declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): React$1.JSX.Element;
214
+ declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: Tooltip$1.Popup.Props & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): React$1.JSX.Element;
215
+
216
+ type SidebarContextProps = {
217
+ state: "expanded" | "collapsed";
218
+ open: boolean;
219
+ setOpen: (open: boolean) => void;
220
+ openMobile: boolean;
221
+ setOpenMobile: (open: boolean) => void;
222
+ isMobile: boolean;
223
+ toggleSidebar: () => void;
224
+ };
225
+ declare function useSidebar(): SidebarContextProps;
226
+ declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<"div"> & {
227
+ defaultOpen?: boolean;
228
+ open?: boolean;
229
+ onOpenChange?: (open: boolean) => void;
230
+ }): React$1.JSX.Element;
231
+ declare function Sidebar({ side, variant, collapsible, className, children, dir, ...props }: React$1.ComponentProps<"div"> & {
232
+ side?: "left" | "right";
233
+ variant?: "sidebar" | "floating" | "inset";
234
+ collapsible?: "offcanvas" | "icon" | "none";
235
+ }): React$1.JSX.Element;
236
+ declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): React$1.JSX.Element;
237
+ declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): React$1.JSX.Element;
238
+ declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): React$1.JSX.Element;
239
+ declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): React$1.JSX.Element;
240
+ declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
241
+ declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
242
+ declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): React$1.JSX.Element;
243
+ declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
244
+ declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
245
+ declare function SidebarGroupLabel({ className, render, ...props }: useRender.ComponentProps<"div"> & React$1.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
246
+ declare function SidebarGroupAction({ className, render, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
247
+ declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
248
+ declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): React$1.JSX.Element;
249
+ declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
250
+ declare const sidebarMenuButtonVariants: (props?: ({
251
+ variant?: "default" | "outline" | null | undefined;
252
+ size?: "default" | "sm" | "lg" | null | undefined;
253
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
254
+ declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button"> & {
255
+ isActive?: boolean;
256
+ tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
257
+ } & VariantProps<typeof sidebarMenuButtonVariants>): React$1.JSX.Element;
258
+ declare function SidebarMenuAction({ className, render, showOnHover, ...props }: useRender.ComponentProps<"button"> & React$1.ComponentProps<"button"> & {
259
+ showOnHover?: boolean;
260
+ }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
261
+ declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
262
+ declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<"div"> & {
263
+ showIcon?: boolean;
264
+ }): React$1.JSX.Element;
265
+ declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<"ul">): React$1.JSX.Element;
266
+ declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
267
+ declare function SidebarMenuSubButton({ render, size, isActive, className, ...props }: useRender.ComponentProps<"a"> & React$1.ComponentProps<"a"> & {
268
+ size?: "sm" | "md";
269
+ isActive?: boolean;
270
+ }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
271
+
272
+ declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
273
+
274
+ declare function Slider({ className, defaultValue, value, min, max, ...props }: Slider$1.Root.Props): React$1.JSX.Element;
275
+
276
+ declare function Spinner({ className, ...props }: React.ComponentProps<"svg">): React$1.JSX.Element;
277
+
278
+ declare function Switch({ className, size, ...props }: Switch$1.Root.Props & {
279
+ size?: "sm" | "default";
280
+ }): React$1.JSX.Element;
281
+
282
+ declare function Table({ className, ...props }: React$1.ComponentProps<"table">): React$1.JSX.Element;
283
+ declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): React$1.JSX.Element;
284
+ declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): React$1.JSX.Element;
285
+ declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): React$1.JSX.Element;
286
+ declare function TableRow({ className, ...props }: React$1.ComponentProps<"tr">): React$1.JSX.Element;
287
+ declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">): React$1.JSX.Element;
288
+ declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): React$1.JSX.Element;
289
+ declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): React$1.JSX.Element;
290
+
291
+ declare function Tabs({ className, orientation, ...props }: Tabs$1.Root.Props): React$1.JSX.Element;
292
+ declare const tabsListVariants: (props?: ({
293
+ variant?: "line" | "default" | null | undefined;
294
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
295
+ declare function TabsList({ className, variant, ...props }: Tabs$1.List.Props & VariantProps<typeof tabsListVariants>): React$1.JSX.Element;
296
+ declare function TabsTrigger({ className, ...props }: Tabs$1.Tab.Props): React$1.JSX.Element;
297
+ declare function TabsContent({ className, ...props }: Tabs$1.Panel.Props): React$1.JSX.Element;
298
+
299
+ declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): React$1.JSX.Element;
300
+
301
+ declare const toggleVariants: (props?: ({
302
+ variant?: "default" | "outline" | null | undefined;
303
+ size?: "default" | "sm" | "lg" | null | undefined;
304
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
305
+ declare function Toggle({ className, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
306
+
307
+ declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroup$1.Props & VariantProps<typeof toggleVariants> & {
308
+ spacing?: number;
309
+ orientation?: "horizontal" | "vertical";
310
+ }): React$1.JSX.Element;
311
+ declare function ToggleGroupItem({ className, children, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
312
+
313
+ declare function useIsMobile(): boolean;
121
314
 
122
315
  declare function Loading({ label, className }: {
123
316
  label?: string;
124
317
  className?: string;
125
- }): react.JSX.Element;
318
+ }): React$1.JSX.Element;
126
319
  declare function Empty({ title, description, icon, action, className, }: {
127
320
  title?: string;
128
321
  description?: string;
129
322
  icon?: ReactNode;
130
323
  action?: ReactNode;
131
324
  className?: string;
132
- }): react.JSX.Element;
325
+ }): React$1.JSX.Element;
133
326
  declare function ErrorState({ title, message, action, className, }: {
134
327
  title?: string;
135
328
  message?: ReactNode;
136
329
  action?: ReactNode;
137
330
  className?: string;
138
- }): react.JSX.Element;
139
-
140
- interface DatePickerProps {
141
- value?: string;
142
- onChange?: (value: string) => void;
143
- min?: string;
144
- max?: string;
145
- className?: string;
146
- id?: string;
147
- }
148
- /** Single date field (native, no external dependency). */
149
- declare function DatePicker({ value, onChange, min, max, className, id }: DatePickerProps): react.JSX.Element;
150
- interface DateRange {
151
- from: string;
152
- to: string;
153
- }
154
- interface DateRangePickerProps {
155
- value?: DateRange;
156
- onChange?: (value: DateRange) => void;
157
- className?: string;
158
- }
159
- /** Two coupled date fields representing an inclusive range. */
160
- declare function DateRangePicker({ value, onChange, className }: DateRangePickerProps): react.JSX.Element;
161
-
162
- interface Series {
163
- key: string;
164
- label?: string;
165
- color?: string;
166
- }
167
- declare function ChartContainer({ children, className, height, }: {
168
- children: ReactNode;
169
- className?: string;
170
- height?: number;
171
- }): react.JSX.Element;
172
- declare function ChartLegend({ series }: {
173
- series: Series[];
174
- }): react.JSX.Element;
175
- declare function ChartTooltip({ children, className }: {
176
- children: ReactNode;
177
- className?: string;
178
- }): react.JSX.Element;
179
- interface BaseChartProps<T> {
180
- data: T[];
181
- categoryKey: string;
182
- series: Series[];
183
- height?: number;
184
- className?: string;
185
- }
186
- /** Minimal dependency-free grouped bar chart. */
187
- declare function BarChart<T extends Record<string, unknown>>({ data, categoryKey, series, height, className, }: BaseChartProps<T>): react.JSX.Element;
188
- /** Minimal dependency-free multi-series line chart. */
189
- declare function LineChart<T extends Record<string, unknown>>({ data, categoryKey, series, height, className, }: BaseChartProps<T>): react.JSX.Element;
190
-
191
- interface DialogProps {
192
- open: boolean;
193
- onClose: () => void;
194
- title?: ReactNode;
195
- description?: ReactNode;
196
- children?: ReactNode;
197
- footer?: ReactNode;
198
- className?: string;
199
- }
200
- /** A lightweight modal dialog (no external UI dependency). */
201
- declare function Dialog({ open, onClose, title, description, children, footer, className }: DialogProps): react.JSX.Element | null;
202
-
203
- interface DropdownItem {
204
- label: ReactNode;
205
- onSelect?: () => void;
206
- disabled?: boolean;
207
- }
208
- interface DropdownMenuProps {
209
- trigger: ReactNode;
210
- items: DropdownItem[];
211
- align?: "start" | "end";
212
- className?: string;
213
- }
214
- /** A simple click-to-open dropdown menu with outside-click dismissal. */
215
- declare function DropdownMenu({ trigger, items, align, className }: DropdownMenuProps): react.JSX.Element;
331
+ }): React$1.JSX.Element;
216
332
 
217
- export { BarChart, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChartContainer, ChartLegend, ChartTooltip, Checkbox, type CheckboxProps, type ClassValue, type Column, DashboardShell, type DashboardShellProps, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, Dialog, type DialogProps, type DropdownItem, DropdownMenu, type DropdownMenuProps, Empty, ErrorState, FilterBar, type FilterBarProps, FilterField, Input, LineChart, Loading, MetricCard, type MetricCardProps, Pagination, type PaginationProps, Select, type SelectProps, type Series, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, type TabsProps, TabsTrigger, cn };
333
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertTitle, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, ErrorState, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, Loading, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, tabsListVariants, toggleVariants, useIsMobile, useSidebar };