@thesage/ui 0.1.0 → 1.0.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 (51) hide show
  1. package/.claude/CLAUDE.md +224 -0
  2. package/README.md +96 -61
  3. package/dist/dates.d.mts +20 -0
  4. package/dist/dates.d.ts +20 -0
  5. package/dist/dates.js +230 -0
  6. package/dist/dates.js.map +1 -0
  7. package/dist/dates.mjs +193 -0
  8. package/dist/dates.mjs.map +1 -0
  9. package/dist/dnd.d.mts +126 -0
  10. package/dist/dnd.d.ts +126 -0
  11. package/dist/dnd.js +274 -0
  12. package/dist/dnd.js.map +1 -0
  13. package/dist/dnd.mjs +250 -0
  14. package/dist/dnd.mjs.map +1 -0
  15. package/dist/forms.d.mts +38 -0
  16. package/dist/forms.d.ts +38 -0
  17. package/dist/forms.js +198 -0
  18. package/dist/forms.js.map +1 -0
  19. package/dist/forms.mjs +159 -0
  20. package/dist/forms.mjs.map +1 -0
  21. package/dist/hooks.js +6 -5
  22. package/dist/hooks.js.map +1 -1
  23. package/dist/hooks.mjs +6 -5
  24. package/dist/hooks.mjs.map +1 -1
  25. package/dist/index.d.mts +484 -352
  26. package/dist/index.d.ts +484 -352
  27. package/dist/index.js +2674 -2092
  28. package/dist/index.js.map +1 -1
  29. package/dist/index.mjs +2548 -1966
  30. package/dist/index.mjs.map +1 -1
  31. package/dist/providers.js +6 -5
  32. package/dist/providers.js.map +1 -1
  33. package/dist/providers.mjs +6 -5
  34. package/dist/providers.mjs.map +1 -1
  35. package/dist/tables.d.mts +10 -0
  36. package/dist/tables.d.ts +10 -0
  37. package/dist/tables.js +248 -0
  38. package/dist/tables.js.map +1 -0
  39. package/dist/tables.mjs +218 -0
  40. package/dist/tables.mjs.map +1 -0
  41. package/dist/utils.js +2 -1
  42. package/dist/utils.js.map +1 -1
  43. package/dist/utils.mjs +2 -1
  44. package/dist/utils.mjs.map +1 -1
  45. package/dist/webgl.d.mts +104 -0
  46. package/dist/webgl.d.ts +104 -0
  47. package/dist/webgl.js +226 -0
  48. package/dist/webgl.js.map +1 -0
  49. package/dist/webgl.mjs +195 -0
  50. package/dist/webgl.mjs.map +1 -0
  51. package/package.json +146 -16
package/dist/index.d.mts CHANGED
@@ -1,25 +1,24 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
1
2
  import * as class_variance_authority_types from 'class-variance-authority/types';
2
3
  import * as React$1 from 'react';
3
- import React__default, { ReactNode } from 'react';
4
+ import React__default, { ComponentPropsWithoutRef, ElementRef, ReactNode } from 'react';
4
5
  import { VariantProps } from 'class-variance-authority';
5
6
  import * as TogglePrimitive from '@radix-ui/react-toggle';
6
7
  import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
7
- import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
9
- import { SortingStrategy } from '@dnd-kit/sortable';
10
- import * as _radix_ui_react_slot from '@radix-ui/react-slot';
11
- import * as react_hook_form from 'react-hook-form';
12
- import { FormProvider, FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
13
- import * as LabelPrimitive from '@radix-ui/react-label';
9
+ import { DragDropHandle, DragDropHandleProps, DragDropItem, DragDropList, DragDropListProps, DragDropTable, DragDropTableProps } from './dnd.mjs';
10
+ import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, useFormField } from './forms.mjs';
14
11
  import { OTPInput } from 'input-otp';
12
+ import * as LabelPrimitive from '@radix-ui/react-label';
15
13
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
16
14
  import * as _radix_ui_react_select from '@radix-ui/react-select';
15
+ import { Trigger, Content, Label as Label$1, Item, Separator as Separator$1, ScrollUpButton, ScrollDownButton } from '@radix-ui/react-select';
17
16
  import * as SliderPrimitive from '@radix-ui/react-slider';
18
17
  import * as SwitchPrimitives from '@radix-ui/react-switch';
19
18
  import { S as SyntaxType, a as SyntaxToken, B as BreadcrumbItemLegacy, b as Breadcrumbs, c as BreadcrumbsProps } from './utils-DlJKRVzQ.mjs';
20
19
  export { U as Language, R as RouteConfig, T as Transition, V as Variant, d as Variants, G as adjustLightness, J as adjustOpacity, H as adjustSaturation, N as cn, j as collapseVariants, q as colorTokens, M as colorUtils, k as createAnimation, Q as detectLanguage, i as drawerVariants, e as durations, f as easings, g as fadeVariants, o as generateBreadcrumbs, L as generateColorScale, u as getCSSVariable, C as getContrastRatio, w as getForegroundColor, A as getLuminance, K as getOptimalForeground, y as getSemanticColorPair, E as hexToHSL, z as hexToRgb, F as hslToHex, l as listVariants, D as meetsContrastRequirements, m as modalVariants, O as parseCode, p as presets, I as rotateHue, r as rotateVariants, n as scaleDuration, h as scaleVariants, x as semanticColors, v as setCSSVariable, s as slideVariants, P as tokenize, t as transitions } from './utils-DlJKRVzQ.mjs';
21
20
  import { Command as Command$1 } from 'cmdk';
22
- import * as DialogPrimitive from '@radix-ui/react-dialog';
21
+ import * as SheetPrimitive from '@radix-ui/react-dialog';
23
22
  import * as MenubarPrimitive from '@radix-ui/react-menubar';
24
23
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
25
24
  import * as TabsPrimitive from '@radix-ui/react-tabs';
@@ -33,14 +32,14 @@ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
33
32
  import * as ProgressPrimitive from '@radix-ui/react-progress';
34
33
  import { Toaster as Toaster$1 } from 'sonner';
35
34
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
36
- import { DayPicker } from 'react-day-picker';
37
- import { ColumnDef } from '@tanstack/react-table';
35
+ import { Calendar, CalendarProps, DatePicker, DatePickerProps } from './dates.mjs';
36
+ import { DataTable } from './tables.mjs';
38
37
  import { HTMLMotionProps } from 'framer-motion';
39
38
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
40
39
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
41
40
  import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
42
41
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
43
- import { Group, Panel, Separator as Separator$1 } from 'react-resizable-panels';
42
+ import { Group, Panel, Separator as Separator$2 } from 'react-resizable-panels';
44
43
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
45
44
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
46
45
  export { p as Providers, T as ThemeProvider } from './providers-Dv3LFGtJ.mjs';
@@ -51,7 +50,12 @@ import { T as ThemeName$1, C as ColorMode$1 } from './index-L8R3gyuQ.mjs';
51
50
  import { q as FontTheme } from './fontThemes-Cum0S1DI.mjs';
52
51
  export { m as typographySystem } from './fontThemes-Cum0S1DI.mjs';
53
52
  export { F as FieldValidation, a as FormErrors, V as ValidationRule, h as hasErrors, p as patterns, r as rules, v as validateField, b as validateForm } from './validation-Bj1ye-v_.mjs';
53
+ import '@dnd-kit/sortable';
54
+ import 'react-hook-form';
55
+ import '@radix-ui/react-slot';
54
56
  import 'clsx';
57
+ import 'react-day-picker';
58
+ import '@tanstack/react-table';
55
59
 
