bsm-design-system 1.22.12 → 1.22.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/index.d.mts +1157 -0
  2. package/index.js +19 -19
  3. package/index.mjs +93 -0
  4. package/package.json +1 -1
package/index.d.mts ADDED
@@ -0,0 +1,1157 @@
1
+ import * as React$1 from 'react';
2
+ import React__default, { ButtonHTMLAttributes, JSX } from 'react';
3
+ import * as tailwind_variants from 'tailwind-variants';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import { Root } from '@radix-ui/react-switch';
6
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
7
+ import { Root as Root$1 } from '@radix-ui/react-radio-group';
8
+ import { Root as Root$2 } from '@radix-ui/react-checkbox';
9
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
10
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
12
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
13
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
14
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
15
+ import { OTPInput } from 'input-otp';
16
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
17
+
18
+ declare const buttonVariants: tailwind_variants.TVReturnType<{
19
+ variant: {
20
+ fill: string;
21
+ ghost: string;
22
+ outlined: string;
23
+ text: string;
24
+ };
25
+ color: {
26
+ primary: string;
27
+ error: string;
28
+ };
29
+ size: {
30
+ xs: string;
31
+ sm: string;
32
+ md: string;
33
+ lg: string;
34
+ };
35
+ iconOnly: {
36
+ true: string;
37
+ false: string;
38
+ };
39
+ rounded: {
40
+ true: string;
41
+ false: string;
42
+ };
43
+ }, undefined, "inline-flex items-center relative active:scale-95 [&_svg]:text-current cursor-pointer disabled:text-disabled justify-center gap-2 whitespace-nowrap font-normal transition-all disabled:pointer-events-none select-none [&_svg]:pointer-events-none shrink-0 [&_svg]:shrink-0 outline-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", {
44
+ variant: {
45
+ fill: string;
46
+ ghost: string;
47
+ outlined: string;
48
+ text: string;
49
+ };
50
+ color: {
51
+ primary: string;
52
+ error: string;
53
+ };
54
+ size: {
55
+ xs: string;
56
+ sm: string;
57
+ md: string;
58
+ lg: string;
59
+ };
60
+ iconOnly: {
61
+ true: string;
62
+ false: string;
63
+ };
64
+ rounded: {
65
+ true: string;
66
+ false: string;
67
+ };
68
+ }, undefined, tailwind_variants.TVReturnType<{
69
+ variant: {
70
+ fill: string;
71
+ ghost: string;
72
+ outlined: string;
73
+ text: string;
74
+ };
75
+ color: {
76
+ primary: string;
77
+ error: string;
78
+ };
79
+ size: {
80
+ xs: string;
81
+ sm: string;
82
+ md: string;
83
+ lg: string;
84
+ };
85
+ iconOnly: {
86
+ true: string;
87
+ false: string;
88
+ };
89
+ rounded: {
90
+ true: string;
91
+ false: string;
92
+ };
93
+ }, undefined, "inline-flex items-center relative active:scale-95 [&_svg]:text-current cursor-pointer disabled:text-disabled justify-center gap-2 whitespace-nowrap font-normal transition-all disabled:pointer-events-none select-none [&_svg]:pointer-events-none shrink-0 [&_svg]:shrink-0 outline-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", unknown, unknown, undefined>>;
94
+
95
+ type ButtonVariant = keyof typeof buttonVariants.variants.variant;
96
+
97
+ type ButtonSize = keyof typeof buttonVariants.variants.size;
98
+
99
+ type ButtonColors = "primary" | "error";
100
+
101
+ /**
102
+ * Primary UI component for user interaction
103
+ */
104
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
105
+ /**
106
+ * Button contents
107
+ */
108
+ children: React.ReactNode;
109
+ /**
110
+ * Button Trailling Icon
111
+ */
112
+ traillingIcon?: React.ReactNode;
113
+ /**
114
+ * Button Variant
115
+ */
116
+ variant?: ButtonVariant;
117
+ /**
118
+ * Button Size
119
+ */
120
+ size?: ButtonSize;
121
+ /**
122
+ * Button Color
123
+ */
124
+ color?: ButtonColors;
125
+ /**
126
+ * Button Loading State
127
+ */
128
+ loading?: boolean;
129
+ /**
130
+ /**
131
+ * Button Icon Only
132
+ */
133
+ iconOnly?: boolean;
134
+ /**
135
+ * Button Icon Only
136
+ */
137
+ rounded?: boolean;
138
+ /**
139
+ * Button Click Event
140
+ */
141
+ onClick?: React.MouseEventHandler<HTMLButtonElement>;
142
+ }
143
+
144
+ /**
145
+ * A button component with support for ref
146
+ */
147
+ declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
148
+
149
+ declare const switchVariants: tailwind_variants.TVReturnType<{
150
+ size: {
151
+ sm: string;
152
+ md: string;
153
+ lg: string;
154
+ };
155
+ disabled: {
156
+ true: string;
157
+ false: string;
158
+ };
159
+ }, undefined, "group cursor-pointer border-2 border-transparent inline-flex shrink-0 items-center rounded-full shadow-xs transition-all outline-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", {
160
+ size: {
161
+ sm: string;
162
+ md: string;
163
+ lg: string;
164
+ };
165
+ disabled: {
166
+ true: string;
167
+ false: string;
168
+ };
169
+ }, undefined, tailwind_variants.TVReturnType<{
170
+ size: {
171
+ sm: string;
172
+ md: string;
173
+ lg: string;
174
+ };
175
+ disabled: {
176
+ true: string;
177
+ false: string;
178
+ };
179
+ }, undefined, "group cursor-pointer border-2 border-transparent inline-flex shrink-0 items-center rounded-full shadow-xs transition-all outline-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", unknown, unknown, undefined>>;
180
+
181
+ type DefaultType$4 = Omit<
182
+ React.ComponentProps<typeof Root>,
183
+ "onCheckedChange" | "onChange"
184
+ >;
185
+
186
+ type SwitchSize = keyof typeof switchVariants.variants.size;
187
+
188
+ type SwitchProps = {
189
+ size?: SwitchSize;
190
+ iconOn?: React.ReactNode;
191
+ iconOff?: React.ReactNode;
192
+ /**
193
+ * Switch onChange event
194
+ */
195
+ onChange?: (checked: boolean) => void;
196
+ } & DefaultType$4;
197
+
198
+ /**
199
+ * A switch component
200
+ */
201
+ declare function Switch({ className, size, disabled, iconOff, iconOn, onChange, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
202
+
203
+ declare const radioVariants: tailwind_variants.TVReturnType<{
204
+ size: {
205
+ sm: string;
206
+ md: string;
207
+ lg: string;
208
+ };
209
+ disabled: {
210
+ true: string;
211
+ false: string;
212
+ };
213
+ orientation: {
214
+ horizontal: string;
215
+ vertical: string;
216
+ };
217
+ }, undefined, "grid gap-3", {
218
+ size: {
219
+ sm: string;
220
+ md: string;
221
+ lg: string;
222
+ };
223
+ disabled: {
224
+ true: string;
225
+ false: string;
226
+ };
227
+ orientation: {
228
+ horizontal: string;
229
+ vertical: string;
230
+ };
231
+ }, undefined, tailwind_variants.TVReturnType<{
232
+ size: {
233
+ sm: string;
234
+ md: string;
235
+ lg: string;
236
+ };
237
+ disabled: {
238
+ true: string;
239
+ false: string;
240
+ };
241
+ orientation: {
242
+ horizontal: string;
243
+ vertical: string;
244
+ };
245
+ }, undefined, "grid gap-3", unknown, unknown, undefined>>;
246
+
247
+ type DefaultType$3 = Omit<
248
+ React.ComponentProps<typeof Root$1>,
249
+ "onValueChange" | "onChange"
250
+ >;
251
+
252
+ type RadioSize = keyof typeof radioVariants.variants.size;
253
+
254
+ type RadioItemProps = React.ComponentProps<
255
+ typeof RadioGroupPrimitive.Item
256
+ >;
257
+
258
+ type RadioProps = {
259
+ size?: RadioSize;
260
+ /**
261
+ * RadioGroup onChange event
262
+ */
263
+ onChange?: (value: string) => void;
264
+ } & DefaultType$3;
265
+
266
+ declare function RadioGroup({ className, size, disabled, orientation, onChange, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
267
+ declare namespace RadioGroup {
268
+ var Item: ({ className, disabled, children, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Item>) => react_jsx_runtime.JSX.Element;
269
+ }
270
+
271
+ declare const checkboxVariants: tailwind_variants.TVReturnType<{
272
+ size: {
273
+ sm: string;
274
+ md: string;
275
+ lg: string;
276
+ };
277
+ disabled: {
278
+ true: string;
279
+ false: string;
280
+ };
281
+ }, undefined, "peer cursor-pointer transition-all shrink-0 rounded-sm border-2 outline-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", {
282
+ size: {
283
+ sm: string;
284
+ md: string;
285
+ lg: string;
286
+ };
287
+ disabled: {
288
+ true: string;
289
+ false: string;
290
+ };
291
+ }, undefined, tailwind_variants.TVReturnType<{
292
+ size: {
293
+ sm: string;
294
+ md: string;
295
+ lg: string;
296
+ };
297
+ disabled: {
298
+ true: string;
299
+ false: string;
300
+ };
301
+ }, undefined, "peer cursor-pointer transition-all shrink-0 rounded-sm border-2 outline-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", unknown, unknown, undefined>>;
302
+
303
+ type DefaultType$2 = Omit<
304
+ React.ComponentProps<typeof Root$2>,
305
+ "onCheckedChange" | "onChange"
306
+ >;
307
+
308
+ type CheckboxSize = keyof typeof checkboxVariants.variants.size;
309
+
310
+ interface CheckboxProps extends DefaultType$2 {
311
+ /**
312
+ * Checkbox size
313
+ */
314
+ size?: CheckboxSize;
315
+ /**
316
+ * Checkbox onChange event
317
+ */
318
+ onChange?: (checked: boolean | "indeterminate") => void;
319
+ /**
320
+ * Checkbox label
321
+ */
322
+ label?: string;
323
+ }
324
+
325
+ declare function Checkbox({ className, size, disabled, onChange, label, id, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
326
+
327
+ declare const inputVariants: tailwind_variants.TVReturnType<{
328
+ size: {
329
+ xs: string;
330
+ sm: string;
331
+ md: string;
332
+ lg: string;
333
+ };
334
+ }, undefined, "peer w-full min-w-0 flex-1 rounded-none border-0 bg-transparent px-3 text-center shadow-none outline-none focus-visible:ring-0!", {
335
+ size: {
336
+ xs: string;
337
+ sm: string;
338
+ md: string;
339
+ lg: string;
340
+ };
341
+ }, undefined, tailwind_variants.TVReturnType<{
342
+ size: {
343
+ xs: string;
344
+ sm: string;
345
+ md: string;
346
+ lg: string;
347
+ };
348
+ }, undefined, "peer w-full min-w-0 flex-1 rounded-none border-0 bg-transparent px-3 text-center shadow-none outline-none focus-visible:ring-0!", unknown, unknown, undefined>>;
349
+
350
+ type DefaultType$1 = Omit<React.ComponentProps<"input">, "size">;
351
+
352
+ type InputSize = keyof typeof inputVariants.variants.size;
353
+
354
+ interface InputProps extends DefaultType$1 {
355
+ /**
356
+ * Input Size
357
+ */
358
+ size?: InputSize;
359
+ /**
360
+ * Input label
361
+ */
362
+ label?: string;
363
+ /**
364
+ * Input hint
365
+ */
366
+ hint?: string;
367
+ /**
368
+ * Input Error State
369
+ */
370
+ error?: boolean;
371
+ /**
372
+ * Input Rounded State
373
+ */
374
+ rounded?: boolean;
375
+ /**
376
+ * Input Loading State
377
+ */
378
+ loading?: boolean;
379
+ /**
380
+ * Input Leading Icon
381
+ */
382
+ beforeIcon?: React.ReactNode;
383
+ /**
384
+ * Input Trailling Icon
385
+ */
386
+ afterIcon?: React.ReactNode;
387
+ /**
388
+ * Input Action Icon
389
+ */
390
+ actionIcon?: React.ReactNode;
391
+ /**
392
+ * Action Buttom Event Handler
393
+ */
394
+ onActionClick?: () => void;
395
+ /**
396
+ * Input Prefix Section
397
+ */
398
+ prefix?: string;
399
+ /**
400
+ * Input Prefix Section
401
+ */
402
+ suffix?: string;
403
+ /**
404
+ * Input helpertext Icon
405
+ */
406
+ helperText?: string;
407
+ }
408
+
409
+ declare const Input: React__default.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
410
+
411
+ declare const containerVariants: tailwind_variants.TVReturnType<{
412
+ size: {
413
+ xs: string;
414
+ sm: string;
415
+ md: string;
416
+ lg: string;
417
+ };
418
+ rounded: {
419
+ true: string;
420
+ false: string;
421
+ };
422
+ fullWidth: {
423
+ true: string;
424
+ false: string;
425
+ };
426
+ }, undefined, "bg-background-segment inline-flex items-center justify-center p-1 gap-1", {
427
+ size: {
428
+ xs: string;
429
+ sm: string;
430
+ md: string;
431
+ lg: string;
432
+ };
433
+ rounded: {
434
+ true: string;
435
+ false: string;
436
+ };
437
+ fullWidth: {
438
+ true: string;
439
+ false: string;
440
+ };
441
+ }, undefined, tailwind_variants.TVReturnType<{
442
+ size: {
443
+ xs: string;
444
+ sm: string;
445
+ md: string;
446
+ lg: string;
447
+ };
448
+ rounded: {
449
+ true: string;
450
+ false: string;
451
+ };
452
+ fullWidth: {
453
+ true: string;
454
+ false: string;
455
+ };
456
+ }, undefined, "bg-background-segment inline-flex items-center justify-center p-1 gap-1", unknown, unknown, undefined>>;
457
+
458
+ type DefaultType = Omit<
459
+ React.ComponentProps<typeof TabsPrimitive.Root>,
460
+ "onValueChange" | "onChange"
461
+ >;
462
+
463
+ type SegmentButtonSize = keyof typeof containerVariants.variants.size;
464
+
465
+ type SegmentButtonType = {
466
+ /**
467
+ * Segment Button Size
468
+ */
469
+ size?: SegmentButtonSize;
470
+ /**
471
+ * Segment Button Disabled
472
+ */
473
+ disabled?: boolean;
474
+ /**
475
+ * Segment Button Rounded
476
+ */
477
+ rounded?: boolean;
478
+ /**
479
+ * Segment Button fullWidth
480
+ */
481
+ fullWidth?: boolean;
482
+ /**
483
+ * Segment Button onChange event
484
+ */
485
+ onChange?: (value: string) => void;
486
+ } & DefaultType;
487
+
488
+ declare function SegmentButton({ className, size, disabled, rounded, fullWidth, children, onChange, ...props }: SegmentButtonType): react_jsx_runtime.JSX.Element;
489
+ declare namespace SegmentButton {
490
+ var Container: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.List>) => react_jsx_runtime.JSX.Element;
491
+ var Item: typeof Trigger;
492
+ }
493
+ declare function Trigger({ className, disabled, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
494
+
495
+ declare function Card({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
496
+ declare namespace Card {
497
+ var Header: typeof CardHeader;
498
+ var Footer: typeof CardFooter;
499
+ var Content: typeof CardContent;
500
+ }
501
+ declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
502
+ declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
503
+ declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
504
+
505
+ declare const contentWrapperVariants: tailwind_variants.TVReturnType<{
506
+ size: {
507
+ sm: string;
508
+ md: string;
509
+ lg: string;
510
+ xl: string;
511
+ full: string;
512
+ };
513
+ }, undefined, "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] rounded-2xl bg-white/10 p-4 backdrop-blur-xs", {
514
+ size: {
515
+ sm: string;
516
+ md: string;
517
+ lg: string;
518
+ xl: string;
519
+ full: string;
520
+ };
521
+ }, undefined, tailwind_variants.TVReturnType<{
522
+ size: {
523
+ sm: string;
524
+ md: string;
525
+ lg: string;
526
+ xl: string;
527
+ full: string;
528
+ };
529
+ }, undefined, "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] rounded-2xl bg-white/10 p-4 backdrop-blur-xs", unknown, unknown, undefined>>;
530
+
531
+ type DefaulTtype = Omit<
532
+ React.ComponentProps<typeof DialogPrimitive.Root>,
533
+ "onOpenChange"
534
+ >;
535
+
536
+ type DialogSize = keyof typeof contentWrapperVariants.variants.size;
537
+
538
+ type DialogHeaderBarProps = {
539
+ title?: string | React.ReactNode;
540
+ hideClose?: boolean;
541
+ children?: React.ReactNode;
542
+ };
543
+
544
+ type SmartDialogProps = {
545
+ open?: boolean;
546
+ disableCloseOutside?: boolean;
547
+ onClose?: (open: boolean) => void;
548
+ trigger?: React.ReactNode;
549
+ children?: React.ReactNode;
550
+ size?: DialogSize;
551
+ onInteractOutside?:
552
+ | ((event: PointerDownOutsideEvent | FocusOutsideEvent) => void)
553
+ | undefined;
554
+ } & DefaulTtype;
555
+
556
+ declare function DialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
557
+ declare function DialogHeaderBar({ title, hideClose, children }: DialogHeaderBarProps): react_jsx_runtime.JSX.Element;
558
+ declare function SmartDialog({ open, onClose, disableCloseOutside, onInteractOutside, trigger, children, size, ...props }: SmartDialogProps): react_jsx_runtime.JSX.Element;
559
+ declare namespace SmartDialog {
560
+ var Header: typeof DialogHeaderBar;
561
+ var Footer: typeof DialogFooter;
562
+ }
563
+
564
+ type DrawerSide = "top" | "bottom" | "left" | "right";
565
+
566
+ type DrawerHeader = {
567
+ title?: string | React.ReactNode;
568
+ hideClose?: boolean;
569
+ children?: React.ReactNode;
570
+ extraAction?: React.ReactNode;
571
+ };
572
+
573
+ type DrawerProps = {
574
+ open?: boolean;
575
+ disableCloseOutside?: boolean;
576
+ onClose?: (open: boolean) => void;
577
+ trigger?: React.ReactNode;
578
+ side?: DrawerSide;
579
+ onInteractOutside?:
580
+ | ((event: PointerDownOutsideEvent | FocusOutsideEvent) => void)
581
+ | undefined;
582
+ children?: React.ReactNode;
583
+ };
584
+
585
+ declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
586
+ declare function SheetHeaderBar({ title, hideClose, children, extraAction, }: DrawerHeader): react_jsx_runtime.JSX.Element;
587
+ declare function SmartSheet({ open, onClose, trigger, disableCloseOutside, onInteractOutside, side, children, }: DrawerProps): react_jsx_runtime.JSX.Element;
588
+ declare namespace SmartSheet {
589
+ var Header: typeof SheetHeaderBar;
590
+ var Footer: typeof SheetFooter;
591
+ }
592
+
593
+ declare const AccordionTriggerVariants: tailwind_variants.TVReturnType<{
594
+ separate: {
595
+ true: string;
596
+ };
597
+ variant: {
598
+ default: string;
599
+ ghost: string;
600
+ };
601
+ }, undefined, " group text-text flex flex-1 cursor-pointer items-start p-4 pr-8 text-right text-base font-medium transition-all outline-none focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 ", {
602
+ separate: {
603
+ true: string;
604
+ };
605
+ variant: {
606
+ default: string;
607
+ ghost: string;
608
+ };
609
+ }, undefined, tailwind_variants.TVReturnType<{
610
+ separate: {
611
+ true: string;
612
+ };
613
+ variant: {
614
+ default: string;
615
+ ghost: string;
616
+ };
617
+ }, undefined, " group text-text flex flex-1 cursor-pointer items-start p-4 pr-8 text-right text-base font-medium transition-all outline-none focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 ", unknown, unknown, undefined>>;
618
+
619
+ type AccordionVariant =
620
+ keyof typeof AccordionTriggerVariants.variants.variant;
621
+
622
+ interface AccordionProps {
623
+ separate?: boolean;
624
+ variant?: AccordionVariant;
625
+ type?: "single" | "multiple";
626
+ collapsible?: boolean;
627
+ iconPosition?: "start" | "end";
628
+ onChange?: (v: string | strin[]) => void;
629
+ }
630
+
631
+ declare const chipsVariants: tailwind_variants.TVReturnType<{
632
+ variant: {
633
+ default: string;
634
+ secondary: string;
635
+ };
636
+ isClickable: {
637
+ true: string;
638
+ };
639
+ rounded: {
640
+ true: string;
641
+ };
642
+ }, undefined, "inline-flex items-center justify-center gap-1 disabled:shadow-none rounded-lg border disabled:border-disabled-border disabled:bg-disabled-tertiary disabled:text-disabled min-w-12 px-2 h-8 text-xs [&_svg:not([class*='size-'])]:size-3 outline-none disabled:pointer-events-none select-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", {
643
+ variant: {
644
+ default: string;
645
+ secondary: string;
646
+ };
647
+ isClickable: {
648
+ true: string;
649
+ };
650
+ rounded: {
651
+ true: string;
652
+ };
653
+ }, undefined, tailwind_variants.TVReturnType<{
654
+ variant: {
655
+ default: string;
656
+ secondary: string;
657
+ };
658
+ isClickable: {
659
+ true: string;
660
+ };
661
+ rounded: {
662
+ true: string;
663
+ };
664
+ }, undefined, "inline-flex items-center justify-center gap-1 disabled:shadow-none rounded-lg border disabled:border-disabled-border disabled:bg-disabled-tertiary disabled:text-disabled min-w-12 px-2 h-8 text-xs [&_svg:not([class*='size-'])]:size-3 outline-none disabled:pointer-events-none select-none focus-visible:ring-offset-ring-offset focus-visible:ring-offset-3 focus-visible:ring-2 focus-visible:ring-ring", unknown, unknown, undefined>>;
665
+
666
+ type ChipsVariantType = keyof typeof chipsVariants.variants.variant;
667
+
668
+ interface ChipsType {
669
+ className?: string;
670
+ label?: string;
671
+ rounded?: boolean;
672
+ disabled?: boolean;
673
+ icon?: React.ReactNode;
674
+ variant?: ChipsVariantType;
675
+ onClose?: () => void;
676
+ onClick?: () => void;
677
+ }
678
+
679
+ type PaginationProps = {
680
+ className?: string;
681
+ totalItems: number;
682
+ initialPage?: number;
683
+ pageSize?: number;
684
+ pageSizeOptions?: number[];
685
+ siblings?: number;
686
+ onPageChange?: (page: number, pageSize: number) => void;
687
+ showPageSizeSelector?: boolean;
688
+ showPageInfo?: boolean;
689
+ rounded?: boolean;
690
+ };
691
+
692
+ type PopoverProps = React.ComponentProps<typeof PopoverPrimitive.Root>;
693
+ type PopoverTrigger$1 = React.ComponentProps<
694
+ typeof PopoverPrimitive.Trigger
695
+ >;
696
+
697
+ type PopoverContent$1 = React.ComponentProps<
698
+ typeof PopoverPrimitive.Content
699
+ >;
700
+
701
+ declare const tagVariants: tailwind_variants.TVReturnType<{
702
+ variant: {
703
+ default: string;
704
+ secondary: string;
705
+ error: string;
706
+ success: string;
707
+ warning: string;
708
+ info: string;
709
+ magenta: string;
710
+ cyan: string;
711
+ blue: string;
712
+ lime: string;
713
+ purple: string;
714
+ volcano: string;
715
+ };
716
+ rounded: {
717
+ true: string;
718
+ };
719
+ borderLess: {
720
+ true: string;
721
+ };
722
+ }, undefined, "inline-flex items-center justify-center gap-1 h-6 min-w-11 px-2 rounded-sm border text-xs [&_svg:not([class*='size-'])]:size-3 outline-none select-none", {
723
+ variant: {
724
+ default: string;
725
+ secondary: string;
726
+ error: string;
727
+ success: string;
728
+ warning: string;
729
+ info: string;
730
+ magenta: string;
731
+ cyan: string;
732
+ blue: string;
733
+ lime: string;
734
+ purple: string;
735
+ volcano: string;
736
+ };
737
+ rounded: {
738
+ true: string;
739
+ };
740
+ borderLess: {
741
+ true: string;
742
+ };
743
+ }, undefined, tailwind_variants.TVReturnType<{
744
+ variant: {
745
+ default: string;
746
+ secondary: string;
747
+ error: string;
748
+ success: string;
749
+ warning: string;
750
+ info: string;
751
+ magenta: string;
752
+ cyan: string;
753
+ blue: string;
754
+ lime: string;
755
+ purple: string;
756
+ volcano: string;
757
+ };
758
+ rounded: {
759
+ true: string;
760
+ };
761
+ borderLess: {
762
+ true: string;
763
+ };
764
+ }, undefined, "inline-flex items-center justify-center gap-1 h-6 min-w-11 px-2 rounded-sm border text-xs [&_svg:not([class*='size-'])]:size-3 outline-none select-none", unknown, unknown, undefined>>;
765
+
766
+ type TagVariantsType = keyof typeof tagVariants.variants.variant;
767
+
768
+ interface TagType {
769
+ className?: string;
770
+ label?: string;
771
+ rounded?: boolean;
772
+ borderLess?: boolean;
773
+ icon?: React.ReactNode;
774
+ variant?: TagVariantsType;
775
+ }
776
+
777
+ declare const tabsListVariants: tailwind_variants.TVReturnType<{
778
+ variant: {
779
+ filled: string;
780
+ underline: string;
781
+ };
782
+ size: {
783
+ sm: string;
784
+ md: string;
785
+ lg: string;
786
+ };
787
+ }, undefined, "inline-flex items-center", {
788
+ variant: {
789
+ filled: string;
790
+ underline: string;
791
+ };
792
+ size: {
793
+ sm: string;
794
+ md: string;
795
+ lg: string;
796
+ };
797
+ }, undefined, tailwind_variants.TVReturnType<{
798
+ variant: {
799
+ filled: string;
800
+ underline: string;
801
+ };
802
+ size: {
803
+ sm: string;
804
+ md: string;
805
+ lg: string;
806
+ };
807
+ }, undefined, "inline-flex items-center", unknown, unknown, undefined>>;
808
+
809
+ type TabsVariants = keyof typeof tabsListVariants.variants.variant;
810
+ type TabsSize = keyof typeof tabsListVariants.variants.size;
811
+
812
+ type TabsProps = Omit<
813
+ React.ComponentProps<typeof TabsPrimitive.Root>,
814
+ "onChange" | "onValueChange"
815
+ > &
816
+ TabsType;
817
+
818
+ type TabsListProps = React.ComponentProps<typeof TabsPrimitive.List>;
819
+
820
+ type TabsTriggerProps = React.ComponentProps<
821
+ typeof TabsPrimitive.Trigger
822
+ >;
823
+
824
+ type TabsContentProps = React.ComponentProps<
825
+ typeof TabsPrimitive.Content
826
+ >;
827
+ interface TabsType {
828
+ onChange?: (value: string) => void;
829
+ variant?: TabsVariants;
830
+ size?: TabsSize;
831
+ fullWidth?: boolean;
832
+ }
833
+
834
+ type InputRule =
835
+ | {format: string; maxLength?: never}
836
+ | {maxLength: number; format?: never};
837
+
838
+ type contextType = {
839
+ separate?: boolean;
840
+ placeholderChar?: string | null;
841
+ withPlaceholder?: boolean;
842
+ };
843
+
844
+ type OTPProps = Omit<
845
+ React.ComponentProps<typeof OTPInput>,
846
+ "render" | "maxLength"
847
+ > & {
848
+ containerClassName?: string;
849
+ group?: number[];
850
+ } & contextType &
851
+ InputRule;
852
+
853
+ interface StepItem {
854
+ id: number;
855
+ label: string;
856
+ caption?: string;
857
+ disabled?: boolean;
858
+ icon?: React.ReactNode;
859
+ }
860
+
861
+ type ConnectorType = "dashed" | "solid";
862
+ interface StepperProps {
863
+ steps: StepItem[];
864
+ activeStep: number;
865
+ onChange?: (id: number) => void;
866
+ orientation?: OrientationType;
867
+ className?: string;
868
+ clickable?: boolean;
869
+ dotStyle?: boolean;
870
+ connector?: ConnectorType;
871
+ }
872
+
873
+ declare const alertVariants: tailwind_variants.TVReturnType<{
874
+ type: {
875
+ success: string;
876
+ error: string;
877
+ warning: string;
878
+ info: string;
879
+ default: string;
880
+ };
881
+ variant: {
882
+ filled: string;
883
+ outline: string;
884
+ };
885
+ }, undefined, "relative w-full rounded-2xl border py-4 pr-4 pl-3 text-right flex gap-x-3", {
886
+ type: {
887
+ success: string;
888
+ error: string;
889
+ warning: string;
890
+ info: string;
891
+ default: string;
892
+ };
893
+ variant: {
894
+ filled: string;
895
+ outline: string;
896
+ };
897
+ }, undefined, tailwind_variants.TVReturnType<{
898
+ type: {
899
+ success: string;
900
+ error: string;
901
+ warning: string;
902
+ info: string;
903
+ default: string;
904
+ };
905
+ variant: {
906
+ filled: string;
907
+ outline: string;
908
+ };
909
+ }, undefined, "relative w-full rounded-2xl border py-4 pr-4 pl-3 text-right flex gap-x-3", unknown, unknown, undefined>>;
910
+
911
+ type AlertTypes = keyof typeof alertVariants.variants.type;
912
+ type AlertVariants = keyof typeof alertVariants.variants.variant;
913
+
914
+ type AlertProps = {
915
+ type?: AlertTypes;
916
+ variant?: AlertVariants;
917
+ title?: string;
918
+ withIcon?: boolean;
919
+ onClose?: StateAction;
920
+ } & React.ComponentProps<"div">;
921
+
922
+ type BreadcrumbItemType = {
923
+ label: string;
924
+ href?: string;
925
+ icon?: ReactNode;
926
+ onClick?: () => void;
927
+ };
928
+
929
+ type BreadcrumbProps = {
930
+ items: BreadcrumbItemType[];
931
+ maxVisible?: number;
932
+ seperator?: ReactNode;
933
+ LinkComponent?: ComponentType<{
934
+ to?: string;
935
+ href?: string;
936
+ children: ReactNode;
937
+ }>;
938
+ };
939
+
940
+ type IconType = React.ComponentType<React.SVGProps<SVGSVGElement>>;
941
+
942
+ type OrientationType = "horizontal" | "vertical";
943
+
944
+
945
+ type StateAction<T> = () => void | React.Dispatch<
946
+ React.SetStateAction<T>
947
+ >;
948
+
949
+ type SingleSelectValueType = string | null;
950
+ type MultiSelectValueType = string[];
951
+ type SelectValue = string | number | undefined;
952
+
953
+ type SelectOptionType<T extends object = {}> = {
954
+ label: string;
955
+ value: SelectValue;
956
+ } & T;
957
+
958
+ interface BaseSelectProps {
959
+ className?: string;
960
+ rounded?: boolean;
961
+ options: SelectOptionType[];
962
+ onSearch?: (text: string) => void;
963
+ placeholder?: string;
964
+ emptyText?: string;
965
+ searchable?: boolean;
966
+ error?: boolean;
967
+ loading?: boolean;
968
+ disabled?: boolean;
969
+ readOnly?: boolean;
970
+ asyncSearch?: boolean;
971
+ clearable?: boolean;
972
+ label?: string;
973
+ hint?: string;
974
+ helperText?: string;
975
+ size?: "xs" | "sm" | "md" | "lg";
976
+ scrollContent?: boolean;
977
+ }
978
+
979
+ type OnChangeHandlerType<T extends SelectValue> =
980
+ | ((value: T, opt?: SelectOptionType<T>) => void)
981
+ | React.Dispatch<React.SetStateAction<T>>;
982
+
983
+ type OnChangeHandlerMultiType<T extends SelectValue> =
984
+ | ((v: SelectValue[]) => void)
985
+ | React.Dispatch<React.SetStateAction<T>>;
986
+
987
+ interface SingleSelectProps extends BaseSelectProps {
988
+ mode?: "select"; // default
989
+ value: SelectValue;
990
+ onChange: OnChangeHandlerType;
991
+ }
992
+
993
+ interface MultiSelectProps extends BaseSelectProps {
994
+ mode: "multi";
995
+ value: SelectValue[] | [];
996
+ onChange: OnChangeHandlerMultiType;
997
+ }
998
+
999
+ type SelectProps = SingleSelectProps | MultiSelectProps;
1000
+
1001
+ declare function Select(props: SingleSelectProps): JSX.Element;
1002
+ declare function Select(props: MultiSelectProps): JSX.Element;
1003
+ declare function Select({ mode, options, value, className, onChange, onSearch, searchable, loading, label, hint, helperText, error, disabled, rounded, readOnly, size, asyncSearch, scrollContent, clearable, placeholder, emptyText, }: SelectProps): react_jsx_runtime.JSX.Element;
1004
+
1005
+ declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
1006
+ declare namespace Tooltip {
1007
+ var Trigger: typeof TooltipTrigger;
1008
+ var Content: typeof TooltipContent;
1009
+ }
1010
+ declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
1011
+ declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
1012
+
1013
+ declare function Popover({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
1014
+ declare namespace Popover {
1015
+ var Trigger: typeof PopoverTrigger;
1016
+ var Content: typeof PopoverContent;
1017
+ }
1018
+ declare function PopoverTrigger({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
1019
+ declare function PopoverContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime.JSX.Element;
1020
+
1021
+ declare function Accordion({ className, separate, variant, collapsible, type, onChange, iconPosition, ...props }: Omit<React$1.ComponentProps<typeof AccordionPrimitive.Root>, "type" | "onValueChange" | "onChange"> & AccordionProps): react_jsx_runtime.JSX.Element;
1022
+ declare namespace Accordion {
1023
+ var Item: typeof AccordionItem;
1024
+ var Trigger: typeof AccordionTrigger;
1025
+ var Content: typeof AccordionContent;
1026
+ }
1027
+ declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
1028
+ declare function AccordionTrigger({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
1029
+ declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Content>): react_jsx_runtime.JSX.Element;
1030
+
1031
+ declare function Pagination({ totalItems, initialPage, pageSize, pageSizeOptions, siblings, onPageChange, className, showPageSizeSelector, showPageInfo, rounded, }: PaginationProps): react_jsx_runtime.JSX.Element;
1032
+
1033
+ declare function Badge({ label, icon, className, rounded, variant, disabled, onClose, onClick, }: ChipsType): react_jsx_runtime.JSX.Element;
1034
+
1035
+ declare function Tag({ label, icon, className, rounded, variant, borderLess, }: TagType): react_jsx_runtime.JSX.Element;
1036
+
1037
+ declare function Panel({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1038
+ declare const Table: {
1039
+ ({ children, align, separated, bordered, heigthClassName, }: {
1040
+ children: React.ReactNode;
1041
+ align?: "right" | "left" | "center";
1042
+ separated?: boolean;
1043
+ bordered?: boolean;
1044
+ heigthClassName?: string;
1045
+ }): react_jsx_runtime.JSX.Element;
1046
+ Row: typeof Row;
1047
+ Header: ({ children, className, }: {
1048
+ children: React.ReactNode;
1049
+ className?: string;
1050
+ }) => react_jsx_runtime.JSX.Element;
1051
+ Body: ({ children }: {
1052
+ children: React.ReactNode;
1053
+ }) => react_jsx_runtime.JSX.Element;
1054
+ Footer: ({ children, className, }: {
1055
+ children: React.ReactNode;
1056
+ className?: string;
1057
+ }) => react_jsx_runtime.JSX.Element;
1058
+ Panel: typeof Panel;
1059
+ Cell: typeof Cell;
1060
+ Head: typeof Head;
1061
+ Container: ({ children, className, }: {
1062
+ children: React.ReactNode;
1063
+ className?: string;
1064
+ }) => react_jsx_runtime.JSX.Element;
1065
+ Caption: typeof Caption;
1066
+ };
1067
+ declare function Row({ className, ...props }: React.ComponentProps<"tr">): react_jsx_runtime.JSX.Element;
1068
+ declare function Head({ className, ...props }: React.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
1069
+ declare function Cell({ className, ...props }: React.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
1070
+ declare function Caption({ className, ...props }: React.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
1071
+
1072
+ declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
1073
+ declare namespace DropdownMenu {
1074
+ var Portal: typeof DropdownMenuPortal;
1075
+ var Trigger: typeof DropdownMenuTrigger;
1076
+ var Content: typeof DropdownMenuContent;
1077
+ var Group: typeof DropdownMenuGroup;
1078
+ var Label: typeof DropdownMenuLabel;
1079
+ var Item: typeof DropdownMenuItem;
1080
+ var Separator: typeof DropdownMenuSeparator;
1081
+ var Shortcut: typeof DropdownMenuShortcut;
1082
+ var Sub: typeof DropdownMenuSub;
1083
+ var SubTrigger: typeof DropdownMenuSubTrigger;
1084
+ var SubContent: typeof DropdownMenuSubContent;
1085
+ }
1086
+ declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
1087
+ declare function DropdownMenuTrigger({ asChild, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
1088
+ declare function DropdownMenuContent({ className, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
1089
+ declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
1090
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
1091
+ inset?: boolean;
1092
+ variant?: "default" | "destructive";
1093
+ }): react_jsx_runtime.JSX.Element;
1094
+ declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
1095
+ inset?: boolean;
1096
+ }): react_jsx_runtime.JSX.Element;
1097
+ declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
1098
+ declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
1099
+ declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
1100
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
1101
+ inset?: boolean;
1102
+ }): react_jsx_runtime.JSX.Element;
1103
+ declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
1104
+
1105
+ declare function Tabs({ className, onChange, variant, size, fullWidth, ...props }: Omit<React$1.ComponentProps<typeof TabsPrimitive.Root>, "onChange" | "onValueChange"> & TabsType): react_jsx_runtime.JSX.Element;
1106
+ declare namespace Tabs {
1107
+ var List: typeof TabsList;
1108
+ var Trigger: typeof TabsTrigger;
1109
+ var Content: typeof TabsContent;
1110
+ }
1111
+ declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element;
1112
+ declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
1113
+ declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
1114
+
1115
+ declare function InputOTP({ className, containerClassName, separate, withPlaceholder, placeholderChar, group, format, maxLength, pattern, ...props }: OTPProps): react_jsx_runtime.JSX.Element;
1116
+
1117
+ type MenuItem = {
1118
+ key: string;
1119
+ label: string;
1120
+ icon?: React.ReactNode;
1121
+ onClick?: () => void;
1122
+ children?: MenuItem[];
1123
+ };
1124
+ type Props = {
1125
+ items: MenuItem[];
1126
+ activeKey?: string;
1127
+ level?: number;
1128
+ };
1129
+ declare function NestedAccordionMenu({ items, activeKey, level, }: Props): react_jsx_runtime.JSX.Element;
1130
+
1131
+ declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1132
+
1133
+ declare function Stepper({ steps, activeStep, onChange, orientation, className, clickable, dotStyle, connector, }: StepperProps): react_jsx_runtime.JSX.Element;
1134
+
1135
+ declare function Alert({ className, type, variant, title, withIcon, onClose, children, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
1136
+
1137
+ declare function ScrollArea({ className, children, viewportClassName, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root> & {
1138
+ viewportClassName?: string;
1139
+ }): react_jsx_runtime.JSX.Element;
1140
+
1141
+ declare function DynamicBreadcrumb({ items, seperator, maxVisible, LinkComponent, }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
1142
+
1143
+ declare const RULES: {
1144
+ readonly ONLY_DIGITS: RegExp;
1145
+ readonly ONLY_CHARS: RegExp;
1146
+ readonly ONLY_DIGITS_AND_CHARS: RegExp;
1147
+ readonly NO_SPACES: RegExp;
1148
+ };
1149
+
1150
+ declare const isOnlyDigits: (value: string) => boolean;
1151
+ declare const isOnlyChars: (value: string) => boolean;
1152
+ declare const isOnlyDigitsAndChars: (value: string) => boolean;
1153
+ declare const isNoSpace: (value: string) => boolean;
1154
+
1155
+ declare const toEnglishDigits: (value: string) => string;
1156
+
1157
+ export { Accordion, type AccordionProps, type AccordionVariant, Alert, type AlertProps, type AlertTypes, type AlertVariants, DynamicBreadcrumb as Breadcrumb, type BreadcrumbItemType, type BreadcrumbProps, Button, type ButtonColors, type ButtonProps, type ButtonSize, type ButtonVariant, Card, Checkbox, type CheckboxProps, type CheckboxSize, Badge as Chips, type ChipsType, type ChipsVariantType, SmartDialog as Dialog, type DialogHeaderBarProps, type SmartDialogProps as DialogProps, type DialogSize, SmartSheet as Drawer, type DrawerHeader, type DrawerProps, type DrawerSide, DropdownMenu, type IconType, Input, InputOTP, type InputProps, type InputSize, NestedAccordionMenu as ListMenu, type MultiSelectProps, type MultiSelectValueType, type OTPProps, type OrientationType, Pagination, type PaginationProps, Popover, type PopoverContent$1 as PopoverContent, type PopoverProps, type PopoverTrigger$1 as PopoverTrigger, RULES, RadioGroup, type RadioItemProps, type RadioProps, type RadioSize, ScrollArea, SegmentButton, type SegmentButtonSize, type SegmentButtonType, Select, type SelectOptionType, type SelectProps, type SingleSelectProps, type SingleSelectValueType, Skeleton, type StateAction, type StepItem, Stepper, type StepperProps, Switch, type SwitchProps, type SwitchSize, Table, Tabs, type TabsContentProps, type TabsListProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariants, Tag, type TagType, type TagVariantsType, Tooltip, isNoSpace, isOnlyChars, isOnlyDigits, isOnlyDigitsAndChars, toEnglishDigits };