@prototyperco/ui 0.5.0-alpha.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/README.md +44 -0
- package/dist/index.cjs +7865 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +903 -0
- package/dist/index.d.ts +903 -0
- package/dist/index.js +7519 -0
- package/dist/index.js.map +1 -0
- package/package.json +71 -0
- package/src/prototyper-tokens.css +535 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,903 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
3
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
4
|
+
import * as React$1 from 'react';
|
|
5
|
+
import React__default from 'react';
|
|
6
|
+
import { VariantProps } from 'class-variance-authority';
|
|
7
|
+
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
8
|
+
import { Button as Button$1 } from '@base-ui/react/button';
|
|
9
|
+
import * as _base_ui_react from '@base-ui/react';
|
|
10
|
+
import { Autocomplete as Autocomplete$1 } from '@base-ui/react/autocomplete';
|
|
11
|
+
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
12
|
+
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
13
|
+
import { CheckboxGroup as CheckboxGroup$1 } from '@base-ui/react/checkbox-group';
|
|
14
|
+
import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
|
|
15
|
+
import { Popover as Popover$1 } from '@base-ui/react/popover';
|
|
16
|
+
import { Combobox as Combobox$1 } from '@base-ui/react/combobox';
|
|
17
|
+
import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
|
|
18
|
+
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
19
|
+
import { DrawerPreview } from '@base-ui/react/drawer';
|
|
20
|
+
import { Fieldset as Fieldset$1 } from '@base-ui/react/fieldset';
|
|
21
|
+
import { Form as Form$1 } from '@base-ui/react/form';
|
|
22
|
+
import { Menu } from '@base-ui/react/menu';
|
|
23
|
+
import { Menubar as Menubar$1 } from '@base-ui/react/menubar';
|
|
24
|
+
import { Meter as Meter$1 } from '@base-ui/react/meter';
|
|
25
|
+
import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
|
|
26
|
+
import { NumberField as NumberField$1 } from '@base-ui/react/number-field';
|
|
27
|
+
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
28
|
+
import { Progress as Progress$1 } from '@base-ui/react/progress';
|
|
29
|
+
import { Radio } from '@base-ui/react/radio';
|
|
30
|
+
import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
|
|
31
|
+
import { SeparatorProps as SeparatorProps$1, PanelProps, GroupProps } from 'react-resizable-panels';
|
|
32
|
+
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
33
|
+
import { Select as Select$1 } from '@base-ui/react/select';
|
|
34
|
+
import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
35
|
+
import { Slider as Slider$1 } from '@base-ui/react/slider';
|
|
36
|
+
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
37
|
+
import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
|
|
38
|
+
import { Field as Field$1 } from '@base-ui/react/field';
|
|
39
|
+
import { Input as Input$2 } from '@base-ui/react/input';
|
|
40
|
+
import { ToastManagerPromiseOptions } from '@base-ui/react/toast';
|
|
41
|
+
import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
|
|
42
|
+
import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
|
|
43
|
+
import { Toolbar as Toolbar$1 } from '@base-ui/react/toolbar';
|
|
44
|
+
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
45
|
+
import { ClassValue } from 'clsx';
|
|
46
|
+
|
|
47
|
+
declare function Accordion({ className, ...props }: Accordion$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
48
|
+
declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
49
|
+
declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
50
|
+
declare function AccordionContent({ className, children, ...props }: Accordion$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
type AccordionProps = React.ComponentProps<typeof Accordion>;
|
|
53
|
+
type AccordionItemProps = React.ComponentProps<typeof AccordionItem>;
|
|
54
|
+
type AccordionTriggerProps = React.ComponentProps<typeof AccordionTrigger>;
|
|
55
|
+
type AccordionContentProps = React.ComponentProps<typeof AccordionContent>;
|
|
56
|
+
|
|
57
|
+
declare const alertVariants: (props?: ({
|
|
58
|
+
variant?: "default" | "destructive" | "success" | "warning" | null | undefined;
|
|
59
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
60
|
+
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
61
|
+
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"h5">): react_jsx_runtime.JSX.Element;
|
|
62
|
+
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
63
|
+
|
|
64
|
+
type AlertProps = React$1.ComponentProps<typeof Alert>;
|
|
65
|
+
type AlertTitleProps = React$1.ComponentProps<typeof AlertTitle>;
|
|
66
|
+
type AlertDescriptionProps = React$1.ComponentProps<typeof AlertDescription>;
|
|
67
|
+
|
|
68
|
+
declare const buttonVariants: (props?: ({
|
|
69
|
+
variant?: "link" | "default" | "destructive" | "success" | "warning" | "outline" | "secondary" | "ghost" | "primary-soft" | "destructive-soft" | null | undefined;
|
|
70
|
+
size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
71
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
72
|
+
declare function Button({ className, variant, size, isPending, nativeButton, render, ...props }: Button$1.Props & VariantProps<typeof buttonVariants> & {
|
|
73
|
+
isPending?: boolean;
|
|
74
|
+
}): react_jsx_runtime.JSX.Element;
|
|
75
|
+
|
|
76
|
+
type ButtonProps = React.ComponentProps<typeof Button>;
|
|
77
|
+
|
|
78
|
+
declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
79
|
+
declare function AlertDialogTrigger({ ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
80
|
+
declare function AlertDialogPortal({ ...props }: AlertDialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
81
|
+
declare function AlertDialogOverlay({ className, ...props }: AlertDialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
82
|
+
declare function AlertDialogContent({ className, size, ...props }: AlertDialog$1.Popup.Props & {
|
|
83
|
+
size?: "default" | "sm";
|
|
84
|
+
}): react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
86
|
+
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
87
|
+
declare function AlertDialogMedia({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
88
|
+
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
89
|
+
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function AlertDialogCancel({ className, variant, size, ...props }: AlertDialog$1.Close.Props & Pick<React$1.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime.JSX.Element;
|
|
92
|
+
|
|
93
|
+
type AlertDialogProps = React$1.ComponentProps<typeof AlertDialog>;
|
|
94
|
+
type AlertDialogContentProps = React$1.ComponentProps<typeof AlertDialogContent>;
|
|
95
|
+
type AlertDialogTriggerProps = React$1.ComponentProps<typeof AlertDialogTrigger>;
|
|
96
|
+
type AlertDialogActionProps = React$1.ComponentProps<typeof AlertDialogAction>;
|
|
97
|
+
type AlertDialogCancelProps = React$1.ComponentProps<typeof AlertDialogCancel>;
|
|
98
|
+
|
|
99
|
+
declare function Autocomplete({ ...props }: Autocomplete$1.Root.Props<any>): react_jsx_runtime.JSX.Element;
|
|
100
|
+
declare function AutocompleteInput({ className, showTrigger, children, ...props }: Autocomplete$1.Input.Props & {
|
|
101
|
+
showTrigger?: boolean;
|
|
102
|
+
}): react_jsx_runtime.JSX.Element;
|
|
103
|
+
declare function AutocompleteTrigger({ className, children, ...props }: Autocomplete$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function AutocompleteValue({ ...props }: Autocomplete$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
105
|
+
declare function AutocompleteContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: Autocomplete$1.Popup.Props & Pick<Autocomplete$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime.JSX.Element;
|
|
106
|
+
declare function AutocompleteList({ className, ...props }: Autocomplete$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
107
|
+
declare function AutocompleteItem({ className, children, ...props }: Autocomplete$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
108
|
+
declare function AutocompleteEmpty({ className, ...props }: Autocomplete$1.Empty.Props): react_jsx_runtime.JSX.Element;
|
|
109
|
+
declare function AutocompleteGroup({ className, ...props }: Autocomplete$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
110
|
+
declare function AutocompleteGroupLabel({ className, ...props }: Autocomplete$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
111
|
+
declare function AutocompleteSeparator({ className, ...props }: React$1.ComponentProps<typeof Autocomplete$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
112
|
+
declare function AutocompleteIcon({ className, ...props }: Autocomplete$1.Icon.Props): react_jsx_runtime.JSX.Element;
|
|
113
|
+
declare function AutocompleteStatus({ className, ...props }: Autocomplete$1.Status.Props): react_jsx_runtime.JSX.Element;
|
|
114
|
+
declare function AutocompleteArrow({ className, ...props }: Autocomplete$1.Arrow.Props): react_jsx_runtime.JSX.Element;
|
|
115
|
+
declare function AutocompleteBackdrop({ className, ...props }: Autocomplete$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
116
|
+
declare const AutocompleteCollection: typeof Autocomplete$1.Collection;
|
|
117
|
+
declare const useAutocompleteFilter: (options?: _base_ui_react.AutocompleteFilterOptions) => _base_ui_react.AutocompleteFilter;
|
|
118
|
+
|
|
119
|
+
type AutocompleteProps = React$1.ComponentProps<typeof Autocomplete>;
|
|
120
|
+
type AutocompleteInputProps = React$1.ComponentProps<typeof AutocompleteInput>;
|
|
121
|
+
type AutocompleteContentProps = React$1.ComponentProps<typeof AutocompleteContent>;
|
|
122
|
+
type AutocompleteItemProps = React$1.ComponentProps<typeof AutocompleteItem>;
|
|
123
|
+
|
|
124
|
+
declare function Avatar({ className, size, ...props }: Avatar$1.Root.Props & {
|
|
125
|
+
size?: "default" | "sm" | "lg";
|
|
126
|
+
}): react_jsx_runtime.JSX.Element;
|
|
127
|
+
declare function AvatarImage({ className, ...props }: Avatar$1.Image.Props): react_jsx_runtime.JSX.Element;
|
|
128
|
+
declare function AvatarFallback({ className, ...props }: Avatar$1.Fallback.Props): react_jsx_runtime.JSX.Element;
|
|
129
|
+
declare function AvatarBadge({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
130
|
+
declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
131
|
+
declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
132
|
+
|
|
133
|
+
type AvatarProps = React$1.ComponentProps<typeof Avatar>;
|
|
134
|
+
type AvatarImageProps = React$1.ComponentProps<typeof AvatarImage>;
|
|
135
|
+
type AvatarFallbackProps = React$1.ComponentProps<typeof AvatarFallback>;
|
|
136
|
+
|
|
137
|
+
declare const badgeVariants: (props?: ({
|
|
138
|
+
variant?: "default" | "destructive" | "success" | "warning" | "outline" | "secondary" | null | undefined;
|
|
139
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
140
|
+
declare function Badge({ className, variant, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants>): react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
type BadgeProps = React$1.ComponentProps<typeof Badge>;
|
|
143
|
+
|
|
144
|
+
declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
145
|
+
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
146
|
+
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
147
|
+
declare function BreadcrumbLink({ className, ...props }: React$1.ComponentProps<"a">): react_jsx_runtime.JSX.Element;
|
|
148
|
+
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
149
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
150
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
152
|
+
type BreadcrumbProps = React$1.ComponentProps<typeof Breadcrumb>;
|
|
153
|
+
type BreadcrumbListProps = React$1.ComponentProps<typeof BreadcrumbList>;
|
|
154
|
+
type BreadcrumbItemProps = React$1.ComponentProps<typeof BreadcrumbItem>;
|
|
155
|
+
type BreadcrumbLinkProps = React$1.ComponentProps<typeof BreadcrumbLink>;
|
|
156
|
+
type BreadcrumbPageProps = React$1.ComponentProps<typeof BreadcrumbPage>;
|
|
157
|
+
type BreadcrumbSeparatorProps = React$1.ComponentProps<typeof BreadcrumbSeparator>;
|
|
158
|
+
type BreadcrumbEllipsisProps = React$1.ComponentProps<typeof BreadcrumbEllipsis>;
|
|
159
|
+
|
|
160
|
+
declare const cardVariants: (props?: ({
|
|
161
|
+
variant?: "default" | "secondary" | "tertiary" | "elevated" | "transparent" | null | undefined;
|
|
162
|
+
interactive?: boolean | null | undefined;
|
|
163
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
164
|
+
declare function Card({ className, variant, interactive, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof cardVariants>): react_jsx_runtime.JSX.Element;
|
|
165
|
+
declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
166
|
+
declare function CardTitle({ className, ...props }: React$1.ComponentProps<"h3">): react_jsx_runtime.JSX.Element;
|
|
167
|
+
declare function CardDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
168
|
+
declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
169
|
+
declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
170
|
+
|
|
171
|
+
type CardProps = React$1.ComponentProps<typeof Card>;
|
|
172
|
+
type CardHeaderProps = React$1.ComponentProps<typeof CardHeader>;
|
|
173
|
+
type CardTitleProps = React$1.ComponentProps<typeof CardTitle>;
|
|
174
|
+
type CardContentProps = React$1.ComponentProps<typeof CardContent>;
|
|
175
|
+
type CardFooterProps = React$1.ComponentProps<typeof CardFooter>;
|
|
176
|
+
|
|
177
|
+
declare function Columns({ className, count, gap, collapse, children, ...props }: React.ComponentProps<"div"> & {
|
|
178
|
+
count?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
179
|
+
gap?: number;
|
|
180
|
+
collapse?: "sm" | "md" | "lg" | "never";
|
|
181
|
+
}): react_jsx_runtime.JSX.Element;
|
|
182
|
+
declare function Column({ className, span, collapse, children, ...props }: React.ComponentProps<"div"> & {
|
|
183
|
+
span?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
184
|
+
collapse?: "sm" | "md" | "lg" | "never";
|
|
185
|
+
}): react_jsx_runtime.JSX.Element;
|
|
186
|
+
|
|
187
|
+
type ColumnsProps = React.ComponentProps<typeof Columns>;
|
|
188
|
+
type ColumnProps = React.ComponentProps<typeof Column>;
|
|
189
|
+
|
|
190
|
+
declare const maxWidthMap: {
|
|
191
|
+
readonly sm: "max-w-sm";
|
|
192
|
+
readonly md: "max-w-md";
|
|
193
|
+
readonly lg: "max-w-lg";
|
|
194
|
+
readonly xl: "max-w-xl";
|
|
195
|
+
readonly "2xl": "max-w-2xl";
|
|
196
|
+
readonly "4xl": "max-w-4xl";
|
|
197
|
+
readonly "5xl": "max-w-5xl";
|
|
198
|
+
readonly full: "max-w-full";
|
|
199
|
+
};
|
|
200
|
+
declare const paddingMap: {
|
|
201
|
+
readonly none: "";
|
|
202
|
+
readonly sm: "px-3";
|
|
203
|
+
readonly md: "px-6";
|
|
204
|
+
readonly lg: "px-8";
|
|
205
|
+
};
|
|
206
|
+
declare function Container({ className, maxWidth, padding, centered, children, ...props }: React.ComponentProps<"div"> & {
|
|
207
|
+
maxWidth?: keyof typeof maxWidthMap;
|
|
208
|
+
padding?: keyof typeof paddingMap;
|
|
209
|
+
centered?: boolean;
|
|
210
|
+
}): react_jsx_runtime.JSX.Element;
|
|
211
|
+
|
|
212
|
+
type ContainerProps = React.ComponentProps<typeof Container>;
|
|
213
|
+
|
|
214
|
+
declare function Checkbox({ className, children, ...props }: Checkbox$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
215
|
+
declare function CheckboxControl({ className, children, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
216
|
+
declare function CheckboxIndicator({ className, children, ...props }: Omit<Checkbox$1.Indicator.Props, "children"> & {
|
|
217
|
+
children?: React.ReactNode;
|
|
218
|
+
}): react_jsx_runtime.JSX.Element;
|
|
219
|
+
|
|
220
|
+
type CheckboxProps = React.ComponentProps<typeof Checkbox>;
|
|
221
|
+
|
|
222
|
+
declare function CheckboxGroup({ className, ...props }: CheckboxGroup$1.Props): react_jsx_runtime.JSX.Element;
|
|
223
|
+
|
|
224
|
+
type CheckboxGroupProps = React.ComponentProps<typeof CheckboxGroup>;
|
|
225
|
+
|
|
226
|
+
declare function Collapsible({ className, ...props }: Collapsible$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
227
|
+
declare function CollapsibleTrigger({ className, ...props }: Collapsible$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
228
|
+
declare function CollapsibleContent({ className, ...props }: Collapsible$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
229
|
+
|
|
230
|
+
type CollapsibleProps = React.ComponentProps<typeof Collapsible>;
|
|
231
|
+
type CollapsibleTriggerProps = React.ComponentProps<typeof CollapsibleTrigger>;
|
|
232
|
+
type CollapsibleContentProps = React.ComponentProps<typeof CollapsibleContent>;
|
|
233
|
+
|
|
234
|
+
interface CommandPaletteProps {
|
|
235
|
+
open: boolean;
|
|
236
|
+
onOpenChange: (open: boolean) => void;
|
|
237
|
+
children: React$1.ReactNode;
|
|
238
|
+
/** Filter function — defaults to case-insensitive includes match */
|
|
239
|
+
filter?: (value: string, search: string) => boolean;
|
|
240
|
+
}
|
|
241
|
+
declare function CommandPalette({ open, onOpenChange, children, filter, }: CommandPaletteProps): react_jsx_runtime.JSX.Element;
|
|
242
|
+
interface CommandInputProps extends React$1.ComponentProps<"input"> {
|
|
243
|
+
/** Placeholder text */
|
|
244
|
+
placeholder?: string;
|
|
245
|
+
}
|
|
246
|
+
declare function CommandInput({ className, placeholder, ...props }: CommandInputProps): react_jsx_runtime.JSX.Element;
|
|
247
|
+
interface CommandGroupProps extends React$1.ComponentProps<"div"> {
|
|
248
|
+
/** Group heading */
|
|
249
|
+
heading?: string;
|
|
250
|
+
}
|
|
251
|
+
declare function CommandGroup({ className, heading, children, ...props }: CommandGroupProps): react_jsx_runtime.JSX.Element;
|
|
252
|
+
interface CommandItemProps extends React$1.ComponentProps<"div"> {
|
|
253
|
+
/** Value used for filtering */
|
|
254
|
+
value: string;
|
|
255
|
+
/** Callback when item is selected */
|
|
256
|
+
onSelect?: () => void;
|
|
257
|
+
/** Whether item is disabled */
|
|
258
|
+
disabled?: boolean;
|
|
259
|
+
/** Keyboard shortcut to display */
|
|
260
|
+
shortcut?: string;
|
|
261
|
+
}
|
|
262
|
+
declare function CommandItem({ className, value, onSelect, disabled, shortcut, children, ...props }: CommandItemProps): react_jsx_runtime.JSX.Element | null;
|
|
263
|
+
interface CommandEmptyProps extends React$1.ComponentProps<"div"> {
|
|
264
|
+
}
|
|
265
|
+
declare function CommandEmpty({ className, children, ...props }: CommandEmptyProps): react_jsx_runtime.JSX.Element | null;
|
|
266
|
+
interface CommandSeparatorProps extends React$1.ComponentProps<"div"> {
|
|
267
|
+
}
|
|
268
|
+
declare function CommandSeparator({ className, ...props }: CommandSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
269
|
+
declare function CommandPaletteContent({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
270
|
+
declare function CommandList({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
271
|
+
|
|
272
|
+
type ColorFormat = "hex" | "oklch" | "rgb" | "hsl";
|
|
273
|
+
|
|
274
|
+
interface ColorPickerProps {
|
|
275
|
+
value?: string;
|
|
276
|
+
defaultValue?: string;
|
|
277
|
+
onValueChange?: (value: string) => void;
|
|
278
|
+
onValueCommit?: (value: string) => void;
|
|
279
|
+
outputFormat?: ColorFormat;
|
|
280
|
+
name?: string;
|
|
281
|
+
disabled?: boolean;
|
|
282
|
+
enableAlpha?: boolean;
|
|
283
|
+
open?: boolean;
|
|
284
|
+
onOpenChange?: (open: boolean) => void;
|
|
285
|
+
children?: React$1.ReactNode;
|
|
286
|
+
className?: string;
|
|
287
|
+
}
|
|
288
|
+
declare function ColorPicker({ value: controlledValue, defaultValue, onValueChange, onValueCommit, outputFormat, name, disabled, enableAlpha, open, onOpenChange, children, className, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
289
|
+
declare function ColorPickerTrigger({ className, children, ...props }: Popover$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
290
|
+
declare function ColorPickerContent({ className, sideOffset, align, ...props }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "sideOffset" | "align">): react_jsx_runtime.JSX.Element;
|
|
291
|
+
declare function ColorPickerArea({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
292
|
+
declare function ColorPickerAreaThumb({ className, style, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
293
|
+
interface ColorPickerSliderProps extends Omit<React$1.ComponentProps<"div">, "onChange"> {
|
|
294
|
+
channel: "hue" | "alpha";
|
|
295
|
+
}
|
|
296
|
+
declare function ColorPickerSlider({ channel, className, children, ...props }: ColorPickerSliderProps): react_jsx_runtime.JSX.Element | null;
|
|
297
|
+
declare function ColorPickerSliderThumb({ className, style, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
298
|
+
declare function ColorPickerInput({ className, ...props }: Omit<React$1.ComponentProps<"input">, "value" | "onChange">): react_jsx_runtime.JSX.Element;
|
|
299
|
+
declare function ColorPickerEyeDropper({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element | null;
|
|
300
|
+
declare function ColorPickerSwatches({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
301
|
+
interface ColorPickerSwatchProps extends React$1.ComponentProps<"button"> {
|
|
302
|
+
value: string;
|
|
303
|
+
}
|
|
304
|
+
declare function ColorPickerSwatch({ value, className, ...props }: ColorPickerSwatchProps): react_jsx_runtime.JSX.Element;
|
|
305
|
+
|
|
306
|
+
declare function Combobox({ ...props }: Combobox$1.Root.Props<any, any>): react_jsx_runtime.JSX.Element;
|
|
307
|
+
declare function ComboboxInput({ className, showTrigger, showClear, children, ...props }: Combobox$1.Input.Props & {
|
|
308
|
+
showTrigger?: boolean;
|
|
309
|
+
showClear?: boolean;
|
|
310
|
+
}): react_jsx_runtime.JSX.Element;
|
|
311
|
+
declare function ComboboxTrigger({ className, children, ...props }: Combobox$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
312
|
+
declare function ComboboxClear({ className, children, ...props }: Combobox$1.Clear.Props): react_jsx_runtime.JSX.Element;
|
|
313
|
+
declare function ComboboxChipsInput({ className, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
314
|
+
declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
|
|
315
|
+
declare function ComboboxValue({ ...props }: Combobox$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
316
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime.JSX.Element;
|
|
317
|
+
declare function ComboboxList({ className, ...props }: Combobox$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
318
|
+
declare function ComboboxItem({ className, children, ...props }: Combobox$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
319
|
+
declare function ComboboxEmpty({ className, ...props }: Combobox$1.Empty.Props): react_jsx_runtime.JSX.Element;
|
|
320
|
+
declare function ComboboxGroup({ className, ...props }: Combobox$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare function ComboboxGroupLabel({ className, ...props }: Combobox$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
322
|
+
declare function ComboboxSeparator({ className, ...props }: React$1.ComponentProps<typeof Combobox$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
323
|
+
declare function ComboboxIcon({ className, ...props }: Combobox$1.Icon.Props): react_jsx_runtime.JSX.Element;
|
|
324
|
+
declare function ComboboxChips({ className, ...props }: Combobox$1.Chips.Props): react_jsx_runtime.JSX.Element;
|
|
325
|
+
declare function ComboboxChip({ className, ...props }: Combobox$1.Chip.Props): react_jsx_runtime.JSX.Element;
|
|
326
|
+
declare function ComboboxChipRemove({ className, children, ...props }: Combobox$1.ChipRemove.Props): react_jsx_runtime.JSX.Element;
|
|
327
|
+
declare function ComboboxStatus({ className, ...props }: Combobox$1.Status.Props): react_jsx_runtime.JSX.Element;
|
|
328
|
+
declare function ComboboxArrow({ className, ...props }: Combobox$1.Arrow.Props): react_jsx_runtime.JSX.Element;
|
|
329
|
+
declare function ComboboxBackdrop({ className, ...props }: Combobox$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
330
|
+
declare const ComboboxCollection: typeof Combobox$1.Collection;
|
|
331
|
+
declare const useComboboxFilter: typeof Combobox$1.useFilter;
|
|
332
|
+
/** @deprecated Use `ComboboxGroupLabel` instead. */
|
|
333
|
+
declare const ComboboxLabel: typeof ComboboxGroupLabel;
|
|
334
|
+
|
|
335
|
+
type ComboboxProps = React$1.ComponentProps<typeof Combobox>;
|
|
336
|
+
type ComboboxInputProps = React$1.ComponentProps<typeof ComboboxInput>;
|
|
337
|
+
type ComboboxContentProps = React$1.ComponentProps<typeof ComboboxContent>;
|
|
338
|
+
type ComboboxItemProps = React$1.ComponentProps<typeof ComboboxItem>;
|
|
339
|
+
|
|
340
|
+
declare function ContextMenu({ ...props }: ContextMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
341
|
+
declare function ContextMenuPortal({ ...props }: ContextMenu$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
342
|
+
declare function ContextMenuTrigger({ className, ...props }: ContextMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
343
|
+
declare function ContextMenuContent({ className, align, alignOffset, side, sideOffset, ...props }: ContextMenu$1.Popup.Props & Pick<ContextMenu$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
344
|
+
declare function ContextMenuGroup({ ...props }: ContextMenu$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
345
|
+
declare function ContextMenuLabel({ className, inset, ...props }: ContextMenu$1.GroupLabel.Props & {
|
|
346
|
+
inset?: boolean;
|
|
347
|
+
}): react_jsx_runtime.JSX.Element;
|
|
348
|
+
declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenu$1.Item.Props & {
|
|
349
|
+
inset?: boolean;
|
|
350
|
+
variant?: "default" | "destructive";
|
|
351
|
+
}): react_jsx_runtime.JSX.Element;
|
|
352
|
+
declare function ContextMenuSub({ ...props }: ContextMenu$1.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
|
|
353
|
+
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenu$1.SubmenuTrigger.Props & {
|
|
354
|
+
inset?: boolean;
|
|
355
|
+
}): react_jsx_runtime.JSX.Element;
|
|
356
|
+
declare function ContextMenuSubContent({ ...props }: React$1.ComponentProps<typeof ContextMenuContent>): react_jsx_runtime.JSX.Element;
|
|
357
|
+
declare function ContextMenuCheckboxItem({ className, children, checked, inset, ...props }: ContextMenu$1.CheckboxItem.Props & {
|
|
358
|
+
inset?: boolean;
|
|
359
|
+
}): react_jsx_runtime.JSX.Element;
|
|
360
|
+
declare function ContextMenuRadioGroup({ ...props }: ContextMenu$1.RadioGroup.Props): react_jsx_runtime.JSX.Element;
|
|
361
|
+
declare function ContextMenuRadioItem({ className, children, inset, ...props }: ContextMenu$1.RadioItem.Props & {
|
|
362
|
+
inset?: boolean;
|
|
363
|
+
}): react_jsx_runtime.JSX.Element;
|
|
364
|
+
declare function ContextMenuSeparator({ className, ...props }: ContextMenu$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
365
|
+
declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
366
|
+
|
|
367
|
+
type ContextMenuProps = React$1.ComponentProps<typeof ContextMenu>;
|
|
368
|
+
type ContextMenuContentProps = React$1.ComponentProps<typeof ContextMenuContent>;
|
|
369
|
+
type ContextMenuItemProps = React$1.ComponentProps<typeof ContextMenuItem>;
|
|
370
|
+
type ContextMenuTriggerProps = React$1.ComponentProps<typeof ContextMenuTrigger>;
|
|
371
|
+
|
|
372
|
+
declare function Dialog({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
373
|
+
declare function DialogTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
374
|
+
declare function DialogPortal({ ...props }: Dialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
375
|
+
declare function DialogClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
|
|
376
|
+
declare function DialogOverlay({ className, ...props }: Dialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
377
|
+
declare const sheetVariants: (props?: ({
|
|
378
|
+
side?: "top" | "bottom" | "left" | "right" | null | undefined;
|
|
379
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
380
|
+
declare function DialogContent({ className, children, showCloseButton, side, ...props }: Dialog$1.Popup.Props & {
|
|
381
|
+
showCloseButton?: boolean;
|
|
382
|
+
} & VariantProps<typeof sheetVariants>): react_jsx_runtime.JSX.Element;
|
|
383
|
+
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
384
|
+
declare function DialogFooter({ className, showCloseButton, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
385
|
+
showCloseButton?: boolean;
|
|
386
|
+
}): react_jsx_runtime.JSX.Element;
|
|
387
|
+
declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
|
|
388
|
+
declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
|
|
389
|
+
|
|
390
|
+
type DialogProps = React$1.ComponentProps<typeof Dialog>;
|
|
391
|
+
type DialogContentProps = React$1.ComponentProps<typeof DialogContent>;
|
|
392
|
+
type DialogTriggerProps = React$1.ComponentProps<typeof DialogTrigger>;
|
|
393
|
+
type DialogHeaderProps = React$1.ComponentProps<typeof DialogHeader>;
|
|
394
|
+
type DialogFooterProps = React$1.ComponentProps<typeof DialogFooter>;
|
|
395
|
+
type DialogTitleProps = React$1.ComponentProps<typeof DialogTitle>;
|
|
396
|
+
|
|
397
|
+
declare function Drawer({ ...props }: DrawerPreview.Root.Props): react_jsx_runtime.JSX.Element;
|
|
398
|
+
declare function DrawerTrigger({ ...props }: DrawerPreview.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
399
|
+
declare function DrawerPortal({ ...props }: DrawerPreview.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
400
|
+
declare function DrawerClose({ ...props }: DrawerPreview.Close.Props): react_jsx_runtime.JSX.Element;
|
|
401
|
+
declare function DrawerOverlay({ className, ...props }: DrawerPreview.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
402
|
+
declare const drawerVariants: (props?: ({
|
|
403
|
+
direction?: "top" | "bottom" | "left" | "right" | null | undefined;
|
|
404
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
405
|
+
declare function DrawerContent({ className, children, direction, ...props }: DrawerPreview.Popup.Props & VariantProps<typeof drawerVariants> & {
|
|
406
|
+
direction?: "top" | "bottom" | "left" | "right";
|
|
407
|
+
}): react_jsx_runtime.JSX.Element;
|
|
408
|
+
declare function DrawerHeader({ className, direction, ...props }: React$1.ComponentProps<"div"> & {
|
|
409
|
+
direction?: string;
|
|
410
|
+
}): react_jsx_runtime.JSX.Element;
|
|
411
|
+
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
412
|
+
declare function DrawerTitle({ className, ...props }: DrawerPreview.Title.Props): react_jsx_runtime.JSX.Element;
|
|
413
|
+
declare function DrawerDescription({ className, ...props }: DrawerPreview.Description.Props): react_jsx_runtime.JSX.Element;
|
|
414
|
+
|
|
415
|
+
type DrawerProps = React$1.ComponentProps<typeof Drawer>;
|
|
416
|
+
type DrawerContentProps = React$1.ComponentProps<typeof DrawerContent>;
|
|
417
|
+
type DrawerTriggerProps = React$1.ComponentProps<typeof DrawerTrigger>;
|
|
418
|
+
type DrawerHeaderProps = React$1.ComponentProps<typeof DrawerHeader>;
|
|
419
|
+
type DrawerFooterProps = React$1.ComponentProps<typeof DrawerFooter>;
|
|
420
|
+
type DrawerTitleProps = React$1.ComponentProps<typeof DrawerTitle>;
|
|
421
|
+
|
|
422
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
|
|
423
|
+
|
|
424
|
+
type LabelProps = React$1.ComponentProps<typeof Label>;
|
|
425
|
+
|
|
426
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
427
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
428
|
+
variant?: "legend" | "label";
|
|
429
|
+
}): react_jsx_runtime.JSX.Element;
|
|
430
|
+
declare const fieldGroupVariants: (props?: ({
|
|
431
|
+
variant?: "default" | "ghost" | null | undefined;
|
|
432
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
433
|
+
declare function FieldGroup({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
434
|
+
declare const fieldVariants: (props?: ({
|
|
435
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
436
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
437
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
438
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
439
|
+
declare function FieldLabel({ className, required, ...props }: React.ComponentProps<typeof Label> & {
|
|
440
|
+
required?: boolean;
|
|
441
|
+
}): react_jsx_runtime.JSX.Element;
|
|
442
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
443
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
444
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
445
|
+
children?: React.ReactNode;
|
|
446
|
+
}): react_jsx_runtime.JSX.Element;
|
|
447
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
448
|
+
errors?: Array<{
|
|
449
|
+
message?: string;
|
|
450
|
+
} | undefined>;
|
|
451
|
+
}): react_jsx_runtime.JSX.Element;
|
|
452
|
+
|
|
453
|
+
type FieldProps = React.ComponentProps<typeof Field>;
|
|
454
|
+
type FieldLabelProps = React.ComponentProps<typeof FieldLabel>;
|
|
455
|
+
type FieldErrorProps = React.ComponentProps<typeof FieldError>;
|
|
456
|
+
type FieldGroupProps = React.ComponentProps<typeof FieldGroup>;
|
|
457
|
+
|
|
458
|
+
declare function Fieldset({ className, ...props }: Fieldset$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
459
|
+
declare function FieldsetLegend({ className, variant, ...props }: Fieldset$1.Legend.Props & {
|
|
460
|
+
variant?: "legend" | "label";
|
|
461
|
+
}): react_jsx_runtime.JSX.Element;
|
|
462
|
+
|
|
463
|
+
type FieldsetProps = React.ComponentProps<typeof Fieldset>;
|
|
464
|
+
type FieldsetLegendProps = React.ComponentProps<typeof FieldsetLegend>;
|
|
465
|
+
|
|
466
|
+
declare function Form({ className, ...props }: Form$1.Props): react_jsx_runtime.JSX.Element;
|
|
467
|
+
|
|
468
|
+
type FormProps = React.ComponentProps<typeof Form>;
|
|
469
|
+
|
|
470
|
+
declare function Input$1({ className, type, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
471
|
+
|
|
472
|
+
type InputProps = React$1.ComponentProps<typeof Input$1>;
|
|
473
|
+
|
|
474
|
+
declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
475
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
476
|
+
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
477
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
478
|
+
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
479
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
480
|
+
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
481
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
482
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
|
|
483
|
+
type?: "button" | "submit" | "reset";
|
|
484
|
+
}): react_jsx_runtime.JSX.Element;
|
|
485
|
+
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
486
|
+
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
487
|
+
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
488
|
+
|
|
489
|
+
type InputGroupProps = React$1.ComponentProps<typeof InputGroup>;
|
|
490
|
+
type InputGroupAddonProps = React$1.ComponentProps<typeof InputGroupAddon>;
|
|
491
|
+
type InputGroupButtonProps = React$1.ComponentProps<typeof InputGroupButton>;
|
|
492
|
+
|
|
493
|
+
declare function DropdownMenu({ ...props }: Menu.Root.Props): react_jsx_runtime.JSX.Element;
|
|
494
|
+
declare function DropdownMenuPortal({ ...props }: Menu.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
495
|
+
declare function DropdownMenuTrigger({ ...props }: Menu.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
496
|
+
declare function DropdownMenuContent({ align, alignOffset, side, sideOffset, className, ...props }: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
497
|
+
declare function DropdownMenuGroup({ ...props }: Menu.Group.Props): react_jsx_runtime.JSX.Element;
|
|
498
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: Menu.GroupLabel.Props & {
|
|
499
|
+
inset?: boolean;
|
|
500
|
+
}): react_jsx_runtime.JSX.Element;
|
|
501
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: Menu.Item.Props & {
|
|
502
|
+
inset?: boolean;
|
|
503
|
+
variant?: "default" | "destructive";
|
|
504
|
+
}): react_jsx_runtime.JSX.Element;
|
|
505
|
+
declare function DropdownMenuSub({ ...props }: Menu.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
|
|
506
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: Menu.SubmenuTrigger.Props & {
|
|
507
|
+
inset?: boolean;
|
|
508
|
+
}): react_jsx_runtime.JSX.Element;
|
|
509
|
+
declare function DropdownMenuSubContent({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
|
|
510
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, inset, ...props }: Menu.CheckboxItem.Props & {
|
|
511
|
+
inset?: boolean;
|
|
512
|
+
}): react_jsx_runtime.JSX.Element;
|
|
513
|
+
declare function DropdownMenuRadioGroup({ ...props }: Menu.RadioGroup.Props): react_jsx_runtime.JSX.Element;
|
|
514
|
+
declare function DropdownMenuRadioItem({ className, children, inset, ...props }: Menu.RadioItem.Props & {
|
|
515
|
+
inset?: boolean;
|
|
516
|
+
}): react_jsx_runtime.JSX.Element;
|
|
517
|
+
declare function DropdownMenuSeparator({ className, ...props }: Menu.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
518
|
+
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
519
|
+
|
|
520
|
+
type DropdownMenuProps = React$1.ComponentProps<typeof DropdownMenu>;
|
|
521
|
+
type DropdownMenuContentProps = React$1.ComponentProps<typeof DropdownMenuContent>;
|
|
522
|
+
type DropdownMenuItemProps = React$1.ComponentProps<typeof DropdownMenuItem>;
|
|
523
|
+
type DropdownMenuTriggerProps = React$1.ComponentProps<typeof DropdownMenuTrigger>;
|
|
524
|
+
|
|
525
|
+
declare function Menubar({ className, ...props }: Menubar$1.Props): react_jsx_runtime.JSX.Element;
|
|
526
|
+
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenu>): react_jsx_runtime.JSX.Element;
|
|
527
|
+
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuGroup>): react_jsx_runtime.JSX.Element;
|
|
528
|
+
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPortal>): react_jsx_runtime.JSX.Element;
|
|
529
|
+
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuTrigger>): react_jsx_runtime.JSX.Element;
|
|
530
|
+
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
|
|
531
|
+
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuItem>): react_jsx_runtime.JSX.Element;
|
|
532
|
+
declare function MenubarCheckboxItem({ className, children, checked, inset, ...props }: Menu.CheckboxItem.Props & {
|
|
533
|
+
inset?: boolean;
|
|
534
|
+
}): react_jsx_runtime.JSX.Element;
|
|
535
|
+
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuRadioGroup>): react_jsx_runtime.JSX.Element;
|
|
536
|
+
declare function MenubarRadioItem({ className, children, inset, ...props }: Menu.RadioItem.Props & {
|
|
537
|
+
inset?: boolean;
|
|
538
|
+
}): react_jsx_runtime.JSX.Element;
|
|
539
|
+
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuLabel> & {
|
|
540
|
+
inset?: boolean;
|
|
541
|
+
}): react_jsx_runtime.JSX.Element;
|
|
542
|
+
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSeparator>): react_jsx_runtime.JSX.Element;
|
|
543
|
+
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuShortcut>): react_jsx_runtime.JSX.Element;
|
|
544
|
+
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuSub>): react_jsx_runtime.JSX.Element;
|
|
545
|
+
declare function MenubarSubTrigger({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuSubTrigger> & {
|
|
546
|
+
inset?: boolean;
|
|
547
|
+
}): react_jsx_runtime.JSX.Element;
|
|
548
|
+
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSubContent>): react_jsx_runtime.JSX.Element;
|
|
549
|
+
|
|
550
|
+
type MenubarProps = React$1.ComponentProps<typeof Menubar>;
|
|
551
|
+
type MenubarContentProps = React$1.ComponentProps<typeof MenubarContent>;
|
|
552
|
+
type MenubarItemProps = React$1.ComponentProps<typeof MenubarItem>;
|
|
553
|
+
type MenubarTriggerProps = React$1.ComponentProps<typeof MenubarTrigger>;
|
|
554
|
+
|
|
555
|
+
declare const meterTrackVariants: (props?: ({
|
|
556
|
+
color?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
557
|
+
size?: "sm" | "lg" | "md" | "xl" | null | undefined;
|
|
558
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
559
|
+
declare const meterIndicatorVariants: (props?: ({
|
|
560
|
+
color?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
561
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
562
|
+
declare function Meter({ className, ...props }: Meter$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
563
|
+
declare function MeterTrack({ className, color, size, ...props }: Meter$1.Track.Props & VariantProps<typeof meterTrackVariants>): react_jsx_runtime.JSX.Element;
|
|
564
|
+
declare function MeterIndicator({ className, color, ...props }: Meter$1.Indicator.Props & VariantProps<typeof meterIndicatorVariants>): react_jsx_runtime.JSX.Element;
|
|
565
|
+
declare function MeterLabel({ className, ...props }: Meter$1.Label.Props): react_jsx_runtime.JSX.Element;
|
|
566
|
+
declare function MeterValue({ className, ...props }: Meter$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
567
|
+
|
|
568
|
+
type MeterProps = React.ComponentProps<typeof Meter>;
|
|
569
|
+
type MeterTrackProps = React.ComponentProps<typeof MeterTrack>;
|
|
570
|
+
type MeterIndicatorProps = React.ComponentProps<typeof MeterIndicator>;
|
|
571
|
+
|
|
572
|
+
declare function NavigationMenu({ align, className, children, ...props }: NavigationMenu$1.Root.Props & Pick<NavigationMenu$1.Positioner.Props, "align">): react_jsx_runtime.JSX.Element;
|
|
573
|
+
declare function NavigationMenuList({ className, ...props }: React$1.ComponentPropsWithRef<typeof NavigationMenu$1.List>): react_jsx_runtime.JSX.Element;
|
|
574
|
+
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentPropsWithRef<typeof NavigationMenu$1.Item>): react_jsx_runtime.JSX.Element;
|
|
575
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
576
|
+
declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
577
|
+
declare function NavigationMenuContent({ className, ...props }: NavigationMenu$1.Content.Props): react_jsx_runtime.JSX.Element;
|
|
578
|
+
declare function NavigationMenuPositioner({ className, side, sideOffset, align, alignOffset, collisionPadding, collisionAvoidance, ...props }: NavigationMenu$1.Positioner.Props): react_jsx_runtime.JSX.Element;
|
|
579
|
+
declare function NavigationMenuLink({ className, ...props }: NavigationMenu$1.Link.Props): react_jsx_runtime.JSX.Element;
|
|
580
|
+
declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentPropsWithRef<typeof NavigationMenu$1.Icon>): react_jsx_runtime.JSX.Element;
|
|
581
|
+
|
|
582
|
+
type NavigationMenuProps = React$1.ComponentProps<typeof NavigationMenu>;
|
|
583
|
+
type NavigationMenuContentProps = React$1.ComponentProps<typeof NavigationMenuContent>;
|
|
584
|
+
type NavigationMenuItemProps = React$1.ComponentProps<typeof NavigationMenuItem>;
|
|
585
|
+
type NavigationMenuTriggerProps = React$1.ComponentProps<typeof NavigationMenuTrigger>;
|
|
586
|
+
type NavigationMenuLinkProps = React$1.ComponentProps<typeof NavigationMenuLink>;
|
|
587
|
+
|
|
588
|
+
declare function NumberField({ className, ...props }: NumberField$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
589
|
+
declare const numberFieldGroupVariants: (props?: ({
|
|
590
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
591
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
592
|
+
declare function NumberFieldGroup({ className, size, ...props }: NumberField$1.Group.Props & VariantProps<typeof numberFieldGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
593
|
+
declare function NumberFieldInput({ className, ...props }: NumberField$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
594
|
+
declare function NumberFieldIncrement({ className, children, ...props }: NumberField$1.Increment.Props): react_jsx_runtime.JSX.Element;
|
|
595
|
+
declare function NumberFieldDecrement({ className, children, ...props }: NumberField$1.Decrement.Props): react_jsx_runtime.JSX.Element;
|
|
596
|
+
declare function NumberFieldSteppers({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
597
|
+
declare function NumberFieldScrubArea({ className, ...props }: NumberField$1.ScrubArea.Props): react_jsx_runtime.JSX.Element;
|
|
598
|
+
declare function NumberFieldScrubAreaCursor({ className, ...props }: NumberField$1.ScrubAreaCursor.Props): react_jsx_runtime.JSX.Element;
|
|
599
|
+
|
|
600
|
+
type NumberFieldProps = React$1.ComponentProps<typeof NumberField>;
|
|
601
|
+
type NumberFieldGroupProps = React$1.ComponentProps<typeof NumberFieldGroup>;
|
|
602
|
+
type NumberFieldInputProps = React$1.ComponentProps<typeof NumberFieldInput>;
|
|
603
|
+
|
|
604
|
+
declare function Popover({ ...props }: Popover$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
605
|
+
declare function PopoverTrigger({ ...props }: Popover$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
606
|
+
declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
607
|
+
declare function PopoverHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
608
|
+
declare function PopoverTitle({ className, ...props }: Popover$1.Title.Props): react_jsx_runtime.JSX.Element;
|
|
609
|
+
declare function PopoverDescription({ className, ...props }: Popover$1.Description.Props): react_jsx_runtime.JSX.Element;
|
|
610
|
+
|
|
611
|
+
type PopoverProps = React$1.ComponentProps<typeof Popover>;
|
|
612
|
+
type PopoverContentProps = React$1.ComponentProps<typeof PopoverContent>;
|
|
613
|
+
type PopoverTriggerProps = React$1.ComponentProps<typeof PopoverTrigger>;
|
|
614
|
+
|
|
615
|
+
declare function HoverCard({ ...props }: PreviewCard.Root.Props): react_jsx_runtime.JSX.Element;
|
|
616
|
+
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
617
|
+
declare function HoverCardContent({ className, side, sideOffset, align, alignOffset, ...props }: PreviewCard.Popup.Props & Pick<PreviewCard.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
618
|
+
|
|
619
|
+
type HoverCardProps = React.ComponentProps<typeof HoverCard>;
|
|
620
|
+
type HoverCardContentProps = React.ComponentProps<typeof HoverCardContent>;
|
|
621
|
+
type HoverCardTriggerProps = React.ComponentProps<typeof HoverCardTrigger>;
|
|
622
|
+
|
|
623
|
+
declare const progressTrackVariants: (props?: ({
|
|
624
|
+
color?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
625
|
+
size?: "sm" | "lg" | "md" | "xl" | null | undefined;
|
|
626
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
627
|
+
declare const progressIndicatorVariants: (props?: ({
|
|
628
|
+
color?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
629
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
630
|
+
declare function Progress({ className, children, value, color, size, ...props }: Progress$1.Root.Props & VariantProps<typeof progressIndicatorVariants> & VariantProps<typeof progressTrackVariants>): react_jsx_runtime.JSX.Element;
|
|
631
|
+
declare function ProgressTrack({ className, color, size, ...props }: Progress$1.Track.Props & VariantProps<typeof progressTrackVariants>): react_jsx_runtime.JSX.Element;
|
|
632
|
+
declare function ProgressIndicator({ className, color, ...props }: Progress$1.Indicator.Props & VariantProps<typeof progressIndicatorVariants>): react_jsx_runtime.JSX.Element;
|
|
633
|
+
declare function ProgressLabel({ className, ...props }: Progress$1.Label.Props): react_jsx_runtime.JSX.Element;
|
|
634
|
+
declare function ProgressValue({ className, ...props }: Progress$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
635
|
+
|
|
636
|
+
type ProgressProps = React.ComponentProps<typeof Progress>;
|
|
637
|
+
type ProgressTrackProps = React.ComponentProps<typeof ProgressTrack>;
|
|
638
|
+
type ProgressIndicatorProps = React.ComponentProps<typeof ProgressIndicator>;
|
|
639
|
+
|
|
640
|
+
declare function RadioGroup({ className, ...props }: RadioGroup$1.Props): react_jsx_runtime.JSX.Element;
|
|
641
|
+
declare function RadioGroupItem({ className, ...props }: Radio.Root.Props): react_jsx_runtime.JSX.Element;
|
|
642
|
+
|
|
643
|
+
type RadioGroupProps = React.ComponentProps<typeof RadioGroup>;
|
|
644
|
+
type RadioGroupItemProps = React.ComponentProps<typeof RadioGroupItem>;
|
|
645
|
+
|
|
646
|
+
declare function ResizablePanelGroup({ className, orientation, ...props }: GroupProps): react_jsx_runtime.JSX.Element;
|
|
647
|
+
declare function ResizablePanel({ className, ...props }: PanelProps): react_jsx_runtime.JSX.Element;
|
|
648
|
+
declare function ResizableHandle({ withHandle, className, ...props }: SeparatorProps$1 & {
|
|
649
|
+
withHandle?: boolean;
|
|
650
|
+
}): react_jsx_runtime.JSX.Element;
|
|
651
|
+
|
|
652
|
+
type ResizablePanelGroupProps = React.ComponentProps<typeof ResizablePanelGroup>;
|
|
653
|
+
type ResizablePanelProps = React.ComponentProps<typeof ResizablePanel>;
|
|
654
|
+
type ResizableHandleProps = React.ComponentProps<typeof ResizableHandle>;
|
|
655
|
+
|
|
656
|
+
declare const alignMap: {
|
|
657
|
+
readonly start: "items-start";
|
|
658
|
+
readonly center: "items-center";
|
|
659
|
+
readonly end: "items-end";
|
|
660
|
+
readonly stretch: "items-stretch";
|
|
661
|
+
readonly baseline: "items-baseline";
|
|
662
|
+
};
|
|
663
|
+
declare const justifyMap: {
|
|
664
|
+
readonly start: "justify-start";
|
|
665
|
+
readonly center: "justify-center";
|
|
666
|
+
readonly end: "justify-end";
|
|
667
|
+
readonly between: "justify-between";
|
|
668
|
+
readonly around: "justify-around";
|
|
669
|
+
readonly evenly: "justify-evenly";
|
|
670
|
+
};
|
|
671
|
+
declare function Row({ className, gap, align, justify, wrap, children, ...props }: React.ComponentProps<"div"> & {
|
|
672
|
+
gap?: number;
|
|
673
|
+
align?: keyof typeof alignMap;
|
|
674
|
+
justify?: keyof typeof justifyMap;
|
|
675
|
+
wrap?: boolean;
|
|
676
|
+
}): react_jsx_runtime.JSX.Element;
|
|
677
|
+
|
|
678
|
+
type RowProps = React.ComponentProps<typeof Row>;
|
|
679
|
+
|
|
680
|
+
declare function ScrollArea({ className, children, ...props }: ScrollArea$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
681
|
+
declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
683
|
+
type ScrollAreaProps = React.ComponentProps<typeof ScrollArea>;
|
|
684
|
+
type ScrollBarProps = React.ComponentProps<typeof ScrollBar>;
|
|
685
|
+
|
|
686
|
+
declare const segmentedControlVariants: (props?: ({
|
|
687
|
+
size?: "sm" | "md" | null | undefined;
|
|
688
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
689
|
+
declare function SegmentedControl({ className, size, ...props }: RadioGroup$1.Props & VariantProps<typeof segmentedControlVariants>): react_jsx_runtime.JSX.Element;
|
|
690
|
+
declare function SegmentedControlItem({ className, children, ...props }: Radio.Root.Props): react_jsx_runtime.JSX.Element;
|
|
691
|
+
|
|
692
|
+
type SegmentedControlProps = React.ComponentProps<typeof SegmentedControl>;
|
|
693
|
+
type SegmentedControlItemProps = React.ComponentProps<typeof SegmentedControlItem>;
|
|
694
|
+
|
|
695
|
+
declare const selectTriggerVariants: (props?: ({
|
|
696
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
697
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
698
|
+
declare function Select({ ...props }: Select$1.Root.Props<any>): react_jsx_runtime.JSX.Element;
|
|
699
|
+
declare function SelectGroup({ className, ...props }: Select$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
700
|
+
declare function SelectValue({ className, ...props }: Select$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
701
|
+
declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>): react_jsx_runtime.JSX.Element;
|
|
702
|
+
declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): react_jsx_runtime.JSX.Element;
|
|
703
|
+
declare function SelectLabel({ className, ...props }: Select$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
704
|
+
declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
705
|
+
declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
706
|
+
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
|
|
707
|
+
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
|
|
708
|
+
|
|
709
|
+
type SelectProps = React$1.ComponentProps<typeof Select>;
|
|
710
|
+
type SelectContentProps = React$1.ComponentProps<typeof SelectContent>;
|
|
711
|
+
type SelectItemProps = React$1.ComponentProps<typeof SelectItem>;
|
|
712
|
+
type SelectTriggerProps = React$1.ComponentProps<typeof SelectTrigger>;
|
|
713
|
+
|
|
714
|
+
declare const sectionVariants: (props?: ({
|
|
715
|
+
background?: "none" | "default" | "surface" | "surface-secondary" | "surface-tertiary" | "muted" | "primary" | null | undefined;
|
|
716
|
+
padding?: "none" | "sm" | "lg" | "md" | "xl" | null | undefined;
|
|
717
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
718
|
+
declare const contentMaxWidth: {
|
|
719
|
+
readonly sm: "max-w-sm";
|
|
720
|
+
readonly md: "max-w-md";
|
|
721
|
+
readonly lg: "max-w-lg";
|
|
722
|
+
readonly xl: "max-w-xl";
|
|
723
|
+
readonly "2xl": "max-w-2xl";
|
|
724
|
+
readonly "4xl": "max-w-4xl";
|
|
725
|
+
readonly "5xl": "max-w-5xl";
|
|
726
|
+
readonly full: "max-w-full";
|
|
727
|
+
};
|
|
728
|
+
declare function Section({ className, background, padding, maxWidth, centered, children, ...props }: React.ComponentProps<"section"> & VariantProps<typeof sectionVariants> & {
|
|
729
|
+
maxWidth?: keyof typeof contentMaxWidth;
|
|
730
|
+
centered?: boolean;
|
|
731
|
+
}): react_jsx_runtime.JSX.Element;
|
|
732
|
+
|
|
733
|
+
type SectionProps = React.ComponentProps<typeof Section>;
|
|
734
|
+
|
|
735
|
+
declare function Separator({ className, orientation, ...props }: Separator$1.Props): react_jsx_runtime.JSX.Element;
|
|
736
|
+
|
|
737
|
+
type SeparatorProps = React.ComponentProps<typeof Separator>;
|
|
738
|
+
|
|
739
|
+
declare function Skeleton({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
740
|
+
|
|
741
|
+
type SkeletonProps = React$1.ComponentProps<typeof Skeleton>;
|
|
742
|
+
|
|
743
|
+
declare const spinnerVariants: (props?: ({
|
|
744
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
745
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
746
|
+
declare function Spinner({ className, size, ...props }: React$1.ComponentProps<"svg"> & VariantProps<typeof spinnerVariants>): react_jsx_runtime.JSX.Element;
|
|
747
|
+
|
|
748
|
+
type SpinnerProps = React$1.ComponentProps<typeof Spinner>;
|
|
749
|
+
|
|
750
|
+
declare function Slider({ className, defaultValue, value: controlledValue, min, max, onValueChange, ...props }: Slider$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
751
|
+
declare function SliderControl({ className, ...props }: Slider$1.Control.Props): react_jsx_runtime.JSX.Element;
|
|
752
|
+
declare function SliderTrack({ className, ...props }: Slider$1.Track.Props): react_jsx_runtime.JSX.Element;
|
|
753
|
+
declare function SliderIndicator({ className, ...props }: Slider$1.Indicator.Props): react_jsx_runtime.JSX.Element;
|
|
754
|
+
declare function SliderThumb({ className, ...props }: Slider$1.Thumb.Props): react_jsx_runtime.JSX.Element;
|
|
755
|
+
declare function SliderOutput({ className, ...props }: Slider$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
756
|
+
|
|
757
|
+
type SliderProps = React__default.ComponentProps<typeof Slider>;
|
|
758
|
+
type SliderTrackProps = React__default.ComponentProps<typeof SliderTrack>;
|
|
759
|
+
type SliderThumbProps = React__default.ComponentProps<typeof SliderThumb>;
|
|
760
|
+
|
|
761
|
+
type SwitchSize = "sm" | "md" | "lg";
|
|
762
|
+
declare const switchVariants: (props?: ({
|
|
763
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
764
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
765
|
+
declare function Switch({ className, children, size, ...props }: Switch$1.Root.Props & {
|
|
766
|
+
size?: SwitchSize;
|
|
767
|
+
}): react_jsx_runtime.JSX.Element;
|
|
768
|
+
declare function SwitchTrack({ className, size: sizeProp, children, ...props }: React__default.ComponentProps<"div"> & VariantProps<typeof switchVariants>): react_jsx_runtime.JSX.Element;
|
|
769
|
+
declare function SwitchThumb({ className, children, ...props }: Switch$1.Thumb.Props): react_jsx_runtime.JSX.Element;
|
|
770
|
+
declare function SwitchIcon({ className, ...props }: React__default.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
771
|
+
|
|
772
|
+
type SwitchProps = React__default.ComponentProps<typeof Switch>;
|
|
773
|
+
type SwitchTrackProps = React__default.ComponentProps<typeof SwitchTrack>;
|
|
774
|
+
type SwitchThumbProps = React__default.ComponentProps<typeof SwitchThumb>;
|
|
775
|
+
|
|
776
|
+
declare function Tabs({ className, orientation, ...props }: Tabs$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
777
|
+
declare const tabsListVariants: (props?: ({
|
|
778
|
+
variant?: "line" | "default" | null | undefined;
|
|
779
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
780
|
+
declare function TabsList({ className, variant, ...props }: Tabs$1.List.Props & VariantProps<typeof tabsListVariants>): react_jsx_runtime.JSX.Element;
|
|
781
|
+
declare function TabsTrigger({ className, ...props }: Tabs$1.Tab.Props): react_jsx_runtime.JSX.Element;
|
|
782
|
+
declare function TabsContent({ className, ...props }: Tabs$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
783
|
+
|
|
784
|
+
type TabsProps = React.ComponentProps<typeof Tabs>;
|
|
785
|
+
type TabsListProps = React.ComponentProps<typeof TabsList>;
|
|
786
|
+
type TabsTriggerProps = React.ComponentProps<typeof TabsTrigger>;
|
|
787
|
+
type TabsContentProps = React.ComponentProps<typeof TabsContent>;
|
|
788
|
+
|
|
789
|
+
declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
790
|
+
|
|
791
|
+
type TextareaProps = React$1.ComponentProps<typeof Textarea>;
|
|
792
|
+
|
|
793
|
+
declare function TextField({ className, ...props }: Field$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
794
|
+
declare const inputVariants: (props?: ({
|
|
795
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
796
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
797
|
+
declare function Input({ className, size, ...props }: Omit<Input$2.Props, "size"> & VariantProps<typeof inputVariants>): react_jsx_runtime.JSX.Element;
|
|
798
|
+
declare function TextArea({ className, ...props }: React.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
799
|
+
interface ProtoTextFieldProps extends Field$1.Root.Props {
|
|
800
|
+
label?: string;
|
|
801
|
+
description?: string;
|
|
802
|
+
errorMessage?: string;
|
|
803
|
+
textArea?: boolean;
|
|
804
|
+
inputProps?: Omit<Input$2.Props, "size"> & VariantProps<typeof inputVariants>;
|
|
805
|
+
textAreaProps?: React.ComponentProps<"textarea">;
|
|
806
|
+
}
|
|
807
|
+
declare function ProtoTextField({ label, description, errorMessage, textArea, inputProps, textAreaProps, className, children, ...props }: ProtoTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
808
|
+
|
|
809
|
+
type TextFieldProps = React.ComponentProps<typeof TextField>;
|
|
810
|
+
|
|
811
|
+
type TextFieldInputProps = React.ComponentProps<typeof Input>;
|
|
812
|
+
|
|
813
|
+
declare function Toaster(): react_jsx_runtime.JSX.Element;
|
|
814
|
+
declare function ToastProvider({ children }: {
|
|
815
|
+
children: React$1.ReactNode;
|
|
816
|
+
}): react_jsx_runtime.JSX.Element;
|
|
817
|
+
interface ToastOptions {
|
|
818
|
+
description?: React$1.ReactNode;
|
|
819
|
+
action?: {
|
|
820
|
+
label: string;
|
|
821
|
+
onClick: () => void;
|
|
822
|
+
};
|
|
823
|
+
duration?: number;
|
|
824
|
+
}
|
|
825
|
+
declare function toast(title: string, opts?: ToastOptions): string;
|
|
826
|
+
declare namespace toast {
|
|
827
|
+
var success: (title: string, opts?: ToastOptions) => string;
|
|
828
|
+
var error: (title: string, opts?: ToastOptions) => string;
|
|
829
|
+
var warning: (title: string, opts?: ToastOptions) => string;
|
|
830
|
+
var info: (title: string, opts?: ToastOptions) => string;
|
|
831
|
+
var promise: <T>(promise: Promise<T>, opts: ToastManagerPromiseOptions<T, object>) => Promise<T>;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
type ToastProviderProps = React$1.ComponentProps<typeof ToastProvider>;
|
|
835
|
+
|
|
836
|
+
declare const toggleVariants: (props?: ({
|
|
837
|
+
variant?: "default" | "outline" | null | undefined;
|
|
838
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
839
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
840
|
+
declare function Toggle({ className, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
841
|
+
|
|
842
|
+
type ToggleProps = React.ComponentProps<typeof Toggle>;
|
|
843
|
+
|
|
844
|
+
declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroup$1.Props & VariantProps<typeof toggleVariants> & {
|
|
845
|
+
spacing?: number;
|
|
846
|
+
orientation?: "horizontal" | "vertical";
|
|
847
|
+
}): react_jsx_runtime.JSX.Element;
|
|
848
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
849
|
+
|
|
850
|
+
type ToggleGroupProps = React$1.ComponentProps<typeof ToggleGroup>;
|
|
851
|
+
type ToggleGroupItemProps = React$1.ComponentProps<typeof ToggleGroupItem>;
|
|
852
|
+
|
|
853
|
+
declare function Toolbar({ className, ...props }: Toolbar$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
854
|
+
declare function ToolbarButton({ className, ...props }: Toolbar$1.Button.Props): react_jsx_runtime.JSX.Element;
|
|
855
|
+
declare function ToolbarLink({ className, ...props }: Toolbar$1.Link.Props): react_jsx_runtime.JSX.Element;
|
|
856
|
+
declare function ToolbarGroup({ className, ...props }: Toolbar$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
857
|
+
declare function ToolbarSeparator({ className, orientation, ...props }: Toolbar$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
858
|
+
declare function ToolbarInput({ className, ...props }: Toolbar$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
859
|
+
|
|
860
|
+
type ToolbarProps = React.ComponentProps<typeof Toolbar>;
|
|
861
|
+
type ToolbarButtonProps = React.ComponentProps<typeof ToolbarButton>;
|
|
862
|
+
|
|
863
|
+
declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
|
|
864
|
+
declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
865
|
+
declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
866
|
+
declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: Tooltip$1.Popup.Props & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
|
|
867
|
+
|
|
868
|
+
type TooltipProps = React.ComponentProps<typeof Tooltip>;
|
|
869
|
+
type TooltipContentProps = React.ComponentProps<typeof TooltipContent>;
|
|
870
|
+
type TooltipTriggerProps = React.ComponentProps<typeof TooltipTrigger>;
|
|
871
|
+
|
|
872
|
+
interface TreeViewProps extends React$1.ComponentProps<"div"> {
|
|
873
|
+
/** Controlled expanded keys */
|
|
874
|
+
expandedKeys?: Set<string>;
|
|
875
|
+
/** Callback when expanded keys change */
|
|
876
|
+
onExpandedKeysChange?: (keys: Set<string>) => void;
|
|
877
|
+
/** Default expanded keys */
|
|
878
|
+
defaultExpandedKeys?: Set<string>;
|
|
879
|
+
/** Expand all by default */
|
|
880
|
+
defaultExpandAll?: boolean;
|
|
881
|
+
}
|
|
882
|
+
declare function TreeView({ className, expandedKeys: controlledExpandedKeys, onExpandedKeysChange, defaultExpandedKeys, defaultExpandAll, children, ...props }: TreeViewProps): react_jsx_runtime.JSX.Element;
|
|
883
|
+
interface TreeViewItemProps extends React$1.ComponentProps<"div"> {
|
|
884
|
+
/** Unique key for this item */
|
|
885
|
+
itemKey: string;
|
|
886
|
+
/** Label content for the item */
|
|
887
|
+
label: React$1.ReactNode;
|
|
888
|
+
/** Depth level (auto-managed but can override) */
|
|
889
|
+
depth?: number;
|
|
890
|
+
}
|
|
891
|
+
declare function TreeViewItem({ className, itemKey, label, depth: depthProp, children, ...props }: TreeViewItemProps): react_jsx_runtime.JSX.Element;
|
|
892
|
+
interface TreeViewLeafProps extends React$1.ComponentProps<"div"> {
|
|
893
|
+
/** Depth level */
|
|
894
|
+
depth?: number;
|
|
895
|
+
}
|
|
896
|
+
declare function TreeViewLeaf({ className, depth: depthProp, children, ...props }: TreeViewLeafProps): react_jsx_runtime.JSX.Element;
|
|
897
|
+
interface TreeViewGroupProps extends React$1.ComponentProps<"div"> {
|
|
898
|
+
}
|
|
899
|
+
declare function TreeViewGroup({ className, children, ...props }: TreeViewGroupProps): react_jsx_runtime.JSX.Element;
|
|
900
|
+
|
|
901
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
902
|
+
|
|
903
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, type AlertDialogProps, AlertDialogTitle, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, Autocomplete, AutocompleteArrow, AutocompleteBackdrop, AutocompleteCollection, AutocompleteContent, type AutocompleteContentProps, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteIcon, AutocompleteInput, type AutocompleteInputProps, AutocompleteItem, type AutocompleteItemProps, AutocompleteList, type AutocompleteProps, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarBadge, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, CheckboxControl, CheckboxGroup, type CheckboxGroupProps, CheckboxIndicator, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, ColorPicker, ColorPickerArea, ColorPickerAreaThumb, ColorPickerContent, ColorPickerEyeDropper, ColorPickerInput, type ColorPickerProps, ColorPickerSlider, ColorPickerSliderThumb, ColorPickerSwatch, ColorPickerSwatches, ColorPickerTrigger, Column, type ColumnProps, Columns, type ColumnsProps, Combobox, ComboboxArrow, ComboboxBackdrop, ComboboxChip, ComboboxChipRemove, ComboboxChips, ComboboxChipsInput, ComboboxClear, ComboboxCollection, ComboboxContent, type ComboboxContentProps, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxIcon, ComboboxInput, type ComboboxInputProps, ComboboxItem, type ComboboxItemProps, ComboboxLabel, ComboboxList, type ComboboxProps, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, CommandPalette, CommandPaletteContent, type CommandPaletteProps, CommandSeparator, type CommandSeparatorProps, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, ContextMenuPortal, type ContextMenuProps, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type ContextMenuTriggerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerClose, DrawerContent, type DrawerContentProps, DrawerDescription, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuPortal, type DropdownMenuProps, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownMenuTriggerProps, Field, FieldContent, FieldDescription, FieldError, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldProps, FieldSeparator, FieldSet, FieldTitle, Fieldset, FieldsetLegend, type FieldsetLegendProps, type FieldsetProps, Form, type FormProps, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, Input$1 as Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, InputGroupInput, type InputGroupProps, InputGroupText, InputGroupTextarea, type InputProps, Label, type LabelProps, Menubar, MenubarCheckboxItem, MenubarContent, type MenubarContentProps, MenubarGroup, MenubarItem, type MenubarItemProps, MenubarLabel, MenubarMenu, MenubarPortal, type MenubarProps, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, type MenubarTriggerProps, Meter, MeterIndicator, type MeterIndicatorProps, MeterLabel, type MeterProps, MeterTrack, type MeterTrackProps, MeterValue, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, NavigationMenuPositioner, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NumberField, NumberFieldDecrement, NumberFieldGroup, type NumberFieldGroupProps, NumberFieldIncrement, NumberFieldInput, type NumberFieldInputProps, type NumberFieldProps, NumberFieldScrubArea, NumberFieldScrubAreaCursor, NumberFieldSteppers, Popover, PopoverContent, type PopoverContentProps, PopoverDescription, PopoverHeader, type PopoverProps, PopoverTitle, PopoverTrigger, type PopoverTriggerProps, Progress, ProgressIndicator, type ProgressIndicatorProps, ProgressLabel, type ProgressProps, ProgressTrack, type ProgressTrackProps, ProgressValue, ProtoTextField, type ProtoTextFieldProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, Row, type RowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Section, type SectionProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, type SeparatorProps, Skeleton, type SkeletonProps, Slider, SliderControl, SliderIndicator, SliderOutput, type SliderProps, SliderThumb, type SliderThumbProps, SliderTrack, type SliderTrackProps, Spinner, type SpinnerProps, Switch, SwitchIcon, type SwitchProps, SwitchThumb, type SwitchThumbProps, SwitchTrack, type SwitchTrackProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TextArea, TextField, Input as TextFieldInput, type TextFieldInputProps, type TextFieldProps, Textarea, type TextareaProps, type ToastOptions, ToastProvider, type ToastProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Toolbar, ToolbarButton, type ToolbarButtonProps, ToolbarGroup, ToolbarInput, ToolbarLink, type ToolbarProps, ToolbarSeparator, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipTrigger, type TooltipTriggerProps, TreeView, TreeViewGroup, type TreeViewGroupProps, TreeViewItem, type TreeViewItemProps, TreeViewLeaf, type TreeViewLeafProps, type TreeViewProps, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, drawerVariants, fieldGroupVariants, fieldVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputVariants, meterIndicatorVariants, meterTrackVariants, navigationMenuTriggerStyle, numberFieldGroupVariants, progressIndicatorVariants, progressTrackVariants, sectionVariants, segmentedControlVariants, selectTriggerVariants, sheetVariants, spinnerVariants, switchVariants, tabsListVariants, toast, toggleVariants, useAutocompleteFilter, useComboboxAnchor, useComboboxFilter };
|