56
60
  declare const buttonVariants: (props?: ({
57
61
  variant?: "default" | "primary" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
@@ -60,7 +64,9 @@ declare const buttonVariants: (props?: ({
60
64
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
61
65
  asChild?: boolean;
62
66
  }
63
- declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
67
+ declare const Button: ({ ref, className, variant, size, asChild, children, ...props }: ButtonProps & {
68
+ ref?: React$1.Ref<HTMLButtonElement>;
69
+ }) => react_jsx_runtime.JSX.Element;
64
70
 
65
71
  interface LinkProps extends React__default.AnchorHTMLAttributes<HTMLAnchorElement> {
66
72
  children: React__default.ReactNode;
@@ -97,16 +103,24 @@ interface LinkProps extends React__default.AnchorHTMLAttributes<HTMLAnchorElemen
97
103
  * <Link href="https://example.com" target="_blank">External</Link>
98
104
  * ```
99
105
  */
100
- declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
106
+ declare const Link: ({ ref, children, className, variant, hoverEffect, ...props }: LinkProps & {
107
+ ref?: React__default.Ref<HTMLAnchorElement>;
108
+ }) => react_jsx_runtime.JSX.Element;
101
109
 
102
110
  declare const toggleVariants: (props?: ({
103
111
  variant?: "default" | "outline" | null | undefined;
104
- size?: "default" | "sm" | "lg" | null | undefined;
112
+ size?: "lg" | "sm" | "default" | null | undefined;
105
113
  } & class_variance_authority_types.ClassProp) | undefined) => string;
106
- declare const Toggle: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants> & React$1.RefAttributes<React$1.ElementRef<typeof TogglePrimitive.Root>>>;
114
+ declare const Toggle: ({ ref, className, variant, size, ...props }: React$1.ComponentPropsWithoutRef<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants> & {
115
+ ref?: React$1.Ref<React$1.ElementRef<typeof TogglePrimitive.Root>>;
116
+ }) => react_jsx_runtime.JSX.Element;
107
117
 
108
- declare const ToggleGroup: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & React$1.RefAttributes<React$1.ElementRef<typeof ToggleGroupPrimitive.Root>>>;
109
- declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants> & React$1.RefAttributes<React$1.ElementRef<typeof ToggleGroupPrimitive.Item>>>;
118
+ declare const ToggleGroup: ({ ref, className, variant, size, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
119
+ ref?: React$1.Ref<React$1.ElementRef<typeof ToggleGroupPrimitive.Root>>;
120
+ }) => react_jsx_runtime.JSX.Element;
121
+ declare const ToggleGroupItem: ({ ref, className, children, variant, size, ...props }: React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants> & {
122
+ ref?: React$1.Ref<React$1.ElementRef<typeof ToggleGroupPrimitive.Item>>;
123
+ }) => react_jsx_runtime.JSX.Element;
110
124
 
111
125
  interface MagneticProps {
112
126
  children: React__default.ReactNode;
@@ -124,7 +138,9 @@ interface MagneticProps {
124
138
  }
125
139
  declare function Magnetic({ children, strength, range, className }: MagneticProps): react_jsx_runtime.JSX.Element;
126
140
 
127
- declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
141
+ declare const Checkbox: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> & {
142
+ ref?: React$1.Ref<React$1.ElementRef<typeof CheckboxPrimitive.Root>>;
143
+ }) => react_jsx_runtime.JSX.Element;
128
144
 
129
145
  interface ColorPickerProps {
130
146
  label?: string;
@@ -152,127 +168,6 @@ interface ComboboxProps {
152
168
  }
153
169
  declare function Combobox({ options, value, onValueChange, placeholder, searchPlaceholder, emptyMessage, className, disabled, }: ComboboxProps): react_jsx_runtime.JSX.Element;
154
170
 
155
- /**
156
- * Item interface for drag and drop lists
157
- */
158
- interface DragDropItem {
159
- id: string;
160
- [key: string]: any;
161
- }
162
- /**
163
- * Props for DragDropList component
164
- */
165
- interface DragDropListProps<T extends DragDropItem> {
166
- /**
167
- * Array of items to display
168
- */
169
- items: T[];
170
- /**
171
- * Callback fired when items are reordered
172
- */
173
- onReorder: (items: T[]) => void;
174
- /**
175
- * Render function for each item
176
- */
177
- renderItem: (item: T, isDragging: boolean) => React__default.ReactNode;
178
- /**
179
- * Enable drag handle mode (only drag from handle)
180
- * @default false
181
- */
182
- withHandle?: boolean;
183
- /**
184
- * Custom class name for the list container
185
- */
186
- className?: string;
187
- /**
188
- * Custom class name for list items
189
- */
190
- itemClassName?: string;
191
- /**
192
- * Sorting strategy for the drag & drop behavior
193
- * - verticalListSortingStrategy: For vertical lists (default)
194
- * - rectSortingStrategy: For grid layouts
195
- * @default verticalListSortingStrategy
196
- */
197
- strategy?: SortingStrategy;
198
- }
199
- /**
200
- * Drag handle component for manual drag control
201
- * Must be used within a DragDropList with withHandle={true}
202
- */
203
- interface DragDropHandleProps {
204
- /**
205
- * Custom class name
206
- */
207
- className?: string;
208
- /**
209
- * Handle icon
210
- */
211
- icon?: React__default.ReactNode;
212
- }
213
- declare function DragDropHandle({ className, icon }: DragDropHandleProps): react_jsx_runtime.JSX.Element | null;
214
- /**
215
- * DragDropList - Sortable list component with drag and drop functionality
216
- *
217
- * @example
218
- * ```tsx
219
- * const [items, setItems] = useState([
220
- * { id: '1', name: 'Item 1' },
221
- * { id: '2', name: 'Item 2' },
222
- * ]);
223
- *
224
- * <DragDropList
225
- * items={items}
226
- * onReorder={setItems}
227
- * renderItem={(item) => (
228
- * <div className="p-4 bg-surface rounded">{item.name}</div>
229
- * )}
230
- * />
231
- * ```
232
- */
233
- declare function DragDropList<T extends DragDropItem>({ items, onReorder, renderItem, withHandle, className, itemClassName, strategy, }: DragDropListProps<T>): react_jsx_runtime.JSX.Element;
234
- /**
235
- * Props for DragDropTable component
236
- */
237
- interface DragDropTableProps<T extends DragDropItem> {
238
- /**
239
- * Array of items to display
240
- */
241
- items: T[];
242
- /**
243
- * Callback fired when items are reordered
244
- */
245
- onReorder: (items: T[]) => void;
246
- /**
247
- * Table columns configuration
248
- */
249
- columns: {
250
- key: string;
251
- header: string;
252
- render?: (item: T) => React__default.ReactNode;
253
- }[];
254
- /**
255
- * Custom class name for the table
256
- */
257
- className?: string;
258
- }
259
- /**
260
- * DragDropTable - Sortable table with draggable rows
261
- *
262
- * @example
263
- * ```tsx
264
- * <DragDropTable
265
- * items={data}
266
- * onReorder={setData}
267
- * columns={[
268
- * { key: 'name', header: 'Name' },
269
- * { key: 'email', header: 'Email' },
270
- * ]}
271
- * />
272
- * ```
273
- */
274
- declare function DragDropTable<T extends DragDropItem>({ items, onReorder, columns, className, }: DragDropTableProps<T>): react_jsx_runtime.JSX.Element;
275
-
276
171
  interface FilterButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
277
172
  active?: boolean;
278
173
  count?: number;
@@ -283,43 +178,42 @@ interface FilterButtonProps extends React__default.ButtonHTMLAttributes<HTMLButt
283
178
  */
284
179
  shape?: 'pill' | 'rounded';
285
180
  }
286
- declare const FilterButton: React__default.ForwardRefExoticComponent<FilterButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
287
-
288
- declare const Form: typeof FormProvider;
289
- declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
290
- declare const useFormField: () => {
291
- invalid: boolean;
292
- isDirty: boolean;
293
- isTouched: boolean;
294
- isValidating: boolean;
295
- error?: react_hook_form.FieldError;
296
- id: string;
297
- name: string;
298
- formItemId: string;
299
- formDescriptionId: string;
300
- formMessageId: string;
301
- };
302
- declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
303
- declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
304
- declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
305
- declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
306
- declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
181
+ declare const FilterButton: ({ ref, active, count, children, shape, className, ...props }: FilterButtonProps & {
182
+ ref?: React__default.Ref<HTMLButtonElement>;
183
+ }) => react_jsx_runtime.JSX.Element;
307
184
 
308
185
  interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
309
186
  }
310
- declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
187
+ declare const Input: ({ ref, className, type, ...props }: InputProps & {
188
+ ref?: React$1.Ref<HTMLInputElement>;
189
+ }) => react_jsx_runtime.JSX.Element;
311
190
 
312
- declare const InputOTP: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof OTPInput> & React$1.RefAttributes<React$1.ElementRef<typeof OTPInput>>>;
313
- declare const InputOTPGroup: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"div"> & React$1.RefAttributes<HTMLDivElement>>;
314
- declare const InputOTPSlot: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"div"> & {
191
+ declare const InputOTP: ({ ref, className, containerClassName, ...props }: React$1.ComponentPropsWithoutRef<typeof OTPInput> & {
192
+ ref?: React$1.Ref<React$1.ElementRef<typeof OTPInput>>;
193
+ }) => react_jsx_runtime.JSX.Element;
194
+ declare const InputOTPGroup: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"div"> & {
195
+ ref?: React$1.Ref<HTMLDivElement>;
196
+ }) => react_jsx_runtime.JSX.Element;
197
+ declare const InputOTPSlot: ({ ref, index, className, ...props }: React$1.ComponentPropsWithoutRef<"div"> & {
315
198
  index: number;
316
- } & React$1.RefAttributes<HTMLDivElement>>;
317
- declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"div"> & React$1.RefAttributes<HTMLDivElement>>;
199
+ } & {
200
+ ref?: React$1.Ref<HTMLDivElement>;
201
+ }) => react_jsx_runtime.JSX.Element;
202
+ declare const InputOTPSeparator: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<"div"> & {
203
+ ref?: React$1.Ref<HTMLDivElement>;
204
+ }) => react_jsx_runtime.JSX.Element;
318
205
 
319
- 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>>;
206
+ declare const labelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
207
+ declare const Label: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants> & {
208
+ ref?: React$1.Ref<React$1.ElementRef<typeof LabelPrimitive.Root>>;
209
+ }) => react_jsx_runtime.JSX.Element;
320
210
 
321
- declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
322
- declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
211
+ declare const RadioGroup: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root> & {
212
+ ref?: React$1.Ref<React$1.ElementRef<typeof RadioGroupPrimitive.Root>>;
213
+ }) => react_jsx_runtime.JSX.Element;
214
+ declare const RadioGroupItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> & {
215
+ ref?: React$1.Ref<React$1.ElementRef<typeof RadioGroupPrimitive.Item>>;
216
+ }) => react_jsx_runtime.JSX.Element;
323
217
 
324
218
  interface TextFieldProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'size'> {
325
219
  /**
@@ -366,7 +260,9 @@ interface TextFieldProps extends Omit<React__default.InputHTMLAttributes<HTMLInp
366
260
  * - Full keyboard accessibility
367
261
  * - Ref forwarding support
368
262
  */
369
- declare const TextField: React__default.ForwardRefExoticComponent<TextFieldProps & React__default.RefAttributes<HTMLInputElement>>;
263
+ declare const TextField: ({ ref, variant, size, error, helperText, label, required, className, id, ...props }: TextFieldProps & {
264
+ ref?: React__default.Ref<HTMLInputElement>;
265
+ }) => react_jsx_runtime.JSX.Element;
370
266
 
371
267
  interface SearchBarProps extends Omit<TextFieldProps, 'variant'> {
372
268
  /**
@@ -420,26 +316,48 @@ interface SearchBarProps extends Omit<TextFieldProps, 'variant'> {
420
316
  * />
421
317
  * ```
422
318
  */
423
- declare const SearchBar: React__default.ForwardRefExoticComponent<SearchBarProps & React__default.RefAttributes<HTMLInputElement>>;
319
+ declare const SearchBar: ({ ref, onSearch, debounceMs, showClearButton, onClear, value: controlledValue, onChange, placeholder, className, shortcut, ...props }: SearchBarProps & {
320
+ ref?: React__default.Ref<HTMLInputElement>;
321
+ }) => react_jsx_runtime.JSX.Element;
424
322
 
425
323
  declare const Select: React$1.FC<_radix_ui_react_select.SelectProps>;
426
324
  declare const SelectGroup: React$1.ForwardRefExoticComponent<_radix_ui_react_select.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
427
325
  declare const SelectValue: React$1.ForwardRefExoticComponent<_radix_ui_react_select.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
428
- declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
429
- declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
430
- declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
431
- declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
432
- declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
433
- declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
434
- declare const SelectSeparatorComp: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_select.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
326
+ declare const SelectTrigger: ({ ref, className, children, ...props }: ComponentPropsWithoutRef<typeof Trigger> & {
327
+ ref?: React$1.Ref<ElementRef<typeof Trigger>>;
328
+ }) => react_jsx_runtime.JSX.Element;
329
+ declare const SelectScrollUpButton: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof ScrollUpButton> & {
330
+ ref?: React$1.Ref<ElementRef<typeof ScrollUpButton>>;
331
+ }) => react_jsx_runtime.JSX.Element;
332
+ declare const SelectScrollDownButton: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof ScrollDownButton> & {
333
+ ref?: React$1.Ref<ElementRef<typeof ScrollDownButton>>;
334
+ }) => react_jsx_runtime.JSX.Element;
335
+ declare const SelectContent: ({ ref, className, children, position, ...props }: ComponentPropsWithoutRef<typeof Content> & {
336
+ ref?: React$1.Ref<ElementRef<typeof Content>>;
337
+ }) => react_jsx_runtime.JSX.Element;
338
+ declare const SelectLabel: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof Label$1> & {
339
+ ref?: React$1.Ref<ElementRef<typeof Label$1>>;
340
+ }) => react_jsx_runtime.JSX.Element;
341
+ declare const SelectItem: ({ ref, className, children, ...props }: ComponentPropsWithoutRef<typeof Item> & {
342
+ ref?: React$1.Ref<ElementRef<typeof Item>>;
343
+ }) => react_jsx_runtime.JSX.Element;
344
+ declare const SelectSeparatorComp: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof Separator$1> & {
345
+ ref?: React$1.Ref<ElementRef<typeof Separator$1>>;
346
+ }) => react_jsx_runtime.JSX.Element;
435
347
 
436
- declare const Slider: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> & React$1.RefAttributes<React$1.ElementRef<typeof SliderPrimitive.Root>>>;
348
+ declare const Slider: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> & {
349
+ ref?: React$1.Ref<React$1.ElementRef<typeof SliderPrimitive.Root>>;
350
+ }) => react_jsx_runtime.JSX.Element;
437
351
 
438
- declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
352
+ declare const Switch: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> & {
353
+ ref?: React$1.Ref<React$1.ElementRef<typeof SwitchPrimitives.Root>>;
354
+ }) => react_jsx_runtime.JSX.Element;
439
355
 
440
356
  interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
441
357
  }
442
- declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
358
+ declare const Textarea: ({ ref, className, ...props }: TextareaProps & {
359
+ ref?: React$1.Ref<HTMLTextAreaElement>;
360
+ }) => react_jsx_runtime.JSX.Element;
443
361
 
