@eqtylab/equality 0.0.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 (94) hide show
  1. package/LICENSE +190 -0
  2. package/dist/alert-dialog.module.module.css.module.css +275 -0
  3. package/dist/alert.module.module.css.module.css +112 -0
  4. package/dist/avatar.module.module.css.module.css +119 -0
  5. package/dist/badge.module.module.css.module.css +141 -0
  6. package/dist/bg-gradient.module.module.css.module.css +7 -0
  7. package/dist/button.module.module.css.module.css +253 -0
  8. package/dist/card-content-header.module.module.css.module.css +27 -0
  9. package/dist/card.module.module.css.module.css +246 -0
  10. package/dist/checkbox.module.module.css.module.css +124 -0
  11. package/dist/code-block.module.module.css.module.css +100 -0
  12. package/dist/command.module.module.css.module.css +210 -0
  13. package/dist/control-status-badge.module.module.css.module.css +49 -0
  14. package/dist/date-range-picker.module.module.css.module.css +147 -0
  15. package/dist/dialog.module.module.css.module.css +300 -0
  16. package/dist/display-field.module.module.css.module.css +250 -0
  17. package/dist/drawer.module.module.css.module.css +202 -0
  18. package/dist/dropdown-menu.module.module.css.module.css +271 -0
  19. package/dist/empty-table-state.module.module.css.module.css +34 -0
  20. package/dist/filter-dropdown.module.module.css.module.css +18 -0
  21. package/dist/form.module.module.css.module.css +35 -0
  22. package/dist/generated/color-vars.css +354 -0
  23. package/dist/generated/dark-tokens.css +105 -0
  24. package/dist/generated/global-dark-tokens.css +105 -0
  25. package/dist/generated/global-light-tokens.css +254 -0
  26. package/dist/generated/light-tokens.css +254 -0
  27. package/dist/generated/tailwind-tokens.css +252 -0
  28. package/dist/global-theme-config.css +15 -0
  29. package/dist/heading.module.module.css.module.css +41 -0
  30. package/dist/icon-button.module.module.css.module.css +196 -0
  31. package/dist/icon.module.module.css.module.css +155 -0
  32. package/dist/index.cjs +3419 -0
  33. package/dist/index.cjs.map +1 -0
  34. package/dist/index.d.cts +819 -0
  35. package/dist/index.d.ts +819 -0
  36. package/dist/index.js +3134 -0
  37. package/dist/index.js.map +1 -0
  38. package/dist/info-card.module.module.css.module.css +25 -0
  39. package/dist/input.module.module.css.module.css +231 -0
  40. package/dist/label.module.module.css.module.css +23 -0
  41. package/dist/list-or-grid-view-toggle.module.module.css.module.css +52 -0
  42. package/dist/loading-overlay.module.module.css.module.css +151 -0
  43. package/dist/metric-card.module.module.css.module.css +171 -0
  44. package/dist/motion-collapsible.module.module.css.module.css +4 -0
  45. package/dist/page-not-found.module.module.css.module.css +71 -0
  46. package/dist/pagination.module.module.css.module.css +21 -0
  47. package/dist/panel-label.module.module.css.module.css +17 -0
  48. package/dist/popover.module.module.css.module.css +136 -0
  49. package/dist/progress.module.module.css.module.css +32 -0
  50. package/dist/radial-graph.module.module.css.module.css +223 -0
  51. package/dist/radio-dropdown.module.module.css.module.css +16 -0
  52. package/dist/radio-group.module.module.css.module.css +118 -0
  53. package/dist/resource-badge.module.module.css.module.css +77 -0
  54. package/dist/scripts.cjs +116 -0
  55. package/dist/scripts.cjs.map +1 -0
  56. package/dist/scripts.d.cts +5 -0
  57. package/dist/scripts.d.ts +5 -0
  58. package/dist/scripts.js +114 -0
  59. package/dist/scripts.js.map +1 -0
  60. package/dist/scroll-area.module.module.css.module.css +46 -0
  61. package/dist/search-bar.module.module.css.module.css +9 -0
  62. package/dist/section-heading.module.module.css.module.css +42 -0
  63. package/dist/select.module.module.css.module.css +362 -0
  64. package/dist/separator.module.module.css.module.css +13 -0
  65. package/dist/sheet.module.module.css.module.css +377 -0
  66. package/dist/skeleton.module.module.css.module.css +11 -0
  67. package/dist/sort-button.module.module.css.module.css +42 -0
  68. package/dist/sort-selector.module.module.css.module.css +11 -0
  69. package/dist/spinner.module.module.css.module.css +82 -0
  70. package/dist/switch.module.module.css.module.css +226 -0
  71. package/dist/table-components.module.module.css.module.css +116 -0
  72. package/dist/table.module.module.css.module.css +145 -0
  73. package/dist/tabs-components.module.module.css.module.css +136 -0
  74. package/dist/tabs.module.module.css.module.css +139 -0
  75. package/dist/textarea.module.module.css.module.css +115 -0
  76. package/dist/theme/lib/utils.cjs +125 -0
  77. package/dist/theme/lib/utils.cjs.map +1 -0
  78. package/dist/theme/lib/utils.d.cts +26 -0
  79. package/dist/theme/lib/utils.d.ts +26 -0
  80. package/dist/theme/lib/utils.js +110 -0
  81. package/dist/theme/lib/utils.js.map +1 -0
  82. package/dist/theme-base.css +51 -0
  83. package/dist/theme-components.css +27 -0
  84. package/dist/theme-preflight-global.css +260 -0
  85. package/dist/theme-preflight-scoped.css +261 -0
  86. package/dist/theme-utilities.css +54 -0
  87. package/dist/theme.module.css +15 -0
  88. package/dist/theme.module.module.css.module.css +978 -0
  89. package/dist/toast-components.module.module.css.module.css +393 -0
  90. package/dist/toast.module.module.css.module.css +11 -0
  91. package/dist/tokens.css +3 -0
  92. package/dist/tooltip.module.module.css.module.css +139 -0
  93. package/dist/truncated-description.module.module.css.module.css +15 -0
  94. package/package.json +101 -0
