shru-design-system 0.0.8 → 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/README.md +35 -107
- package/dist/index.d.mts +55 -0
- package/dist/index.d.ts +34 -1028
- package/dist/index.js +241 -7839
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +364 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +37 -80
- package/apps/design-system/styles/globals.css +0 -402
- package/dist/index.cjs +0 -8452
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -1049
- package/scripts/build-css.js +0 -231
- package/scripts/copy-globals.js +0 -106
- package/scripts/copy-tokens.js +0 -62
- package/src/tokens/base.json +0 -161
- package/src/tokens/palettes.json +0 -294
- package/src/tokens/themes/animation/brisk.json +0 -14
- package/src/tokens/themes/animation/gentle.json +0 -14
- package/src/tokens/themes/color/dark.json +0 -38
- package/src/tokens/themes/color/white.json +0 -38
- package/src/tokens/themes/custom/brand.json +0 -13
- package/src/tokens/themes/custom/minimal.json +0 -16
- package/src/tokens/themes/density/comfortable.json +0 -19
- package/src/tokens/themes/density/compact.json +0 -19
- package/src/tokens/themes/shape/sharp.json +0 -11
- package/src/tokens/themes/shape/smooth.json +0 -11
- package/src/tokens/themes/typography/sans.json +0 -25
- package/src/tokens/themes/typography/serif.json +0 -25
package/dist/index.d.cts
DELETED
|
@@ -1,1049 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
3
|
-
import * as React$1 from 'react';
|
|
4
|
-
import { ComponentProps } from 'react';
|
|
5
|
-
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
7
|
-
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
8
|
-
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
9
|
-
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
10
|
-
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
11
|
-
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
12
|
-
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
13
|
-
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
14
|
-
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
15
|
-
import { OTPInput } from 'input-otp';
|
|
16
|
-
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
17
|
-
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
18
|
-
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
19
|
-
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
20
|
-
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
21
|
-
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
22
|
-
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
23
|
-
import { Command as Command$1 } from 'cmdk';
|
|
24
|
-
import { DayPicker, DayButton } from 'react-day-picker';
|
|
25
|
-
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
26
|
-
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
27
|
-
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
28
|
-
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
29
|
-
import * as react_hook_form from 'react-hook-form';
|
|
30
|
-
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
31
|
-
import { Slot } from '@radix-ui/react-slot';
|
|
32
|
-
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
33
|
-
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
34
|
-
import { Drawer as Drawer$1 } from 'vaul';
|
|
35
|
-
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
36
|
-
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
37
|
-
import { ToasterProps } from 'sonner';
|
|
38
|
-
import * as RechartsPrimitive from 'recharts';
|
|
39
|
-
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
40
|
-
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
41
|
-
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
42
|
-
import { LucideIcon } from 'lucide-react';
|
|
43
|
-
import * as src from 'src';
|
|
44
|
-
|
|
45
|
-
declare const buttonVariants: (props?: ({
|
|
46
|
-
readonly variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
47
|
-
readonly size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
48
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
49
|
-
declare function Button({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
50
|
-
asChild?: boolean;
|
|
51
|
-
}): react_jsx_runtime.JSX.Element;
|
|
52
|
-
|
|
53
|
-
declare function ButtonShowcase(): react_jsx_runtime.JSX.Element;
|
|
54
|
-
|
|
55
|
-
declare const textInputTypes: readonly ["text", "email", "password", "number", "tel", "url", "search"];
|
|
56
|
-
declare function TextInput({ className, type, ...props }: React$1.ComponentProps<"input"> & {
|
|
57
|
-
type?: typeof textInputTypes[number];
|
|
58
|
-
}): react_jsx_runtime.JSX.Element;
|
|
59
|
-
|
|
60
|
-
declare function TextInputShowcase(): react_jsx_runtime.JSX.Element;
|
|
61
|
-
|
|
62
|
-
declare const badgeVariants: (props?: ({
|
|
63
|
-
readonly variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
64
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
65
|
-
declare function Badge({ className, variant, asChild, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
66
|
-
asChild?: boolean;
|
|
67
|
-
}): react_jsx_runtime.JSX.Element;
|
|
68
|
-
|
|
69
|
-
declare function BadgeShowcase(): react_jsx_runtime.JSX.Element;
|
|
70
|
-
|
|
71
|
-
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
72
|
-
|
|
73
|
-
declare function LabelShowcase(): react_jsx_runtime.JSX.Element;
|
|
74
|
-
|
|
75
|
-
declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
76
|
-
|
|
77
|
-
declare function TextareaShowcase(): react_jsx_runtime.JSX.Element;
|
|
78
|
-
|
|
79
|
-
declare const separatorOrientations: readonly ["horizontal", "vertical"];
|
|
80
|
-
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root> & {
|
|
81
|
-
orientation?: typeof separatorOrientations[number];
|
|
82
|
-
}): react_jsx_runtime.JSX.Element;
|
|
83
|
-
|
|
84
|
-
declare function SeparatorShowcase(): react_jsx_runtime.JSX.Element;
|
|
85
|
-
|
|
86
|
-
declare function Checkbox({ className, ...props }: React$1.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
87
|
-
|
|
88
|
-
declare function CheckboxShowcase(): react_jsx_runtime.JSX.Element;
|
|
89
|
-
|
|
90
|
-
declare function Switch({ className, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
91
|
-
|
|
92
|
-
declare function SwitchShowcase(): react_jsx_runtime.JSX.Element;
|
|
93
|
-
|
|
94
|
-
declare function Radio({ className, ...props }: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
95
|
-
declare function RadioItem({ className, ...props }: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
96
|
-
|
|
97
|
-
declare function RadioShowcase(): react_jsx_runtime.JSX.Element;
|
|
98
|
-
|
|
99
|
-
declare function Skeleton({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
100
|
-
|
|
101
|
-
declare function SkeletonShowcase(): react_jsx_runtime.JSX.Element;
|
|
102
|
-
|
|
103
|
-
declare function Progress({ className, value, ...props }: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
104
|
-
|
|
105
|
-
declare function ProgressShowcase(): react_jsx_runtime.JSX.Element;
|
|
106
|
-
|
|
107
|
-
declare function Spinner({ className, ...props }: React$1.ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
108
|
-
|
|
109
|
-
declare function SpinnerShowcase(): react_jsx_runtime.JSX.Element;
|
|
110
|
-
|
|
111
|
-
declare function Avatar({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
112
|
-
declare function AvatarImage({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime.JSX.Element;
|
|
113
|
-
declare function AvatarFallback({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime.JSX.Element;
|
|
114
|
-
|
|
115
|
-
declare function AvatarShowcase(): react_jsx_runtime.JSX.Element;
|
|
116
|
-
|
|
117
|
-
declare function Empty({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
118
|
-
declare function EmptyHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
119
|
-
declare const emptyMediaVariants: (props?: ({
|
|
120
|
-
readonly variant?: "default" | "icon" | null | undefined;
|
|
121
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
122
|
-
declare function EmptyMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
123
|
-
declare function EmptyTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
124
|
-
declare function EmptyDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
125
|
-
declare function EmptyContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
126
|
-
|
|
127
|
-
declare function EmptyShowcase(): react_jsx_runtime.JSX.Element;
|
|
128
|
-
|
|
129
|
-
declare const sliderOrientations: readonly ["horizontal", "vertical"];
|
|
130
|
-
declare function Slider({ className, defaultValue, value, min, max, orientation, ...props }: React$1.ComponentProps<typeof SliderPrimitive.Root> & {
|
|
131
|
-
orientation?: typeof sliderOrientations[number];
|
|
132
|
-
}): react_jsx_runtime.JSX.Element;
|
|
133
|
-
|
|
134
|
-
declare function SliderShowcase(): react_jsx_runtime.JSX.Element;
|
|
135
|
-
|
|
136
|
-
declare const toggleVariants: (props?: ({
|
|
137
|
-
readonly variant?: "default" | "outline" | null | undefined;
|
|
138
|
-
readonly size?: "default" | "sm" | "lg" | null | undefined;
|
|
139
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
140
|
-
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
141
|
-
|
|
142
|
-
declare function ToggleShowcase(): react_jsx_runtime.JSX.Element;
|
|
143
|
-
|
|
144
|
-
declare const alertVariants: (props?: ({
|
|
145
|
-
readonly variant?: "default" | "destructive" | null | undefined;
|
|
146
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
147
|
-
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
148
|
-
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
149
|
-
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
150
|
-
|
|
151
|
-
declare function AlertShowcase(): react_jsx_runtime.JSX.Element;
|
|
152
|
-
|
|
153
|
-
declare function InputOTP({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
154
|
-
containerClassName?: string;
|
|
155
|
-
}): react_jsx_runtime.JSX.Element;
|
|
156
|
-
declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
157
|
-
declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentProps<"div"> & {
|
|
158
|
-
index: number;
|
|
159
|
-
}): react_jsx_runtime.JSX.Element;
|
|
160
|
-
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
161
|
-
|
|
162
|
-
declare function InputOTPShowcase(): react_jsx_runtime.JSX.Element;
|
|
163
|
-
|
|
164
|
-
declare function Kbd({ className, ...props }: React$1.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
|
|
165
|
-
declare function KbdGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
166
|
-
|
|
167
|
-
declare function KbdShowcase(): react_jsx_runtime.JSX.Element;
|
|
168
|
-
|
|
169
|
-
declare const textVariants: readonly ["default", "muted", "small", "large"];
|
|
170
|
-
declare const textAsElements: readonly ["p", "span", "div"];
|
|
171
|
-
interface TextProps$1 extends React$1.HTMLAttributes<HTMLParagraphElement> {
|
|
172
|
-
variant?: typeof textVariants[number];
|
|
173
|
-
as?: typeof textAsElements[number];
|
|
174
|
-
}
|
|
175
|
-
declare function Text$1({ className, variant, as: Component, ...props }: TextProps$1): react_jsx_runtime.JSX.Element;
|
|
176
|
-
declare function TextShowcase(): react_jsx_runtime.JSX.Element;
|
|
177
|
-
|
|
178
|
-
interface ImageProps extends React$1.ImgHTMLAttributes<HTMLImageElement> {
|
|
179
|
-
fallback?: React$1.ReactNode;
|
|
180
|
-
src?: string;
|
|
181
|
-
alt?: string;
|
|
182
|
-
width?: number | string;
|
|
183
|
-
height?: number | string;
|
|
184
|
-
loading?: "lazy" | "eager";
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* Image component - uses standard HTML img tag for library compatibility.
|
|
188
|
-
*
|
|
189
|
-
* For Next.js optimization, use next/image directly in your Next.js app.
|
|
190
|
-
* This component is library-compatible and works in any React environment.
|
|
191
|
-
*/
|
|
192
|
-
declare function Image({ className, fallback, alt, src, width, height, loading, ...props }: ImageProps): react_jsx_runtime.JSX.Element;
|
|
193
|
-
declare function ImageShowcase(): react_jsx_runtime.JSX.Element;
|
|
194
|
-
|
|
195
|
-
interface UploadProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
196
|
-
onUpload?: (files: FileList | null) => void;
|
|
197
|
-
}
|
|
198
|
-
declare function Upload({ className, onUpload, onChange, ...props }: UploadProps): react_jsx_runtime.JSX.Element;
|
|
199
|
-
declare function UploadShowcase(): react_jsx_runtime.JSX.Element;
|
|
200
|
-
|
|
201
|
-
interface ErrorBoundaryProps {
|
|
202
|
-
children: React$1.ReactNode;
|
|
203
|
-
fallback?: React$1.ReactNode;
|
|
204
|
-
className?: string;
|
|
205
|
-
}
|
|
206
|
-
interface ErrorBoundaryState {
|
|
207
|
-
hasError: boolean;
|
|
208
|
-
error: Error | null;
|
|
209
|
-
}
|
|
210
|
-
declare class ErrorBoundary extends React$1.Component<ErrorBoundaryProps, ErrorBoundaryState> {
|
|
211
|
-
constructor(props: ErrorBoundaryProps);
|
|
212
|
-
static getDerivedStateFromError(error: Error): ErrorBoundaryState;
|
|
213
|
-
componentDidCatch(error: Error, errorInfo: React$1.ErrorInfo): void;
|
|
214
|
-
render(): string | number | bigint | boolean | react_jsx_runtime.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | null | undefined;
|
|
215
|
-
}
|
|
216
|
-
declare function ErrorBoundaryShowcase(): react_jsx_runtime.JSX.Element;
|
|
217
|
-
|
|
218
|
-
declare function Select({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
219
|
-
declare function SelectGroup({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
220
|
-
declare function SelectValue({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element;
|
|
221
|
-
declare const selectTriggerSizes: readonly ["sm", "default"];
|
|
222
|
-
declare function SelectTrigger({ className, size, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
223
|
-
size?: typeof selectTriggerSizes[number];
|
|
224
|
-
}): react_jsx_runtime.JSX.Element;
|
|
225
|
-
declare function SelectContent({ className, children, position, align, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
226
|
-
declare function SelectLabel({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element;
|
|
227
|
-
declare function SelectItem({ className, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
228
|
-
declare function SelectSeparator({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
229
|
-
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element;
|
|
230
|
-
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
|
|
231
|
-
|
|
232
|
-
declare function SelectShowcase(): react_jsx_runtime.JSX.Element;
|
|
233
|
-
|
|
234
|
-
declare function Tabs({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
235
|
-
declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element;
|
|
236
|
-
declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
237
|
-
declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
238
|
-
|
|
239
|
-
declare function TabsShowcase(): react_jsx_runtime.JSX.Element;
|
|
240
|
-
|
|
241
|
-
declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
242
|
-
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
243
|
-
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
244
|
-
declare function BreadcrumbLink({ asChild, className, ...props }: React$1.ComponentProps<"a"> & {
|
|
245
|
-
asChild?: boolean;
|
|
246
|
-
}): react_jsx_runtime.JSX.Element;
|
|
247
|
-
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
248
|
-
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
249
|
-
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
250
|
-
|
|
251
|
-
declare function BreadcrumbShowcase(): react_jsx_runtime.JSX.Element;
|
|
252
|
-
|
|
253
|
-
declare function Pagination({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
254
|
-
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
255
|
-
declare function PaginationItem({ ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
256
|
-
type PaginationLinkProps = {
|
|
257
|
-
isActive?: boolean;
|
|
258
|
-
} & Pick<React$1.ComponentProps<typeof Button>, "size"> & React$1.ComponentProps<"a">;
|
|
259
|
-
declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
260
|
-
declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
261
|
-
declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
262
|
-
declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
263
|
-
|
|
264
|
-
declare function PaginationShowcase(): react_jsx_runtime.JSX.Element;
|
|
265
|
-
|
|
266
|
-
declare function Modal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
267
|
-
declare function ModalTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
268
|
-
declare function ModalPortal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
269
|
-
declare function ModalClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
270
|
-
declare function ModalOverlay({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
|
|
271
|
-
declare function ModalContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
272
|
-
showCloseButton?: boolean;
|
|
273
|
-
}): react_jsx_runtime.JSX.Element;
|
|
274
|
-
declare function ModalHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
275
|
-
declare function ModalFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
276
|
-
declare function ModalTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
277
|
-
declare function ModalDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
278
|
-
|
|
279
|
-
declare function ModalShowcase(): react_jsx_runtime.JSX.Element;
|
|
280
|
-
|
|
281
|
-
declare function Popover({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
282
|
-
declare function PopoverTrigger({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
283
|
-
declare const popoverSides: readonly ["top", "right", "bottom", "left"];
|
|
284
|
-
declare const popoverAligns: readonly ["start", "center", "end"];
|
|
285
|
-
declare function PopoverContent({ className, align, sideOffset, side, ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Content> & {
|
|
286
|
-
side?: typeof popoverSides[number];
|
|
287
|
-
align?: typeof popoverAligns[number];
|
|
288
|
-
}): react_jsx_runtime.JSX.Element;
|
|
289
|
-
declare function PopoverAnchor({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime.JSX.Element;
|
|
290
|
-
|
|
291
|
-
declare function PopoverShowcase(): react_jsx_runtime.JSX.Element;
|
|
292
|
-
|
|
293
|
-
declare function Sheet({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
294
|
-
declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
295
|
-
declare function SheetClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
296
|
-
declare const sheetSides: readonly ["top", "right", "bottom", "left"];
|
|
297
|
-
declare function SheetContent({ className, children, side, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
298
|
-
side?: typeof sheetSides[number];
|
|
299
|
-
}): react_jsx_runtime.JSX.Element;
|
|
300
|
-
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
301
|
-
declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
302
|
-
declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
303
|
-
declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
304
|
-
|
|
305
|
-
declare function SheetShowcase(): react_jsx_runtime.JSX.Element;
|
|
306
|
-
|
|
307
|
-
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
308
|
-
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
309
|
-
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
310
|
-
declare const tooltipSides: readonly ["top", "right", "bottom", "left"];
|
|
311
|
-
declare function TooltipContent({ className, sideOffset, children, side, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content> & {
|
|
312
|
-
side?: typeof tooltipSides[number];
|
|
313
|
-
}): react_jsx_runtime.JSX.Element;
|
|
314
|
-
|
|
315
|
-
declare function TooltipShowcase(): react_jsx_runtime.JSX.Element;
|
|
316
|
-
|
|
317
|
-
declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
318
|
-
declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
319
|
-
declare function AccordionTrigger({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
320
|
-
declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
321
|
-
|
|
322
|
-
declare function AccordionShowcase(): react_jsx_runtime.JSX.Element;
|
|
323
|
-
|
|
324
|
-
declare function Collapsible({ ...props }: React$1.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
325
|
-
declare function CollapsibleTrigger({ ...props }: React$1.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
326
|
-
declare function CollapsibleContent({ ...props }: React$1.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
327
|
-
|
|
328
|
-
declare function CollapsibleShowcase(): react_jsx_runtime.JSX.Element;
|
|
329
|
-
|
|
330
|
-
declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
|
|
331
|
-
declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: React$1.ComponentProps<typeof Modal> & {
|
|
332
|
-
title?: string;
|
|
333
|
-
description?: string;
|
|
334
|
-
className?: string;
|
|
335
|
-
showCloseButton?: boolean;
|
|
336
|
-
}): react_jsx_runtime.JSX.Element;
|
|
337
|
-
declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
|
|
338
|
-
declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
|
|
339
|
-
declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
|
|
340
|
-
declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
|
|
341
|
-
declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
342
|
-
declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
|
|
343
|
-
declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
344
|
-
|
|
345
|
-
declare function CommandShowcase(): react_jsx_runtime.JSX.Element;
|
|
346
|
-
|
|
347
|
-
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
348
|
-
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
349
|
-
}): react_jsx_runtime.JSX.Element;
|
|
350
|
-
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
351
|
-
|
|
352
|
-
declare function CalendarShowcase(): react_jsx_runtime.JSX.Element;
|
|
353
|
-
|
|
354
|
-
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
355
|
-
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
356
|
-
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
357
|
-
declare function DropdownMenuContent({ className, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
358
|
-
declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
359
|
-
declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
360
|
-
inset?: boolean;
|
|
361
|
-
variant?: "default" | "destructive";
|
|
362
|
-
}): react_jsx_runtime.JSX.Element;
|
|
363
|
-
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
364
|
-
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
365
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
366
|
-
declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
367
|
-
inset?: boolean;
|
|
368
|
-
}): react_jsx_runtime.JSX.Element;
|
|
369
|
-
declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
370
|
-
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
371
|
-
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
372
|
-
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
373
|
-
inset?: boolean;
|
|
374
|
-
}): react_jsx_runtime.JSX.Element;
|
|
375
|
-
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
376
|
-
|
|
377
|
-
declare function DropdownMenuShowcase(): react_jsx_runtime.JSX.Element;
|
|
378
|
-
|
|
379
|
-
declare function ContextMenu({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
380
|
-
declare function ContextMenuTrigger({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
381
|
-
declare function ContextMenuGroup({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
382
|
-
declare function ContextMenuPortal({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
383
|
-
declare function ContextMenuSub({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
384
|
-
declare function ContextMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
385
|
-
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
386
|
-
inset?: boolean;
|
|
387
|
-
}): react_jsx_runtime.JSX.Element;
|
|
388
|
-
declare function ContextMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
389
|
-
declare function ContextMenuContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
390
|
-
declare function ContextMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Item> & {
|
|
391
|
-
inset?: boolean;
|
|
392
|
-
variant?: "default" | "destructive";
|
|
393
|
-
}): react_jsx_runtime.JSX.Element;
|
|
394
|
-
declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
395
|
-
declare function ContextMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
396
|
-
declare function ContextMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Label> & {
|
|
397
|
-
inset?: boolean;
|
|
398
|
-
}): react_jsx_runtime.JSX.Element;
|
|
399
|
-
declare function ContextMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
400
|
-
declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
401
|
-
|
|
402
|
-
declare function ContextMenuShowcase(): react_jsx_runtime.JSX.Element;
|
|
403
|
-
|
|
404
|
-
declare function Menubar({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
405
|
-
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Menu>): react_jsx_runtime.JSX.Element;
|
|
406
|
-
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
407
|
-
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
408
|
-
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
409
|
-
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
410
|
-
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
411
|
-
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Item> & {
|
|
412
|
-
inset?: boolean;
|
|
413
|
-
variant?: "default" | "destructive";
|
|
414
|
-
}): react_jsx_runtime.JSX.Element;
|
|
415
|
-
declare function MenubarCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
416
|
-
declare function MenubarRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
417
|
-
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Label> & {
|
|
418
|
-
inset?: boolean;
|
|
419
|
-
}): react_jsx_runtime.JSX.Element;
|
|
420
|
-
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
421
|
-
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
422
|
-
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
423
|
-
declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
|
|
424
|
-
inset?: boolean;
|
|
425
|
-
}): react_jsx_runtime.JSX.Element;
|
|
426
|
-
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
427
|
-
|
|
428
|
-
declare function MenubarShowcase(): react_jsx_runtime.JSX.Element;
|
|
429
|
-
|
|
430
|
-
declare function NavigationMenu({ className, children, viewport, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
|
|
431
|
-
viewport?: boolean;
|
|
432
|
-
}): react_jsx_runtime.JSX.Element;
|
|
433
|
-
declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.List>): react_jsx_runtime.JSX.Element;
|
|
434
|
-
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
435
|
-
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
436
|
-
declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
437
|
-
declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
438
|
-
declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): react_jsx_runtime.JSX.Element;
|
|
439
|
-
declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Link>): react_jsx_runtime.JSX.Element;
|
|
440
|
-
declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): react_jsx_runtime.JSX.Element;
|
|
441
|
-
|
|
442
|
-
declare function NavigationMenuShowcase(): react_jsx_runtime.JSX.Element;
|
|
443
|
-
|
|
444
|
-
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
445
|
-
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
446
|
-
declare const useFormField: () => {
|
|
447
|
-
invalid: boolean;
|
|
448
|
-
isDirty: boolean;
|
|
449
|
-
isTouched: boolean;
|
|
450
|
-
isValidating: boolean;
|
|
451
|
-
error?: react_hook_form.FieldError;
|
|
452
|
-
id: string;
|
|
453
|
-
name: string;
|
|
454
|
-
formItemId: string;
|
|
455
|
-
formDescriptionId: string;
|
|
456
|
-
formMessageId: string;
|
|
457
|
-
};
|
|
458
|
-
declare function FormItem({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
459
|
-
declare function FormLabel({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
460
|
-
declare function FormControl({ ...props }: React$1.ComponentProps<typeof Slot>): react_jsx_runtime.JSX.Element;
|
|
461
|
-
declare function FormDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
462
|
-
declare function FormMessage({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element | null;
|
|
463
|
-
|
|
464
|
-
declare function FormShowcase(): react_jsx_runtime.JSX.Element;
|
|
465
|
-
|
|
466
|
-
declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
467
|
-
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
468
|
-
declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
469
|
-
|
|
470
|
-
declare function HoverCardShowcase(): react_jsx_runtime.JSX.Element;
|
|
471
|
-
|
|
472
|
-
declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
473
|
-
declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
474
|
-
declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
475
|
-
declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
|
|
476
|
-
declare function AlertDialogContent({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
477
|
-
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
478
|
-
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
479
|
-
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
480
|
-
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
481
|
-
declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Action>): react_jsx_runtime.JSX.Element;
|
|
482
|
-
declare function AlertDialogCancel({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Cancel>): react_jsx_runtime.JSX.Element;
|
|
483
|
-
|
|
484
|
-
declare function AlertDialogShowcase(): react_jsx_runtime.JSX.Element;
|
|
485
|
-
|
|
486
|
-
declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
487
|
-
declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
488
|
-
declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
489
|
-
declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
|
|
490
|
-
declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
491
|
-
declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
|
|
492
|
-
declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
493
|
-
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
494
|
-
declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
|
|
495
|
-
declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
|
|
496
|
-
|
|
497
|
-
declare function DrawerShowcase(): react_jsx_runtime.JSX.Element;
|
|
498
|
-
|
|
499
|
-
type CarouselApi = UseEmblaCarouselType[1];
|
|
500
|
-
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
501
|
-
type CarouselOptions = UseCarouselParameters[0];
|
|
502
|
-
type CarouselPlugin = UseCarouselParameters[1];
|
|
503
|
-
type CarouselProps = {
|
|
504
|
-
opts?: CarouselOptions;
|
|
505
|
-
plugins?: CarouselPlugin;
|
|
506
|
-
orientation?: "horizontal" | "vertical";
|
|
507
|
-
setApi?: (api: CarouselApi) => void;
|
|
508
|
-
};
|
|
509
|
-
declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
510
|
-
declare function CarouselContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
511
|
-
declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
512
|
-
declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
513
|
-
declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
514
|
-
|
|
515
|
-
declare function CarouselShowcase(): react_jsx_runtime.JSX.Element;
|
|
516
|
-
|
|
517
|
-
declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
518
|
-
declare const inputGroupAddonVariants: (props?: ({
|
|
519
|
-
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
520
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
521
|
-
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
522
|
-
declare const inputGroupButtonVariants: (props?: ({
|
|
523
|
-
size?: "sm" | "icon-sm" | "xs" | "icon-xs" | null | undefined;
|
|
524
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
525
|
-
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
526
|
-
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
527
|
-
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<typeof TextInput>): react_jsx_runtime.JSX.Element;
|
|
528
|
-
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
529
|
-
|
|
530
|
-
declare function InputGroupShowcase(): react_jsx_runtime.JSX.Element;
|
|
531
|
-
|
|
532
|
-
declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
|
|
533
|
-
spacing?: number;
|
|
534
|
-
}): react_jsx_runtime.JSX.Element;
|
|
535
|
-
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
536
|
-
|
|
537
|
-
declare function ToggleGroupShowcase(): react_jsx_runtime.JSX.Element;
|
|
538
|
-
|
|
539
|
-
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
540
|
-
|
|
541
|
-
declare function ToasterShowcase(): react_jsx_runtime.JSX.Element;
|
|
542
|
-
|
|
543
|
-
declare function FieldSet({ className, ...props }: React$1.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
544
|
-
declare function FieldLegend({ className, variant, ...props }: React$1.ComponentProps<"legend"> & {
|
|
545
|
-
variant?: "legend" | "label";
|
|
546
|
-
}): react_jsx_runtime.JSX.Element;
|
|
547
|
-
declare function FieldGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
548
|
-
declare const fieldVariants: (props?: ({
|
|
549
|
-
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
550
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
551
|
-
declare function Field({ className, orientation, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
552
|
-
declare function FieldContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
553
|
-
declare function FieldLabel({ className, ...props }: React$1.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
554
|
-
declare function FieldTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
555
|
-
declare function FieldDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
556
|
-
declare function FieldSeparator({ children, className, ...props }: React$1.ComponentProps<"div"> & {
|
|
557
|
-
children?: React$1.ReactNode;
|
|
558
|
-
}): react_jsx_runtime.JSX.Element;
|
|
559
|
-
declare function FieldError({ className, children, errors, ...props }: React$1.ComponentProps<"div"> & {
|
|
560
|
-
errors?: Array<{
|
|
561
|
-
message?: string;
|
|
562
|
-
} | undefined>;
|
|
563
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
564
|
-
|
|
565
|
-
declare function FieldShowcase(): react_jsx_runtime.JSX.Element;
|
|
566
|
-
|
|
567
|
-
declare const THEMES: {
|
|
568
|
-
readonly light: "";
|
|
569
|
-
readonly dark: ".dark";
|
|
570
|
-
};
|
|
571
|
-
type ChartConfig = {
|
|
572
|
-
[k in string]: {
|
|
573
|
-
label?: React$1.ReactNode;
|
|
574
|
-
icon?: React$1.ComponentType;
|
|
575
|
-
} & ({
|
|
576
|
-
color?: string;
|
|
577
|
-
theme?: never;
|
|
578
|
-
} | {
|
|
579
|
-
color?: never;
|
|
580
|
-
theme: Record<keyof typeof THEMES, string>;
|
|
581
|
-
});
|
|
582
|
-
};
|
|
583
|
-
type ChartContextProps = {
|
|
584
|
-
config: ChartConfig;
|
|
585
|
-
};
|
|
586
|
-
declare function useChart(): ChartContextProps;
|
|
587
|
-
declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<"div"> & {
|
|
588
|
-
config: ChartConfig;
|
|
589
|
-
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
590
|
-
}): react_jsx_runtime.JSX.Element;
|
|
591
|
-
declare const ChartStyle: ({ id, config }: {
|
|
592
|
-
id: string;
|
|
593
|
-
config: ChartConfig;
|
|
594
|
-
}) => react_jsx_runtime.JSX.Element | null;
|
|
595
|
-
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
596
|
-
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
|
|
597
|
-
hideLabel?: boolean;
|
|
598
|
-
hideIndicator?: boolean;
|
|
599
|
-
indicator?: "line" | "dot" | "dashed";
|
|
600
|
-
nameKey?: string;
|
|
601
|
-
labelKey?: string;
|
|
602
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
603
|
-
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
604
|
-
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<"div"> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
|
|
605
|
-
hideIcon?: boolean;
|
|
606
|
-
nameKey?: string;
|
|
607
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
608
|
-
|
|
609
|
-
declare function ChartShowcase(): react_jsx_runtime.JSX.Element;
|
|
610
|
-
|
|
611
|
-
interface FormInputProps extends React$1.ComponentProps<typeof TextInput> {
|
|
612
|
-
label?: string;
|
|
613
|
-
error?: string;
|
|
614
|
-
description?: string;
|
|
615
|
-
}
|
|
616
|
-
declare function FormInput({ className, label, error, description, id, ...props }: FormInputProps): react_jsx_runtime.JSX.Element;
|
|
617
|
-
declare function FormInputShowcase(): react_jsx_runtime.JSX.Element;
|
|
618
|
-
|
|
619
|
-
interface InlineEditProps {
|
|
620
|
-
value: string;
|
|
621
|
-
onSave: (value: string) => void;
|
|
622
|
-
className?: string;
|
|
623
|
-
placeholder?: string;
|
|
624
|
-
}
|
|
625
|
-
declare function InlineEdit({ value: initialValue, onSave, className, placeholder, }: InlineEditProps): react_jsx_runtime.JSX.Element;
|
|
626
|
-
declare function InlineEditShowcase(): react_jsx_runtime.JSX.Element;
|
|
627
|
-
|
|
628
|
-
interface ConfirmModalProps {
|
|
629
|
-
open: boolean;
|
|
630
|
-
onOpenChange: (open: boolean) => void;
|
|
631
|
-
onConfirm: () => void;
|
|
632
|
-
title: string;
|
|
633
|
-
description?: string;
|
|
634
|
-
confirmLabel?: string;
|
|
635
|
-
cancelLabel?: string;
|
|
636
|
-
variant?: "default" | "destructive";
|
|
637
|
-
}
|
|
638
|
-
declare function ConfirmModal({ open, onOpenChange, onConfirm, title, description, confirmLabel, cancelLabel, variant, }: ConfirmModalProps): react_jsx_runtime.JSX.Element;
|
|
639
|
-
declare function ConfirmModalShowcase(): react_jsx_runtime.JSX.Element;
|
|
640
|
-
|
|
641
|
-
interface TriggerModalProps {
|
|
642
|
-
trigger: React$1.ReactNode;
|
|
643
|
-
title: string;
|
|
644
|
-
children: React$1.ReactNode;
|
|
645
|
-
footer?: React$1.ReactNode;
|
|
646
|
-
}
|
|
647
|
-
declare function TriggerModal({ trigger, title, children, footer, }: TriggerModalProps): react_jsx_runtime.JSX.Element;
|
|
648
|
-
declare function TriggerModalShowcase(): react_jsx_runtime.JSX.Element;
|
|
649
|
-
|
|
650
|
-
interface FormModalProps {
|
|
651
|
-
open: boolean;
|
|
652
|
-
onOpenChange: (open: boolean) => void;
|
|
653
|
-
title: string;
|
|
654
|
-
onSubmit: (data: any) => void;
|
|
655
|
-
children: React$1.ReactNode;
|
|
656
|
-
submitLabel?: string;
|
|
657
|
-
cancelLabel?: string;
|
|
658
|
-
}
|
|
659
|
-
declare function FormModal({ open, onOpenChange, title, onSubmit, children, submitLabel, cancelLabel, }: FormModalProps): react_jsx_runtime.JSX.Element;
|
|
660
|
-
declare function FormModalShowcase(): react_jsx_runtime.JSX.Element;
|
|
661
|
-
|
|
662
|
-
interface ToastProps {
|
|
663
|
-
title?: string;
|
|
664
|
-
description?: string;
|
|
665
|
-
variant?: "default" | "success" | "error" | "warning";
|
|
666
|
-
className?: string;
|
|
667
|
-
}
|
|
668
|
-
declare function Toast({ title, description, variant, className, }: ToastProps): react_jsx_runtime.JSX.Element;
|
|
669
|
-
declare function ToastShowcase(): react_jsx_runtime.JSX.Element;
|
|
670
|
-
|
|
671
|
-
interface SnackbarProps {
|
|
672
|
-
message: string;
|
|
673
|
-
action?: React$1.ReactNode;
|
|
674
|
-
variant?: "default" | "success" | "error";
|
|
675
|
-
className?: string;
|
|
676
|
-
}
|
|
677
|
-
declare function Snackbar({ message, action, variant, className, }: SnackbarProps): react_jsx_runtime.JSX.Element;
|
|
678
|
-
declare function SnackbarShowcase(): react_jsx_runtime.JSX.Element;
|
|
679
|
-
|
|
680
|
-
interface InfoBannerProps {
|
|
681
|
-
message: string;
|
|
682
|
-
variant?: "info" | "warning" | "success";
|
|
683
|
-
className?: string;
|
|
684
|
-
}
|
|
685
|
-
declare function InfoBanner({ message, variant, className, }: InfoBannerProps): react_jsx_runtime.JSX.Element;
|
|
686
|
-
declare function InfoBannerShowcase(): react_jsx_runtime.JSX.Element;
|
|
687
|
-
|
|
688
|
-
interface StatusTextProps {
|
|
689
|
-
text: string;
|
|
690
|
-
status: "success" | "error" | "warning" | "info";
|
|
691
|
-
className?: string;
|
|
692
|
-
}
|
|
693
|
-
declare function StatusText({ text, status, className, }: StatusTextProps): react_jsx_runtime.JSX.Element;
|
|
694
|
-
declare function StatusTextShowcase(): react_jsx_runtime.JSX.Element;
|
|
695
|
-
|
|
696
|
-
interface CopyButtonProps extends React$1.ComponentProps<typeof Button> {
|
|
697
|
-
text: string;
|
|
698
|
-
onCopy?: () => void;
|
|
699
|
-
}
|
|
700
|
-
declare function CopyButton({ text, onCopy, ...props }: CopyButtonProps): react_jsx_runtime.JSX.Element;
|
|
701
|
-
declare function CopyButtonShowcase(): react_jsx_runtime.JSX.Element;
|
|
702
|
-
|
|
703
|
-
interface HistoryControlButtonsProps {
|
|
704
|
-
className?: string;
|
|
705
|
-
}
|
|
706
|
-
/**
|
|
707
|
-
* History Control Buttons - Library-compatible version
|
|
708
|
-
*
|
|
709
|
-
* Uses browser history API instead of Next.js router for library compatibility.
|
|
710
|
-
* For Next.js apps, you can use next/navigation's useRouter directly.
|
|
711
|
-
*/
|
|
712
|
-
declare function HistoryControlButtons({ className, }: HistoryControlButtonsProps): react_jsx_runtime.JSX.Element;
|
|
713
|
-
declare function HistoryControlButtonsShowcase(): react_jsx_runtime.JSX.Element;
|
|
714
|
-
|
|
715
|
-
interface StepperProps {
|
|
716
|
-
steps: Array<{
|
|
717
|
-
label: string;
|
|
718
|
-
completed?: boolean;
|
|
719
|
-
active?: boolean;
|
|
720
|
-
}>;
|
|
721
|
-
className?: string;
|
|
722
|
-
}
|
|
723
|
-
declare function Stepper({ steps, className }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
724
|
-
declare function StepperShowcase(): react_jsx_runtime.JSX.Element;
|
|
725
|
-
|
|
726
|
-
declare function Card({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
727
|
-
declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
728
|
-
declare function CardTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
729
|
-
declare function CardDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
730
|
-
declare function CardAction({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
731
|
-
declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
732
|
-
declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
733
|
-
|
|
734
|
-
declare function CardShowcase(): react_jsx_runtime.JSX.Element;
|
|
735
|
-
|
|
736
|
-
declare function ScrollArea({ className, children, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
737
|
-
declare function ScrollBar({ className, orientation, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
738
|
-
|
|
739
|
-
declare function ScrollAreaShowcase(): react_jsx_runtime.JSX.Element;
|
|
740
|
-
|
|
741
|
-
declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
742
|
-
|
|
743
|
-
declare function AspectRatioShowcase(): react_jsx_runtime.JSX.Element;
|
|
744
|
-
|
|
745
|
-
declare function Table({ className, ...props }: React$1.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
|
|
746
|
-
declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
|
|
747
|
-
declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): react_jsx_runtime.JSX.Element;
|
|
748
|
-
declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): react_jsx_runtime.JSX.Element;
|
|
749
|
-
declare function TableRow({ className, ...props }: React$1.ComponentProps<"tr">): react_jsx_runtime.JSX.Element;
|
|
750
|
-
declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
|
|
751
|
-
declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
|
|
752
|
-
declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
|
|
753
|
-
|
|
754
|
-
declare function TableShowcase(): react_jsx_runtime.JSX.Element;
|
|
755
|
-
|
|
756
|
-
declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
|
|
757
|
-
declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
|
|
758
|
-
declare function ResizableHandle({ withHandle, className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
759
|
-
withHandle?: boolean;
|
|
760
|
-
}): react_jsx_runtime.JSX.Element;
|
|
761
|
-
|
|
762
|
-
declare function ResizableShowcase(): react_jsx_runtime.JSX.Element;
|
|
763
|
-
|
|
764
|
-
type SidebarContextProps = {
|
|
765
|
-
state: "expanded" | "collapsed";
|
|
766
|
-
open: boolean;
|
|
767
|
-
setOpen: (open: boolean) => void;
|
|
768
|
-
openMobile: boolean;
|
|
769
|
-
setOpenMobile: (open: boolean) => void;
|
|
770
|
-
isMobile: boolean;
|
|
771
|
-
toggleSidebar: () => void;
|
|
772
|
-
};
|
|
773
|
-
declare function useSidebar(): SidebarContextProps;
|
|
774
|
-
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: ComponentProps<"div"> & {
|
|
775
|
-
defaultOpen?: boolean;
|
|
776
|
-
open?: boolean;
|
|
777
|
-
onOpenChange?: (open: boolean) => void;
|
|
778
|
-
}): react_jsx_runtime.JSX.Element;
|
|
779
|
-
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: ComponentProps<"div"> & {
|
|
780
|
-
side?: "left" | "right";
|
|
781
|
-
variant?: "sidebar" | "floating" | "inset";
|
|
782
|
-
collapsible?: "offcanvas" | "icon" | "none";
|
|
783
|
-
}): react_jsx_runtime.JSX.Element;
|
|
784
|
-
declare function SidebarTrigger({ className, onClick, ...props }: ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
785
|
-
declare function SidebarRail({ className, ...props }: ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
786
|
-
declare function SidebarInset({ className, ...props }: ComponentProps<"main">): react_jsx_runtime.JSX.Element;
|
|
787
|
-
declare function SidebarInput({ className, ...props }: ComponentProps<typeof TextInput>): react_jsx_runtime.JSX.Element;
|
|
788
|
-
declare function SidebarHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
789
|
-
declare function SidebarFooter({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
790
|
-
declare function SidebarSeparator({ className, ...props }: ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
791
|
-
declare function SidebarContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
792
|
-
declare function SidebarGroup({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
793
|
-
declare function SidebarGroupLabel({ className, asChild, ...props }: ComponentProps<"div"> & {
|
|
794
|
-
asChild?: boolean;
|
|
795
|
-
}): react_jsx_runtime.JSX.Element;
|
|
796
|
-
declare function SidebarGroupAction({ className, asChild, ...props }: ComponentProps<"button"> & {
|
|
797
|
-
asChild?: boolean;
|
|
798
|
-
}): react_jsx_runtime.JSX.Element;
|
|
799
|
-
declare function SidebarGroupContent({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
800
|
-
declare function SidebarMenu({ className, ...props }: ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
801
|
-
declare function SidebarMenuItem({ className, ...props }: ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
802
|
-
declare const sidebarMenuButtonVariants: (props?: ({
|
|
803
|
-
variant?: "default" | "outline" | null | undefined;
|
|
804
|
-
size?: "default" | "sm" | "lg" | null | undefined;
|
|
805
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
806
|
-
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: ComponentProps<"button"> & {
|
|
807
|
-
asChild?: boolean;
|
|
808
|
-
isActive?: boolean;
|
|
809
|
-
tooltip?: string | ComponentProps<typeof TooltipContent>;
|
|
810
|
-
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
811
|
-
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: ComponentProps<"button"> & {
|
|
812
|
-
asChild?: boolean;
|
|
813
|
-
showOnHover?: boolean;
|
|
814
|
-
}): react_jsx_runtime.JSX.Element;
|
|
815
|
-
declare function SidebarMenuBadge({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
816
|
-
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: ComponentProps<"div"> & {
|
|
817
|
-
showIcon?: boolean;
|
|
818
|
-
}): react_jsx_runtime.JSX.Element;
|
|
819
|
-
declare function SidebarMenuSub({ className, ...props }: ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
820
|
-
declare function SidebarMenuSubItem({ className, ...props }: ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
821
|
-
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: ComponentProps<"a"> & {
|
|
822
|
-
asChild?: boolean;
|
|
823
|
-
size?: "sm" | "md";
|
|
824
|
-
isActive?: boolean;
|
|
825
|
-
}): react_jsx_runtime.JSX.Element;
|
|
826
|
-
|
|
827
|
-
declare function SidebarShowcase(): react_jsx_runtime.JSX.Element;
|
|
828
|
-
|
|
829
|
-
interface ContainerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
830
|
-
maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full";
|
|
831
|
-
}
|
|
832
|
-
declare function Container({ className, maxWidth, ...props }: ContainerProps): react_jsx_runtime.JSX.Element;
|
|
833
|
-
declare function ContainerShowcase(): react_jsx_runtime.JSX.Element;
|
|
834
|
-
|
|
835
|
-
interface StackProps$1 extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
836
|
-
direction?: "row" | "column";
|
|
837
|
-
spacing?: "none" | "sm" | "md" | "lg";
|
|
838
|
-
align?: "start" | "center" | "end" | "stretch";
|
|
839
|
-
justify?: "start" | "center" | "end" | "between" | "around";
|
|
840
|
-
}
|
|
841
|
-
declare function Stack$1({ className, direction, spacing, align, justify, ...props }: StackProps$1): react_jsx_runtime.JSX.Element;
|
|
842
|
-
declare function StackShowcase(): react_jsx_runtime.JSX.Element;
|
|
843
|
-
|
|
844
|
-
interface GridProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
845
|
-
cols?: 1 | 2 | 3 | 4 | 6 | 12;
|
|
846
|
-
gap?: "none" | "sm" | "md" | "lg";
|
|
847
|
-
}
|
|
848
|
-
declare function Grid({ className, cols, gap, ...props }: GridProps): react_jsx_runtime.JSX.Element;
|
|
849
|
-
declare function GridShowcase(): react_jsx_runtime.JSX.Element;
|
|
850
|
-
|
|
851
|
-
interface BoxProps$1 extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
852
|
-
as?: React$1.ElementType;
|
|
853
|
-
}
|
|
854
|
-
declare function Box$1({ className, as: Component, ...props }: BoxProps$1): react_jsx_runtime.JSX.Element;
|
|
855
|
-
declare function BoxShowcase(): react_jsx_runtime.JSX.Element;
|
|
856
|
-
|
|
857
|
-
interface ListProps extends React$1.HTMLAttributes<HTMLUListElement> {
|
|
858
|
-
variant?: "ordered" | "unordered";
|
|
859
|
-
}
|
|
860
|
-
declare function List({ className, variant, ...props }: ListProps): react_jsx_runtime.JSX.Element;
|
|
861
|
-
declare function ListShowcase(): react_jsx_runtime.JSX.Element;
|
|
862
|
-
|
|
863
|
-
interface HeaderProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
864
|
-
sticky?: boolean;
|
|
865
|
-
}
|
|
866
|
-
declare function Header({ className, sticky, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
867
|
-
declare function HeaderShowcase(): react_jsx_runtime.JSX.Element;
|
|
868
|
-
|
|
869
|
-
interface FooterProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
870
|
-
}
|
|
871
|
-
declare function Footer({ className, ...props }: FooterProps): react_jsx_runtime.JSX.Element;
|
|
872
|
-
declare function FooterShowcase(): react_jsx_runtime.JSX.Element;
|
|
873
|
-
|
|
874
|
-
interface CollapsiblePanelProps {
|
|
875
|
-
title: string;
|
|
876
|
-
children: React$1.ReactNode;
|
|
877
|
-
defaultOpen?: boolean;
|
|
878
|
-
className?: string;
|
|
879
|
-
}
|
|
880
|
-
declare function CollapsiblePanel({ title, children, defaultOpen, className, }: CollapsiblePanelProps): react_jsx_runtime.JSX.Element;
|
|
881
|
-
declare function CollapsiblePanelShowcase(): react_jsx_runtime.JSX.Element;
|
|
882
|
-
|
|
883
|
-
interface ResizeContainerProps {
|
|
884
|
-
children: React$1.ReactNode;
|
|
885
|
-
direction?: "horizontal" | "vertical";
|
|
886
|
-
className?: string;
|
|
887
|
-
}
|
|
888
|
-
declare function ResizeContainer({ children, direction, className, }: ResizeContainerProps): react_jsx_runtime.JSX.Element;
|
|
889
|
-
declare function ResizeContainerShowcase(): react_jsx_runtime.JSX.Element;
|
|
890
|
-
|
|
891
|
-
interface EmptyScreenProps {
|
|
892
|
-
title?: string;
|
|
893
|
-
description?: string;
|
|
894
|
-
icon?: React$1.ReactNode;
|
|
895
|
-
action?: React$1.ReactNode;
|
|
896
|
-
className?: string;
|
|
897
|
-
}
|
|
898
|
-
declare function EmptyScreen({ title, description, icon, action, className, }: EmptyScreenProps): react_jsx_runtime.JSX.Element;
|
|
899
|
-
declare function EmptyScreenShowcase(): react_jsx_runtime.JSX.Element;
|
|
900
|
-
|
|
901
|
-
interface BoxProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
902
|
-
as?: React$1.ElementType;
|
|
903
|
-
}
|
|
904
|
-
declare function Box({ className, as: Component, ...props }: BoxProps): react_jsx_runtime.JSX.Element;
|
|
905
|
-
|
|
906
|
-
interface FlexProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
907
|
-
direction?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
908
|
-
wrap?: boolean;
|
|
909
|
-
gap?: "none" | "sm" | "md" | "lg";
|
|
910
|
-
}
|
|
911
|
-
declare function Flex({ className, direction, wrap, gap, ...props }: FlexProps): react_jsx_runtime.JSX.Element;
|
|
912
|
-
|
|
913
|
-
interface StackProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
914
|
-
spacing?: "none" | "sm" | "md" | "lg";
|
|
915
|
-
}
|
|
916
|
-
declare function Stack({ className, spacing, ...props }: StackProps): react_jsx_runtime.JSX.Element;
|
|
917
|
-
|
|
918
|
-
interface TextProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
919
|
-
as?: "p" | "span" | "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
920
|
-
size?: "xs" | "sm" | "base" | "lg" | "xl" | "2xl";
|
|
921
|
-
weight?: "normal" | "medium" | "semibold" | "bold";
|
|
922
|
-
}
|
|
923
|
-
declare function Text({ className, as: Component, size, weight, ...props }: TextProps): react_jsx_runtime.JSX.Element;
|
|
924
|
-
|
|
925
|
-
interface IconProps {
|
|
926
|
-
icon: LucideIcon;
|
|
927
|
-
size?: "sm" | "md" | "lg" | "xl";
|
|
928
|
-
className?: string;
|
|
929
|
-
}
|
|
930
|
-
declare function Icon({ icon: IconComponent, size, className, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
931
|
-
|
|
932
|
-
interface VisuallyHiddenProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
933
|
-
}
|
|
934
|
-
declare function VisuallyHidden({ className, ...props }: VisuallyHiddenProps): react_jsx_runtime.JSX.Element;
|
|
935
|
-
|
|
936
|
-
interface ThemeToggleProps {
|
|
937
|
-
className?: string;
|
|
938
|
-
position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
939
|
-
}
|
|
940
|
-
declare function ThemeToggle({ className, position }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
941
|
-
|
|
942
|
-
type ThemeSelection = {
|
|
943
|
-
color?: string;
|
|
944
|
-
typography?: string;
|
|
945
|
-
shape?: string;
|
|
946
|
-
density?: string;
|
|
947
|
-
animation?: string;
|
|
948
|
-
custom?: string;
|
|
949
|
-
};
|
|
950
|
-
type ThemeMetadata = {
|
|
951
|
-
name: string;
|
|
952
|
-
file: string;
|
|
953
|
-
icon: string;
|
|
954
|
-
description: string;
|
|
955
|
-
};
|
|
956
|
-
/**
|
|
957
|
-
* Hook for managing design system theme switching
|
|
958
|
-
*/
|
|
959
|
-
declare function useTheme(): {
|
|
960
|
-
selectedThemes: ThemeSelection;
|
|
961
|
-
updateTheme: (category: keyof ThemeSelection, themeId: string | undefined) => Promise<void>;
|
|
962
|
-
resetToDefaults: () => Promise<void>;
|
|
963
|
-
isLoading: boolean;
|
|
964
|
-
error: string | null;
|
|
965
|
-
getAvailableThemes: (category: string) => Promise<Record<string, ThemeMetadata>>;
|
|
966
|
-
};
|
|
967
|
-
|
|
968
|
-
declare function useThemeToggle(): {
|
|
969
|
-
selectedThemes: ThemeSelection;
|
|
970
|
-
isLoading: boolean;
|
|
971
|
-
getAvailableThemes: (category: string) => Promise<Record<string, src.ThemeMetadata>>;
|
|
972
|
-
isOpen: boolean;
|
|
973
|
-
selectedCategory: string | null;
|
|
974
|
-
themeCategories: any;
|
|
975
|
-
categories: [string, {
|
|
976
|
-
name: string;
|
|
977
|
-
themes: Record<string, any>;
|
|
978
|
-
order?: number;
|
|
979
|
-
}][];
|
|
980
|
-
menuRef: React$1.RefObject<HTMLDivElement | null>;
|
|
981
|
-
handleCategoryClick: (categoryKey: string) => void;
|
|
982
|
-
handleThemeSelect: (category: keyof ThemeSelection, themeId: string) => Promise<void>;
|
|
983
|
-
handleBack: () => void;
|
|
984
|
-
toggleMenu: () => void;
|
|
985
|
-
};
|
|
986
|
-
|
|
987
|
-
/**
|
|
988
|
-
* Register a custom theme dynamically
|
|
989
|
-
* Allows users to add themes without modifying the base config
|
|
990
|
-
* @param {string} category - Theme category (e.g., 'color', 'custom')
|
|
991
|
-
* @param {string} themeId - Unique theme identifier
|
|
992
|
-
* @param {Object} metadata - Theme metadata
|
|
993
|
-
* @param {string} metadata.name - Display name
|
|
994
|
-
* @param {string} metadata.file - File path relative to themes/ (e.g., 'color/blue.json')
|
|
995
|
-
* @param {string} [metadata.icon] - Icon emoji or character
|
|
996
|
-
* @param {string} [metadata.description] - Theme description
|
|
997
|
-
*/
|
|
998
|
-
declare function registerTheme(category: string, themeId: string, metadata: {
|
|
999
|
-
name: string;
|
|
1000
|
-
file: string;
|
|
1001
|
-
icon?: string | undefined;
|
|
1002
|
-
description?: string | undefined;
|
|
1003
|
-
}): any;
|
|
1004
|
-
/**
|
|
1005
|
-
* Get merged theme categories (base + discovered)
|
|
1006
|
-
*/
|
|
1007
|
-
declare function getThemeCategories(): Promise<any>;
|
|
1008
|
-
/**
|
|
1009
|
-
* Get theme file path
|
|
1010
|
-
*/
|
|
1011
|
-
declare function getThemeFilePath(category: any, themeId: any): string | null;
|
|
1012
|
-
/**
|
|
1013
|
-
* Get all themes for a category
|
|
1014
|
-
*/
|
|
1015
|
-
declare function getThemesForCategory(category: any): Promise<any>;
|
|
1016
|
-
/**
|
|
1017
|
-
* Get theme by ID
|
|
1018
|
-
*/
|
|
1019
|
-
declare function getTheme(category: any, themeId: any): Promise<any>;
|
|
1020
|
-
|
|
1021
|
-
/**
|
|
1022
|
-
* Discover themes by attempting to load token files
|
|
1023
|
-
* Scans common theme patterns and registers them if found
|
|
1024
|
-
*/
|
|
1025
|
-
declare function discoverTokenFiles(): Promise<{
|
|
1026
|
-
category: string;
|
|
1027
|
-
themeName: any;
|
|
1028
|
-
path: string;
|
|
1029
|
-
}[]>;
|
|
1030
|
-
/**
|
|
1031
|
-
* Scan a specific category directory for theme files
|
|
1032
|
-
* Useful for discovering user-added themes
|
|
1033
|
-
*/
|
|
1034
|
-
declare function scanCategory(category: any): Promise<{
|
|
1035
|
-
category: any;
|
|
1036
|
-
name: string;
|
|
1037
|
-
path: string;
|
|
1038
|
-
}[]>;
|
|
1039
|
-
/**
|
|
1040
|
-
* Register a theme from a token file
|
|
1041
|
-
* Call this when you add a new token file to make it appear in ThemeToggle
|
|
1042
|
-
*/
|
|
1043
|
-
declare function registerThemeFromFile(category: any, themeId: any, filePath: any): Promise<{
|
|
1044
|
-
success: boolean;
|
|
1045
|
-
themeId: any;
|
|
1046
|
-
category: any;
|
|
1047
|
-
}>;
|
|
1048
|
-
|
|
1049
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionShowcase, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogShowcase, AlertDialogTitle, AlertDialogTrigger, AlertShowcase, AlertTitle, AspectRatio, AspectRatioShowcase, Avatar, AvatarFallback, AvatarImage, AvatarShowcase, Badge, BadgeShowcase, Box$1 as Box, type BoxProps$1 as BoxProps, BoxShowcase, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbShowcase, Button, ButtonShowcase, Calendar, CalendarDayButton, CalendarShowcase, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardShowcase, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CarouselShowcase, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartShowcase, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxShowcase, Collapsible, CollapsibleContent, CollapsiblePanel, type CollapsiblePanelProps, CollapsiblePanelShowcase, CollapsibleShowcase, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommandShowcase, ConfirmModal, type ConfirmModalProps, ConfirmModalShowcase, Container, type ContainerProps, ContainerShowcase, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuShowcase, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, CopyButtonShowcase, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerShowcase, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuShowcase, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyScreen, type EmptyScreenProps, EmptyScreenShowcase, EmptyShowcase, EmptyTitle, ErrorBoundary, ErrorBoundaryShowcase, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldShowcase, FieldTitle, Footer, type FooterProps, FooterShowcase, Form, FormControl, FormDescription, FormField, FormInput, type FormInputProps, FormInputShowcase, FormItem, FormLabel, FormMessage, FormModal, type FormModalProps, FormModalShowcase, FormShowcase, Grid, type GridProps, GridShowcase, Header, type HeaderProps, HeaderShowcase, HistoryControlButtons, type HistoryControlButtonsProps, HistoryControlButtonsShowcase, HoverCard, HoverCardContent, HoverCardShowcase, HoverCardTrigger, Icon, type IconProps, Image, type ImageProps, ImageShowcase, InfoBanner, type InfoBannerProps, InfoBannerShowcase, InlineEdit, type InlineEditProps, InlineEditShowcase, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupShowcase, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPShowcase, InputOTPSlot, Kbd, KbdGroup, KbdShowcase, Label, LabelShowcase, List, type ListProps, ListShowcase, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarShowcase, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalShowcase, ModalTitle, ModalTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuShowcase, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaginationShowcase, Popover, PopoverAnchor, PopoverContent, PopoverShowcase, PopoverTrigger, Box as PrimitiveBox, type BoxProps as PrimitiveBoxProps, Flex as PrimitiveFlex, type FlexProps as PrimitiveFlexProps, Stack as PrimitiveStack, type StackProps as PrimitiveStackProps, Text as PrimitiveText, type TextProps as PrimitiveTextProps, Progress, ProgressShowcase, Radio, RadioItem, RadioShowcase, ResizableHandle, ResizablePanel, ResizablePanelGroup, ResizableShowcase, ResizeContainer, type ResizeContainerProps, ResizeContainerShowcase, ScrollArea, ScrollAreaShowcase, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectShowcase, SelectTrigger, SelectValue, Separator, SeparatorShowcase, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetShowcase, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarShowcase, SidebarTrigger, Skeleton, SkeletonShowcase, Slider, SliderShowcase, Snackbar, type SnackbarProps, SnackbarShowcase, Spinner, SpinnerShowcase, Stack$1 as Stack, type StackProps$1 as StackProps, StackShowcase, StatusText, type StatusTextProps, StatusTextShowcase, Stepper, type StepperProps, StepperShowcase, Switch, SwitchShowcase, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableShowcase, Tabs, TabsContent, TabsList, TabsShowcase, TabsTrigger, Text$1 as Text, TextInput, TextInputShowcase, type TextProps$1 as TextProps, TextShowcase, Textarea, TextareaShowcase, type ThemeMetadata, type ThemeSelection, ThemeToggle, type ThemeToggleProps, Toast, type ToastProps, ToastShowcase, Toaster, ToasterShowcase, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupShowcase, ToggleShowcase, Tooltip, TooltipContent, TooltipProvider, TooltipShowcase, TooltipTrigger, TriggerModal, type TriggerModalProps, TriggerModalShowcase, Upload, type UploadProps, UploadShowcase, VisuallyHidden, type VisuallyHiddenProps, alertVariants, badgeVariants, buttonVariants, discoverTokenFiles, emptyMediaVariants, fieldVariants, getTheme, getThemeCategories, getThemeFilePath, getThemesForCategory, navigationMenuTriggerStyle, registerTheme, registerThemeFromFile, scanCategory, toggleVariants, useChart, useFormField, useSidebar, useTheme, useThemeToggle };
|