444
362
  interface ThemeSwitcherProps {
445
363
  /**
@@ -529,15 +447,25 @@ interface ThemeToggleProps {
529
447
  */
530
448
  declare const ThemeToggle: React__default.FC<ThemeToggleProps>;
531
449
 
532
- declare const Breadcrumb: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"nav"> & {
450
+ declare const Breadcrumb: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<"nav"> & {
533
451
  separator?: React$1.ReactNode;
534
- } & React$1.RefAttributes<HTMLElement>>;
535
- declare const BreadcrumbList: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"ol"> & React$1.RefAttributes<HTMLOListElement>>;
536
- declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"li"> & React$1.RefAttributes<HTMLLIElement>>;
537
- declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"a"> & {
452
+ } & {
453
+ ref?: React$1.Ref<HTMLElement>;
454
+ }) => react_jsx_runtime.JSX.Element;
455
+ declare const BreadcrumbList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"ol"> & {
456
+ ref?: React$1.Ref<HTMLOListElement>;
457
+ }) => react_jsx_runtime.JSX.Element;
458
+ declare const BreadcrumbItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"li"> & {
459
+ ref?: React$1.Ref<HTMLLIElement>;
460
+ }) => react_jsx_runtime.JSX.Element;
461
+ declare const BreadcrumbLink: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"a"> & {
538
462
  asChild?: boolean;
539
- } & React$1.RefAttributes<HTMLAnchorElement>>;
540
- declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"span"> & React$1.RefAttributes<HTMLSpanElement>>;
463
+ } & {
464
+ ref?: React$1.Ref<HTMLAnchorElement>;
465
+ }) => react_jsx_runtime.JSX.Element;
466
+ declare const BreadcrumbPage: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"span"> & {
467
+ ref?: React$1.Ref<HTMLSpanElement>;
468
+ }) => react_jsx_runtime.JSX.Element;
541
469
  declare const BreadcrumbSeparator: {
542
470
  ({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
543
471
  displayName: string;
@@ -547,27 +475,41 @@ declare const BreadcrumbEllipsis: {
547
475
  displayName: string;
548
476
  };
549
477
 
550
- declare function Dialog({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
551
- declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
552
- declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
553
- declare function DialogClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
554
- declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
555
- declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
478
+ declare function Dialog({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime.JSX.Element;
479
+ declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
480
+ declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Portal>): react_jsx_runtime.JSX.Element;
481
+ declare function DialogClose({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime.JSX.Element;
482
+ declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
483
+ declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Content> & {
556
484
  showCloseButton?: boolean;
557
485
  }): react_jsx_runtime.JSX.Element;
558
486
  declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
559
487
  declare function DialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
560
- declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
561
- declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
488
+ declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime.JSX.Element;
489
+ declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
562
490
 
563
- declare const Command: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1>>>;
491
+ declare const Command: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1> & {
492
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1>>;
493
+ }) => react_jsx_runtime.JSX.Element;
564
494
  declare const CommandDialog: ({ children, ...props }: React$1.ComponentProps<typeof Dialog>) => react_jsx_runtime.JSX.Element;
565
- declare const CommandInput: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1.Input> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1.Input>>>;
566
- declare const CommandList: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1.List> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1.List>>>;
567
- declare const CommandEmpty: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1.Empty> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1.Empty>>>;
568
- declare const CommandGroup: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1.Group> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1.Group>>>;
569
- declare const CommandSeparator: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1.Separator> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1.Separator>>>;
570
- declare const CommandItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Command$1.Item> & React$1.RefAttributes<React$1.ElementRef<typeof Command$1.Item>>>;
495
+ declare const CommandInput: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Input> & {
496
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Input>>;
497
+ }) => react_jsx_runtime.JSX.Element;
498
+ declare const CommandList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.List> & {
499
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.List>>;
500
+ }) => react_jsx_runtime.JSX.Element;
501
+ declare const CommandEmpty: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Empty> & {
502
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Empty>>;
503
+ }) => react_jsx_runtime.JSX.Element;
504
+ declare const CommandGroup: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Group> & {
505
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Group>>;
506
+ }) => react_jsx_runtime.JSX.Element;
507
+ declare const CommandSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Separator> & {
508
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Separator>>;
509
+ }) => react_jsx_runtime.JSX.Element;
510
+ declare const CommandItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Item> & {
511
+ ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Item>>;
512
+ }) => react_jsx_runtime.JSX.Element;
571
513
  declare const CommandShortcut: {
572
514
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
573
515
  displayName: string;
@@ -578,11 +520,21 @@ declare const MenubarGroup: typeof MenubarPrimitive.Group;
578
520
  declare const MenubarPortal: typeof MenubarPrimitive.Portal;
579
521
  declare const MenubarSub: typeof MenubarPrimitive.Sub;
580
522
  declare const MenubarRadioGroup: typeof MenubarPrimitive.RadioGroup;
581
- declare const Menubar: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Root> & React$1.RefAttributes<React$1.ElementRef<typeof MenubarPrimitive.Root>>>;
582
- declare const MenubarTrigger: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Trigger> & React$1.RefAttributes<React$1.ElementRef<typeof MenubarPrimitive.Trigger>>>;
583
- declare const MenubarContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof MenubarPrimitive.Content>>>;
584
- declare const MenubarItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Item> & React$1.RefAttributes<React$1.ElementRef<typeof MenubarPrimitive.Item>>>;
585
- declare const MenubarSeparator: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Separator> & React$1.RefAttributes<React$1.ElementRef<typeof MenubarPrimitive.Separator>>>;
523
+ declare const Menubar: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Root> & {
524
+ ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Root>>;
525
+ }) => react_jsx_runtime.JSX.Element;
526
+ declare const MenubarTrigger: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Trigger> & {
527
+ ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Trigger>>;
528
+ }) => react_jsx_runtime.JSX.Element;
529
+ declare const MenubarContent: ({ ref, className, align, alignOffset, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Content> & {
530
+ ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Content>>;
531
+ }) => react_jsx_runtime.JSX.Element;
532
+ declare const MenubarItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Item> & {
533
+ ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Item>>;
534
+ }) => react_jsx_runtime.JSX.Element;
535
+ declare const MenubarSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Separator> & {
536
+ ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Separator>>;
537
+ }) => react_jsx_runtime.JSX.Element;
586
538
  declare const MenubarShortcut: {
587
539
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
588
540
  displayName: string;
@@ -594,24 +546,42 @@ interface NavLinkProps extends React__default.AnchorHTMLAttributes<HTMLAnchorEle
594
546
  icon?: React__default.ReactNode;
595
547
  variant?: 'pill' | 'minimal';
596
548
  }
597
- declare const NavLink: React__default.ForwardRefExoticComponent<NavLinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
549
+ declare const NavLink: ({ ref, active, children, icon, variant, className, ...props }: NavLinkProps & {
550
+ ref?: React__default.Ref<HTMLAnchorElement>;
551
+ }) => react_jsx_runtime.JSX.Element;
598
552
 
599
- declare const NavigationMenu: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root> & React$1.RefAttributes<React$1.ElementRef<typeof NavigationMenuPrimitive.Root>>>;
600
- declare const NavigationMenuList: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List> & React$1.RefAttributes<React$1.ElementRef<typeof NavigationMenuPrimitive.List>>>;
553
+ declare const NavigationMenu: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root> & {
554
+ ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Root>>;
555
+ }) => react_jsx_runtime.JSX.Element;
556
+ declare const NavigationMenuList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List> & {
557
+ ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.List>>;
558
+ }) => react_jsx_runtime.JSX.Element;
601
559
  declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
602
560
  declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
603
- declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger> & React$1.RefAttributes<React$1.ElementRef<typeof NavigationMenuPrimitive.Trigger>>>;
604
- declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof NavigationMenuPrimitive.Content>>>;
561
+ declare const NavigationMenuTrigger: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger> & {
562
+ ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Trigger>>;
563
+ }) => react_jsx_runtime.JSX.Element;
564
+ declare const NavigationMenuContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content> & {
565
+ ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Content>>;
566
+ }) => react_jsx_runtime.JSX.Element;
605
567
  declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
606
- declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport> & React$1.RefAttributes<React$1.ElementRef<typeof NavigationMenuPrimitive.Viewport>>>;
607
- declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator> & React$1.RefAttributes<React$1.ElementRef<typeof NavigationMenuPrimitive.Indicator>>>;
568
+ declare const NavigationMenuViewport: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport> & {
569
+ ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Viewport>>;
570
+ }) => react_jsx_runtime.JSX.Element;
571
+ declare const NavigationMenuIndicator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator> & {
572
+ ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Indicator>>;
573
+ }) => react_jsx_runtime.JSX.Element;
608
574
 
609
575
  declare const Pagination: {
610
576
  ({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
611
577
  displayName: string;
612
578
  };
613
- declare const PaginationContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"ul"> & React$1.RefAttributes<HTMLUListElement>>;
614
- declare const PaginationItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<"li"> & React$1.RefAttributes<HTMLLIElement>>;
579
+ declare const PaginationContent: ({ ref, className, ...props }: React$1.ComponentProps<"ul"> & {
580
+ ref?: React$1.Ref<HTMLUListElement>;
581
+ }) => react_jsx_runtime.JSX.Element;
582
+ declare const PaginationItem: ({ ref, className, ...props }: React$1.ComponentProps<"li"> & {
583
+ ref?: React$1.Ref<HTMLLIElement>;
584
+ }) => react_jsx_runtime.JSX.Element;
615
585
  type PaginationLinkProps = {
616
586
  isActive?: boolean;
617
587
  } & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
@@ -676,12 +646,20 @@ interface SecondaryNavProps {
676
646
  * Secondary Navigation Component
677
647
  * ... (keep existing comment block) ...
678
648
  */
679
- declare const SecondaryNav: React__default.ForwardRefExoticComponent<SecondaryNavProps & React__default.RefAttributes<HTMLElement>>;
649
+ declare const SecondaryNav: ({ ref, items, activeId, onItemChange, maxWidth, mode, top, className }: SecondaryNavProps & {
650
+ ref?: React__default.Ref<HTMLElement>;
651
+ }) => react_jsx_runtime.JSX.Element;
680
652
 
681
653
  declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
682
- declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
683
- declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
684
- declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
654
+ declare const TabsList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.List> & {
655
+ ref?: React$1.Ref<React$1.ElementRef<typeof TabsPrimitive.List>>;
656
+ }) => react_jsx_runtime.JSX.Element;
657
+ declare const TabsTrigger: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> & {
658
+ ref?: React$1.Ref<React$1.ElementRef<typeof TabsPrimitive.Trigger>>;
659
+ }) => react_jsx_runtime.JSX.Element;
660
+ declare const TabsContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Content> & {
661
+ ref?: React$1.Ref<React$1.ElementRef<typeof TabsPrimitive.Content>>;
662
+ }) => react_jsx_runtime.JSX.Element;
685
663
 