@@ -0,0 +1,819 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import * as React$1 from 'react';
3
+ import { ReactNode, HTMLAttributes } from 'react';
4
+ import { VariantProps } from 'class-variance-authority';
5
+ import * as react_jsx_runtime from 'react/jsx-runtime';
6
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
7
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
8
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
9
+ import { Command as Command$1 } from 'cmdk';
10
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
+ import { Drawer as Drawer$1 } from 'vaul';
12
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
13
+ import * as _radix_ui_react_slot from '@radix-ui/react-slot';
14
+ import * as react_hook_form from 'react-hook-form';
15
+ import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
16
+ import * as LabelPrimitive from '@radix-ui/react-label';
17
+ import * as LucideIcons from 'lucide-react';
18
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
19
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
20
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
21
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
22
+ import * as SelectPrimitive from '@radix-ui/react-select';
23
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
24
+ import * as SwitchPrimitives from '@radix-ui/react-switch';
25
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
26
+ import * as ToastPrimitives from '@radix-ui/react-toast';
27
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
28
+ import { Theme as Theme$1 } from './theme/lib/utils.js';
29
+
30
+ declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
31
+ variant?: "default" | "success" | "warning" | "danger" | null | undefined;
32
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
33
+ declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
34
+ declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
35
+
36
+ declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
37
+ declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
38
+ declare const AlertDialogPortal: ({ children }: {
39
+ children: React$1.ReactNode;
40
+ }) => react_jsx_runtime.JSX.Element;
41
+ declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
42
+ declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
43
+ declare const AlertDialogHeader: {
44
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
45
+ displayName: string;
46
+ };
47
+ declare const AlertDialogFooter: {
48
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
49
+ displayName: string;
50
+ };
51
+ declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
52
+ declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
53
+ declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
54
+ declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
55
+
56
+ interface AvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root> {
57
+ size?: 'sm' | 'md' | 'lg' | 'xl';
58
+ shape?: 'circle' | 'square';
59
+ }
60
+ declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
61
+ declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
62
+ declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
63
+
64
+ declare const badgeVariants: (props?: ({
65
+ variant?: "success" | "warning" | "danger" | "primary" | "neutral" | null | undefined;
66
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
67
+ type BadgeDisplayMode = 'both' | 'text-only' | 'icon-only';
68
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
69
+ closeable?: boolean;
70
+ handleClosable?: () => void;
71
+ truncate?: boolean;
72
+ truncateLength?: number;
73
+ icon?: React$1.ReactElement | string;
74
+ display?: BadgeDisplayMode;
75
+ }
76
+ declare function Badge({ className, variant, closeable, handleClosable, truncate, truncateLength, icon, display, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
77
+
78
+ var Light = {
79
+ color: {
80
+ brand: {
81
+ green: {
82
+ $type: "color",
83
+ $value: {
84
+ colorSpace: "display-p3",
85
+ components: [
86
+ 0.4374,
87
+ 0.6383,
88
+ 0.4134
89
+ ],
90
+ hex: "#70A369"
91
+ }
92
+ },
93
+ primary: {
94
+ $type: "color",
95
+ $value: {
96
+ colorSpace: "display-p3",
97
+ components: [
98
+ 0.7319,
99
+ 0.6108,
100
+ 0.8873
101
+ ],
102
+ hex: "#BB9CE2"
103
+ }
104
+ },
105
+ red: {
106
+ $type: "color",
107
+ $value: {
108
+ colorSpace: "display-p3",
109
+ components: [
110
+ 0.8114,
111
+ 0.4167,
112
+ 0.3761
113
+ ],
114
+ hex: "#CF6A60"
115
+ }
116
+ },
117
+ secondary: {
118
+ $type: "color",
119
+ $value: {
120
+ colorSpace: "display-p3",
121
+ components: [
122
+ 0.3895,
123
+ 0.4853,
124
+ 0.8187
125
+ ],
126
+ hex: "#637CD1"
127
+ }
128
+ },
129
+ yellow: {
130
+ $type: "color",
131
+ $value: {
132
+ colorSpace: "display-p3",
133
+ components: [
134
+ 0.863,
135
+ 0.6958,
136
+ 0.4108
137
+ ],
138
+ hex: "#DCB169"
139
+ }
140
+ }
141
+ }}
142
+ };
143
+ var tokens = {
144
+ Light: Light
145
+ };
146
+
147
+ type Theme = keyof typeof tokens.Light.color.brand;
148
+ declare const BgGradient: ({ theme, placement, }: {
149
+ theme: Theme;
150
+ placement?: "full" | "top";
151
+ }) => react_jsx_runtime.JSX.Element;
152
+
153
+ declare const buttonVariants: (props?: ({
154
+ variant?: "danger" | "link" | "primary" | "secondary" | "tertiary" | null | undefined;
155
+ size?: "sm" | "md" | "lg" | null | undefined;
156
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
157
+ type ButtonBaseProps = Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'prefix'>;
158
+ type AnchorBaseProps = Omit<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, 'prefix'>;
159
+ type ButtonProps = VariantProps<typeof buttonVariants> & ((ButtonBaseProps & {
160
+ asChild?: boolean;
161
+ href?: never;
162
+ prefix?: React$1.ReactNode;
163
+ suffix?: React$1.ReactNode;
164
+ }) | (AnchorBaseProps & {
165
+ asChild?: never;
166
+ href: string;
167
+ prefix?: React$1.ReactNode;
168
+ suffix?: React$1.ReactNode;
169
+ target?: string;
170
+ rel?: string;
171
+ download?: string | boolean;
172
+ }));
173
+ declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
174
+
175
+ type ResourceType = 'agent' | 'benchmark' | 'code' | 'compute' | 'database' | 'dataset' | 'document' | 'guard' | 'guardrail' | 'inference' | 'model' | 'prompt' | 'system-prompt' | 'context' | 'reasoning' | 'system-parameters' | 'token' | 'tools' | 'unknown';
176
+ type ResourceDisplayMode = BadgeDisplayMode;
177
+ interface ResourceBadgeProps {
178
+ type: ResourceType;
179
+ display?: ResourceDisplayMode;
180
+ }
181
+ declare const ResourceBadge: ({ type, display }: ResourceBadgeProps) => react_jsx_runtime.JSX.Element;
182
+
183
+ interface CardContentHeaderProps {
184
+ className?: string;
185
+ icon: React.ReactElement | string;
186
+ heading?: string;
187
+ onButtonClick?: () => void;
188
+ }
189
+ declare const CardContentHeader: React$1.ForwardRefExoticComponent<CardContentHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
190
+
191
+ declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
192
+ hoverGradientClassName?: string;
193
+ } & VariantProps<(props?: ({
194
+ elevation?: string | number | null | undefined;
195
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
196
+ declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
197
+ declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
198
+ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
199
+ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
200
+ declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
201
+
202
+ interface CheckboxProps extends React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> {
203
+ icon?: React$1.ElementType;
204
+ size?: 'sm' | 'md';
205
+ }
206
+ declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLButtonElement>>;
207
+
208
+ interface CodeBlockProps {
209
+ className?: string;
210
+ title?: string;
211
+ code: string;
212
+ language?: string;
213
+ variant?: 'neutral' | 'primary' | 'success' | 'danger' | 'warning';
214
+ codeLabel?: string;
215
+ copy?: string;
216
+ }
217
+ declare const CodeBlock: ({ className, title, code, language, variant, codeLabel, copy, }: CodeBlockProps) => react_jsx_runtime.JSX.Element;
218
+
219
+ declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
220
+ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
221
+ declare const DialogPortal: ({ children }: {
222
+ children: React$1.ReactNode;
223
+ }) => react_jsx_runtime.JSX.Element;
224
+ declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
225
+ declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
226
+ declare const DialogContainer: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
227
+ size?: "sm" | "md" | "lg";
228
+ } & React$1.RefAttributes<HTMLDivElement>>;
229
+ declare const DialogHeader: {
230
+ ({ className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
231
+ displayName: string;
232
+ };
233
+ declare const DialogFooter: {
234
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
235
+ displayName: string;
236
+ };
237
+ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
238
+ declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
239
+ declare const DialogContent: {
240
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
241
+ displayName: string;
242
+ };
243
+
244
+ declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
245
+ declare function CommandDialog({ title, description, children, ...props }: React$1.ComponentProps<typeof Dialog> & {
246
+ title?: string;
247
+ description?: string;
248
+ }): react_jsx_runtime.JSX.Element;
249
+ declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
250
+ declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
251
+ declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
252
+ declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
253
+ declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
254
+ declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
255
+ declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
256
+
257
+ interface CopyButtonProps {
258
+ value: string;
259
+ label?: string;
260
+ size?: 'sm' | 'md' | 'lg';
261
+ className?: string;
262
+ onClick?: () => void;
263
+ }
264
+ declare function CopyButton({ value, label, size, className, onClick, }: CopyButtonProps): react_jsx_runtime.JSX.Element;
265
+
266
+ interface DateRange {
267
+ from?: Date;
268
+ to?: Date;
269
+ }
270
+ interface DateRangePickerProps {
271
+ dateRange: DateRange;
272
+ onSelect: (range: DateRange) => void;
273
+ className?: string;
274
+ }
275
+ declare const DateRangePicker: ({ dateRange, onSelect, className }: DateRangePickerProps) => react_jsx_runtime.JSX.Element;
276
+
277
+ declare const displayFieldVariants: (props?: ({
278
+ variant?: "success" | "neutral" | "neutralCheck" | "failure" | null | undefined;
279
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
280
+ interface DisplayFieldProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'slot'>, VariantProps<typeof displayFieldVariants> {
281
+ variant?: 'neutral' | 'success' | 'neutralCheck' | 'failure';
282
+ prefix?: string;
283
+ truncate?: true | false | 'middle';
284
+ copy?: boolean;
285
+ actions?: React.ReactNode;
286
+ slot?: React.ReactNode;
287
+ elevation?: string;
288
+ }
289
+ declare function DisplayField({ className, variant, elevation, children, prefix, truncate, copy, actions, slot, ...props }: DisplayFieldProps): react_jsx_runtime.JSX.Element;
290
+
291
+ declare const Drawer: {
292
+ ({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
293
+ displayName: string;
294
+ };
295
+ declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
296
+ declare const DrawerPortal: ({ children }: {
297
+ children: React$1.ReactNode;
298
+ }) => react_jsx_runtime.JSX.Element;
299
+ declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
300
+ declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
301
+ declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
302
+ declare const DrawerHeader: {
303
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
304
+ displayName: string;
305
+ };
306
+ declare const DrawerHeaderActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
307
+ rowSpan: number;
308
+ } & React$1.RefAttributes<HTMLDivElement>>;
309
+ declare const DrawerFooter: {
310
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
311
+ displayName: string;
312
+ };
313
+ declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
314
+ declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
315
+ declare const DrawerInnerContent: {
316
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
317
+ displayName: string;
318
+ };
319
+
320
+ declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
321
+ declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
322
+ declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
323
+ declare const DropdownMenuPortal: ({ children }: {
324
+ children: React$1.ReactNode;
325
+ }) => react_jsx_runtime.JSX.Element;
326
+ declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
327
+ declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
328
+ declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
329
+ inset?: boolean;
330
+ } & React$1.RefAttributes<HTMLDivElement>>;
331
+ declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
332
+ declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
333
+ declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
334
+ inset?: boolean;
335
+ } & React$1.RefAttributes<HTMLDivElement>>;
336
+ declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
337
+ declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
338
+ declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
339
+ inset?: boolean;
340
+ } & React$1.RefAttributes<HTMLDivElement>>;
341
+ declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
342
+ declare const DropdownMenuShortcut: {
343
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
344
+ displayName: string;
345
+ };
346
+
347
+ interface EmptyTableStateProps {
348
+ icon: React.ReactElement | string;
349
+ title: string;
350
+ description?: string;
351
+ showClearButton?: boolean;
352
+ onClear?: () => void;
353
+ className?: string;
354
+ }
355
+ declare const EmptyTableState: ({ icon, title, description, showClearButton, onClear, className, }: EmptyTableStateProps) => react_jsx_runtime.JSX.Element;
356
+
357
+ interface FilterOption$1 {
358
+ value: string;
359
+ label: string;
360
+ }
361
+ interface FilterDropdownProps {
362
+ label: string;
363
+ options: FilterOption$1[];
364
+ selectedFilters: string[];
365
+ onToggleFilter: (value: string) => void;
366
+ onClearAll: () => void;
367
+ buttonClassName?: string;
368
+ contentClassName?: string;
369
+ }
370
+ declare const FilterDropdown: ({ label, options, selectedFilters, onToggleFilter, onClearAll, buttonClassName, contentClassName, }: FilterDropdownProps) => react_jsx_runtime.JSX.Element;
371
+
372
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
373
+ declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
374
+ declare const useFormField: () => {
375
+ invalid: boolean;
376
+ isDirty: boolean;
377
+ isTouched: boolean;
378
+ isValidating: boolean;
379
+ error?: react_hook_form.FieldError;
380
+ id: string;
381
+ name: string;
382
+ formItemId: string;
383
+ formDescriptionId: string;
384
+ formMessageId: string;
385
+ };
386
+ declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
387
+ declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
388
+ declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
389
+ declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
390
+ declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
391
+
392
+ declare const iconButtonVariants: (props?: ({
393
+ size?: "sm" | "md" | "lg" | null | undefined;
394
+ variant?: "danger" | "primary" | null | undefined;
395
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
396
+ interface IconButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'name'>, VariantProps<typeof iconButtonVariants> {
397
+ name: keyof typeof LucideIcons;
398
+ label?: string;
399
+ href?: string;
400
+ target?: string;
401
+ download?: string | boolean;
402
+ }
403
+ declare function IconButton({ className, size, variant, name, label, href, target, download, disabled, ...props }: IconButtonProps): react_jsx_runtime.JSX.Element | null;
404
+
405
+ declare const ELEVATION: {
406
+ SUNKEN: string;
407
+ BASE: string;
408
+ RAISED: string;
409
+ OVERLAY: string;
410
+ FLOATING: string;
411
+ };
412
+ type Elevation = (typeof ELEVATION)[keyof typeof ELEVATION];
413
+
414
+ interface InfoCardProps {
415
+ label: string;
416
+ description: string | number | React$1.ReactNode;
417
+ icon: React$1.ReactElement | string;
418
+ className?: string;
419
+ onClick?: () => void;
420
+ elevation?: Elevation;
421
+ }
422
+ declare const InfoCard: ({ label, description, icon, elevation, className, onClick, ...props }: InfoCardProps) => react_jsx_runtime.JSX.Element;
423
+
424
+ type InputProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'prefix' | 'suffix'> & {
425
+ prefix?: React$1.ReactNode;
426
+ suffix?: React$1.ReactNode;
427
+ };
428
+ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "prefix" | "suffix"> & {
429
+ prefix?: React$1.ReactNode;
430
+ suffix?: React$1.ReactNode;
431
+ } & React$1.RefAttributes<HTMLInputElement>>;
432
+
433
+ declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
434
+
435
+ type ViewMode = 'grid' | 'list';
436
+ type ViewOrder = ['grid', 'list'] | ['list', 'grid'];
437
+ interface ListOrGridViewToggleProps {
438
+ viewMode: ViewMode;
439
+ onViewModeChange: (mode: ViewMode) => void;
440
+ order?: ViewOrder;
441
+ className?: string;
442
+ }
443
+ declare const ListOrGridViewToggle: ({ viewMode, onViewModeChange, order, className, }: ListOrGridViewToggleProps) => react_jsx_runtime.JSX.Element;
444
+
445
+ interface LoadingOverlayProps {
446
+ isVisible: boolean;
447
+ message?: string;
448
+ }
449
+ declare function LoadingOverlay({ isVisible, message }: LoadingOverlayProps): react_jsx_runtime.JSX.Element | null;
450
+
451
+ declare const metricCardElevationVariants: (props?: ({
452
+ elevation?: string | number | null | undefined;
453
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
454
+ type Variant = 'default' | 'primary' | 'danger' | 'success' | 'warning';
455
+ interface MetricCardProps extends VariantProps<typeof metricCardElevationVariants> {
456
+ value: string | number;
457
+ label: string;
458
+ icon: React.ReactElement | string;
459
+ variant?: Variant;
460
+ className?: string;
461
+ }
462
+ declare const MetricCard: ({ value, label, icon, variant, elevation, className, }: MetricCardProps) => react_jsx_runtime.JSX.Element;
463
+
464
+ interface MotionCollapsibleContentProps {
465
+ isOpen: boolean;
466
+ children: ReactNode;
467
+ className?: string;
468
+ }
469
+ declare const MotionCollapsibleContent: ({ isOpen, children, className, }: MotionCollapsibleContentProps) => react_jsx_runtime.JSX.Element;
470
+
471
+ interface NotFoundProps {
472
+ className?: string;
473
+ title?: string;
474
+ description?: string;
475
+ showHomeButton?: boolean;
476
+ onHomeClick?: () => void;
477
+ }
478
+ declare const NotFound: ({ className, title, description, showHomeButton, onHomeClick, }: NotFoundProps) => react_jsx_runtime.JSX.Element;
479
+
480
+ interface PaginationProps {
481
+ currentPage: number;
482
+ totalItems: number;
483
+ filteredItems: number;
484
+ itemsPerPage: number;
485
+ onPageChange: (page: number) => void;
486
+ onItemsPerPageChange?: (itemsPerPage: number) => void;
487
+ itemsPerPageOptions?: number[];
488
+ showInfo?: boolean;
489
+ maxVisiblePages?: number;
490
+ className?: string;
491
+ type?: string;
492
+ scrollTargetRef?: React$1.RefObject<HTMLElement | null> | string;
493
+ }
494
+ declare const Pagination: ({ currentPage, totalItems, filteredItems, itemsPerPage, onPageChange, onItemsPerPageChange, itemsPerPageOptions, showInfo, maxVisiblePages, className, type, scrollTargetRef, }: PaginationProps) => react_jsx_runtime.JSX.Element | null;
495
+
496
+ interface PanelLabelProps {
497
+ className?: string;
498
+ label: string;
499
+ }
500
+ declare const PanelLabel: ({ className, label }: PanelLabelProps) => react_jsx_runtime.JSX.Element;
501
+
502
+ declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
503
+ declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
504
+ declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
505
+ arrow?: boolean;
506
+ } & React$1.RefAttributes<HTMLDivElement>>;
507
+
508
+ interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
509
+ color?: 'primary' | 'secondary' | 'green' | 'red' | 'yellow';
510
+ }
511
+ declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
512
+
513
+ interface RadialGraphProps {
514
+ percentage: number;
515
+ displayLabel?: string;
516
+ className?: string;
517
+ subLabel?: string;
518
+ graphSize?: 'sm' | 'md' | 'lg';
519
+ variant?: 'primary' | 'success' | 'danger' | 'warning';
520
+ }
521
+ declare const RadialGraph: React$1.ForwardRefExoticComponent<RadialGraphProps & React$1.RefAttributes<HTMLDivElement>>;
522
+
523
+ interface FilterOption {
524
+ value: string;
525
+ label: string;
526
+ count?: number;
527
+ }
528
+ interface RadioDropdownProps {
529
+ label: string;
530
+ options: FilterOption[];
531
+ selectedValue: string;
532
+ onSelect: (value: string) => void;
533
+ className?: string;
534
+ }
535
+ declare const RadioDropdown: ({ label, options, selectedValue, onSelect, className, }: RadioDropdownProps) => react_jsx_runtime.JSX.Element;
536
+
537
+ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
538
+ declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
539
+
540
+ declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
541
+ declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
542
+
543
+ interface SearchBarProps {
544
+ className?: string;
545
+ placeholder?: string;
546
+ searchQuery: string;
547
+ setSearchQuery: (query: string) => void;
548
+ }
549
+ declare const SearchBar: ({ searchQuery, setSearchQuery, placeholder, className, }: SearchBarProps) => react_jsx_runtime.JSX.Element;
550
+
551
+ interface SectionHeadingProps {
552
+ className?: string;
553
+ heading: string;
554
+ description?: string;
555
+ renderRightContent?: () => React.ReactNode;
556
+ }
557
+ declare const SectionHeading: ({ heading, description, renderRightContent, className, }: SectionHeadingProps) => react_jsx_runtime.JSX.Element;
558
+
559
+ declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
560
+ declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
561
+ declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
562
+ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
563
+ declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
564
+ declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
565
+ declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
566
+ elevation?: string | number | null | undefined;
567
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
568
+ declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
569
+ declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
570
+ declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
571
+
572
+ declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
573
+
574
+ declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
575
+ declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
576
+ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
577
+ declare const SheetPortal: ({ children }: {
578
+ children: React$1.ReactNode;
579
+ }) => react_jsx_runtime.JSX.Element;
580
+ declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
581
+ declare const sheetVariants: (props?: ({
582
+ side?: "top" | "right" | "bottom" | "left" | null | undefined;
583
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
584
+ interface SheetContainerProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
585
+ }
586
+ declare const SheetContainer: React$1.ForwardRefExoticComponent<SheetContainerProps & React$1.RefAttributes<HTMLDivElement>>;
587
+ declare const SheetHeaderIcon: {
588
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
589
+ displayName: string;
590
+ };
591
+ declare const SheetHeader: {
592
+ ({ className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
593
+ displayName: string;
594
+ };
595
+ declare const SheetFooter: {
596
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
597
+ displayName: string;
598
+ };
599
+ declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
600
+ declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
601
+ declare const SheetContent: {
602
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
603
+ displayName: string;
604
+ };
605
+
606
+ declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
607
+
608
+ type SortField = 'name' | 'type' | 'createdAt' | 'updatedAt';
609
+ type SortOrder = 'asc' | 'desc';
610
+ type SortMode = 'created' | 'updated';
611
+ interface SortSelectorProps {
612
+ sortField: SortField;
613
+ defaultSortField?: SortField;
614
+ sortOrder: SortOrder;
615
+ defaultSortOrder?: SortOrder;
616
+ sortMode?: SortMode;
617
+ setSortField: (field: SortField) => void;
618
+ setSortOrder: (order: SortOrder) => void;
619
+ setCurrentPage?: (page: number) => void;
620
+ showDateOptions?: boolean;
621
+ className?: string;
622
+ }
623
+ declare function SortSelector({ sortField, defaultSortField, sortOrder, defaultSortOrder, sortMode, setSortField, setSortOrder, setCurrentPage, showDateOptions, className, }: SortSelectorProps): react_jsx_runtime.JSX.Element;
624
+
625
+ interface SpinnerProps {
626
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
627
+ variant?: 'neutral' | 'primary' | 'success' | 'danger' | 'warning';
628
+ }
629
+ declare const Spinner: ({ size, variant }: SpinnerProps) => react_jsx_runtime.JSX.Element;
630
+
631
+ interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {
632
+ size?: 'sm' | 'md' | 'lg';
633
+ variant?: 'default' | 'danger';
634
+ thumbIcon?: React$1.ReactElement | string;
635
+ }
636
+ declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
637
+
638
+ interface SortButtonProps<T extends string> {
639
+ field: T;
640
+ children: React$1.ReactNode;
641
+ icon?: React$1.ReactNode;
642
+ sortField: T | null;
643
+ sortDirection: 'asc' | 'desc';
644
+ onSort: (field: T) => void;
645
+ }
646
+ declare function SortButton<T extends string>({ field, children, icon, sortField, sortDirection, onSort, }: SortButtonProps<T>): react_jsx_runtime.JSX.Element;
647
+
648
+ declare const TableContainer: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & VariantProps<(props?: ({
649
+ elevation?: string | number | null | undefined;
650
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLTableElement>>;
651
+ declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
652
+ declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
653
+ declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
654
+ declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
655
+ declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
656
+ declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
657
+ declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
658
+
659
+ type TableColumn = {
660
+ key: string;
661
+ content: React$1.ReactNode;
662
+ className?: string;
663
+ };
664
+ type TableRowData = {
665
+ key: string;
666
+ cells: TableCellData[];
667
+ onClick?: () => void;
668
+ className?: string;
669
+ };
670
+ type TableCellData = {
671
+ key: string;
672
+ content: React$1.ReactNode;
673
+ className?: string;
674
+ };
675
+ interface TableProps extends VariantProps<typeof tableElevationVariants> {
676
+ columns: TableColumn[];
677
+ rows: TableRowData[];
678
+ className?: string;
679
+ border?: boolean;
680
+ }
681
+ declare const tableElevationVariants: (props?: ({
682
+ elevation?: string | number | null | undefined;
683
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
684
+ declare const Table: ({ columns, rows, className, border, elevation, }: TableProps) => react_jsx_runtime.JSX.Element;
685
+
686
+ declare const TabsContainer: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
687
+ declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
688
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
689
+ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
690
+
691
+ interface TabsProps {
692
+ id: string;
693
+ items: {
694
+ label: string;
695
+ value: string;
696
+ icon?: React.ReactElement | string;
697
+ content: React.ReactNode;
698
+ }[];
699
+ className?: string;
700
+ tabsListBackground?: 'transparent' | 'filled';
701
+ }
702
+ declare const Tabs: ({ id, items, className, tabsListBackground }: TabsProps) => react_jsx_runtime.JSX.Element;
703
+
704
+ declare const Textarea: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
705
+
706
+ declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
707
+ declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
708
+ declare const ToastContainer: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
709
+ variant?: "default" | "success" | "warning" | "danger" | null | undefined;
710
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLIElement>>;
711
+ declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
712
+ declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
713
+ declare const ToastTitle: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastTitleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
714
+ declare const ToastDescription: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastDescriptionProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
715
+ type ToastProps$1 = React$1.ComponentPropsWithoutRef<typeof ToastContainer>;
716
+ type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
717
+
718
+ type ToasterToast = ToastProps$1 & {
719
+ id: string;
720
+ title?: React.ReactNode;
721
+ description?: React.ReactNode;
722
+ action?: ToastActionElement;
723
+ };
724
+ declare const actionTypes: {
725
+ readonly ADD_TOAST: "ADD_TOAST";
726
+ readonly UPDATE_TOAST: "UPDATE_TOAST";
727
+ readonly DISMISS_TOAST: "DISMISS_TOAST";
728
+ readonly REMOVE_TOAST: "REMOVE_TOAST";
729
+ };
730
+ type ActionType = typeof actionTypes;
731
+ type Action = {
732
+ type: ActionType['ADD_TOAST'];
733
+ toast: ToasterToast;
734
+ } | {
735
+ type: ActionType['UPDATE_TOAST'];
736
+ toast: Partial<ToasterToast>;
737
+ } | {
738
+ type: ActionType['DISMISS_TOAST'];
739
+ toastId?: ToasterToast['id'];
740
+ } | {
741
+ type: ActionType['REMOVE_TOAST'];
742
+ toastId?: ToasterToast['id'];
743
+ };
744
+ interface State {
745
+ toasts: ToasterToast[];
746
+ }
747
+ declare const reducer: (state: State, action: Action) => State;
748
+ type Toast$1 = Omit<ToasterToast, 'id'>;
749
+ declare function toast({ ...props }: Toast$1): {
750
+ id: string;
751
+ dismiss: () => void;
752
+ update: (props: ToasterToast) => void;
753
+ };
754
+ declare function useToast(): {
755
+ toast: typeof toast;
756
+ dismiss: (toastId?: string) => void;
757
+ toasts: ToasterToast[];
758
+ };
759
+
760
+ interface ToastProps {
761
+ toast: ToasterToast;
762
+ }
763
+ declare const Toast: ({ toast }: ToastProps) => react_jsx_runtime.JSX.Element;
764
+ declare const Toaster: () => react_jsx_runtime.JSX.Element[];
765
+ declare const ToastRoot: () => react_jsx_runtime.JSX.Element;
766
+
767
+ declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
768
+ declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
769
+ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
770
+ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
771
+
772
+ interface TruncatedDescriptionProps {
773
+ className?: string;
774
+ description: string;
775
+ maxLength?: number;
776
+ }
777
+ declare const TruncatedDescription: ({ className, description, maxLength, }: TruncatedDescriptionProps) => react_jsx_runtime.JSX.Element;
778
+
779
+ declare const iconVariants: (props?: ({
780
+ size?: "sm" | "md" | "lg" | "xs" | null | undefined;
781
+ background?: "circle" | "square" | "transparent" | null | undefined;
782
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
783
+ declare const iconElevationVariants: (props?: ({
784
+ elevation?: string | number | null | undefined;
785
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
786
+ interface IconProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconVariants>, VariantProps<typeof iconElevationVariants> {
787
+ icon: React$1.ReactElement | string;
788
+ size?: 'xs' | 'sm' | 'md' | 'lg';
789
+ background?: 'square' | 'circle' | 'transparent';
790
+ }
791
+ declare const Icon: React$1.ForwardRefExoticComponent<IconProps & React$1.RefAttributes<HTMLDivElement>>;
792
+
793
+ type HeadingTagType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
794
+ interface HeadingProps extends HTMLAttributes<HTMLHeadingElement> {
795
+ className?: string;
796
+ as: HeadingTagType;
797
+ displayAs?: HeadingTagType;
798
+ children: string | React.ReactNode;
799
+ }
800
+ declare const Heading: React$1.ForwardRefExoticComponent<HeadingProps & React$1.RefAttributes<HTMLHeadingElement>>;
801
+
802
+ type ControlStatusBadgeDisplayMode = BadgeDisplayMode;
803
+ interface ControlStatusBadgeProps {
804
+ status: string;
805
+ display?: ControlStatusBadgeDisplayMode;
806
+ }
807
+ declare const ControlStatusBadge: ({ status, display }: ControlStatusBadgeProps) => react_jsx_runtime.JSX.Element;
808
+
809
+ interface ThemeProviderProps {
810
+ customVars?: React.CSSProperties & {
811
+ [key: `--${string}`]: string | number | undefined;
812
+ };
813
+ children: React.ReactNode;
814
+ }
815
+ declare const ThemeProvider: ({ customVars, children }: ThemeProviderProps) => react_jsx_runtime.JSX.Element;
816
+
817
+ declare const useTheme: () => readonly [Theme$1 | undefined, (theme: Theme$1) => void];
818
+
819
+ export { Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeDisplayMode, type BadgeProps, BgGradient, Button, type ButtonProps, Card, CardContent, CardContentHeader, type CardContentHeaderProps, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CodeBlock, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ControlStatusBadge, type ControlStatusBadgeDisplayMode, CopyButton, type CopyButtonProps, DateRangePicker, Dialog, DialogClose, DialogContainer, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayField, type DisplayFieldProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerHeaderActions, DrawerInnerContent, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ELEVATION, type Elevation, EmptyTableState, FilterDropdown, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Heading, Icon, IconButton, type IconButtonProps, type IconProps, InfoCard, Input, type InputProps, Label, ListOrGridViewToggle, LoadingOverlay, MetricCard, MotionCollapsibleContent, NotFound, Pagination, PanelLabel, Popover, PopoverContent, PopoverTrigger, Progress, RadialGraph, type RadialGraphProps, RadioDropdown, RadioGroup, RadioGroupItem, ResourceBadge, type ResourceDisplayMode, type ResourceType, ScrollArea, ScrollBar, SearchBar, SectionHeading, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContainer, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetHeaderIcon, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, SortButton, type SortField, type SortMode, type SortOrder, SortSelector, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, type Theme, ThemeProvider, Toast, ToastAction, type ToastActionElement, ToastClose, ToastContainer, ToastDescription, type ToastProps$1 as ToastProps, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toaster, type ToasterToast, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TruncatedDescription, type ViewMode, type ViewOrder, badgeVariants, buttonVariants, displayFieldVariants, iconButtonVariants, reducer, toast, useFormField, useTheme, useToast };