@qdesignsystems/design-system-core 0.1.2

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.
@@ -0,0 +1,770 @@
1
+ import { ClassValue } from 'clsx';
2
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
+ import * as React from 'react';
4
+ import * as class_variance_authority_types from 'class-variance-authority/types';
5
+ import { VariantProps } from 'class-variance-authority';
6
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
7
+ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
8
+ import { RowData } from '@tanstack/react-table';
9
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
10
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
11
+ import * as LabelPrimitive from '@radix-ui/react-label';
12
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
13
+ import * as TogglePrimitive from '@radix-ui/react-toggle';
14
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
15
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
16
+ import * as _radix_ui_react_slot from '@radix-ui/react-slot';
17
+ import * as react_hook_form from 'react-hook-form';
18
+ import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
19
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
20
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
21
+
22
+ declare function cn(...inputs: ClassValue[]): string;
23
+
24
+ interface ThemeProviderProps {
25
+ children: React.ReactNode;
26
+ theme?: string;
27
+ defaultTheme?: string;
28
+ attribute?: string;
29
+ enableSystem?: boolean;
30
+ disableTransitionOnChange?: boolean;
31
+ }
32
+ declare function ThemeProvider({ children, theme, defaultTheme, attribute, enableSystem, disableTransitionOnChange, ...props }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
33
+
34
+ declare const buttonVariants: (props?: ({
35
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
36
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
37
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
38
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
39
+ asChild?: boolean;
40
+ }
41
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
42
+
43
+ declare const cardVariants: (props?: ({
44
+ size?: "default" | "sm" | null | undefined;
45
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
46
+ interface CardProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
47
+ }
48
+ declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
49
+ declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
50
+ declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
51
+ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
52
+ declare const CardAction: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
53
+ declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
54
+ declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
55
+
56
+ declare const ButtonDownloadDemo: () => react_jsx_runtime.JSX.Element;
57
+
58
+ declare const ButtonGhostDemo: () => react_jsx_runtime.JSX.Element;
59
+
60
+ declare const ButtonLoadingDemo: () => react_jsx_runtime.JSX.Element;
61
+
62
+ declare const ButtonPublishDemo: () => react_jsx_runtime.JSX.Element;
63
+
64
+ declare const ButtonCopyDemo: () => react_jsx_runtime.JSX.Element;
65
+
66
+ declare const CardDemo: () => react_jsx_runtime.JSX.Element;
67
+
68
+ declare const CardMeetingNotesDemo: () => react_jsx_runtime.JSX.Element;
69
+
70
+ declare const CardInviteCardDemo: () => react_jsx_runtime.JSX.Element;
71
+
72
+ declare const CardBottomImageDemo: () => react_jsx_runtime.JSX.Element;
73
+
74
+ declare const CardTopImageDemo: () => react_jsx_runtime.JSX.Element;
75
+
76
+ declare const CardHorizontalDemo: () => react_jsx_runtime.JSX.Element;
77
+
78
+ declare const CardWithTabsDemo: () => react_jsx_runtime.JSX.Element;
79
+
80
+ declare const CardTestimonialDemo: () => react_jsx_runtime.JSX.Element;
81
+
82
+ declare const CardActionDemo: () => react_jsx_runtime.JSX.Element | null;
83
+
84
+ declare const ButtonGroupDownloadDemo: () => react_jsx_runtime.JSX.Element;
85
+
86
+ declare const ButtonGroupLikeDemo: () => react_jsx_runtime.JSX.Element;
87
+
88
+ declare const ButtonGroupTooltipDemo: () => react_jsx_runtime.JSX.Element;
89
+
90
+ declare const ButtonGroupRoundedDemo: () => react_jsx_runtime.JSX.Element;
91
+
92
+ declare const ButtonGroupSocialDemo: () => react_jsx_runtime.JSX.Element;
93
+
94
+ declare const ButtonGroupZoomDemo: () => react_jsx_runtime.JSX.Element;
95
+
96
+ declare const ButtonGroupNumberDemo: () => react_jsx_runtime.JSX.Element;
97
+
98
+ declare const ButtonGroupPreviewDemo: () => react_jsx_runtime.JSX.Element;
99
+
100
+ declare const ButtonGroupActionsDemo: () => react_jsx_runtime.JSX.Element;
101
+
102
+ declare const ButtonGroupDemo: () => react_jsx_runtime.JSX.Element;
103
+
104
+ declare const ButtonGroupDropdownDemo: () => react_jsx_runtime.JSX.Element;
105
+
106
+ declare const ButtonGroupGhostDemo: () => react_jsx_runtime.JSX.Element;
107
+
108
+ declare const CalendarDemo: () => react_jsx_runtime.JSX.Element;
109
+
110
+ declare const CalendarMultiMonthDemo: () => react_jsx_runtime.JSX.Element;
111
+
112
+ declare const CalendarRangeSingleMonthDemo: () => react_jsx_runtime.JSX.Element;
113
+
114
+ declare const CalendarRangeCalendarMultiMonthDemo: () => react_jsx_runtime.JSX.Element;
115
+
116
+ declare const CalendarRangeWithMinimumDaysDemo: () => react_jsx_runtime.JSX.Element;
117
+
118
+ declare const CalendarDisableDayDemo: () => react_jsx_runtime.JSX.Element;
119
+
120
+ declare const CalendarDisabledWeekendsDemo: () => react_jsx_runtime.JSX.Element;
121
+
122
+ declare const CalendarVariableSizeDemo: () => react_jsx_runtime.JSX.Element;
123
+
124
+ declare const CalendarEventListDemo: () => react_jsx_runtime.JSX.Element;
125
+
126
+ declare const CalendarMultiSelectDemo: () => react_jsx_runtime.JSX.Element;
127
+
128
+ declare const CalendarCustomSelectDayDemo: () => react_jsx_runtime.JSX.Element;
129
+
130
+ declare const CalendarCustomRangeSelectDemo: () => react_jsx_runtime.JSX.Element;
131
+
132
+ declare const CalendarRightYearMonthDemo: () => react_jsx_runtime.JSX.Element;
133
+
134
+ declare const CalendarLeftYearMonthDemo: () => react_jsx_runtime.JSX.Element;
135
+
136
+ declare const CalendarWeekNumberDemo: () => react_jsx_runtime.JSX.Element;
137
+
138
+ declare const CalendarWithAdvanceSelectionDemo: () => react_jsx_runtime.JSX.Element;
139
+
140
+ declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
141
+
142
+ declare const Collapsible: React.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React.RefAttributes<HTMLDivElement>>;
143
+ declare const CollapsibleTrigger: React.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & React.RefAttributes<HTMLButtonElement>>;
144
+ declare const CollapsibleContent: React.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & React.RefAttributes<HTMLDivElement>>;
145
+
146
+ declare const CollapsibleDemo: () => react_jsx_runtime.JSX.Element;
147
+
148
+ declare const CollapsibleTreeDemo: () => react_jsx_runtime.JSX.Element;
149
+
150
+ declare const CollapsibleListDemo: () => react_jsx_runtime.JSX.Element;
151
+
152
+ declare const CollapsibleProfileDemo: () => react_jsx_runtime.JSX.Element;
153
+
154
+ declare const CollapsibleFilterDemo: () => react_jsx_runtime.JSX.Element;
155
+
156
+ declare const CollapsibleShowMoreDemo: () => react_jsx_runtime.JSX.Element;
157
+
158
+ declare const CollapsibleCardDemo: () => react_jsx_runtime.JSX.Element;
159
+
160
+ declare const CollapsibleDropdownMenuDemo: () => react_jsx_runtime.JSX.Element;
161
+
162
+ declare const CollapsibleFormDemo: () => react_jsx_runtime.JSX.Element;
163
+
164
+ declare const ComboboxDemo: () => react_jsx_runtime.JSX.Element;
165
+
166
+ declare const ComboboxOptionGroupDemo: () => react_jsx_runtime.JSX.Element;
167
+
168
+ declare const ComboboxOptionDisabledDemo: () => react_jsx_runtime.JSX.Element;
169
+
170
+ declare const ComboboxOptionWithIIconDemo: () => react_jsx_runtime.JSX.Element;
171
+
172
+ declare const ComboboxCustomCheckIconDemo: () => react_jsx_runtime.JSX.Element;
173
+
174
+ declare const ComboboxWithSearchAndButtonDemo: () => react_jsx_runtime.JSX.Element;
175
+
176
+ declare const ComboboxTimezoneDemo: () => react_jsx_runtime.JSX.Element;
177
+
178
+ declare const ComboboxUserDemo: () => react_jsx_runtime.JSX.Element;
179
+
180
+ declare const ComboboxCountryFlagDemo: () => react_jsx_runtime.JSX.Element;
181
+
182
+ declare const ComboboxMultipleCountBadgeDemo: () => react_jsx_runtime.JSX.Element;
183
+
184
+ declare const DataTableDemo: () => react_jsx_runtime.JSX.Element;
185
+
186
+ declare const DataTableDensityDemo: () => react_jsx_runtime.JSX.Element;
187
+
188
+ declare const DataTableColumnsVisibilityDemo: () => react_jsx_runtime.JSX.Element;
189
+
190
+ declare const DataTableWithSortableColumnDemo: () => react_jsx_runtime.JSX.Element;
191
+
192
+ declare const DataTablePinnableColumnDemo: () => react_jsx_runtime.JSX.Element;
193
+
194
+ declare const DraggableColumnDataTableDemo: () => react_jsx_runtime.JSX.Element;
195
+
196
+ declare const DataTableWithExpandableRowsDemo: () => react_jsx_runtime.JSX.Element;
197
+
198
+ declare module '@tanstack/react-table' {
199
+ interface TableMeta<TData extends RowData> {
200
+ updateData: (rowIndex: number, columnId: string, value: string | number) => void;
201
+ }
202
+ }
203
+ declare const EditableDataTableDemo: () => react_jsx_runtime.JSX.Element;
204
+
205
+ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
206
+ declare const RadioGroupItem: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
207
+
208
+ declare const Textarea: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
209
+
210
+ declare const CheckboxDemo: () => react_jsx_runtime.JSX.Element;
211
+
212
+ declare const CheckboxIndeterminateDemo: () => react_jsx_runtime.JSX.Element;
213
+
214
+ declare const CheckboxDashedDemo: () => react_jsx_runtime.JSX.Element;
215
+
216
+ declare const CheckboxTodoListDemo: () => react_jsx_runtime.JSX.Element;
217
+
218
+ declare const CheckboxSizesDemo: () => react_jsx_runtime.JSX.Element;
219
+
220
+ declare const CheckboxBadgeDemo: () => react_jsx_runtime.JSX.Element;
221
+
222
+ declare const CheckboxDescriptionDemo: () => react_jsx_runtime.JSX.Element;
223
+
224
+ declare const CheckboxHorizontalGroupDemo: () => react_jsx_runtime.JSX.Element;
225
+
226
+ declare const CheckboxVerticalGroupDemo: () => react_jsx_runtime.JSX.Element;
227
+
228
+ declare const CheckboxColorsDemo: () => react_jsx_runtime.JSX.Element;
229
+
230
+ declare const CheckboxCustomIconsDemo: () => react_jsx_runtime.JSX.Element;
231
+
232
+ declare const CheckboxFilledIconDemo: () => react_jsx_runtime.JSX.Element;
233
+
234
+ declare const CheckboxCardDemo: () => react_jsx_runtime.JSX.Element;
235
+
236
+ declare const CheckboxListGroupDemo: () => react_jsx_runtime.JSX.Element;
237
+
238
+ declare const CheckboxTreeDemo: () => react_jsx_runtime.JSX.Element;
239
+
240
+ declare const CheckboxFormDemo$1: () => react_jsx_runtime.JSX.Element;
241
+
242
+ declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
243
+
244
+ declare const InputDemo: () => react_jsx_runtime.JSX.Element;
245
+
246
+ declare const InputLabelDemo: () => react_jsx_runtime.JSX.Element;
247
+
248
+ declare const InputRequiredDemo: () => react_jsx_runtime.JSX.Element;
249
+
250
+ declare const InputDisabledDemo: () => react_jsx_runtime.JSX.Element;
251
+
252
+ declare const InputReadOnlyDemo: () => react_jsx_runtime.JSX.Element;
253
+
254
+ declare const InputSizesDemo: () => react_jsx_runtime.JSX.Element;
255
+
256
+ declare const InputDefaultValueDemo: () => react_jsx_runtime.JSX.Element;
257
+
258
+ declare const InputRoundedDemo: () => react_jsx_runtime.JSX.Element;
259
+
260
+ declare const InputStartHelperTextDemo: () => react_jsx_runtime.JSX.Element;
261
+
262
+ declare const InputEndHelperTextDemo: () => react_jsx_runtime.JSX.Element;
263
+
264
+ declare const InputHintTextDemo: () => react_jsx_runtime.JSX.Element;
265
+
266
+ declare const InputErrorDemo: () => react_jsx_runtime.JSX.Element;
267
+
268
+ declare const InputColoredRingDemo: () => react_jsx_runtime.JSX.Element;
269
+
270
+ declare const InputStartIconDemo: () => react_jsx_runtime.JSX.Element;
271
+
272
+ declare const InputEndIconDemo: () => react_jsx_runtime.JSX.Element;
273
+
274
+ declare const InputStartTextAddOnDemo: () => react_jsx_runtime.JSX.Element;
275
+
276
+ declare const InputEndTextAddOnDemo: () => react_jsx_runtime.JSX.Element;
277
+
278
+ declare const InputTextAddOnsDemo: () => react_jsx_runtime.JSX.Element;
279
+
280
+ declare const InputStartAddOnDemo: () => react_jsx_runtime.JSX.Element;
281
+
282
+ declare const InputEndAddOnDemo: () => react_jsx_runtime.JSX.Element;
283
+
284
+ declare const InputAddOnsDemo: () => react_jsx_runtime.JSX.Element;
285
+
286
+ declare const InputFilledDemo: () => react_jsx_runtime.JSX.Element;
287
+
288
+ declare const InputOverlappingLabelDemo: () => react_jsx_runtime.JSX.Element;
289
+
290
+ declare const InputFloatingLabelDemo: () => react_jsx_runtime.JSX.Element;
291
+
292
+ declare const InputInsetLabelDemo: () => react_jsx_runtime.JSX.Element;
293
+
294
+ declare const InputPasswordDemo: () => react_jsx_runtime.JSX.Element;
295
+
296
+ declare const InputFileDemo: () => react_jsx_runtime.JSX.Element;
297
+
298
+ declare const InputStartSelectDemo: () => react_jsx_runtime.JSX.Element;
299
+
300
+ declare const InputEndSelectDemo: () => react_jsx_runtime.JSX.Element;
301
+
302
+ declare const InputButtonDemo: () => react_jsx_runtime.JSX.Element;
303
+
304
+ declare const InputEndInlineButtonDemo: () => react_jsx_runtime.JSX.Element;
305
+
306
+ declare const InputIconButtonDemo: () => react_jsx_runtime.JSX.Element;
307
+
308
+ declare const InputEndButtonDemo: () => react_jsx_runtime.JSX.Element;
309
+
310
+ declare const InputCharacterLimitDemo: () => react_jsx_runtime.JSX.Element;
311
+
312
+ declare const InputCharacterLeftDemo: () => react_jsx_runtime.JSX.Element;
313
+
314
+ declare const InputClearDemo: () => react_jsx_runtime.JSX.Element;
315
+
316
+ declare const InputSearchDemo: () => react_jsx_runtime.JSX.Element;
317
+
318
+ declare const InputSearchIconDemo: () => react_jsx_runtime.JSX.Element;
319
+
320
+ declare const InputSearchLoaderDemo: () => react_jsx_runtime.JSX.Element;
321
+
322
+ declare const InputWithPlusMinusButtonsDemo: () => react_jsx_runtime.JSX.Element;
323
+
324
+ declare const InputWithEndButtonsDemo: () => react_jsx_runtime.JSX.Element;
325
+
326
+ declare const InputWithStackedButtonsDemo: () => react_jsx_runtime.JSX.Element;
327
+
328
+ declare const InputWithPlusMinusButtonsRoundedDemo: () => react_jsx_runtime.JSX.Element;
329
+
330
+ declare const InputWithEndButtonsRoundedDemo: () => react_jsx_runtime.JSX.Element;
331
+
332
+ declare const InputWithStackedChevronsDemo: () => react_jsx_runtime.JSX.Element;
333
+
334
+ declare const InputPasswordStrengthDemo: () => react_jsx_runtime.JSX.Element;
335
+
336
+ declare const InputWithMaskDemo: () => react_jsx_runtime.JSX.Element;
337
+
338
+ declare const InputTimeDemo: () => react_jsx_runtime.JSX.Element;
339
+
340
+ declare const InputCardNumberDemo: () => react_jsx_runtime.JSX.Element;
341
+
342
+ declare const InputExpiryDateDemo: () => react_jsx_runtime.JSX.Element;
343
+
344
+ declare const InputCVCCodeDemo: () => react_jsx_runtime.JSX.Element;
345
+
346
+ declare const InputCardDetailsDemo: () => react_jsx_runtime.JSX.Element;
347
+
348
+ declare const InputOTPNumberDemo: () => react_jsx_runtime.JSX.Element;
349
+
350
+ declare const InputOTPAlphanumericDemo: () => react_jsx_runtime.JSX.Element;
351
+
352
+ declare const InputOTPWithResendDemo: () => react_jsx_runtime.JSX.Element;
353
+
354
+ declare const InputOTPWithResendTimerDemo: () => react_jsx_runtime.JSX.Element;
355
+
356
+ declare const InputOTPOutlinedDemo: () => react_jsx_runtime.JSX.Element;
357
+
358
+ declare const InputOTPFilledDemo: () => react_jsx_runtime.JSX.Element;
359
+
360
+ declare const InputOTPMinimalDemo: () => react_jsx_runtime.JSX.Element;
361
+
362
+ declare const InputOTPGroupedDemo: () => react_jsx_runtime.JSX.Element;
363
+
364
+ declare const InputOTPOutlinedGroupedDemo: () => react_jsx_runtime.JSX.Element;
365
+
366
+ declare const InputOTPCustomSeparatorDemo: () => react_jsx_runtime.JSX.Element;
367
+
368
+ declare const Pagination: {
369
+ ({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
370
+ displayName: string;
371
+ };
372
+ declare const PaginationContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
373
+ declare const PaginationItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
374
+ type PaginationLinkProps = {
375
+ isActive?: boolean;
376
+ } & Pick<ButtonProps, "size"> & React.ComponentProps<"a">;
377
+ declare const PaginationLink: {
378
+ ({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
379
+ displayName: string;
380
+ };
381
+ declare const PaginationPrevious: {
382
+ ({ className, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
383
+ displayName: string;
384
+ };
385
+ declare const PaginationNext: {
386
+ ({ className, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
387
+ displayName: string;
388
+ };
389
+ declare const PaginationEllipsis: {
390
+ ({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
391
+ displayName: string;
392
+ };
393
+
394
+ declare const PaginationDemo: () => react_jsx_runtime.JSX.Element;
395
+
396
+ declare const PaginationWithIconDemo: () => react_jsx_runtime.JSX.Element;
397
+
398
+ declare const PaginationWithPrimaryButtonDemo: () => react_jsx_runtime.JSX.Element;
399
+
400
+ declare const PaginationWithSecondaryButtonDemo: () => react_jsx_runtime.JSX.Element;
401
+
402
+ declare const BorderedPaginationDemo: () => react_jsx_runtime.JSX.Element;
403
+
404
+ declare const PaginationWithRoundedButton: () => react_jsx_runtime.JSX.Element;
405
+
406
+ declare const PaginationWithFirstAndLastPageButtonNavigation: () => react_jsx_runtime.JSX.Element;
407
+
408
+ declare const PaginationWithEllipsisDemo: () => react_jsx_runtime.JSX.Element;
409
+
410
+ declare const PaginationUnderlineDemo: () => react_jsx_runtime.JSX.Element;
411
+
412
+ declare const CardPaginationDemo: () => react_jsx_runtime.JSX.Element;
413
+
414
+ declare const NumberlessPaginationDemo: () => react_jsx_runtime.JSX.Element;
415
+
416
+ declare const NumberlessPaginationWithTextDemo: () => react_jsx_runtime.JSX.Element;
417
+
418
+ declare const MiniPagination: () => react_jsx_runtime.JSX.Element;
419
+
420
+ declare const PaginationWithSelectDemo: () => react_jsx_runtime.JSX.Element;
421
+
422
+ declare const TablePaginationDemo: () => react_jsx_runtime.JSX.Element;
423
+
424
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
425
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
426
+ declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
427
+ declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
428
+
429
+ declare const PopoverRatingsDemo: () => react_jsx_runtime.JSX.Element;
430
+
431
+ declare const PopoverDimensionsDemo: () => react_jsx_runtime.JSX.Element;
432
+
433
+ declare const PopoverPricingDemo: () => react_jsx_runtime.JSX.Element;
434
+
435
+ declare const PopoverVolumeDemo: () => react_jsx_runtime.JSX.Element;
436
+
437
+ declare const PopoverAboutDemo: () => react_jsx_runtime.JSX.Element;
438
+
439
+ declare const PopoverDownloadDemo: () => react_jsx_runtime.JSX.Element;
440
+
441
+ declare const PopoverDeleteFileDemo: () => react_jsx_runtime.JSX.Element;
442
+
443
+ declare const PopoverFeedbackDemo: () => react_jsx_runtime.JSX.Element;
444
+
445
+ declare const PopoverFilterDemo: () => react_jsx_runtime.JSX.Element;
446
+
447
+ declare const PopoverSearchDemo: () => react_jsx_runtime.JSX.Element;
448
+
449
+ declare const PopoverNotificationsDemo: () => react_jsx_runtime.JSX.Element;
450
+
451
+ declare const PopoverAboutHimalayasDemo: () => react_jsx_runtime.JSX.Element;
452
+
453
+ declare const RadioGroupDemo: () => react_jsx_runtime.JSX.Element;
454
+
455
+ declare const RadioGroupHorizontalDemo: () => react_jsx_runtime.JSX.Element;
456
+
457
+ declare const RadioGroupColorsDemo: () => react_jsx_runtime.JSX.Element;
458
+
459
+ declare const RadioGroupSizesDemo: () => react_jsx_runtime.JSX.Element;
460
+
461
+ declare const RadioGroupDashedDemo: () => react_jsx_runtime.JSX.Element;
462
+
463
+ declare const RadioGroupSolidDemo: () => react_jsx_runtime.JSX.Element;
464
+
465
+ declare const RadioGroupDescriptionDemo: () => react_jsx_runtime.JSX.Element;
466
+
467
+ declare const RadioGroupChipDemo: () => react_jsx_runtime.JSX.Element;
468
+
469
+ declare const RadioGroupListGroupDemo: () => react_jsx_runtime.JSX.Element;
470
+
471
+ declare const RadioGroupSplitListGroupDemo: () => react_jsx_runtime.JSX.Element;
472
+
473
+ declare const RadioGroupCardRadioDemo: () => react_jsx_runtime.JSX.Element;
474
+
475
+ declare const RadioGroupCardRadioWithBorderDemo: () => react_jsx_runtime.JSX.Element;
476
+
477
+ declare const RadioGroupCardVerticalRadioDemo: () => react_jsx_runtime.JSX.Element;
478
+
479
+ declare const BadgeDemo: () => react_jsx_runtime.JSX.Element;
480
+
481
+ declare const BadgeSecondaryDemo: () => react_jsx_runtime.JSX.Element;
482
+
483
+ declare const BadgeDestructiveDemo: () => react_jsx_runtime.JSX.Element;
484
+
485
+ declare const BadgeOutlineDemo: () => react_jsx_runtime.JSX.Element;
486
+
487
+ declare const BadgeDotDemo: () => react_jsx_runtime.JSX.Element;
488
+
489
+ declare const BadgeRoundedDemo: () => react_jsx_runtime.JSX.Element;
490
+
491
+ declare const BadgeNumberDemo: () => react_jsx_runtime.JSX.Element;
492
+
493
+ declare const BadgeLargeDemo: () => react_jsx_runtime.JSX.Element;
494
+
495
+ declare const BadgeSmallDemo: () => react_jsx_runtime.JSX.Element;
496
+
497
+ declare const BadgeWithIconDemo: () => react_jsx_runtime.JSX.Element;
498
+
499
+ declare const BadgeLinkDemo: () => react_jsx_runtime.JSX.Element;
500
+
501
+ declare const BadgeClosableDemo: () => react_jsx_runtime.JSX.Element | null;
502
+
503
+ declare const BadgeSelectableDemo: () => react_jsx_runtime.JSX.Element;
504
+
505
+ declare const BadgeGradientDemo: () => react_jsx_runtime.JSX.Element;
506
+
507
+ declare const BadgeGradientOutlineDemo: () => react_jsx_runtime.JSX.Element;
508
+
509
+ declare const BadgeInProgressDemo: () => react_jsx_runtime.JSX.Element;
510
+
511
+ declare const BadgeBlockedDemo: () => react_jsx_runtime.JSX.Element;
512
+
513
+ declare const BadgeCompletedDemo: () => react_jsx_runtime.JSX.Element;
514
+
515
+ declare const BadgePendingDemo: () => react_jsx_runtime.JSX.Element;
516
+
517
+ declare const BadgeFailedDemo: () => react_jsx_runtime.JSX.Element;
518
+
519
+ declare const BadgeSuccessfulDemo: () => react_jsx_runtime.JSX.Element;
520
+
521
+ declare const BadgeAvatarDemo: () => react_jsx_runtime.JSX.Element;
522
+
523
+ declare const BadgeCartDemo: () => react_jsx_runtime.JSX.Element;
524
+
525
+ declare const BadgeStatusOnlineDemo: () => react_jsx_runtime.JSX.Element;
526
+
527
+ declare const SonnerDemo: () => react_jsx_runtime.JSX.Element;
528
+
529
+ declare const SonnerWithDescriptionDemo: () => react_jsx_runtime.JSX.Element;
530
+
531
+ declare const SonnerWithIconDemo: () => react_jsx_runtime.JSX.Element;
532
+
533
+ declare const SonnerWithAvatarDemo: () => react_jsx_runtime.JSX.Element;
534
+
535
+ declare const ClosableSonnerDemo: () => react_jsx_runtime.JSX.Element;
536
+
537
+ declare const SonnerWithActionDemo: () => react_jsx_runtime.JSX.Element;
538
+
539
+ declare const SonnerWithPromiseDemo: () => react_jsx_runtime.JSX.Element;
540
+
541
+ declare const SonnerPositionDemo: () => react_jsx_runtime.JSX.Element;
542
+
543
+ declare const SoftInfoSonnerDemo: () => react_jsx_runtime.JSX.Element;
544
+
545
+ declare const SoftSuccessSonnerDemo: () => react_jsx_runtime.JSX.Element;
546
+
547
+ declare const SoftWarningSonnerDemo: () => react_jsx_runtime.JSX.Element;
548
+
549
+ declare const SoftDestructiveSonnerDemo: () => react_jsx_runtime.JSX.Element;
550
+
551
+ declare const OutlineInfoSonnerDemo: () => react_jsx_runtime.JSX.Element;
552
+
553
+ declare const OutlineSuccessSonnerDemo: () => react_jsx_runtime.JSX.Element;
554
+
555
+ declare const OutlineWarningSonnerDemo: () => react_jsx_runtime.JSX.Element;
556
+
557
+ declare const OutlineDestructiveSonnerDemo: () => react_jsx_runtime.JSX.Element;
558
+
559
+ declare const SolidInfoSonnerDemo: () => react_jsx_runtime.JSX.Element;
560
+
561
+ declare const SolidSuccessSonnerDemo: () => react_jsx_runtime.JSX.Element;
562
+
563
+ declare const SolidWarningSonnerDemo: () => react_jsx_runtime.JSX.Element;
564
+
565
+ declare const SolidDestructiveSonnerDemo: () => react_jsx_runtime.JSX.Element;
566
+
567
+ declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React.RefAttributes<HTMLLabelElement>>;
568
+
569
+ declare const badgeVariants: (props?: ({
570
+ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
571
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
572
+ interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
573
+ asChild?: boolean;
574
+ }
575
+ declare function Badge({ className, variant, asChild, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
576
+
577
+ interface AlertProps extends React.HTMLAttributes<HTMLDivElement> {
578
+ }
579
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
580
+ declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
581
+ declare const AlertDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
582
+
583
+ declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
584
+
585
+ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
586
+ }
587
+ declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<HTMLDivElement>>;
588
+
589
+ declare const toggleVariants: (props?: ({
590
+ variant?: "default" | "outline" | null | undefined;
591
+ size?: "default" | "sm" | "lg" | null | undefined;
592
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
593
+ declare const Toggle: React.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
594
+ variant?: "default" | "outline" | null | undefined;
595
+ size?: "default" | "sm" | "lg" | null | undefined;
596
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
597
+ type ToggleProps = React.ComponentPropsWithoutRef<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>;
598
+
599
+ declare const switchRootVariants: (props?: ({
600
+ size?: "default" | "sm" | "lg" | null | undefined;
601
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
602
+ declare const switchThumbVariants: (props?: ({
603
+ size?: "default" | "sm" | "lg" | null | undefined;
604
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
605
+ declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
606
+ size?: "default" | "sm" | "lg" | null | undefined;
607
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
608
+ type SwitchProps = React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root> & VariantProps<typeof switchRootVariants>;
609
+
610
+ /**
611
+ * Accordion – Radix-based collapsible sections.
612
+ *
613
+ * Layout shift: The perceived "jump" when toggling was caused by (1) the trigger
614
+ * using transition-all, so layout properties could change during the chevron
615
+ * rotation, and (2) the Storybook canvas wrapper sizing to content (width: auto).
616
+ * Fixes: chevron uses only transition-transform; content uses overflow-hidden +
617
+ * Radix data-state height animation (CSS variable); Storybook stories use a
618
+ * constrained wrapper (max-w-md mx-auto) and canvas constraint CSS.
619
+ */
620
+
621
+ declare const Accordion: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
622
+ declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
623
+ declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
624
+ declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
625
+
626
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
627
+ declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
628
+ declare const useFormField: () => {
629
+ invalid: boolean;
630
+ isDirty: boolean;
631
+ isTouched: boolean;
632
+ isValidating: boolean;
633
+ error?: react_hook_form.FieldError;
634
+ id: string;
635
+ name: string;
636
+ formItemId: string;
637
+ formDescriptionId: string;
638
+ formMessageId: string;
639
+ };
640
+ declare const FormItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
641
+ declare const FormLabel: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
642
+ declare const FormControl: React.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
643
+ declare const FormDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
644
+ declare const FormMessage: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
645
+
646
+ declare const RadioGroupFormDemo: () => react_jsx_runtime.JSX.Element;
647
+
648
+ declare const CheckboxFormDemo: () => react_jsx_runtime.JSX.Element;
649
+
650
+ declare const SwitchFormDemo: () => react_jsx_runtime.JSX.Element;
651
+
652
+ declare const InputFormDemo: () => react_jsx_runtime.JSX.Element;
653
+
654
+ declare const InputOTPFormDemo: () => react_jsx_runtime.JSX.Element;
655
+
656
+ declare const TextareaFormDemo: () => react_jsx_runtime.JSX.Element;
657
+
658
+ declare const SelectFormDemo: () => react_jsx_runtime.JSX.Element;
659
+
660
+ declare const ComboboxFormDemo: () => react_jsx_runtime.JSX.Element;
661
+
662
+ declare const DatePickerFormDemo: () => react_jsx_runtime.JSX.Element;
663
+
664
+ declare const ContactUSFormDemo: () => react_jsx_runtime.JSX.Element;
665
+
666
+ declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
667
+ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
668
+ declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
669
+ declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
670
+ declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
671
+ declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
672
+ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
673
+ inset?: boolean;
674
+ } & React.RefAttributes<HTMLDivElement>>;
675
+ declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
676
+ declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
677
+ declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
678
+ inset?: boolean;
679
+ variant?: "default" | "destructive";
680
+ } & React.RefAttributes<HTMLDivElement>>;
681
+ declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
682
+ declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
683
+ declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
684
+ inset?: boolean;
685
+ } & React.RefAttributes<HTMLDivElement>>;
686
+ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
687
+ declare const DropdownMenuShortcut: {
688
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
689
+ displayName: string;
690
+ };
691
+
692
+ declare const DropdownMenuDemo: () => react_jsx_runtime.JSX.Element;
693
+
694
+ declare const DropdownMeetingScheduleDemo: () => react_jsx_runtime.JSX.Element;
695
+
696
+ declare const DropdownMenuUserProfileDemo: () => react_jsx_runtime.JSX.Element;
697
+
698
+ declare const DropdownMenuAlignStartDemo: () => react_jsx_runtime.JSX.Element;
699
+
700
+ declare const DropdownMenuBorderedMenuDemo: () => react_jsx_runtime.JSX.Element;
701
+
702
+ declare const DropdownMenuCheckboxDemo: () => react_jsx_runtime.JSX.Element;
703
+
704
+ declare const DropdownMenuRadioGroupDemo: () => react_jsx_runtime.JSX.Element;
705
+
706
+ declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
707
+
708
+ type SidebarContextProps = {
709
+ state: "expanded" | "collapsed";
710
+ open: boolean;
711
+ setOpen: (open: boolean) => void;
712
+ openMobile: boolean;
713
+ setOpenMobile: (open: boolean) => void;
714
+ isMobile: boolean;
715
+ toggleSidebar: () => void;
716
+ };
717
+ declare function useSidebar(): SidebarContextProps;
718
+ declare const SidebarProvider: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
719
+ defaultOpen?: boolean;
720
+ open?: boolean;
721
+ onOpenChange?: (open: boolean) => void;
722
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
723
+ declare const Sidebar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
724
+ side?: "left" | "right";
725
+ variant?: "sidebar" | "floating" | "inset";
726
+ collapsible?: "offcanvas" | "icon" | "none";
727
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
728
+ declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
729
+ declare const SidebarRail: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
730
+ declare const SidebarInset: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
731
+ declare const SidebarInput: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
732
+ declare const SidebarHeader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
733
+ declare const SidebarFooter: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
734
+ declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
735
+ declare const SidebarContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
736
+ declare const SidebarGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
737
+ declare const SidebarGroupLabel: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
738
+ asChild?: boolean;
739
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
740
+ declare const SidebarGroupAction: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
741
+ asChild?: boolean;
742
+ }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
743
+ declare const SidebarGroupContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
744
+ declare const SidebarMenu: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
745
+ declare const SidebarMenuItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
746
+ declare const SidebarMenuButton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
747
+ asChild?: boolean;
748
+ isActive?: boolean;
749
+ tooltip?: string | React.ComponentProps<typeof TooltipContent>;
750
+ } & VariantProps<(props?: ({
751
+ variant?: "default" | "outline" | null | undefined;
752
+ size?: "default" | "sm" | "lg" | null | undefined;
753
+ } & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
754
+ declare const SidebarMenuAction: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
755
+ asChild?: boolean;
756
+ showOnHover?: boolean;
757
+ }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
758
+ declare const SidebarMenuBadge: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
759
+ declare const SidebarMenuSkeleton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
760
+ showIcon?: boolean;
761
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
762
+ declare const SidebarMenuSub: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
763
+ declare const SidebarMenuSubItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
764
+ declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLAnchorElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> & {
765
+ asChild?: boolean;
766
+ size?: "sm" | "md";
767
+ isActive?: boolean;
768
+ }, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
769
+
770
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, type AlertProps, AlertTitle, Badge, BadgeDemo as Badge01, BadgeSecondaryDemo as Badge02, BadgeDestructiveDemo as Badge03, BadgeOutlineDemo as Badge04, BadgeDotDemo as Badge05, BadgeRoundedDemo as Badge06, BadgeNumberDemo as Badge07, BadgeLargeDemo as Badge08, BadgeSmallDemo as Badge09, BadgeWithIconDemo as Badge10, BadgeLinkDemo as Badge11, BadgeClosableDemo as Badge12, BadgeSelectableDemo as Badge13, BadgeGradientDemo as Badge14, BadgeGradientOutlineDemo as Badge15, BadgeInProgressDemo as Badge16, BadgeBlockedDemo as Badge17, BadgeCompletedDemo as Badge18, BadgePendingDemo as Badge19, BadgeFailedDemo as Badge20, BadgeSuccessfulDemo as Badge21, BadgeAvatarDemo as Badge22, BadgeCartDemo as Badge23, BadgeStatusOnlineDemo as Badge24, type BadgeProps, Button, ButtonDownloadDemo as Button14, ButtonGhostDemo as Button16, ButtonLoadingDemo as Button17, ButtonPublishDemo as Button19, ButtonCopyDemo as Button20, ButtonGroupDownloadDemo as ButtonGroup01, ButtonGroupLikeDemo as ButtonGroup02, ButtonGroupTooltipDemo as ButtonGroup03, ButtonGroupRoundedDemo as ButtonGroup04, ButtonGroupSocialDemo as ButtonGroup05, ButtonGroupZoomDemo as ButtonGroup06, ButtonGroupNumberDemo as ButtonGroup07, ButtonGroupPreviewDemo as ButtonGroup08, ButtonGroupActionsDemo as ButtonGroup09, ButtonGroupDemo as ButtonGroup10, ButtonGroupDropdownDemo as ButtonGroup11, ButtonGroupGhostDemo as ButtonGroup12, type ButtonProps, CalendarDemo as Calendar01, CalendarMultiMonthDemo as Calendar02, CalendarRangeSingleMonthDemo as Calendar03, CalendarRangeCalendarMultiMonthDemo as Calendar04, CalendarRangeWithMinimumDaysDemo as Calendar05, CalendarDisableDayDemo as Calendar06, CalendarDisabledWeekendsDemo as Calendar07, CalendarVariableSizeDemo as Calendar10, CalendarEventListDemo as Calendar11, CalendarMultiSelectDemo as Calendar12, CalendarCustomSelectDayDemo as Calendar13, CalendarCustomRangeSelectDemo as Calendar14, CalendarRightYearMonthDemo as Calendar15, CalendarLeftYearMonthDemo as Calendar16, CalendarWeekNumberDemo as Calendar17, CalendarWithAdvanceSelectionDemo as Calendar21, Card, CardDemo as Card01, CardMeetingNotesDemo as Card02, CardInviteCardDemo as Card03, CardBottomImageDemo as Card04, CardTopImageDemo as Card05, CardHorizontalDemo as Card06, CardWithTabsDemo as Card10, CardTestimonialDemo as Card13, CardActionDemo as Card14, CardAction, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Checkbox, CheckboxDemo as Checkbox01, CheckboxIndeterminateDemo as Checkbox02, CheckboxDashedDemo as Checkbox03, CheckboxTodoListDemo as Checkbox04, CheckboxSizesDemo as Checkbox05, CheckboxBadgeDemo as Checkbox06, CheckboxDescriptionDemo as Checkbox07, CheckboxHorizontalGroupDemo as Checkbox08, CheckboxVerticalGroupDemo as Checkbox09, CheckboxColorsDemo as Checkbox10, CheckboxCustomIconsDemo as Checkbox11, CheckboxFilledIconDemo as Checkbox12, CheckboxCardDemo as Checkbox13, CheckboxListGroupDemo as Checkbox14, CheckboxTreeDemo as Checkbox15, CheckboxFormDemo$1 as Checkbox16, Collapsible, CollapsibleDemo as Collapsible01, CollapsibleTreeDemo as Collapsible02, CollapsibleListDemo as Collapsible03, CollapsibleProfileDemo as Collapsible04, CollapsibleFilterDemo as Collapsible05, CollapsibleShowMoreDemo as Collapsible06, CollapsibleCardDemo as Collapsible07, CollapsibleDropdownMenuDemo as Collapsible08, CollapsibleFormDemo as Collapsible09, CollapsibleContent, CollapsibleTrigger, ComboboxDemo as Combobox01, ComboboxOptionGroupDemo as Combobox02, ComboboxOptionDisabledDemo as Combobox03, ComboboxOptionWithIIconDemo as Combobox04, ComboboxCustomCheckIconDemo as Combobox05, ComboboxWithSearchAndButtonDemo as Combobox06, ComboboxTimezoneDemo as Combobox07, ComboboxUserDemo as Combobox08, ComboboxCountryFlagDemo as Combobox09, ComboboxMultipleCountBadgeDemo as Combobox12, DataTableDemo as DataTable01, DataTableDensityDemo as DataTable02, DataTableColumnsVisibilityDemo as DataTable03, DataTableWithSortableColumnDemo as DataTable05, DataTablePinnableColumnDemo as DataTable07, DraggableColumnDataTableDemo as DataTable08, DataTableWithExpandableRowsDemo as DataTable09, EditableDataTableDemo as DataTable13, DropdownMenu, DropdownMenuDemo as DropdownMenu01, DropdownMeetingScheduleDemo as DropdownMenu05, DropdownMenuUserProfileDemo as DropdownMenu08, DropdownMenuAlignStartDemo as DropdownMenu09, DropdownMenuBorderedMenuDemo as DropdownMenu11, DropdownMenuCheckboxDemo as DropdownMenu13, DropdownMenuRadioGroupDemo as DropdownMenu14, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, RadioGroupFormDemo as Form01, CheckboxFormDemo as Form02, SwitchFormDemo as Form03, InputFormDemo as Form04, InputOTPFormDemo as Form05, TextareaFormDemo as Form06, SelectFormDemo as Form07, ComboboxFormDemo as Form08, DatePickerFormDemo as Form09, ContactUSFormDemo as Form10, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, InputDemo as Input01, InputLabelDemo as Input02, InputRequiredDemo as Input03, InputDisabledDemo as Input04, InputReadOnlyDemo as Input05, InputSizesDemo as Input06, InputDefaultValueDemo as Input07, InputRoundedDemo as Input08, InputStartHelperTextDemo as Input09, InputEndHelperTextDemo as Input10, InputHintTextDemo as Input11, InputErrorDemo as Input12, InputColoredRingDemo as Input13, InputStartIconDemo as Input14, InputEndIconDemo as Input15, InputStartTextAddOnDemo as Input16, InputEndTextAddOnDemo as Input17, InputTextAddOnsDemo as Input18, InputStartAddOnDemo as Input19, InputEndAddOnDemo as Input20, InputAddOnsDemo as Input21, InputFilledDemo as Input22, InputOverlappingLabelDemo as Input23, InputFloatingLabelDemo as Input24, InputInsetLabelDemo as Input25, InputPasswordDemo as Input26, InputFileDemo as Input27, InputStartSelectDemo as Input28, InputEndSelectDemo as Input29, InputButtonDemo as Input30, InputEndInlineButtonDemo as Input31, InputIconButtonDemo as Input32, InputEndButtonDemo as Input33, InputCharacterLimitDemo as Input34, InputCharacterLeftDemo as Input35, InputClearDemo as Input36, InputSearchDemo as Input37, InputSearchIconDemo as Input38, InputSearchLoaderDemo as Input39, InputWithPlusMinusButtonsDemo as Input40, InputWithEndButtonsDemo as Input41, InputWithStackedButtonsDemo as Input42, InputWithPlusMinusButtonsRoundedDemo as Input43, InputWithEndButtonsRoundedDemo as Input44, InputWithStackedChevronsDemo as Input45, InputPasswordStrengthDemo as Input46, InputWithMaskDemo as InputMask01, InputTimeDemo as InputMask02, InputCardNumberDemo as InputMask03, InputExpiryDateDemo as InputMask04, InputCVCCodeDemo as InputMask05, InputCardDetailsDemo as InputMask06, InputOTPNumberDemo as InputOtp01, InputOTPAlphanumericDemo as InputOtp02, InputOTPWithResendDemo as InputOtp03, InputOTPWithResendTimerDemo as InputOtp04, InputOTPOutlinedDemo as InputOtp05, InputOTPFilledDemo as InputOtp06, InputOTPMinimalDemo as InputOtp07, InputOTPGroupedDemo as InputOtp08, InputOTPOutlinedGroupedDemo as InputOtp09, InputOTPCustomSeparatorDemo as InputOtp10, Label, Pagination, PaginationDemo as Pagination01, PaginationWithIconDemo as Pagination02, PaginationWithPrimaryButtonDemo as Pagination03, PaginationWithSecondaryButtonDemo as Pagination04, BorderedPaginationDemo as Pagination05, PaginationWithRoundedButton as Pagination06, PaginationWithFirstAndLastPageButtonNavigation as Pagination07, PaginationWithEllipsisDemo as Pagination08, PaginationUnderlineDemo as Pagination09, CardPaginationDemo as Pagination10, NumberlessPaginationDemo as Pagination11, NumberlessPaginationWithTextDemo as Pagination12, MiniPagination as Pagination13, PaginationWithSelectDemo as Pagination14, TablePaginationDemo as Pagination15, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverRatingsDemo as Popover01, PopoverDimensionsDemo as Popover02, PopoverPricingDemo as Popover03, PopoverVolumeDemo as Popover04, PopoverAboutDemo as Popover05, PopoverDownloadDemo as Popover06, PopoverDeleteFileDemo as Popover07, PopoverFeedbackDemo as Popover08, PopoverFilterDemo as Popover09, PopoverSearchDemo as Popover10, PopoverNotificationsDemo as Popover11, PopoverAboutHimalayasDemo as Popover12, PopoverAnchor, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupDemo as RadioGroup01, RadioGroupHorizontalDemo as RadioGroup02, RadioGroupColorsDemo as RadioGroup03, RadioGroupSizesDemo as RadioGroup04, RadioGroupDashedDemo as RadioGroup05, RadioGroupSolidDemo as RadioGroup06, RadioGroupDescriptionDemo as RadioGroup07, RadioGroupChipDemo as RadioGroup08, RadioGroupListGroupDemo as RadioGroup09, RadioGroupSplitListGroupDemo as RadioGroup10, RadioGroupCardRadioDemo as RadioGroup11, RadioGroupCardRadioWithBorderDemo as RadioGroup12, RadioGroupCardVerticalRadioDemo as RadioGroup13, RadioGroupItem, Separator, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SonnerDemo as Sonner01, SonnerWithDescriptionDemo as Sonner02, SonnerWithIconDemo as Sonner03, SonnerWithAvatarDemo as Sonner04, ClosableSonnerDemo as Sonner05, SonnerWithActionDemo as Sonner06, SonnerWithPromiseDemo as Sonner07, SonnerPositionDemo as Sonner08, SoftInfoSonnerDemo as Sonner09, SoftSuccessSonnerDemo as Sonner10, SoftWarningSonnerDemo as Sonner11, SoftDestructiveSonnerDemo as Sonner12, OutlineInfoSonnerDemo as Sonner13, OutlineSuccessSonnerDemo as Sonner14, OutlineWarningSonnerDemo as Sonner15, OutlineDestructiveSonnerDemo as Sonner16, SolidInfoSonnerDemo as Sonner17, SolidSuccessSonnerDemo as Sonner18, SolidWarningSonnerDemo as Sonner19, SolidDestructiveSonnerDemo as Sonner20, Switch, type SwitchProps, Textarea, ThemeProvider, Toggle, type ToggleProps, badgeVariants, buttonVariants, cardVariants, cn, switchRootVariants, switchThumbVariants, toggleVariants, useFormField, useSidebar };