686
664
  interface TertiaryNavItem {
687
665
  id: string;
@@ -721,13 +699,19 @@ interface TertiaryNavProps {
721
699
  * Tertiary Navigation Component
722
700
  * ... (keep existing comment block) ...
723
701
  */
724
- declare const TertiaryNav: React__default.ForwardRefExoticComponent<TertiaryNavProps & React__default.RefAttributes<HTMLElement>>;
702
+ declare const TertiaryNav: ({ ref, items, activeId, onItemChange, mode, top, className }: TertiaryNavProps & {
703
+ ref?: React__default.Ref<HTMLElement>;
704
+ }) => react_jsx_runtime.JSX.Element;
725
705
 
726
706
  declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
727
707
  declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
728
708
  declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
729
- declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay> & React$1.RefAttributes<React$1.ElementRef<typeof AlertDialogPrimitive.Overlay>>>;
730
- declare const AlertDialogContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof AlertDialogPrimitive.Content>>>;
709
+ declare const AlertDialogOverlay: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay> & {
710
+ ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Overlay>>;
711
+ }) => react_jsx_runtime.JSX.Element;
712
+ declare const AlertDialogContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content> & {
713
+ ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Content>>;
714
+ }) => react_jsx_runtime.JSX.Element;
731
715
  declare const AlertDialogHeader: {
732
716
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
733
717
  displayName: string;
@@ -736,10 +720,18 @@ declare const AlertDialogFooter: {
736
720
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
737
721
  displayName: string;
738
722
  };
739
- declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title> & React$1.RefAttributes<React$1.ElementRef<typeof AlertDialogPrimitive.Title>>>;
740
- declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description> & React$1.RefAttributes<React$1.ElementRef<typeof AlertDialogPrimitive.Description>>>;
741
- declare const AlertDialogAction: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action> & React$1.RefAttributes<React$1.ElementRef<typeof AlertDialogPrimitive.Action>>>;
742
- declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel> & React$1.RefAttributes<React$1.ElementRef<typeof AlertDialogPrimitive.Cancel>>>;
723
+ declare const AlertDialogTitle: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title> & {
724
+ ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Title>>;
725
+ }) => react_jsx_runtime.JSX.Element;
726
+ declare const AlertDialogDescription: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description> & {
727
+ ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Description>>;
728
+ }) => react_jsx_runtime.JSX.Element;
729
+ declare const AlertDialogAction: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action> & {
730
+ ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Action>>;
731
+ }) => react_jsx_runtime.JSX.Element;
732
+ declare const AlertDialogCancel: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel> & {
733
+ ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Cancel>>;
734
+ }) => react_jsx_runtime.JSX.Element;
743
735
 
744
736
  declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
745
737
  declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
@@ -747,20 +739,36 @@ declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPri
747
739
  declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
748
740
  declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
749
741
  declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
750
- declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubTrigger> & {
742
+ declare const ContextMenuSubTrigger: ({ ref, className, inset, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubTrigger> & {
751
743
  inset?: boolean;
752
- } & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.SubTrigger>>>;
753
- declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubContent> & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.SubContent>>>;
754
- declare const ContextMenuContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.Content>>>;
755
- declare const ContextMenuItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Item> & {
744
+ } & {
745
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.SubTrigger>>;
746
+ }) => react_jsx_runtime.JSX.Element;
747
+ declare const ContextMenuSubContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubContent> & {
748
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.SubContent>>;
749
+ }) => react_jsx_runtime.JSX.Element;
750
+ declare const ContextMenuContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Content> & {
751
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Content>>;
752
+ }) => react_jsx_runtime.JSX.Element;
753
+ declare const ContextMenuItem: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Item> & {
756
754
  inset?: boolean;
757
- } & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.Item>>>;
758
- declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.CheckboxItem> & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.CheckboxItem>>>;
759
- declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.RadioItem> & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.RadioItem>>>;
760
- declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Label> & {
755
+ } & {
756
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Item>>;
757
+ }) => react_jsx_runtime.JSX.Element;
758
+ declare const ContextMenuCheckboxItem: ({ ref, className, children, checked, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.CheckboxItem> & {
759
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.CheckboxItem>>;
760
+ }) => react_jsx_runtime.JSX.Element;
761
+ declare const ContextMenuRadioItem: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.RadioItem> & {
762
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.RadioItem>>;
763
+ }) => react_jsx_runtime.JSX.Element;
764
+ declare const ContextMenuLabel: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Label> & {
761
765
  inset?: boolean;
762
- } & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.Label>>>;
763
- declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Separator> & React$1.RefAttributes<React$1.ElementRef<typeof ContextMenuPrimitive.Separator>>>;
766
+ } & {
767
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Label>>;
768
+ }) => react_jsx_runtime.JSX.Element;
769
+ declare const ContextMenuSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Separator> & {
770
+ ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Separator>>;
771
+ }) => react_jsx_runtime.JSX.Element;
764
772
  declare const ContextMenuShortcut: {
765
773
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
766
774
  displayName: string;
@@ -770,8 +778,12 @@ declare const Drawer: typeof Drawer$1.Root;
770
778
  declare const DrawerTrigger: typeof Drawer$1.Trigger;
771
779
  declare const DrawerPortal: typeof Drawer$1.Portal;
772
780
  declare const DrawerClose: typeof Drawer$1.Close;
773
- declare const DrawerOverlay: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Overlay> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Overlay>>>;
774
- declare const DrawerContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Content> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Content>>>;
781
+ declare const DrawerOverlay: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Overlay> & {
782
+ ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Overlay>>;
783
+ }) => react_jsx_runtime.JSX.Element;
784
+ declare const DrawerContent: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Content> & {
785
+ ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Content>>;
786
+ }) => react_jsx_runtime.JSX.Element;
775
787
  declare const DrawerHeader: {
776
788
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
777
789
  displayName: string;
@@ -780,8 +792,12 @@ declare const DrawerFooter: {
780
792
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
781
793
  displayName: string;
782
794
  };
783
- declare const DrawerTitle: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Title>>>;
784
- declare const DrawerDescription: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Description> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Description>>>;
795
+ declare const DrawerTitle: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title> & {
796
+ ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Title>>;
797
+ }) => react_jsx_runtime.JSX.Element;
798
+ declare const DrawerDescription: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Description> & {
799
+ ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Description>>;
800
+ }) => react_jsx_runtime.JSX.Element;
785
801
 
786
802
  interface DropdownItem {
787
803
  label: string;
@@ -849,20 +865,36 @@ declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuP
849
865
  declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
850
866
  declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
851
867
  declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
852
- declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
868
+ declare const DropdownMenuSubTrigger: ({ ref, className, inset, children, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
853
869
  inset?: boolean;
854
- } & React$1.RefAttributes<HTMLDivElement>>;
855
- declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
856
- declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
857
- declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
870
+ } & {
871
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>>;
872
+ }) => react_jsx_runtime.JSX.Element;
873
+ declare const DropdownMenuSubContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent> & {
874
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.SubContent>>;
875
+ }) => react_jsx_runtime.JSX.Element;
876
+ declare const DropdownMenuContent: ({ ref, className, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> & {
877
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Content>>;
878
+ }) => react_jsx_runtime.JSX.Element;
879
+ declare const DropdownMenuItem: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
858
880
  inset?: boolean;
859
- } & React$1.RefAttributes<HTMLDivElement>>;
860
- declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
861
- declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
862
- declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
881
+ } & {
882
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Item>>;
883
+ }) => react_jsx_runtime.JSX.Element;
884
+ declare const DropdownMenuCheckboxItem: ({ ref, className, children, checked, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> & {
885
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>>;
886
+ }) => react_jsx_runtime.JSX.Element;
887
+ declare const DropdownMenuRadioItem: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem> & {
888
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.RadioItem>>;
889
+ }) => react_jsx_runtime.JSX.Element;
890
+ declare const DropdownMenuLabel: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
863
891
  inset?: boolean;
