@kinetixui/ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/index.d.ts +1176 -0
- package/dist/index.js +3939 -0
- package/package.json +106 -0
- package/src/components/accordion.tsx +52 -0
- package/src/components/alert-dialog.tsx +115 -0
- package/src/components/alert.tsx +47 -0
- package/src/components/aspect-ratio.tsx +7 -0
- package/src/components/audio-player.tsx +150 -0
- package/src/components/avatar.tsx +76 -0
- package/src/components/badge.tsx +40 -0
- package/src/components/breadcrumb.tsx +77 -0
- package/src/components/button.tsx +119 -0
- package/src/components/calendar.tsx +60 -0
- package/src/components/card.tsx +50 -0
- package/src/components/carousel.tsx +181 -0
- package/src/components/chart.tsx +177 -0
- package/src/components/checkbox.tsx +38 -0
- package/src/components/circular-progress.tsx +67 -0
- package/src/components/code-block.tsx +96 -0
- package/src/components/collapsible.tsx +9 -0
- package/src/components/command.tsx +123 -0
- package/src/components/context-menu.tsx +132 -0
- package/src/components/data-table.tsx +92 -0
- package/src/components/date-picker.tsx +68 -0
- package/src/components/dialog.tsx +101 -0
- package/src/components/drawer.tsx +82 -0
- package/src/components/dropdown-menu.tsx +132 -0
- package/src/components/fab.tsx +58 -0
- package/src/components/field.tsx +128 -0
- package/src/components/file-upload.tsx +183 -0
- package/src/components/footer.tsx +62 -0
- package/src/components/form.tsx +130 -0
- package/src/components/hover-card.tsx +28 -0
- package/src/components/image.tsx +87 -0
- package/src/components/inform.tsx +82 -0
- package/src/components/input-group.tsx +96 -0
- package/src/components/input-otp.tsx +63 -0
- package/src/components/input.tsx +72 -0
- package/src/components/label.tsx +20 -0
- package/src/components/list.tsx +69 -0
- package/src/components/menubar.tsx +168 -0
- package/src/components/metric.tsx +51 -0
- package/src/components/modal.tsx +126 -0
- package/src/components/navigation-bar.tsx +49 -0
- package/src/components/navigation-menu.tsx +117 -0
- package/src/components/number-input.tsx +86 -0
- package/src/components/pagination.tsx +77 -0
- package/src/components/password-input.tsx +36 -0
- package/src/components/popover.tsx +32 -0
- package/src/components/progress.tsx +24 -0
- package/src/components/quote.tsx +34 -0
- package/src/components/radio-group.tsx +44 -0
- package/src/components/rating.tsx +88 -0
- package/src/components/resizable.tsx +40 -0
- package/src/components/scroll-area.tsx +39 -0
- package/src/components/select.tsx +124 -0
- package/src/components/separator.tsx +25 -0
- package/src/components/sheet.tsx +104 -0
- package/src/components/sidebar.tsx +390 -0
- package/src/components/skeleton.tsx +9 -0
- package/src/components/slider.tsx +24 -0
- package/src/components/sonner.tsx +30 -0
- package/src/components/spinner.tsx +43 -0
- package/src/components/stepper.tsx +75 -0
- package/src/components/switch.tsx +37 -0
- package/src/components/tab-bar.tsx +58 -0
- package/src/components/table-of-contents.tsx +46 -0
- package/src/components/table.tsx +70 -0
- package/src/components/tabs.tsx +54 -0
- package/src/components/tag.tsx +56 -0
- package/src/components/textarea.tsx +56 -0
- package/src/components/toggle-group.tsx +41 -0
- package/src/components/toggle.tsx +34 -0
- package/src/components/tooltip.tsx +31 -0
- package/src/index.ts +305 -0
- package/src/lib/utils.ts +7 -0
- package/src/stories/Button.stories.tsx +155 -0
- package/src/stories/Input.stories.tsx +80 -0
- package/src/stories/Textarea.stories.tsx +69 -0
- package/tailwind.config.ts +107 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1176 @@
|
|
|
1
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
5
|
+
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
6
|
+
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
7
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
8
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
9
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
10
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
11
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
12
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
13
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
14
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
15
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
16
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
17
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
18
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
19
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
20
|
+
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
21
|
+
import { Toaster as Toaster$1 } from 'sonner';
|
|
22
|
+
export { toast } from 'sonner';
|
|
23
|
+
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
24
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
25
|
+
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
26
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
27
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
28
|
+
import { DayPicker } from 'react-day-picker';
|
|
29
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
30
|
+
import * as recharts_types_util_payload_getUniqPayload from 'recharts/types/util/payload/getUniqPayload';
|
|
31
|
+
import * as recharts_types_component_Tooltip from 'recharts/types/component/Tooltip';
|
|
32
|
+
import * as recharts_types_util_types from 'recharts/types/util/types';
|
|
33
|
+
import * as recharts_types_component_DefaultTooltipContent from 'recharts/types/component/DefaultTooltipContent';
|
|
34
|
+
import * as RechartsPrimitive from 'recharts';
|
|
35
|
+
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
36
|
+
import { ColumnDef } from '@tanstack/react-table';
|
|
37
|
+
import * as vaul from 'vaul';
|
|
38
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
39
|
+
import * as react_hook_form from 'react-hook-form';
|
|
40
|
+
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
41
|
+
import * as input_otp from 'input-otp';
|
|
42
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
43
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
44
|
+
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
45
|
+
import { ClassValue } from 'clsx';
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Button — generated from Figma "KinetixUI" › UI Components ›
|
|
49
|
+
* 02. Controls & Actions › Button (node 54863:351).
|
|
50
|
+
*
|
|
51
|
+
* Figma variant matrix (mirrored 1:1 below):
|
|
52
|
+
* variant : Primary | Secondary | Outline | Destructive | Ghost | Link
|
|
53
|
+
* size : sm | md | lg | icon
|
|
54
|
+
* state : Default | Hover | Focus | Active | Disabled
|
|
55
|
+
*
|
|
56
|
+
* `state` is expressed idiomatically: Hover/Focus/Active are CSS pseudo-classes
|
|
57
|
+
* (`hover:` / `focus-visible:` / `active:`), Disabled is the native attribute.
|
|
58
|
+
* The optional `state` prop force-pins one visual state for docs / snapshots.
|
|
59
|
+
*
|
|
60
|
+
* Colors resolve to the semantic token contract in
|
|
61
|
+
* @kinetixui/tokens/dist/web/globals.css.
|
|
62
|
+
*/
|
|
63
|
+
declare const buttonVariants: (props?: ({
|
|
64
|
+
variant?: "Primary" | "Secondary" | "Outline" | "Destructive" | "Ghost" | "Link" | null | undefined;
|
|
65
|
+
size?: "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
66
|
+
state?: "Default" | "Hover" | "Focus" | "Active" | "Disabled" | null | undefined;
|
|
67
|
+
corners?: "sharp" | "default" | "pill" | null | undefined;
|
|
68
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
69
|
+
interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof buttonVariants> {
|
|
70
|
+
/** render as the single child element (Radix Slot) instead of <button> */
|
|
71
|
+
asChild?: boolean;
|
|
72
|
+
}
|
|
73
|
+
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Input — generated from Figma "KinetixUI" › UI Components ›
|
|
77
|
+
* 01. Form Inputs › Input (node 54855:13836).
|
|
78
|
+
*
|
|
79
|
+
* Figma component property: state = Default | Focus | Error | Disabled.
|
|
80
|
+
* Focus is the CSS `:focus-visible` pseudo-class and Disabled is the native
|
|
81
|
+
* attribute; the `state` prop force-pins one for docs / snapshots, and
|
|
82
|
+
* `state="Error"` sets `aria-invalid`. Focus uses the `--shadow-focus` token.
|
|
83
|
+
*
|
|
84
|
+
* Figma's component bundles a label + helper text; those live in the `Field`
|
|
85
|
+
* composition (their colour tracks the control's state). This is the bare
|
|
86
|
+
* control. Tokens: border `--input`, focus `--ring`, error `--destructive`,
|
|
87
|
+
* radius `--radius-sm` (Figma `input` = 4px), padding `--spacing-3`,
|
|
88
|
+
* text = Body Medium (14 / 20, +0.25).
|
|
89
|
+
*/
|
|
90
|
+
declare const inputVariants: (props?: ({
|
|
91
|
+
state?: "Default" | "Focus" | "Disabled" | "Error" | null | undefined;
|
|
92
|
+
corners?: "sharp" | "default" | "pill" | "rounded" | null | undefined;
|
|
93
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
94
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof inputVariants> {
|
|
95
|
+
}
|
|
96
|
+
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Textarea — generated from Figma "KinetixUI" › UI Components ›
|
|
100
|
+
* 01. Form Inputs › Textarea (node 54855:13857).
|
|
101
|
+
*
|
|
102
|
+
* Identical to `Input` except the field is multi-line: `min-h-[100px]`
|
|
103
|
+
* (Figma `h: 100`) and vertical resize. Same state matrix and tokens.
|
|
104
|
+
*/
|
|
105
|
+
declare const textareaVariants: (props?: ({
|
|
106
|
+
state?: "Default" | "Focus" | "Disabled" | "Error" | null | undefined;
|
|
107
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
108
|
+
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
109
|
+
}
|
|
110
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
111
|
+
|
|
112
|
+
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
113
|
+
declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
114
|
+
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
115
|
+
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
116
|
+
|
|
117
|
+
declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
118
|
+
variant?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
119
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
120
|
+
declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
121
|
+
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
122
|
+
|
|
123
|
+
declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
124
|
+
declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
125
|
+
declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
|
|
126
|
+
declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
127
|
+
declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
128
|
+
declare const AlertDialogHeader: {
|
|
129
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
130
|
+
displayName: string;
|
|
131
|
+
};
|
|
132
|
+
declare const AlertDialogFooter: {
|
|
133
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
134
|
+
displayName: string;
|
|
135
|
+
};
|
|
136
|
+
declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
137
|
+
declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
138
|
+
declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
139
|
+
declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
140
|
+
|
|
141
|
+
declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
142
|
+
|
|
143
|
+
declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
144
|
+
declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
145
|
+
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
146
|
+
/**
|
|
147
|
+
* AvatarGroup — stacked, overlapping avatars with a "+N" overflow marker.
|
|
148
|
+
*/
|
|
149
|
+
interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
150
|
+
/** cap the number of visible avatars, folding the rest into a "+N" marker */
|
|
151
|
+
max?: number;
|
|
152
|
+
}
|
|
153
|
+
declare const AvatarGroup: React$1.ForwardRefExoticComponent<AvatarGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Badge — reconciled 1:1 with the KinetixUI design source, node 54855:13995.
|
|
157
|
+
* Solid pill status marker. Label Medium type (12 / 16, +0.5). Variants:
|
|
158
|
+
* default | secondary | destructive | outline | subtle.
|
|
159
|
+
*
|
|
160
|
+
* Note: the design's "Secondary" badge is the saturated sage (`#748873`), which
|
|
161
|
+
* in this token contract is `--secondary-foreground`; `--secondary` is its light
|
|
162
|
+
* container. Hence the swapped bg/text on that one variant.
|
|
163
|
+
*/
|
|
164
|
+
declare const badgeVariants: (props?: ({
|
|
165
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | "subtle" | null | undefined;
|
|
166
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
167
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
168
|
+
}
|
|
169
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): React$1.JSX.Element;
|
|
170
|
+
|
|
171
|
+
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
172
|
+
declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
|
|
173
|
+
declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
174
|
+
declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
|
|
175
|
+
asChild?: boolean;
|
|
176
|
+
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
177
|
+
declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
178
|
+
declare const BreadcrumbSeparator: {
|
|
179
|
+
({ children, className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
|
|
180
|
+
displayName: string;
|
|
181
|
+
};
|
|
182
|
+
declare const BreadcrumbEllipsis: {
|
|
183
|
+
({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
|
|
184
|
+
displayName: string;
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
188
|
+
declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
189
|
+
declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
190
|
+
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
191
|
+
declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
192
|
+
declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Checkbox — reconciled 1:1 with the KinetixUI design source, node 54863:483.
|
|
196
|
+
* 18px box, 4px radius, 2px border. Unchecked border = `--input`; checked /
|
|
197
|
+
* indeterminate fill = `--primary`. Focus = 2px `--ring` offset. `aria-invalid`
|
|
198
|
+
* paints the box (and the composed label/helper) with `--destructive`.
|
|
199
|
+
*/
|
|
200
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
201
|
+
|
|
202
|
+
declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
203
|
+
declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
204
|
+
declare const CollapsibleContent: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
205
|
+
|
|
206
|
+
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
207
|
+
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
208
|
+
declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
209
|
+
declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
210
|
+
declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
211
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
212
|
+
declare const DialogHeader: {
|
|
213
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
214
|
+
displayName: string;
|
|
215
|
+
};
|
|
216
|
+
declare const DialogFooter: {
|
|
217
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
218
|
+
displayName: string;
|
|
219
|
+
};
|
|
220
|
+
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
221
|
+
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
222
|
+
|
|
223
|
+
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
224
|
+
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
225
|
+
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
226
|
+
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
227
|
+
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
228
|
+
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
229
|
+
declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
230
|
+
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
231
|
+
inset?: boolean;
|
|
232
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
233
|
+
declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
234
|
+
declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
235
|
+
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
236
|
+
inset?: boolean;
|
|
237
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
238
|
+
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
239
|
+
declare const DropdownMenuShortcut: {
|
|
240
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
241
|
+
displayName: string;
|
|
242
|
+
};
|
|
243
|
+
declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
244
|
+
inset?: boolean;
|
|
245
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
246
|
+
declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
247
|
+
|
|
248
|
+
declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
249
|
+
declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
250
|
+
declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
251
|
+
|
|
252
|
+
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>>;
|
|
253
|
+
|
|
254
|
+
declare const Pagination: {
|
|
255
|
+
({ className, ...props }: React$1.ComponentProps<"nav">): React$1.JSX.Element;
|
|
256
|
+
displayName: string;
|
|
257
|
+
};
|
|
258
|
+
declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
259
|
+
declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
260
|
+
type PaginationLinkProps = {
|
|
261
|
+
isActive?: boolean;
|
|
262
|
+
} & React$1.ComponentProps<"a">;
|
|
263
|
+
declare const PaginationLink: {
|
|
264
|
+
({ className, isActive, ...props }: PaginationLinkProps): React$1.JSX.Element;
|
|
265
|
+
displayName: string;
|
|
266
|
+
};
|
|
267
|
+
declare const PaginationPrevious: {
|
|
268
|
+
({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): React$1.JSX.Element;
|
|
269
|
+
displayName: string;
|
|
270
|
+
};
|
|
271
|
+
declare const PaginationNext: {
|
|
272
|
+
({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): React$1.JSX.Element;
|
|
273
|
+
displayName: string;
|
|
274
|
+
};
|
|
275
|
+
declare const PaginationEllipsis: {
|
|
276
|
+
({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
|
|
277
|
+
displayName: string;
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
281
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
282
|
+
declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
283
|
+
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
284
|
+
|
|
285
|
+
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* RadioGroup — reconciled 1:1 with the KinetixUI design source, node 54863:536.
|
|
289
|
+
* 18px circle, 2px border. Unchecked border = `--input`; checked border + dot =
|
|
290
|
+
* `--primary`. Focus = 2px `--ring` offset. `aria-invalid` → `--destructive`.
|
|
291
|
+
*/
|
|
292
|
+
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
293
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
294
|
+
|
|
295
|
+
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
296
|
+
declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Select — reconciled 1:1 with the KinetixUI design source, node 54855:13882.
|
|
300
|
+
* The trigger mirrors Input: `rounded-sm`, `border-input`, `--spacing-3` pad,
|
|
301
|
+
* Body Medium text, a soft `--shadow-focus` glow, `--destructive` on aria-invalid.
|
|
302
|
+
*/
|
|
303
|
+
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
304
|
+
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
305
|
+
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
306
|
+
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
307
|
+
declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
308
|
+
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
309
|
+
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
310
|
+
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
311
|
+
|
|
312
|
+
declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
313
|
+
|
|
314
|
+
declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
|
|
315
|
+
declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
316
|
+
declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
317
|
+
declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
318
|
+
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
319
|
+
declare const sheetVariants: (props?: ({
|
|
320
|
+
side?: "top" | "right" | "bottom" | "left" | null | undefined;
|
|
321
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
322
|
+
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
323
|
+
}
|
|
324
|
+
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
325
|
+
declare const SheetHeader: {
|
|
326
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
327
|
+
displayName: string;
|
|
328
|
+
};
|
|
329
|
+
declare const SheetFooter: {
|
|
330
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
331
|
+
displayName: string;
|
|
332
|
+
};
|
|
333
|
+
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
334
|
+
declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* Modal — reconciled 1:1 with the KinetixUI design source, node 54857:1322.
|
|
338
|
+
* A structured dialog: header (title + close) · divider · body (description) ·
|
|
339
|
+
* divider · right-aligned footer. `--radius-xl` corner, soft popup shadow.
|
|
340
|
+
*
|
|
341
|
+
* type:
|
|
342
|
+
* Info → one primary action ("Got it")
|
|
343
|
+
* Confirmation → Cancel + primary ("Confirm")
|
|
344
|
+
* Warning → Cancel + primary ("Proceed")
|
|
345
|
+
* Destructive → Cancel + destructive ("Delete")
|
|
346
|
+
*/
|
|
347
|
+
type ModalType = "Info" | "Confirmation" | "Warning" | "Destructive";
|
|
348
|
+
interface ModalProps {
|
|
349
|
+
type?: ModalType;
|
|
350
|
+
title: React$1.ReactNode;
|
|
351
|
+
description?: React$1.ReactNode;
|
|
352
|
+
/** overrides the type's default action label */
|
|
353
|
+
actionLabel?: string;
|
|
354
|
+
cancelLabel?: string;
|
|
355
|
+
onAction?: () => void;
|
|
356
|
+
onCancel?: () => void;
|
|
357
|
+
open?: boolean;
|
|
358
|
+
defaultOpen?: boolean;
|
|
359
|
+
onOpenChange?: (open: boolean) => void;
|
|
360
|
+
trigger?: React$1.ReactNode;
|
|
361
|
+
children?: React$1.ReactNode;
|
|
362
|
+
className?: string;
|
|
363
|
+
}
|
|
364
|
+
declare function Modal({ type, title, description, actionLabel, cancelLabel, onAction, onCancel, open, defaultOpen, onOpenChange, trigger, children, className, }: ModalProps): React$1.JSX.Element;
|
|
365
|
+
|
|
366
|
+
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
367
|
+
|
|
368
|
+
declare const Slider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
369
|
+
|
|
370
|
+
type ToasterProps = React.ComponentProps<typeof Toaster$1>;
|
|
371
|
+
/**
|
|
372
|
+
* Toaster — wraps `sonner`, themed to the KinetixUI token contract.
|
|
373
|
+
* Pass `theme` from your framework's theme hook (e.g. next-themes `useTheme`).
|
|
374
|
+
*/
|
|
375
|
+
declare function Toaster({ theme, ...props }: ToasterProps): React$1.JSX.Element;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Switch — reconciled 1:1 with the KinetixUI design source, node 54855:13984.
|
|
379
|
+
* 48×24 pill track. Off = `--tertiary` (#b0b0b0), on = `--primary`. 20px
|
|
380
|
+
* `--background` thumb, travels 24px. Focus = 2px `--ring` offset.
|
|
381
|
+
*/
|
|
382
|
+
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Tag — reconciled 1:1 with the KinetixUI design source, node 54855:14021.
|
|
386
|
+
* Container-tinted, dismissible chip (distinct from Badge, which is a solid
|
|
387
|
+
* pill). `rounded-sm`, `--spacing-2` / `--spacing-1` pad, Label Medium type,
|
|
388
|
+
* optional close button. Variants: default | secondary | destructive | warning | outline.
|
|
389
|
+
*/
|
|
390
|
+
declare const tagVariants: (props?: ({
|
|
391
|
+
variant?: "default" | "destructive" | "warning" | "secondary" | "outline" | null | undefined;
|
|
392
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
393
|
+
interface TagProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof tagVariants> {
|
|
394
|
+
/** show a dismiss button; called when it's clicked */
|
|
395
|
+
onRemove?: () => void;
|
|
396
|
+
}
|
|
397
|
+
declare const Tag: React$1.ForwardRefExoticComponent<TagProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
398
|
+
|
|
399
|
+
declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
|
|
400
|
+
declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
401
|
+
declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
402
|
+
declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
403
|
+
declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
404
|
+
declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
405
|
+
declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
406
|
+
declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
407
|
+
|
|
408
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
409
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
410
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
411
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
412
|
+
|
|
413
|
+
declare const toggleVariants: (props?: ({
|
|
414
|
+
variant?: "default" | "outline" | null | undefined;
|
|
415
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
416
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
417
|
+
declare const Toggle: React$1.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
418
|
+
variant?: "default" | "outline" | null | undefined;
|
|
419
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
420
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
421
|
+
|
|
422
|
+
declare const ToggleGroup: React$1.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
|
|
423
|
+
variant?: "default" | "outline" | null | undefined;
|
|
424
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
425
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string>) & React$1.RefAttributes<HTMLDivElement>>;
|
|
426
|
+
declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
427
|
+
variant?: "default" | "outline" | null | undefined;
|
|
428
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
429
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
430
|
+
|
|
431
|
+
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
432
|
+
declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
|
|
433
|
+
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
434
|
+
declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
435
|
+
|
|
436
|
+
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
437
|
+
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): React$1.JSX.Element;
|
|
438
|
+
declare namespace Calendar {
|
|
439
|
+
var displayName: string;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
443
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
444
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
445
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
446
|
+
type CarouselProps = {
|
|
447
|
+
opts?: CarouselOptions;
|
|
448
|
+
plugins?: CarouselPlugin;
|
|
449
|
+
orientation?: "horizontal" | "vertical";
|
|
450
|
+
setApi?: (api: CarouselApi) => void;
|
|
451
|
+
};
|
|
452
|
+
declare const Carousel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
453
|
+
declare const CarouselContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
454
|
+
declare const CarouselItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
455
|
+
declare const CarouselPrevious: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
456
|
+
declare const CarouselNext: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
457
|
+
|
|
458
|
+
declare const THEMES: {
|
|
459
|
+
readonly light: "";
|
|
460
|
+
readonly dark: ".dark";
|
|
461
|
+
};
|
|
462
|
+
type ChartConfig = {
|
|
463
|
+
[k in string]: {
|
|
464
|
+
label?: React$1.ReactNode;
|
|
465
|
+
icon?: React$1.ComponentType;
|
|
466
|
+
} & ({
|
|
467
|
+
color?: string;
|
|
468
|
+
theme?: never;
|
|
469
|
+
} | {
|
|
470
|
+
color?: never;
|
|
471
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
472
|
+
});
|
|
473
|
+
};
|
|
474
|
+
declare const ChartContainer: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
475
|
+
config: ChartConfig;
|
|
476
|
+
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
477
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
478
|
+
declare const ChartStyle: ({ id, config }: {
|
|
479
|
+
id: string;
|
|
480
|
+
config: ChartConfig;
|
|
481
|
+
}) => React$1.JSX.Element | null;
|
|
482
|
+
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
483
|
+
declare const ChartTooltipContent: React$1.ForwardRefExoticComponent<Omit<RechartsPrimitive.DefaultTooltipContentProps<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType> & {
|
|
484
|
+
accessibilityLayer?: boolean;
|
|
485
|
+
active?: boolean | undefined;
|
|
486
|
+
includeHidden?: boolean | undefined;
|
|
487
|
+
allowEscapeViewBox?: recharts_types_util_types.AllowInDimension;
|
|
488
|
+
animationDuration?: recharts_types_util_types.AnimationDuration;
|
|
489
|
+
animationEasing?: recharts_types_util_types.AnimationTiming;
|
|
490
|
+
content?: recharts_types_component_Tooltip.ContentType<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType> | undefined;
|
|
491
|
+
coordinate?: Partial<recharts_types_util_types.Coordinate>;
|
|
492
|
+
cursor?: boolean | React$1.ReactElement | React$1.SVGProps<SVGElement>;
|
|
493
|
+
filterNull?: boolean;
|
|
494
|
+
defaultIndex?: number;
|
|
495
|
+
isAnimationActive?: boolean;
|
|
496
|
+
offset?: number;
|
|
497
|
+
payloadUniqBy?: recharts_types_util_payload_getUniqPayload.UniqueOption<recharts_types_component_DefaultTooltipContent.Payload<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType>> | undefined;
|
|
498
|
+
position?: Partial<recharts_types_util_types.Coordinate>;
|
|
499
|
+
reverseDirection?: recharts_types_util_types.AllowInDimension;
|
|
500
|
+
shared?: boolean;
|
|
501
|
+
trigger?: "hover" | "click";
|
|
502
|
+
useTranslate3d?: boolean;
|
|
503
|
+
viewBox?: recharts_types_util_types.CartesianViewBox;
|
|
504
|
+
wrapperStyle?: React$1.CSSProperties;
|
|
505
|
+
} & React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
506
|
+
hideLabel?: boolean;
|
|
507
|
+
hideIndicator?: boolean;
|
|
508
|
+
indicator?: "line" | "dot" | "dashed";
|
|
509
|
+
nameKey?: string;
|
|
510
|
+
labelKey?: string;
|
|
511
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
512
|
+
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
513
|
+
declare const ChartLegendContent: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
|
|
514
|
+
hideIcon?: boolean;
|
|
515
|
+
nameKey?: string;
|
|
516
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
517
|
+
|
|
518
|
+
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
519
|
+
children?: React$1.ReactNode;
|
|
520
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
521
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
522
|
+
} & {
|
|
523
|
+
asChild?: boolean;
|
|
524
|
+
}, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
525
|
+
label?: string;
|
|
526
|
+
shouldFilter?: boolean;
|
|
527
|
+
filter?: (value: string, search: string, keywords?: string[]) => number;
|
|
528
|
+
defaultValue?: string;
|
|
529
|
+
value?: string;
|
|
530
|
+
onValueChange?: (value: string) => void;
|
|
531
|
+
loop?: boolean;
|
|
532
|
+
disablePointerSelection?: boolean;
|
|
533
|
+
vimBindings?: boolean;
|
|
534
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
535
|
+
declare const CommandDialog: ({ children, ...props }: React$1.ComponentProps<typeof Dialog>) => React$1.JSX.Element;
|
|
536
|
+
declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof React$1.InputHTMLAttributes<HTMLInputElement> | "key"> & {
|
|
537
|
+
ref?: React$1.Ref<HTMLInputElement>;
|
|
538
|
+
} & {
|
|
539
|
+
asChild?: boolean;
|
|
540
|
+
}, "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement> | "key">, "type" | "value" | "onChange"> & {
|
|
541
|
+
value?: string;
|
|
542
|
+
onValueChange?: (search: string) => void;
|
|
543
|
+
} & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
544
|
+
declare const CommandList: React$1.ForwardRefExoticComponent<Omit<{
|
|
545
|
+
children?: React$1.ReactNode;
|
|
546
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
547
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
548
|
+
} & {
|
|
549
|
+
asChild?: boolean;
|
|
550
|
+
}, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
551
|
+
label?: string;
|
|
552
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
553
|
+
declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
|
|
554
|
+
children?: React$1.ReactNode;
|
|
555
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
556
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
557
|
+
} & {
|
|
558
|
+
asChild?: boolean;
|
|
559
|
+
}, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
560
|
+
declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
|
|
561
|
+
children?: React$1.ReactNode;
|
|
562
|
+
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
563
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
564
|
+
} & {
|
|
565
|
+
asChild?: boolean;
|
|
566
|
+
}, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "value" | "heading"> & {
|
|
567
|
+
heading?: React$1.ReactNode;
|
|
568
|
+
value?: string;
|
|
569
|
+
forceMount?: boolean;
|
|
570
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
571
|
+
declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
572
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
573
|
+
} & {
|
|
574
|
+
asChild?: boolean;
|
|
575
|
+
}, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
576
|
+
alwaysRender?: boolean;
|
|
577
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
578
|
+
declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
579
|
+
children?: React$1.ReactNode;
|
|
580
|
+
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
581
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
582
|
+
} & {
|
|
583
|
+
asChild?: boolean;
|
|
584
|
+
}, "asChild" | "key" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "disabled" | "value" | "onSelect"> & {
|
|
585
|
+
disabled?: boolean;
|
|
586
|
+
onSelect?: (value: string) => void;
|
|
587
|
+
value?: string;
|
|
588
|
+
keywords?: string[];
|
|
589
|
+
forceMount?: boolean;
|
|
590
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
591
|
+
declare const CommandShortcut: {
|
|
592
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
593
|
+
displayName: string;
|
|
594
|
+
};
|
|
595
|
+
|
|
596
|
+
declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
|
|
597
|
+
declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
598
|
+
declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
599
|
+
declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
|
|
600
|
+
declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
|
|
601
|
+
declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
602
|
+
declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
603
|
+
inset?: boolean;
|
|
604
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
605
|
+
declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
606
|
+
declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
607
|
+
declare const ContextMenuItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
608
|
+
inset?: boolean;
|
|
609
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
610
|
+
declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
611
|
+
declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
612
|
+
declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
613
|
+
inset?: boolean;
|
|
614
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
615
|
+
declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
616
|
+
declare const ContextMenuShortcut: {
|
|
617
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
618
|
+
displayName: string;
|
|
619
|
+
};
|
|
620
|
+
|
|
621
|
+
/**
|
|
622
|
+
* DataTable — a thin wrapper over @tanstack/react-table + the KinetixUI Table.
|
|
623
|
+
* Pass `columns` and `data`; sorting + pagination are on by default. For full
|
|
624
|
+
* control, drop down to `useReactTable` directly.
|
|
625
|
+
*/
|
|
626
|
+
declare function DataTable<TData, TValue>({ columns, data, className, pageSize, }: {
|
|
627
|
+
columns: ColumnDef<TData, TValue>[];
|
|
628
|
+
data: TData[];
|
|
629
|
+
className?: string;
|
|
630
|
+
pageSize?: number;
|
|
631
|
+
}): React$1.JSX.Element;
|
|
632
|
+
|
|
633
|
+
declare const Drawer: {
|
|
634
|
+
({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): React$1.JSX.Element;
|
|
635
|
+
displayName: string;
|
|
636
|
+
};
|
|
637
|
+
declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
638
|
+
declare const DrawerPortal: typeof vaul.Portal;
|
|
639
|
+
declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
640
|
+
declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
641
|
+
declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
642
|
+
declare const DrawerHeader: {
|
|
643
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
644
|
+
displayName: string;
|
|
645
|
+
};
|
|
646
|
+
declare const DrawerFooter: {
|
|
647
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
648
|
+
displayName: string;
|
|
649
|
+
};
|
|
650
|
+
declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
651
|
+
declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
652
|
+
|
|
653
|
+
interface FieldProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
654
|
+
invalid?: boolean;
|
|
655
|
+
}
|
|
656
|
+
declare const Field: React$1.ForwardRefExoticComponent<FieldProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
657
|
+
declare const FieldLabel: React$1.ForwardRefExoticComponent<Omit<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
658
|
+
/** wraps a single form control (Input, Textarea, Select…) and wires a11y attrs */
|
|
659
|
+
declare const FieldControl: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLElement> & {
|
|
660
|
+
children?: React$1.ReactNode;
|
|
661
|
+
} & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
662
|
+
declare const FieldDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
663
|
+
declare const messageVariants: (props?: ({
|
|
664
|
+
intent?: "success" | "warning" | "info" | "error" | null | undefined;
|
|
665
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
666
|
+
interface FieldMessageProps extends React$1.HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof messageVariants> {
|
|
667
|
+
/** hide the leading intent icon */
|
|
668
|
+
hideIcon?: boolean;
|
|
669
|
+
}
|
|
670
|
+
declare const FieldMessage: React$1.ForwardRefExoticComponent<FieldMessageProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
671
|
+
|
|
672
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getErrors, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, resetDefaultValues, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
673
|
+
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => React$1.JSX.Element;
|
|
674
|
+
declare const useFormField: () => {
|
|
675
|
+
invalid: boolean;
|
|
676
|
+
isDirty: boolean;
|
|
677
|
+
isTouched: boolean;
|
|
678
|
+
isValidating: boolean;
|
|
679
|
+
error?: react_hook_form.FieldError | undefined;
|
|
680
|
+
id: string;
|
|
681
|
+
name: string;
|
|
682
|
+
formItemId: string;
|
|
683
|
+
formDescriptionId: string;
|
|
684
|
+
formMessageId: string;
|
|
685
|
+
};
|
|
686
|
+
declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
687
|
+
declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
688
|
+
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLElement> & {
|
|
689
|
+
children?: React$1.ReactNode;
|
|
690
|
+
} & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
691
|
+
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
692
|
+
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* InputGroup — a single bordered shell that hosts an input plus fixed add-ons
|
|
696
|
+
* (icon, text, dropdown, button) on either side. Matches the KinetixUI design
|
|
697
|
+
* source's "Fixed Add-on" pattern. Border / focus glow / invalid state apply to
|
|
698
|
+
* the whole group.
|
|
699
|
+
*
|
|
700
|
+
* <InputGroup>
|
|
701
|
+
* <InputGroupText>https://</InputGroupText>
|
|
702
|
+
* <InputGroupInput placeholder="kinetixui.com" />
|
|
703
|
+
* </InputGroup>
|
|
704
|
+
*/
|
|
705
|
+
declare const InputGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
706
|
+
declare const InputGroupInput: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
707
|
+
declare const InputGroupAddon: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
708
|
+
align?: "end" | "start" | null | undefined;
|
|
709
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
710
|
+
declare const InputGroupText: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
711
|
+
declare const InputGroupButton: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
712
|
+
|
|
713
|
+
declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "nonce" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
714
|
+
value?: string;
|
|
715
|
+
onChange?: (newValue: string) => unknown;
|
|
716
|
+
maxLength: number;
|
|
717
|
+
textAlign?: "left" | "center" | "right";
|
|
718
|
+
onComplete?: (...args: any[]) => unknown;
|
|
719
|
+
pushPasswordManagerStrategy?: "increase-width" | "none";
|
|
720
|
+
pasteTransformer?: (pasted: string) => string;
|
|
721
|
+
containerClassName?: string;
|
|
722
|
+
noScriptCSSFallback?: string | null;
|
|
723
|
+
nonce?: string;
|
|
724
|
+
} & {
|
|
725
|
+
render: (props: input_otp.RenderProps) => React$1.ReactNode;
|
|
726
|
+
children?: never;
|
|
727
|
+
} & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "nonce" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
728
|
+
value?: string;
|
|
729
|
+
onChange?: (newValue: string) => unknown;
|
|
730
|
+
maxLength: number;
|
|
731
|
+
textAlign?: "left" | "center" | "right";
|
|
732
|
+
onComplete?: (...args: any[]) => unknown;
|
|
733
|
+
pushPasswordManagerStrategy?: "increase-width" | "none";
|
|
734
|
+
pasteTransformer?: (pasted: string) => string;
|
|
735
|
+
containerClassName?: string;
|
|
736
|
+
noScriptCSSFallback?: string | null;
|
|
737
|
+
nonce?: string;
|
|
738
|
+
} & {
|
|
739
|
+
render?: never;
|
|
740
|
+
children: React$1.ReactNode;
|
|
741
|
+
} & React$1.RefAttributes<HTMLInputElement>, "ref">) & React$1.RefAttributes<HTMLInputElement>>;
|
|
742
|
+
declare const InputOTPGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
743
|
+
declare const InputOTPSlot: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
744
|
+
index: number;
|
|
745
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
746
|
+
declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* PasswordInput — an InputGroup recipe: a password field with a show / hide
|
|
750
|
+
* toggle. Forwards its ref to the underlying <input>.
|
|
751
|
+
*/
|
|
752
|
+
declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
753
|
+
|
|
754
|
+
declare const MenubarMenu: (props: React$1.ComponentProps<typeof MenubarPrimitive.Menu>) => React$1.JSX.Element;
|
|
755
|
+
declare const MenubarGroup: (props: React$1.ComponentProps<typeof MenubarPrimitive.Group>) => React$1.JSX.Element;
|
|
756
|
+
declare const MenubarPortal: (props: React$1.ComponentProps<typeof MenubarPrimitive.Portal>) => React$1.JSX.Element;
|
|
757
|
+
declare const MenubarSub: (props: React$1.ComponentProps<typeof MenubarPrimitive.Sub>) => React$1.JSX.Element;
|
|
758
|
+
declare const MenubarRadioGroup: (props: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>) => React$1.JSX.Element;
|
|
759
|
+
declare const Menubar: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
760
|
+
declare const MenubarTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
761
|
+
declare const MenubarSubTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
762
|
+
inset?: boolean;
|
|
763
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
764
|
+
declare const MenubarSubContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
765
|
+
declare const MenubarContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
766
|
+
declare const MenubarItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
767
|
+
inset?: boolean;
|
|
768
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
769
|
+
declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
770
|
+
declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
771
|
+
declare const MenubarLabel: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
772
|
+
inset?: boolean;
|
|
773
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
774
|
+
declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
775
|
+
declare const MenubarShortcut: {
|
|
776
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
777
|
+
displayName: string;
|
|
778
|
+
};
|
|
779
|
+
|
|
780
|
+
declare const NavigationMenu: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
781
|
+
declare const NavigationMenuList: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
782
|
+
declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
783
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
784
|
+
declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
785
|
+
declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
786
|
+
declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
787
|
+
declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
788
|
+
declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
789
|
+
|
|
790
|
+
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
791
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLButtonElement | HTMLElement | HTMLObjectElement | HTMLFormElement | HTMLSlotElement | HTMLStyleElement | HTMLTitleElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDivElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadingElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLInputElement | HTMLLabelElement | HTMLLegendElement | HTMLLIElement | HTMLLinkElement | HTMLMapElement | HTMLMetaElement | HTMLMeterElement | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLParagraphElement | HTMLPreElement | HTMLProgressElement | HTMLScriptElement | HTMLSelectElement | HTMLSourceElement | HTMLSpanElement | HTMLTableElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
|
|
792
|
+
className?: string | undefined;
|
|
793
|
+
collapsedSize?: number | undefined;
|
|
794
|
+
collapsible?: boolean | undefined;
|
|
795
|
+
defaultSize?: number | undefined;
|
|
796
|
+
id?: string | undefined;
|
|
797
|
+
maxSize?: number | undefined;
|
|
798
|
+
minSize?: number | undefined;
|
|
799
|
+
onCollapse?: ResizablePrimitive.PanelOnCollapse | undefined;
|
|
800
|
+
onExpand?: ResizablePrimitive.PanelOnExpand | undefined;
|
|
801
|
+
onResize?: ResizablePrimitive.PanelOnResize | undefined;
|
|
802
|
+
order?: number | undefined;
|
|
803
|
+
style?: object | undefined;
|
|
804
|
+
tagName?: keyof HTMLElementTagNameMap | undefined;
|
|
805
|
+
} & {
|
|
806
|
+
children?: React$1.ReactNode;
|
|
807
|
+
} & React$1.RefAttributes<ResizablePrimitive.ImperativePanelHandle>>;
|
|
808
|
+
declare const ResizableHandle: ({ withHandle, className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
809
|
+
withHandle?: boolean;
|
|
810
|
+
}) => React$1.JSX.Element;
|
|
811
|
+
|
|
812
|
+
type SidebarContextValue = {
|
|
813
|
+
state: "expanded" | "collapsed";
|
|
814
|
+
open: boolean;
|
|
815
|
+
setOpen: (open: boolean) => void;
|
|
816
|
+
openMobile: boolean;
|
|
817
|
+
setOpenMobile: (open: boolean) => void;
|
|
818
|
+
isMobile: boolean;
|
|
819
|
+
toggleSidebar: () => void;
|
|
820
|
+
};
|
|
821
|
+
declare function useSidebar(): SidebarContextValue;
|
|
822
|
+
declare const SidebarProvider: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
823
|
+
defaultOpen?: boolean;
|
|
824
|
+
open?: boolean;
|
|
825
|
+
onOpenChange?: (open: boolean) => void;
|
|
826
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
827
|
+
declare const Sidebar: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
828
|
+
side?: "left" | "right";
|
|
829
|
+
variant?: "sidebar" | "floating" | "inset";
|
|
830
|
+
collapsible?: "offcanvas" | "icon" | "none";
|
|
831
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
832
|
+
declare const SidebarTrigger: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
833
|
+
declare const SidebarInset: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
834
|
+
declare const SidebarHeader: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
835
|
+
declare const SidebarFooter: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
836
|
+
declare const SidebarSeparator: React$1.ForwardRefExoticComponent<Omit<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
837
|
+
declare const SidebarContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
838
|
+
declare const SidebarGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
839
|
+
declare const SidebarGroupLabel: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
840
|
+
asChild?: boolean;
|
|
841
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
842
|
+
declare const SidebarGroupContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
843
|
+
declare const SidebarMenu: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
844
|
+
declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
845
|
+
declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
846
|
+
asChild?: boolean;
|
|
847
|
+
isActive?: boolean;
|
|
848
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
849
|
+
} & VariantProps<(props?: ({
|
|
850
|
+
variant?: "default" | "outline" | null | undefined;
|
|
851
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
852
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
853
|
+
declare const SidebarMenuSkeleton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
854
|
+
showIcon?: boolean;
|
|
855
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
856
|
+
declare const SidebarInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* AudioPlayer — interactive playback controls, full or mini. Wraps a native
|
|
860
|
+
* <audio> element: play / pause, scrubber with time, ±10s skip, and optional
|
|
861
|
+
* prev / next track callbacks.
|
|
862
|
+
*/
|
|
863
|
+
interface AudioPlayerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
864
|
+
src: string;
|
|
865
|
+
variant?: "full" | "mini";
|
|
866
|
+
title?: string;
|
|
867
|
+
artist?: string;
|
|
868
|
+
coverSrc?: string;
|
|
869
|
+
/** ±10s skip step, seconds */
|
|
870
|
+
skipBy?: number;
|
|
871
|
+
onPrev?: () => void;
|
|
872
|
+
onNext?: () => void;
|
|
873
|
+
}
|
|
874
|
+
declare const AudioPlayer: React$1.ForwardRefExoticComponent<AudioPlayerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* CircularProgress — a ring progress indicator. Track = `--muted`, indicator
|
|
878
|
+
* = `--primary`. Optionally shows the value in the centre.
|
|
879
|
+
*/
|
|
880
|
+
interface CircularProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
881
|
+
value?: number;
|
|
882
|
+
/** diameter in px */
|
|
883
|
+
size?: number;
|
|
884
|
+
strokeWidth?: number;
|
|
885
|
+
showValue?: boolean;
|
|
886
|
+
/** override the visible label (defaults to `${value}%`) */
|
|
887
|
+
label?: React$1.ReactNode;
|
|
888
|
+
}
|
|
889
|
+
declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* Image — a ratio-locked image with a muted placeholder while loading and a
|
|
893
|
+
* fallback on error (presets 1:1 / 3:2 / 4:3 / 3:4 / 3:1 / 16:9). Pass
|
|
894
|
+
* `ratio` as a preset string or a number (w / h).
|
|
895
|
+
*/
|
|
896
|
+
declare const RATIOS: Record<string, number>;
|
|
897
|
+
interface ImageProps extends React$1.ImgHTMLAttributes<HTMLImageElement> {
|
|
898
|
+
ratio?: keyof typeof RATIOS | number;
|
|
899
|
+
rounded?: boolean;
|
|
900
|
+
fallback?: React$1.ReactNode;
|
|
901
|
+
}
|
|
902
|
+
declare const Image: React$1.ForwardRefExoticComponent<ImageProps & React$1.RefAttributes<HTMLImageElement>>;
|
|
903
|
+
|
|
904
|
+
/**
|
|
905
|
+
* Inform — a persistent, dismissible, intent-tinted inline notice with an
|
|
906
|
+
* optional action (information / warning / success / error / action).
|
|
907
|
+
* Distinct from `Alert` (border-only, static): Inform is filled, closable,
|
|
908
|
+
* and can carry a CTA.
|
|
909
|
+
*/
|
|
910
|
+
declare const informVariants: (props?: ({
|
|
911
|
+
variant?: "action" | "success" | "warning" | "error" | "information" | null | undefined;
|
|
912
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
913
|
+
interface InformProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof informVariants> {
|
|
914
|
+
hideIcon?: boolean;
|
|
915
|
+
onDismiss?: () => void;
|
|
916
|
+
/** optional CTA rendered below the message */
|
|
917
|
+
action?: {
|
|
918
|
+
label: React$1.ReactNode;
|
|
919
|
+
onClick?: () => void;
|
|
920
|
+
icon?: React$1.ReactNode;
|
|
921
|
+
};
|
|
922
|
+
}
|
|
923
|
+
declare const Inform: React$1.ForwardRefExoticComponent<InformProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* Rating — a star rating input / display. Controlled (`value`) or
|
|
927
|
+
* uncontrolled (`defaultValue`); `readOnly` renders a static display, e.g.
|
|
928
|
+
* inside a Card.
|
|
929
|
+
*/
|
|
930
|
+
declare const starVariants: (props?: ({
|
|
931
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
932
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
933
|
+
interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof starVariants> {
|
|
934
|
+
value?: number;
|
|
935
|
+
defaultValue?: number;
|
|
936
|
+
max?: number;
|
|
937
|
+
readOnly?: boolean;
|
|
938
|
+
onChange?: (value: number) => void;
|
|
939
|
+
}
|
|
940
|
+
declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
941
|
+
|
|
942
|
+
/**
|
|
943
|
+
* Spinner — a lightweight loading indicator. Border-based ring, no icon
|
|
944
|
+
* dependency; `size` sets the diameter, `variant` swaps the indicator
|
|
945
|
+
* colour for on-color surfaces.
|
|
946
|
+
*/
|
|
947
|
+
declare const spinnerVariants: (props?: ({
|
|
948
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
949
|
+
variant?: "default" | "muted" | "onColor" | null | undefined;
|
|
950
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
951
|
+
interface SpinnerProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
|
|
952
|
+
label?: string;
|
|
953
|
+
}
|
|
954
|
+
declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
955
|
+
|
|
956
|
+
/**
|
|
957
|
+
* List — a composable list of rows: leading icon/avatar, title, optional
|
|
958
|
+
* description, trailing content. Distinct from `Table` (tabular data): List
|
|
959
|
+
* is single-column, built for mobile menus, settings screens and search
|
|
960
|
+
* results.
|
|
961
|
+
*/
|
|
962
|
+
declare const List: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
963
|
+
interface ListItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
964
|
+
leading?: React$1.ReactNode;
|
|
965
|
+
title: React$1.ReactNode;
|
|
966
|
+
description?: React$1.ReactNode;
|
|
967
|
+
trailing?: React$1.ReactNode;
|
|
968
|
+
disabled?: boolean;
|
|
969
|
+
/** render as a pressable row */
|
|
970
|
+
onSelect?: () => void;
|
|
971
|
+
}
|
|
972
|
+
declare const ListItem: React$1.ForwardRefExoticComponent<ListItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* Stepper — a numbered multi-step progress indicator. Horizontal or
|
|
976
|
+
* vertical; each step is complete / current / upcoming, derived from
|
|
977
|
+
* `current` against its index.
|
|
978
|
+
*/
|
|
979
|
+
interface StepperStep {
|
|
980
|
+
label: React$1.ReactNode;
|
|
981
|
+
description?: React$1.ReactNode;
|
|
982
|
+
}
|
|
983
|
+
interface StepperProps extends React$1.HTMLAttributes<HTMLOListElement> {
|
|
984
|
+
steps: StepperStep[];
|
|
985
|
+
/** zero-based index of the active step */
|
|
986
|
+
current: number;
|
|
987
|
+
orientation?: "horizontal" | "vertical";
|
|
988
|
+
}
|
|
989
|
+
declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLOListElement>>;
|
|
990
|
+
|
|
991
|
+
/**
|
|
992
|
+
* Fab — a floating action button. Circular by default; pass a text child
|
|
993
|
+
* alongside the icon to render the extended pill form (`extended`).
|
|
994
|
+
*/
|
|
995
|
+
declare const fabVariants: (props?: ({
|
|
996
|
+
variant?: "Primary" | "Secondary" | null | undefined;
|
|
997
|
+
size?: "sm" | "default" | null | undefined;
|
|
998
|
+
extended?: boolean | null | undefined;
|
|
999
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1000
|
+
interface FabProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof fabVariants> {
|
|
1001
|
+
asChild?: boolean;
|
|
1002
|
+
}
|
|
1003
|
+
declare const Fab: React$1.ForwardRefExoticComponent<FabProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1004
|
+
|
|
1005
|
+
/**
|
|
1006
|
+
* TabBar — a mobile bottom navigation bar. A fixed row of icon + label
|
|
1007
|
+
* destinations; the active item is driven by `active` on `TabBarItem`.
|
|
1008
|
+
*/
|
|
1009
|
+
declare const TabBar: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & React$1.RefAttributes<HTMLElement>>;
|
|
1010
|
+
interface TabBarItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1011
|
+
icon: React$1.ReactNode;
|
|
1012
|
+
label: React$1.ReactNode;
|
|
1013
|
+
active?: boolean;
|
|
1014
|
+
badge?: React$1.ReactNode;
|
|
1015
|
+
}
|
|
1016
|
+
declare const TabBarItem: React$1.ForwardRefExoticComponent<TabBarItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1017
|
+
|
|
1018
|
+
/**
|
|
1019
|
+
* NavigationBar — a mobile top app bar. Leading back button (or a custom
|
|
1020
|
+
* `leading` slot), title with optional info text, trailing actions.
|
|
1021
|
+
*/
|
|
1022
|
+
interface NavigationBarProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "title"> {
|
|
1023
|
+
title: React$1.ReactNode;
|
|
1024
|
+
infoText?: React$1.ReactNode;
|
|
1025
|
+
onBack?: () => void;
|
|
1026
|
+
leading?: React$1.ReactNode;
|
|
1027
|
+
actions?: React$1.ReactNode;
|
|
1028
|
+
}
|
|
1029
|
+
declare const NavigationBar: React$1.ForwardRefExoticComponent<NavigationBarProps & React$1.RefAttributes<HTMLElement>>;
|
|
1030
|
+
|
|
1031
|
+
/**
|
|
1032
|
+
* FileUpload — a drag-and-drop zone plus file list, single or multiple.
|
|
1033
|
+
* Upload logic (network, storage) is the consumer's — this component is
|
|
1034
|
+
* presentational: it reports picked files via `onFilesSelected` and renders
|
|
1035
|
+
* whatever `files` list you hand back, each carrying its own status.
|
|
1036
|
+
*/
|
|
1037
|
+
interface UploadFile {
|
|
1038
|
+
id: string;
|
|
1039
|
+
name: string;
|
|
1040
|
+
size?: number;
|
|
1041
|
+
status?: "loading" | "uploaded" | "error";
|
|
1042
|
+
progress?: number;
|
|
1043
|
+
error?: string;
|
|
1044
|
+
}
|
|
1045
|
+
declare function formatBytes(bytes?: number): string;
|
|
1046
|
+
interface FileUploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onDrop"> {
|
|
1047
|
+
multiple?: boolean;
|
|
1048
|
+
accept?: string;
|
|
1049
|
+
disabled?: boolean;
|
|
1050
|
+
helperText?: React$1.ReactNode;
|
|
1051
|
+
buttonLabel?: React$1.ReactNode;
|
|
1052
|
+
files?: UploadFile[];
|
|
1053
|
+
onFilesSelected?: (files: File[]) => void;
|
|
1054
|
+
onRemove?: (id: string) => void;
|
|
1055
|
+
onRetry?: (id: string) => void;
|
|
1056
|
+
}
|
|
1057
|
+
declare const FileUpload: React$1.ForwardRefExoticComponent<FileUploadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1058
|
+
interface FileUploadItemProps {
|
|
1059
|
+
file: UploadFile;
|
|
1060
|
+
onRemove?: (id: string) => void;
|
|
1061
|
+
onRetry?: (id: string) => void;
|
|
1062
|
+
}
|
|
1063
|
+
declare function FileUploadItem({ file, onRemove, onRetry }: FileUploadItemProps): React$1.JSX.Element;
|
|
1064
|
+
declare namespace FileUploadItem {
|
|
1065
|
+
var displayName: string;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
/**
|
|
1069
|
+
* DatePicker — a text-field trigger + calendar popover. Composes the
|
|
1070
|
+
* existing `Popover` + `Calendar`; single-date only — for a range, compose
|
|
1071
|
+
* `Calendar mode="range"` directly.
|
|
1072
|
+
*/
|
|
1073
|
+
interface DatePickerProps {
|
|
1074
|
+
value?: Date;
|
|
1075
|
+
onChange?: (date: Date | undefined) => void;
|
|
1076
|
+
placeholder?: string;
|
|
1077
|
+
label?: React$1.ReactNode;
|
|
1078
|
+
helperText?: React$1.ReactNode;
|
|
1079
|
+
error?: boolean;
|
|
1080
|
+
disabled?: boolean;
|
|
1081
|
+
className?: string;
|
|
1082
|
+
formatStr?: string;
|
|
1083
|
+
calendarProps?: Omit<CalendarProps, "mode" | "selected" | "onSelect">;
|
|
1084
|
+
}
|
|
1085
|
+
declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1086
|
+
|
|
1087
|
+
/**
|
|
1088
|
+
* CodeBlock — a code display with a copy button and, for more than one
|
|
1089
|
+
* file, a tab strip. Presentational only: bring your own syntax
|
|
1090
|
+
* highlighting by rendering highlighted markup as `code`/`files[].code`.
|
|
1091
|
+
*/
|
|
1092
|
+
interface CodeBlockFile {
|
|
1093
|
+
name: string;
|
|
1094
|
+
code: string;
|
|
1095
|
+
language?: string;
|
|
1096
|
+
}
|
|
1097
|
+
interface CodeBlockProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1098
|
+
code?: string;
|
|
1099
|
+
language?: string;
|
|
1100
|
+
filename?: string;
|
|
1101
|
+
files?: CodeBlockFile[];
|
|
1102
|
+
hideCopy?: boolean;
|
|
1103
|
+
}
|
|
1104
|
+
declare const CodeBlock: React$1.ForwardRefExoticComponent<CodeBlockProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1105
|
+
|
|
1106
|
+
/**
|
|
1107
|
+
* Metric — a stat / KPI display: label, value, an optional trend indicator
|
|
1108
|
+
* and an optional chart or icon slot (bring your own chart, e.g. compose
|
|
1109
|
+
* with `ChartContainer`).
|
|
1110
|
+
*/
|
|
1111
|
+
interface MetricProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1112
|
+
label: React$1.ReactNode;
|
|
1113
|
+
value: React$1.ReactNode;
|
|
1114
|
+
trend?: "up" | "down" | "neutral";
|
|
1115
|
+
change?: React$1.ReactNode;
|
|
1116
|
+
icon?: React$1.ReactNode;
|
|
1117
|
+
chart?: React$1.ReactNode;
|
|
1118
|
+
}
|
|
1119
|
+
declare const Metric: React$1.ForwardRefExoticComponent<MetricProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1120
|
+
|
|
1121
|
+
/**
|
|
1122
|
+
* NumberInput — a numeric field with increment / decrement controls.
|
|
1123
|
+
*/
|
|
1124
|
+
interface NumberInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "value" | "defaultValue" | "onChange"> {
|
|
1125
|
+
value?: number;
|
|
1126
|
+
defaultValue?: number;
|
|
1127
|
+
min?: number;
|
|
1128
|
+
max?: number;
|
|
1129
|
+
step?: number;
|
|
1130
|
+
onChange?: (value: number) => void;
|
|
1131
|
+
}
|
|
1132
|
+
declare const NumberInput: React$1.ForwardRefExoticComponent<NumberInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1133
|
+
|
|
1134
|
+
/**
|
|
1135
|
+
* Quote — a blockquote with an optional attributed author (name, title,
|
|
1136
|
+
* avatar slot).
|
|
1137
|
+
*/
|
|
1138
|
+
interface QuoteProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
1139
|
+
author?: React$1.ReactNode;
|
|
1140
|
+
authorTitle?: React$1.ReactNode;
|
|
1141
|
+
avatar?: React$1.ReactNode;
|
|
1142
|
+
}
|
|
1143
|
+
declare const Quote: React$1.ForwardRefExoticComponent<QuoteProps & React$1.RefAttributes<HTMLElement>>;
|
|
1144
|
+
|
|
1145
|
+
/**
|
|
1146
|
+
* Footer — a page footer shell: columns of nav links plus a bottom bar
|
|
1147
|
+
* (copyright, legal, social). Compose `FooterColumn` / `FooterLink` /
|
|
1148
|
+
* `FooterBottom` inside it.
|
|
1149
|
+
*/
|
|
1150
|
+
declare const Footer: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & React$1.RefAttributes<HTMLElement>>;
|
|
1151
|
+
interface FooterColumnProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
1152
|
+
title: React$1.ReactNode;
|
|
1153
|
+
}
|
|
1154
|
+
declare const FooterColumn: React$1.ForwardRefExoticComponent<FooterColumnProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1155
|
+
declare const FooterLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
1156
|
+
declare const FooterBottom: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1157
|
+
|
|
1158
|
+
/**
|
|
1159
|
+
* TableOfContents — an anchor-link nav list with indent levels and an
|
|
1160
|
+
* active-item state (drive `active` from your own scroll-spy).
|
|
1161
|
+
*/
|
|
1162
|
+
interface TocItem {
|
|
1163
|
+
id: string;
|
|
1164
|
+
label: React$1.ReactNode;
|
|
1165
|
+
level?: number;
|
|
1166
|
+
}
|
|
1167
|
+
interface TableOfContentsProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
1168
|
+
items: TocItem[];
|
|
1169
|
+
active?: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare const TableOfContents: React$1.ForwardRefExoticComponent<TableOfContentsProps & React$1.RefAttributes<HTMLElement>>;
|
|
1172
|
+
|
|
1173
|
+
/** Merges Tailwind class names, resolving conflicts (clsx + tailwind-merge). */
|
|
1174
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
1175
|
+
|
|
1176
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, AudioPlayer, type AudioPlayerProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, type CircularProgressProps, CodeBlock, type CodeBlockFile, type CodeBlockProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Fab, type FabProps, Field, FieldControl, FieldDescription, FieldLabel, FieldMessage, FileUpload, FileUploadItem, type FileUploadItemProps, type FileUploadProps, Footer, FooterBottom, FooterColumn, type FooterColumnProps, FooterLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Image, type ImageProps, Inform, type InformProps, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, List, ListItem, type ListItemProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Metric, type MetricProps, Modal, type ModalProps, type ModalType, NavigationBar, type NavigationBarProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, Quote, type QuoteProps, RadioGroup, RadioGroupItem, Rating, type RatingProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarProvider, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, type SpinnerProps, Stepper, type StepperProps, type StepperStep, Switch, TabBar, TabBarItem, type TabBarItemProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Textarea, type TextareaProps, Toaster, type TocItem, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UploadFile, badgeVariants, buttonVariants, cn, fabVariants, formatBytes, informVariants, inputVariants, messageVariants, navigationMenuTriggerStyle, spinnerVariants, tagVariants, textareaVariants, toggleVariants, useFormField, useSidebar };
|