864
- } & React$1.RefAttributes<HTMLDivElement>>;
865
- declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
892
+ } & {
893
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Label>>;
894
+ }) => react_jsx_runtime.JSX.Element;
895
+ declare const DropdownMenuSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator> & {
896
+ ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Separator>>;
897
+ }) => react_jsx_runtime.JSX.Element;
866
898
  declare const DropdownMenuShortcut: {
867
899
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
868
900
  displayName: string;
@@ -870,7 +902,9 @@ declare const DropdownMenuShortcut: {
870
902
 
871
903
  declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
872
904
  declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
873
- declare const HoverCardContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof HoverCardPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof HoverCardPrimitive.Content>>>;
905
+ declare const HoverCardContent: ({ ref, className, align, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof HoverCardPrimitive.Content> & {
906
+ ref?: React$1.Ref<React$1.ElementRef<typeof HoverCardPrimitive.Content>>;
907
+ }) => react_jsx_runtime.JSX.Element;
874
908
 
875
909
  interface ModalProps {
876
910
  /**
@@ -950,19 +984,25 @@ declare const Modal: React__default.FC<ModalProps>;
950
984
  declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
951
985
  declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
952
986
  declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
953
- declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
987
+ declare const PopoverContent: ({ ref, className, align, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> & {
988
+ ref?: React$1.Ref<React$1.ElementRef<typeof PopoverPrimitive.Content>>;
989
+ }) => react_jsx_runtime.JSX.Element;
954
990
 
955
- declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
956
- declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
957
- declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
958
- declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
959
- declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
991
+ declare const Sheet: React$1.FC<SheetPrimitive.DialogProps>;
992
+ declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
993
+ declare const SheetClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
994
+ declare const SheetPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
995
+ declare const SheetOverlay: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Overlay> & {
996
+ ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Overlay>>;
997
+ }) => react_jsx_runtime.JSX.Element;
960
998
  declare const sheetVariants: (props?: ({
961
999
  side?: "left" | "top" | "bottom" | "right" | null | undefined;
962
1000
  } & class_variance_authority_types.ClassProp) | undefined) => string;
963
- interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1001
+ interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
964
1002
  }
965
- declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
1003
+ declare const SheetContent: ({ ref, side, className, children, ...props }: SheetContentProps & {
1004
+ ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Content>>;
1005
+ }) => react_jsx_runtime.JSX.Element;
966
1006
  declare const SheetHeader: {
967
1007
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
968
1008
  displayName: string;
@@ -971,13 +1011,19 @@ declare const SheetFooter: {
971
1011
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
972
1012
  displayName: string;
973
1013
  };
974
- declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
975
- declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
1014
+ declare const SheetTitle: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Title> & {
1015
+ ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Title>>;
1016
+ }) => react_jsx_runtime.JSX.Element;
1017
+ declare const SheetDescription: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Description> & {
1018
+ ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Description>>;
1019
+ }) => react_jsx_runtime.JSX.Element;
976
1020
 
977
1021
  declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
978
1022
  declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
979
1023
  declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
980
- declare const TooltipContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof TooltipPrimitive.Content>>>;
1024
+ declare const TooltipContent: ({ ref, className, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> & {
1025
+ ref?: React$1.Ref<React$1.ElementRef<typeof TooltipPrimitive.Content>>;
1026
+ }) => react_jsx_runtime.JSX.Element;
981
1027
 
982
1028
  declare const alertVariants: (props?: ({
983
1029
  variant?: "default" | "destructive" | null | undefined;
@@ -986,7 +1032,9 @@ declare function Alert({ className, variant, ...props }: React$1.ComponentProps<
986
1032
  declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
987
1033
  declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
988
1034
 
989
- declare const Progress: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> & React$1.RefAttributes<React$1.ElementRef<typeof ProgressPrimitive.Root>>>;
1035
+ declare const Progress: ({ ref, className, value, ...props }: React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> & {
1036
+ ref?: React$1.Ref<React$1.ElementRef<typeof ProgressPrimitive.Root>>;
1037
+ }) => react_jsx_runtime.JSX.Element;
990
1038
 
991
1039
  interface ProgressBarProps extends React__default.HTMLAttributes<HTMLDivElement> {
992
1040
  /**
@@ -1045,7 +1093,9 @@ interface ProgressBarProps extends React__default.HTMLAttributes<HTMLDivElement>
1045
1093
  * <ProgressBar indeterminate variant="primary" />
1046
1094
  * ```
1047
1095
  */
1048
- declare const ProgressBar: React__default.ForwardRefExoticComponent<ProgressBarProps & React__default.RefAttributes<HTMLDivElement>>;
1096
+ declare const ProgressBar: ({ ref, value, max, size, variant, showLabel, animated, indeterminate, className, ...props }: ProgressBarProps & {
1097
+ ref?: React__default.Ref<HTMLDivElement>;
1098
+ }) => react_jsx_runtime.JSX.Element;
1049
1099
 
1050
1100
  interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
1051
1101
  /**
@@ -1102,7 +1152,9 @@ interface SpinnerProps extends React__default.HTMLAttributes<HTMLDivElement> {
1102
1152
  * <Spinner size="sm" variant="inherit" />
1103
1153
  * ```
1104
1154
  */
1105
- declare const Spinner: React__default.ForwardRefExoticComponent<SpinnerProps & React__default.RefAttributes<HTMLDivElement>>;
1155
+ declare const Spinner: ({ ref, size, variant, label, className, ...props }: SpinnerProps & {
1156
+ ref?: React__default.Ref<HTMLDivElement>;
1157
+ }) => react_jsx_runtime.JSX.Element;
1106
1158
 
1107
1159
  type ToastType = 'success' | 'error' | 'warning' | 'info';
1108
1160
  interface Toast {
@@ -1197,15 +1249,23 @@ interface AspectImageProps extends React__default.ImgHTMLAttributes<HTMLImageEle
1197
1249
  */
1198
1250
  caption?: React__default.ReactNode;
1199
1251
  }
1200
- declare const AspectImage: React__default.ForwardRefExoticComponent<AspectImageProps & React__default.RefAttributes<HTMLImageElement>>;
1252
+ declare const AspectImage: ({ ref, ratio, src, alt, rounded, shadow, caption, className, style, ...props }: AspectImageProps & {
1253
+ ref?: React__default.Ref<HTMLImageElement>;
1254
+ }) => react_jsx_runtime.JSX.Element;
1201
1255
 
1202
- declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
1203
- declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
1204
- declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
1256
+ declare const Avatar: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root> & {
1257
+ ref?: React$1.Ref<React$1.ElementRef<typeof AvatarPrimitive.Root>>;
1258
+ }) => react_jsx_runtime.JSX.Element;
1259
+ declare const AvatarImage: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image> & {
1260
+ ref?: React$1.Ref<React$1.ElementRef<typeof AvatarPrimitive.Image>>;
1261
+ }) => react_jsx_runtime.JSX.Element;
1262
+ declare const AvatarFallback: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback> & {
1263
+ ref?: React$1.Ref<React$1.ElementRef<typeof AvatarPrimitive.Fallback>>;
1264
+ }) => react_jsx_runtime.JSX.Element;
1205
1265
 
1206
1266
  declare const badgeVariants: (props?: ({
1207
- variant?: "default" | "destructive" | "outline" | "secondary" | "success" | "warning" | "error" | "info" | null | undefined;
1208
- size?: "sm" | "lg" | "md" | null | undefined;
1267
+ variant?: "error" | "success" | "warning" | "info" | "secondary" | "default" | "destructive" | "outline" | null | undefined;
1268
+ size?: "lg" | "sm" | "md" | null | undefined;
1209
1269
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1210
1270
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
1211
1271
  dot?: boolean;
@@ -1273,13 +1333,9 @@ interface BrandProps {
1273
1333
  * <Brand size="lg">Brand</Brand>
1274
1334
  * ```
1275
1335
  */
1276
- declare const Brand: React__default.ForwardRefExoticComponent<BrandProps & React__default.RefAttributes<HTMLElement>>;
1277
-
1278
- type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
1279
- declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
1280
- declare namespace Calendar {
1281
- var displayName: string;
1282
- }
1336
+ declare const Brand: ({ ref, children, size, href, className, onClick }: BrandProps & {
1337
+ ref?: React__default.Ref<HTMLElement>;
1338
+ }) => react_jsx_runtime.JSX.Element;
1283
1339
 
1284
1340
  declare const cardVariants: (props?: ({
1285
1341
  hoverEffect?: boolean | null | undefined;
@@ -1287,12 +1343,24 @@ declare const cardVariants: (props?: ({
1287
1343
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1288
1344
  interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
1289
1345
  }
1290
- declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
1291
- declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1292
- declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
1293
- declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
1294
- declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1295
- declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1346
+ declare const Card: ({ ref, className, variant, hoverEffect, ...props }: CardProps & {
1347
+ ref?: React$1.Ref<HTMLDivElement>;
1348
+ }) => react_jsx_runtime.JSX.Element;
1349
+ declare const CardHeader: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
1350
+ ref?: React$1.Ref<HTMLDivElement>;
1351
+ }) => react_jsx_runtime.JSX.Element;
1352
+ declare const CardTitle: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLHeadingElement> & {
1353
+ ref?: React$1.Ref<HTMLParagraphElement>;
1354
+ }) => react_jsx_runtime.JSX.Element;
1355
+ declare const CardDescription: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLParagraphElement> & {
1356
+ ref?: React$1.Ref<HTMLParagraphElement>;
1357
+ }) => react_jsx_runtime.JSX.Element;
1358
+ declare const CardContent: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
1359
+ ref?: React$1.Ref<HTMLDivElement>;
1360
+ }) => react_jsx_runtime.JSX.Element;
1361
+ declare const CardFooter: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
1362
+ ref?: React$1.Ref<HTMLDivElement>;
1363
+ }) => react_jsx_runtime.JSX.Element;
1296
1364
 
1297
1365
  interface CodeProps {
1298
1366
  /** The code content to display */
@@ -1377,12 +1445,6 @@ interface CollapsibleCodeBlockProps {
1377
1445
  */
1378
1446
  declare function CollapsibleCodeBlock({ id, title, code, language, defaultCollapsed, showCopy, className, }: CollapsibleCodeBlockProps): react_jsx_runtime.JSX.Element;
1379
1447
 
1380
- interface DataTableProps<TData, TValue> {
1381
- columns: ColumnDef<TData, TValue>[];
1382
- data: TData[];
1383
- }
1384
- declare function DataTable<TData, TValue>({ columns, data, }: DataTableProps<TData, TValue>): react_jsx_runtime.JSX.Element;
1385
-
1386
1448
  interface DescriptionListItem {
1387
1449
  label: string | React__default.ReactNode;
1388
1450
  value: string | React__default.ReactNode;
@@ -1415,7 +1477,9 @@ interface GitHubIconProps {
1415
1477
  * Uses currentColor so it inherits the text color from its parent.
1416
1478
  * Works automatically with light/dark modes through color inheritance.
1417
1479
  */
1418
- declare const GitHubIcon: React__default.ForwardRefExoticComponent<GitHubIconProps & React__default.RefAttributes<SVGSVGElement>>;
1480
+ declare const GitHubIcon: ({ ref, size, className }: GitHubIconProps & {
1481
+ ref?: React__default.Ref<SVGSVGElement>;
1482
+ }) => react_jsx_runtime.JSX.Element;
1419
1483
 
1420
1484
  interface HeadingProps {
1421
1485
  /**
@@ -1459,16 +1523,37 @@ interface HeadingProps {
1459
1523
  * <Heading level={3}>Subsection</Heading>
1460
1524
  * ```
1461
1525
  */
1462
- declare const Heading: React__default.ForwardRefExoticComponent<HeadingProps & React__default.RefAttributes<HTMLHeadingElement>>;
1463
-
1464
- declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
1465
- declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1466
- declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1467
- declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1468
- declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
1469
- declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1470
- declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1471
- declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
1526
+ declare const Heading: ({ ref, children, level, className }: HeadingProps & {
1527
+ ref?: React__default.Ref<HTMLHeadingElement>;
1528
+ }) => React__default.DetailedReactHTMLElement<{
1529
+ ref: React__default.Ref<HTMLHeadingElement> | undefined;
1530
+ className: string;
1531
+ }, HTMLHeadingElement>;
1532
+
1533
+ declare const Table: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableElement> & {
1534
+ ref?: React$1.Ref<HTMLTableElement>;
1535
+ }) => react_jsx_runtime.JSX.Element;
1536
+ declare const TableHeader: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement> & {
1537
+ ref?: React$1.Ref<HTMLTableSectionElement>;
1538
+ }) => react_jsx_runtime.JSX.Element;
1539
+ declare const TableBody: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement> & {
1540
+ ref?: React$1.Ref<HTMLTableSectionElement>;
1541
+ }) => react_jsx_runtime.JSX.Element;
1542
+ declare const TableFooter: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement> & {
1543
+ ref?: React$1.Ref<HTMLTableSectionElement>;
1544
+ }) => react_jsx_runtime.JSX.Element;
1545
+ declare const TableRow: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableRowElement> & {
1546
+ ref?: React$1.Ref<HTMLTableRowElement>;
1547
+ }) => react_jsx_runtime.JSX.Element;
1548
+ declare const TableHead: ({ ref, className, ...props }: React$1.ThHTMLAttributes<HTMLTableCellElement> & {
1549
+ ref?: React$1.Ref<HTMLTableCellElement>;
1550
+ }) => react_jsx_runtime.JSX.Element;
1551
+ declare const TableCell: ({ ref, className, ...props }: React$1.TdHTMLAttributes<HTMLTableCellElement> & {
1552
+ ref?: React$1.Ref<HTMLTableCellElement>;
1553
+ }) => react_jsx_runtime.JSX.Element;
1554
+ declare const TableCaption: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableCaptionElement> & {
1555
+ ref?: React$1.Ref<HTMLTableCaptionElement>;
1556
+ }) => react_jsx_runtime.JSX.Element;
1472
1557
 
1473
1558
  interface TextProps {
1474
1559
  /**
@@ -1537,7 +1622,12 @@ interface TextProps {
1537
1622
  * <Text as="label">Form label</Text>
1538
1623
  * ```
1539
1624
  */
1540
- declare const Text: React__default.ForwardRefExoticComponent<TextProps & React__default.RefAttributes<HTMLElement>>;
1625
+ declare const Text: ({ ref, children, variant, size, weight, as: Component, className }: TextProps & {
1626
+ ref?: React__default.Ref<HTMLElement>;
1627
+ }) => React__default.DetailedReactHTMLElement<{
1628
+ ref: React__default.Ref<HTMLElement> | undefined;
1629
+ className: string;
1630
+ }, HTMLElement>;
1541
1631
 
1542
1632
  interface VariableWeightTextProps extends Omit<HTMLMotionProps<'div'>, 'children'> {
1543
1633
  /**
@@ -1635,9 +1725,15 @@ interface OpenGraphCardProps extends React__default.HTMLAttributes<HTMLDivElemen
1635
1725
  declare function OpenGraphCard({ title, description, variant, icon, gradient, primaryColor, secondaryColor, accentColor, titleFontSize, descriptionFontSize, fontFamily, className, ...props }: OpenGraphCardProps): react_jsx_runtime.JSX.Element;
1636
1726
 
1637
1727
  declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
1638
- declare const AccordionItem: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> & React$1.RefAttributes<React$1.ElementRef<typeof AccordionPrimitive.Item>>>;
1639
- declare const AccordionTrigger: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger> & React$1.RefAttributes<React$1.ElementRef<typeof AccordionPrimitive.Trigger>>>;
1640
- declare const AccordionContent: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content> & React$1.RefAttributes<React$1.ElementRef<typeof AccordionPrimitive.Content>>>;
1728
+ declare const AccordionItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> & {
1729
+ ref?: React$1.Ref<React$1.ElementRef<typeof AccordionPrimitive.Item>>;
1730
+ }) => react_jsx_runtime.JSX.Element;
1731
+ declare const AccordionTrigger: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger> & {
1732
+ ref?: React$1.Ref<React$1.ElementRef<typeof AccordionPrimitive.Trigger>>;
1733
+ }) => react_jsx_runtime.JSX.Element;
1734
+ declare const AccordionContent: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content> & {
1735
+ ref?: React$1.Ref<React$1.ElementRef<typeof AccordionPrimitive.Content>>;
1736
+ }) => react_jsx_runtime.JSX.Element;
1641
1737
 
1642
1738
  declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
1643
1739
 
@@ -1651,15 +1747,27 @@ type CarouselProps = {
1651
1747
  orientation?: "horizontal" | "vertical";
1652
1748
  setApi?: (api: CarouselApi) => void;
1653
1749
  };
1654
- declare const Carousel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & React$1.RefAttributes<HTMLDivElement>>;
1655
- declare const CarouselContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1656
- declare const CarouselItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1657
- declare const CarouselPrevious: React$1.ForwardRefExoticComponent<React$1.ComponentProps<typeof Button> & React$1.RefAttributes<HTMLButtonElement>>;
1658
- declare const CarouselNext: React$1.ForwardRefExoticComponent<React$1.ComponentProps<typeof Button> & React$1.RefAttributes<HTMLButtonElement>>;
1750
+ declare const Carousel: ({ ref, orientation, opts, setApi, plugins, className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & {
1751
+ ref?: React$1.Ref<HTMLDivElement>;
1752
+ }) => react_jsx_runtime.JSX.Element;
1753
+ declare const CarouselContent: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
1754
+ ref?: React$1.Ref<HTMLDivElement>;
1755
+ }) => react_jsx_runtime.JSX.Element;
1756
+ declare const CarouselItem: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
1757
+ ref?: React$1.Ref<HTMLDivElement>;
1758
+ }) => react_jsx_runtime.JSX.Element;
1759
+ declare const CarouselPrevious: ({ ref, className, variant, size, ...props }: React$1.ComponentProps<typeof Button> & {
1760
+ ref?: React$1.Ref<HTMLButtonElement>;
1761
+ }) => react_jsx_runtime.JSX.Element;
1762
+ declare const CarouselNext: ({ ref, className, variant, size, ...props }: React$1.ComponentProps<typeof Button> & {
1763
+ ref?: React$1.Ref<HTMLButtonElement>;
1764
+ }) => react_jsx_runtime.JSX.Element;
1659
1765
 
1660
1766
  declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
1661
1767
  declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1662
- declare const CollapsibleContent: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1768
+ declare const CollapsibleContent: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.CollapsibleContent> & {
1769
+ ref?: React$1.Ref<React$1.ElementRef<typeof CollapsiblePrimitive.CollapsibleContent>>;
1770
+ }) => react_jsx_runtime.JSX.Element;
1663
1771
 
1664
1772
  interface ContainerProps {
1665
1773
  /**
@@ -1724,7 +1832,12 @@ interface ContainerProps {
1724
1832
  * <Container as="main">Main content</Container>
1725
1833
  * ```
1726
1834
  */
1727
- declare const Container: React__default.ForwardRefExoticComponent<ContainerProps & React__default.RefAttributes<HTMLElement>>;
1835
+ declare const Container: ({ ref, children, variant, padding, className, as: Component }: ContainerProps & {
1836
+ ref?: React__default.Ref<HTMLElement>;
1837
+ }) => React__default.DetailedReactHTMLElement<{
1838
+ ref: React__default.Ref<HTMLElement> | undefined;
1839
+ className: string;
1840
+ }, HTMLElement>;
1728
1841
 
1729
1842
  interface CustomizerPanelProps {
1730
1843
  /**
@@ -1742,15 +1855,6 @@ interface CustomizerPanelProps {
1742
1855
  }
1743
1856
  declare const CustomizerPanel: ({ mode, showMotionIntensity }: CustomizerPanelProps) => react_jsx_runtime.JSX.Element | null;
1744
1857
 
1745
- interface DatePickerProps {
1746
- date?: Date;
1747
- onDateChange?: (date: Date | undefined) => void;
1748
- placeholder?: string;
1749
- className?: string;
1750
- disabled?: boolean;
1751
- }
1752
- declare function DatePicker({ date, onDateChange, placeholder, className, disabled, }: DatePickerProps): react_jsx_runtime.JSX.Element;
1753
-
1754
1858
  interface FooterLink {
1755
1859
  label: string;
1756
1860
  href: string;
@@ -1802,7 +1906,9 @@ interface FooterProps {
1802
1906
  * - Organized content sections
1803
1907
  * - Clean typography and spacing
1804
1908
  */
1805
- declare const Footer: React__default.ForwardRefExoticComponent<FooterProps & React__default.RefAttributes<HTMLElement>>;
1909
+ declare const Footer: ({ ref, logo, sections, socialLinks, copyright, className }: FooterProps & {
1910
+ ref?: React__default.Ref<HTMLElement>;
1911
+ }) => react_jsx_runtime.JSX.Element;
1806
1912
 
1807
1913
  type ResponsiveValue<T> = T | {
1808
1914
  base?: T;
@@ -1828,7 +1934,9 @@ interface GridProps extends React__default.HTMLAttributes<HTMLDivElement> {
1828
1934
  */
1829
1935
  as?: any;
1830
1936
  }
1831
- declare const Grid: React__default.ForwardRefExoticComponent<GridProps & React__default.RefAttributes<HTMLDivElement>>;
1937
+ declare const Grid: ({ ref, children, columns, gap, as: Component, className, ...props }: GridProps & {
1938
+ ref?: React__default.Ref<HTMLDivElement>;
1939
+ }) => react_jsx_runtime.JSX.Element;
1832
1940
  interface GridItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
1833
1941
  children: React__default.ReactNode;
1834
1942
  colSpan?: ResponsiveValue<number>;
@@ -1836,7 +1944,9 @@ interface GridItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
1836
1944
  colStart?: ResponsiveValue<number>;
1837
1945
  as?: any;
1838
1946
  }
1839
- declare const GridItem: React__default.ForwardRefExoticComponent<GridItemProps & React__default.RefAttributes<HTMLDivElement>>;
1947
+ declare const GridItem: ({ ref, children, colSpan, rowSpan, colStart, as: Component, className, ...props }: GridItemProps & {
1948
+ ref?: React__default.Ref<HTMLDivElement>;
1949
+ }) => react_jsx_runtime.JSX.Element;
1840
1950
 
1841
1951
  interface HeaderNavLink {
1842
1952
  label: string;
@@ -1910,7 +2020,9 @@ interface HeaderProps {
1910
2020
  */
1911
2021
  className?: string;
1912
2022
  }
1913
- declare const Header: React__default.ForwardRefExoticComponent<HeaderProps & React__default.RefAttributes<HTMLElement>>;
2023
+ declare const Header: ({ ref, logo, navLinks, actions, glassOnScroll, scrollThreshold, sticky, navLinkSize, navAlignment, fontFamily, maxWidth, className }: HeaderProps & {
2024
+ ref?: React__default.Ref<HTMLElement>;
2025
+ }) => react_jsx_runtime.JSX.Element;
1914
2026
 
1915
2027
  interface PageLayoutProps {
1916
2028
  /** Optional header configuration */
@@ -2066,25 +2178,41 @@ declare function PageTemplate({ header, title, subtitle, breadcrumbs, secondaryN
2066
2178
 
2067
2179
  declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof Group>) => react_jsx_runtime.JSX.Element;
2068
2180
  declare const ResizablePanel: typeof Panel;
2069
- declare const ResizableHandle: ({ withHandle, className, ...props }: React$1.ComponentProps<typeof Separator$1> & {
2181
+ declare const ResizableHandle: ({ withHandle, className, ...props }: React$1.ComponentProps<typeof Separator$2> & {
2070
2182
  withHandle?: boolean;
2071
2183
  }) => react_jsx_runtime.JSX.Element;
2072
2184
 
2073
- declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2074
- declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2185
+ declare const ScrollArea: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> & {
2186
+ ref?: React$1.Ref<React$1.ElementRef<typeof ScrollAreaPrimitive.Root>>;
2187
+ }) => react_jsx_runtime.JSX.Element;
2188
+ declare const ScrollBar: ({ ref, className, orientation, ...props }: React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Scrollbar> & {
2189
+ ref?: React$1.Ref<React$1.ElementRef<typeof ScrollAreaPrimitive.Scrollbar>>;
2190
+ }) => react_jsx_runtime.JSX.Element;
2075
2191
 
2076
- declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2192
+ declare const Separator: ({ ref, className, orientation, decorative, ...props }: React$1.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> & {
2193
+ ref?: React$1.Ref<React$1.ElementRef<typeof SeparatorPrimitive.Root>>;
2194
+ }) => react_jsx_runtime.JSX.Element;
2077
2195
 
2078
- declare const Sidebar: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
2196
+ declare const Sidebar: ({ ref, className, children, isOpen, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
2079
2197
  isOpen?: boolean;
2080
- } & React$1.RefAttributes<HTMLDivElement>>;
2081
- declare const SidebarOverlay: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
2198
+ } & {
2199
+ ref?: React$1.Ref<HTMLDivElement>;
2200
+ }) => react_jsx_runtime.JSX.Element;
2201
+ declare const SidebarOverlay: ({ ref, className, isOpen, onDismiss, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
2082
2202
  isOpen?: boolean;
2083
2203
  onDismiss?: () => void;
2084
- } & React$1.RefAttributes<HTMLDivElement>>;
2085
- declare const SidebarHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2086
- declare const SidebarContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2087
- declare const SidebarFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2204
+ } & {
2205
+ ref?: React$1.Ref<HTMLDivElement>;
2206
+ }) => react_jsx_runtime.JSX.Element | null;
2207
+ declare const SidebarHeader: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
2208
+ ref?: React$1.Ref<HTMLDivElement>;
2209
+ }) => react_jsx_runtime.JSX.Element;
2210
+ declare const SidebarContent: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
2211
+ ref?: React$1.Ref<HTMLDivElement>;
2212
+ }) => react_jsx_runtime.JSX.Element;
2213
+ declare const SidebarFooter: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
2214
+ ref?: React$1.Ref<HTMLDivElement>;
2215
+ }) => react_jsx_runtime.JSX.Element;
2088
2216
  interface SidebarItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2089
2217
  isActive?: boolean;
2090
2218
  icon?: React$1.ReactNode;
@@ -2094,7 +2222,9 @@ interface SidebarItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
2094
2222
  isExpanded?: boolean;
2095
2223
  asChild?: boolean;
2096
2224
  }
2097
- declare const SidebarItem: React$1.ForwardRefExoticComponent<SidebarItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2225
+ declare const SidebarItem: ({ ref, className, isActive, icon, showIcon, depth, hasChildren, isExpanded, children, asChild, ...props }: SidebarItemProps & {
2226
+ ref?: React$1.Ref<HTMLButtonElement>;
2227
+ }) => react_jsx_runtime.JSX.Element;
2098
2228
 
2099
2229
  interface StackProps extends React__default.HTMLAttributes<HTMLDivElement> {
2100
2230
  /**
@@ -2130,7 +2260,9 @@ interface StackProps extends React__default.HTMLAttributes<HTMLDivElement> {
2130
2260
  */
2131
2261
  as?: any;
2132
2262
  }
2133
- declare const Stack: React__default.ForwardRefExoticComponent<StackProps & React__default.RefAttributes<HTMLDivElement>>;
2263
+ declare const Stack: ({ ref, children, direction, gap, align, justify, wrap, as: Component, className, ...props }: StackProps & {
2264
+ ref?: React__default.Ref<HTMLDivElement>;
2265
+ }) => react_jsx_runtime.JSX.Element;
2134
2266
 
2135
2267
  interface WarpBackgroundProps {
2136
2268
  focal?: [number, number];
@@ -2639,12 +2771,12 @@ declare const index$7_Combobox: typeof Combobox;
2639
2771
  type index$7_ComboboxOption = ComboboxOption;
2640
2772
  type index$7_ComboboxProps = ComboboxProps;
2641
2773
  declare const index$7_DragDropHandle: typeof DragDropHandle;
2642
- type index$7_DragDropHandleProps = DragDropHandleProps;
2643
- type index$7_DragDropItem = DragDropItem;
2774
+ declare const index$7_DragDropHandleProps: typeof DragDropHandleProps;
2775
+ declare const index$7_DragDropItem: typeof DragDropItem;
2644
2776
  declare const index$7_DragDropList: typeof DragDropList;
2645
- type index$7_DragDropListProps<T extends DragDropItem> = DragDropListProps<T>;
2777
+ declare const index$7_DragDropListProps: typeof DragDropListProps;
2646
2778
  declare const index$7_DragDropTable: typeof DragDropTable;
2647
- type index$7_DragDropTableProps<T extends DragDropItem> = DragDropTableProps<T>;
2779
+ declare const index$7_DragDropTableProps: typeof DragDropTableProps;
2648
2780
  declare const index$7_FilterButton: typeof FilterButton;
2649
2781
  type index$7_FilterButtonProps = FilterButtonProps;
2650
2782
  declare const index$7_Form: typeof Form;
@@ -2686,7 +2818,7 @@ declare const index$7_ThemeToggle: typeof ThemeToggle;
2686
2818
  type index$7_ThemeToggleProps = ThemeToggleProps;
2687
2819
  declare const index$7_useFormField: typeof useFormField;
2688
2820
  declare namespace index$7 {
2689
- export { index$7_Checkbox as Checkbox, index$7_ColorPicker as ColorPicker, type index$7_ColorPickerProps as ColorPickerProps, index$7_Combobox as Combobox, type index$7_ComboboxOption as ComboboxOption, type index$7_ComboboxProps as ComboboxProps, index$7_DragDropHandle as DragDropHandle, type index$7_DragDropHandleProps as DragDropHandleProps, type index$7_DragDropItem as DragDropItem, index$7_DragDropList as DragDropList, type index$7_DragDropListProps as DragDropListProps, index$7_DragDropTable as DragDropTable, type index$7_DragDropTableProps as DragDropTableProps, index$7_FilterButton as FilterButton, type index$7_FilterButtonProps as FilterButtonProps, index$7_Form as Form, index$7_FormControl as FormControl, index$7_FormDescription as FormDescription, index$7_FormField as FormField, index$7_FormItem as FormItem, index$7_FormLabel as FormLabel, index$7_FormMessage as FormMessage, index$7_Input as Input, index$7_InputOTP as InputOTP, index$7_InputOTPGroup as InputOTPGroup, index$7_InputOTPSeparator as InputOTPSeparator, index$7_InputOTPSlot as InputOTPSlot, type index$7_InputProps as InputProps, index$7_Label as Label, index$7_RadioGroup as RadioGroup, index$7_RadioGroupItem as RadioGroupItem, index$7_SearchBar as SearchBar, type index$7_SearchBarProps as SearchBarProps, index$7_Select as Select, index$7_SelectContent as SelectContent, index$7_SelectGroup as SelectGroup, index$7_SelectItem as SelectItem, index$7_SelectLabel as SelectLabel, index$7_SelectScrollDownButton as SelectScrollDownButton, index$7_SelectScrollUpButton as SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, index$7_SelectTrigger as SelectTrigger, index$7_SelectValue as SelectValue, index$7_Slider as Slider, index$7_Switch as Switch, index$7_TextField as TextField, type index$7_TextFieldProps as TextFieldProps, index$7_Textarea as Textarea, type index$7_TextareaProps as TextareaProps, index$7_ThemeSwitcher as ThemeSwitcher, type index$7_ThemeSwitcherProps as ThemeSwitcherProps, index$7_ThemeToggle as ThemeToggle, type index$7_ThemeToggleProps as ThemeToggleProps, index$7_useFormField as useFormField };
2821
+ export { index$7_Checkbox as Checkbox, index$7_ColorPicker as ColorPicker, type index$7_ColorPickerProps as ColorPickerProps, index$7_Combobox as Combobox, type index$7_ComboboxOption as ComboboxOption, type index$7_ComboboxProps as ComboboxProps, index$7_DragDropHandle as DragDropHandle, index$7_DragDropHandleProps as DragDropHandleProps, index$7_DragDropItem as DragDropItem, index$7_DragDropList as DragDropList, index$7_DragDropListProps as DragDropListProps, index$7_DragDropTable as DragDropTable, index$7_DragDropTableProps as DragDropTableProps, index$7_FilterButton as FilterButton, type index$7_FilterButtonProps as FilterButtonProps, index$7_Form as Form, index$7_FormControl as FormControl, index$7_FormDescription as FormDescription, index$7_FormField as FormField, index$7_FormItem as FormItem, index$7_FormLabel as FormLabel, index$7_FormMessage as FormMessage, index$7_Input as Input, index$7_InputOTP as InputOTP, index$7_InputOTPGroup as InputOTPGroup, index$7_InputOTPSeparator as InputOTPSeparator, index$7_InputOTPSlot as InputOTPSlot, type index$7_InputProps as InputProps, index$7_Label as Label, index$7_RadioGroup as RadioGroup, index$7_RadioGroupItem as RadioGroupItem, index$7_SearchBar as SearchBar, type index$7_SearchBarProps as SearchBarProps, index$7_Select as Select, index$7_SelectContent as SelectContent, index$7_SelectGroup as SelectGroup, index$7_SelectItem as SelectItem, index$7_SelectLabel as SelectLabel, index$7_SelectScrollDownButton as SelectScrollDownButton, index$7_SelectScrollUpButton as SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, index$7_SelectTrigger as SelectTrigger, index$7_SelectValue as SelectValue, index$7_Slider as Slider, index$7_Switch as Switch, index$7_TextField as TextField, type index$7_TextFieldProps as TextFieldProps, index$7_Textarea as Textarea, type index$7_TextareaProps as TextareaProps, index$7_ThemeSwitcher as ThemeSwitcher, type index$7_ThemeSwitcherProps as ThemeSwitcherProps, index$7_ThemeToggle as ThemeToggle, type index$7_ThemeToggleProps as ThemeToggleProps, index$7_useFormField as useFormField };
2690
2822
  }
2691
2823
 
2692
2824
  declare const index$6_Breadcrumb: typeof Breadcrumb;
@@ -2872,7 +3004,7 @@ type index$3_BadgeProps = BadgeProps;
2872
3004
  declare const index$3_Brand: typeof Brand;
2873
3005
  type index$3_BrandProps = BrandProps;
2874
3006
  declare const index$3_Calendar: typeof Calendar;
2875
- type index$3_CalendarProps = CalendarProps;
3007
+ declare const index$3_CalendarProps: typeof CalendarProps;
2876
3008
  declare const index$3_Card: typeof Card;
2877
3009
  declare const index$3_CardContent: typeof CardContent;
2878
3010
  declare const index$3_CardDescription: typeof CardDescription;
@@ -2907,7 +3039,7 @@ type index$3_TypewriterProps = TypewriterProps;
2907
3039
  declare const index$3_VariableWeightText: typeof VariableWeightText;
2908
3040
  declare const index$3_badgeVariants: typeof badgeVariants;
2909
3041
  declare namespace index$3 {
2910
- export { index$3_AspectImage as AspectImage, type index$3_AspectImageProps as AspectImageProps, index$3_Avatar as Avatar, index$3_AvatarFallback as AvatarFallback, index$3_AvatarImage as AvatarImage, index$3_Badge as Badge, type index$3_BadgeProps as BadgeProps, index$3_Brand as Brand, type index$3_BrandProps as BrandProps, index$3_Calendar as Calendar, type index$3_CalendarProps as CalendarProps, index$3_Card as Card, index$3_CardContent as CardContent, index$3_CardDescription as CardDescription, index$3_CardFooter as CardFooter, index$3_CardHeader as CardHeader, type index$3_CardProps as CardProps, index$3_CardTitle as CardTitle, index$3_Code as Code, type index$3_CodeProps as CodeProps, index$3_CollapsibleCodeBlock as CollapsibleCodeBlock, type index$3_CollapsibleCodeBlockProps as CollapsibleCodeBlockProps, index$3_DataTable as DataTable, index$3_DescriptionList as DescriptionList, type index$3_DescriptionListItem as DescriptionListItem, type index$3_DescriptionListProps as DescriptionListProps, index$3_GitHubIcon as GitHubIcon, type index$3_GitHubIconProps as GitHubIconProps, index$3_Heading as Heading, type index$3_HeadingProps as HeadingProps, index$3_Table as Table, index$3_TableBody as TableBody, index$3_TableCaption as TableCaption, index$3_TableCell as TableCell, index$3_TableFooter as TableFooter, index$3_TableHead as TableHead, index$3_TableHeader as TableHeader, index$3_TableRow as TableRow, index$3_Text as Text, type index$3_TextProps as TextProps, index$3_Typewriter as Typewriter, type index$3_TypewriterProps as TypewriterProps, index$3_VariableWeightText as VariableWeightText, index$3_badgeVariants as badgeVariants };
3042
+ export { index$3_AspectImage as AspectImage, type index$3_AspectImageProps as AspectImageProps, index$3_Avatar as Avatar, index$3_AvatarFallback as AvatarFallback, index$3_AvatarImage as AvatarImage, index$3_Badge as Badge, type index$3_BadgeProps as BadgeProps, index$3_Brand as Brand, type index$3_BrandProps as BrandProps, index$3_Calendar as Calendar, index$3_CalendarProps as CalendarProps, index$3_Card as Card, index$3_CardContent as CardContent, index$3_CardDescription as CardDescription, index$3_CardFooter as CardFooter, index$3_CardHeader as CardHeader, type index$3_CardProps as CardProps, index$3_CardTitle as CardTitle, index$3_Code as Code, type index$3_CodeProps as CodeProps, index$3_CollapsibleCodeBlock as CollapsibleCodeBlock, type index$3_CollapsibleCodeBlockProps as CollapsibleCodeBlockProps, index$3_DataTable as DataTable, index$3_DescriptionList as DescriptionList, type index$3_DescriptionListItem as DescriptionListItem, type index$3_DescriptionListProps as DescriptionListProps, index$3_GitHubIcon as GitHubIcon, type index$3_GitHubIconProps as GitHubIconProps, index$3_Heading as Heading, type index$3_HeadingProps as HeadingProps, index$3_Table as Table, index$3_TableBody as TableBody, index$3_TableCaption as TableCaption, index$3_TableCell as TableCell, index$3_TableFooter as TableFooter, index$3_TableHead as TableHead, index$3_TableHeader as TableHeader, index$3_TableRow as TableRow, index$3_Text as Text, type index$3_TextProps as TextProps, index$3_Typewriter as Typewriter, type index$3_TypewriterProps as TypewriterProps, index$3_VariableWeightText as VariableWeightText, index$3_badgeVariants as badgeVariants };
2911
3043
  }
2912
3044
 
2913
3045
  declare const index$2_Accordion: typeof Accordion;
@@ -2929,7 +3061,7 @@ type index$2_ContainerProps = ContainerProps;
2929
3061
  declare const index$2_CustomizerPanel: typeof CustomizerPanel;
2930
3062
  type index$2_CustomizerPanelProps = CustomizerPanelProps;
2931
3063
  declare const index$2_DatePicker: typeof DatePicker;
2932
- type index$2_DatePickerProps = DatePickerProps;
3064
+ declare const index$2_DatePickerProps: typeof DatePickerProps;
2933
3065
  declare const index$2_Footer: typeof Footer;
2934
3066
  type index$2_FooterLink = FooterLink;
2935
3067
  type index$2_FooterProps = FooterProps;
@@ -2962,7 +3094,7 @@ declare const index$2_SidebarOverlay: typeof SidebarOverlay;
2962
3094
  declare const index$2_Stack: typeof Stack;
2963
3095
  type index$2_StackProps = StackProps;
2964
3096
  declare namespace index$2 {
2965
- export { index$2_Accordion as Accordion, index$2_AccordionContent as AccordionContent, index$2_AccordionItem as AccordionItem, index$2_AccordionTrigger as AccordionTrigger, index$2_AspectRatio as AspectRatio, index$2_Carousel as Carousel, type index$2_CarouselApi as CarouselApi, index$2_CarouselContent as CarouselContent, index$2_CarouselItem as CarouselItem, index$2_CarouselNext as CarouselNext, index$2_CarouselPrevious as CarouselPrevious, index$2_Collapsible as Collapsible, index$2_CollapsibleContent as CollapsibleContent, index$2_CollapsibleTrigger as CollapsibleTrigger, index$2_Container as Container, type index$2_ContainerProps as ContainerProps, index$2_CustomizerPanel as CustomizerPanel, type index$2_CustomizerPanelProps as CustomizerPanelProps, index$2_DatePicker as DatePicker, type index$2_DatePickerProps as DatePickerProps, index$2_Footer as Footer, type index$2_FooterLink as FooterLink, type index$2_FooterProps as FooterProps, type index$2_FooterSection as FooterSection, index$2_Grid as Grid, index$2_GridItem as GridItem, type index$2_GridItemProps as GridItemProps, type index$2_GridProps as GridProps, index$2_Header as Header, type index$2_HeaderNavLink as HeaderNavLink, type index$2_HeaderProps as HeaderProps, index$2_PageLayout as PageLayout, type index$2_PageLayoutProps as PageLayoutProps, index$2_PageTemplate as PageTemplate, type index$2_PageTemplateHeaderConfig as PageTemplateHeaderConfig, type index$2_PageTemplateProps as PageTemplateProps, type index$2_PageTemplateSecondaryNavConfig as PageTemplateSecondaryNavConfig, index$2_ResizableHandle as ResizableHandle, index$2_ResizablePanel as ResizablePanel, index$2_ResizablePanelGroup as ResizablePanelGroup, index$2_ScrollArea as ScrollArea, index$2_ScrollBar as ScrollBar, index$2_Separator as Separator, index$2_Sidebar as Sidebar, index$2_SidebarContent as SidebarContent, index$2_SidebarFooter as SidebarFooter, index$2_SidebarHeader as SidebarHeader, index$2_SidebarItem as SidebarItem, index$2_SidebarOverlay as SidebarOverlay, index$2_Stack as Stack, type index$2_StackProps as StackProps };
3097
+ export { index$2_Accordion as Accordion, index$2_AccordionContent as AccordionContent, index$2_AccordionItem as AccordionItem, index$2_AccordionTrigger as AccordionTrigger, index$2_AspectRatio as AspectRatio, index$2_Carousel as Carousel, type index$2_CarouselApi as CarouselApi, index$2_CarouselContent as CarouselContent, index$2_CarouselItem as CarouselItem, index$2_CarouselNext as CarouselNext, index$2_CarouselPrevious as CarouselPrevious, index$2_Collapsible as Collapsible, index$2_CollapsibleContent as CollapsibleContent, index$2_CollapsibleTrigger as CollapsibleTrigger, index$2_Container as Container, type index$2_ContainerProps as ContainerProps, index$2_CustomizerPanel as CustomizerPanel, type index$2_CustomizerPanelProps as CustomizerPanelProps, index$2_DatePicker as DatePicker, index$2_DatePickerProps as DatePickerProps, index$2_Footer as Footer, type index$2_FooterLink as FooterLink, type index$2_FooterProps as FooterProps, type index$2_FooterSection as FooterSection, index$2_Grid as Grid, index$2_GridItem as GridItem, type index$2_GridItemProps as GridItemProps, type index$2_GridProps as GridProps, index$2_Header as Header, type index$2_HeaderNavLink as HeaderNavLink, type index$2_HeaderProps as HeaderProps, index$2_PageLayout as PageLayout, type index$2_PageLayoutProps as PageLayoutProps, index$2_PageTemplate as PageTemplate, type index$2_PageTemplateHeaderConfig as PageTemplateHeaderConfig, type index$2_PageTemplateProps as PageTemplateProps, type index$2_PageTemplateSecondaryNavConfig as PageTemplateSecondaryNavConfig, index$2_ResizableHandle as ResizableHandle, index$2_ResizablePanel as ResizablePanel, index$2_ResizablePanelGroup as ResizablePanelGroup, index$2_ScrollArea as ScrollArea, index$2_ScrollBar as ScrollBar, index$2_Separator as Separator, index$2_Sidebar as Sidebar, index$2_SidebarContent as SidebarContent, index$2_SidebarFooter as SidebarFooter, index$2_SidebarHeader as SidebarHeader, index$2_SidebarItem as SidebarItem, index$2_SidebarOverlay as SidebarOverlay, index$2_Stack as Stack, type index$2_StackProps as StackProps };
2966
3098
  }
2967
3099
 
2968
3100
  declare const index$1_FaultyTerminal: typeof FaultyTerminal;
@@ -2979,4 +3111,4 @@ declare namespace index {
2979
3111
  export { index_SplashCursor as SplashCursor, index_TargetCursor as TargetCursor };
2980
3112
  }
2981
3113
 
2982
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, index$8 as Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AspectImage, type AspectImageProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, BRAND, index$1 as Backgrounds, Badge, type BadgeProps, Brand, type BrandProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbItemLegacy, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, BreadcrumbsProps, Button, type ButtonProps, COMPONENT_COUNTS, COMPONENT_REGISTRY, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Code, type CodeProps, Collapsible, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, CollapsibleContent, CollapsibleTrigger, ColorMode$1 as ColorMode, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CustomizerPanel, type CustomizerPanelProps, DOC_EXAMPLES, index$3 as DataDisplay, DataTable, DatePicker, type DatePickerProps, DescriptionList, type DescriptionListItem, type DescriptionListProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragDropHandle, type DragDropHandleProps, type DragDropItem, DragDropList, type DragDropListProps, DragDropTable, type DragDropTableProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, type DropdownItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownProps, FaultyTerminal, index$4 as Feedback, FilterButton, type FilterButtonProps, Footer, type FooterLink, type FooterProps, type FooterSection, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, index$7 as Forms, GitHubIcon, type GitHubIconProps, type GradientConfig, Grid, GridItem, type GridItemProps, type GridProps, Header, type HeaderNavLink, type HeaderProps, Heading, type HeadingProps, HeroBlock, type HeroBlockProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, index$2 as Layout, Link, type LinkProps, MARKETING_COPY, Magnetic, type MagneticProps, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarTrigger, Modal, type ModalProps, index as Motion, NavLink, type NavLinkProps, index$6 as Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, OpenGraphCard, type OpenGraphCardProps, OrbBackground, type OrbBackgroundProps, index$5 as Overlays, PageLayout, type PageLayoutProps, PageTemplate, type PageTemplateHeaderConfig, type PageTemplateProps, type PageTemplateSecondaryNavConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchBar, type SearchBarProps, SecondaryNav, type SecondaryNavItem, type SecondaryNavProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarItem, SidebarOverlay, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, SplashCursor, Stack, type StackProps, Switch, SyntaxToken, SyntaxType, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TargetCursor, TertiaryNav, type TertiaryNavItem, type TertiaryNavProps, Text, TextField, type TextFieldProps, type TextProps, Textarea, type TextareaProps, ThemeName$1 as ThemeName, ThemeSwitcher, type ThemeSwitcherProps, ThemeToggle, type ThemeToggleProps, type Toast, ToastProvider, type ToastProviderProps, type ToastType, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Typewriter, type TypewriterProps, VariableWeightText, WarpBackground, badgeVariants, buttonVariants, navigationMenuTriggerStyle, toggleVariants, useCustomizer, useFormField, useThemeStore, useToast };
3114
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, index$8 as Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AspectImage, type AspectImageProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, BRAND, index$1 as Backgrounds, Badge, type BadgeProps, Brand, type BrandProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbItemLegacy, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, BreadcrumbsProps, Button, type ButtonProps, COMPONENT_COUNTS, COMPONENT_REGISTRY, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Code, type CodeProps, Collapsible, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, CollapsibleContent, CollapsibleTrigger, ColorMode$1 as ColorMode, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CustomizerPanel, type CustomizerPanelProps, DOC_EXAMPLES, index$3 as DataDisplay, DataTable, DatePicker, DatePickerProps, DescriptionList, type DescriptionListItem, type DescriptionListProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragDropHandle, DragDropHandleProps, DragDropItem, DragDropList, DragDropListProps, DragDropTable, DragDropTableProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, type DropdownItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownProps, FaultyTerminal, index$4 as Feedback, FilterButton, type FilterButtonProps, Footer, type FooterLink, type FooterProps, type FooterSection, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, index$7 as Forms, GitHubIcon, type GitHubIconProps, type GradientConfig, Grid, GridItem, type GridItemProps, type GridProps, Header, type HeaderNavLink, type HeaderProps, Heading, type HeadingProps, HeroBlock, type HeroBlockProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, index$2 as Layout, Link, type LinkProps, MARKETING_COPY, Magnetic, type MagneticProps, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarTrigger, Modal, type ModalProps, index as Motion, NavLink, type NavLinkProps, index$6 as Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, OpenGraphCard, type OpenGraphCardProps, OrbBackground, type OrbBackgroundProps, index$5 as Overlays, PageLayout, type PageLayoutProps, PageTemplate, type PageTemplateHeaderConfig, type PageTemplateProps, type PageTemplateSecondaryNavConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchBar, type SearchBarProps, SecondaryNav, type SecondaryNavItem, type SecondaryNavProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarItem, SidebarOverlay, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, SplashCursor, Stack, type StackProps, Switch, SyntaxToken, SyntaxType, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TargetCursor, TertiaryNav, type TertiaryNavItem, type TertiaryNavProps, Text, TextField, type TextFieldProps, type TextProps, Textarea, type TextareaProps, ThemeName$1 as ThemeName, ThemeSwitcher, type ThemeSwitcherProps, ThemeToggle, type ThemeToggleProps, type Toast, ToastProvider, type ToastProviderProps, type ToastType, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Typewriter, type TypewriterProps, VariableWeightText, WarpBackground, badgeVariants, buttonVariants, navigationMenuTriggerStyle, toggleVariants, useCustomizer, useFormField, useThemeStore, useToast };