sodtrack-web-ui 0.51.0 → 0.51.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.
- package/dist/alert-dialog.d.mts +1 -0
- package/dist/alert-dialog.d.ts +1 -0
- package/dist/alert-message.d.mts +143 -2
- package/dist/alert-message.d.ts +143 -2
- package/dist/button.d.mts +207 -2
- package/dist/button.d.ts +207 -2
- package/dist/chip-context.d.mts +609 -28
- package/dist/chip-context.d.ts +609 -28
- package/dist/chip-form-complementary.d.mts +3 -3
- package/dist/chip-form-complementary.d.ts +3 -3
- package/dist/chip-form.d.mts +6 -6
- package/dist/chip-form.d.ts +6 -6
- package/dist/chip-input.d.mts +489 -8
- package/dist/chip-input.d.ts +489 -8
- package/dist/chip-status-complementary.d.mts +1 -1
- package/dist/chip-status-complementary.d.ts +1 -1
- package/dist/chip-status-table.d.mts +1 -1
- package/dist/chip-status-table.d.ts +1 -1
- package/dist/chunk-A6YA2ORM.mjs +1 -0
- package/dist/chunk-Z7A5HM3M.mjs +1 -0
- package/dist/data-table.d.mts +1 -0
- package/dist/data-table.d.ts +1 -0
- package/dist/dialog.d.mts +1 -0
- package/dist/dialog.d.ts +1 -0
- package/dist/drawer-sticky.d.mts +11 -13
- package/dist/drawer-sticky.d.ts +11 -13
- package/dist/drawer-sticky.js +2 -2
- package/dist/drawer-sticky.mjs +1 -1
- package/dist/drawer.d.mts +1 -0
- package/dist/drawer.d.ts +1 -0
- package/dist/icon-button.d.mts +123 -2
- package/dist/icon-button.d.ts +123 -2
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/list-item-arrow.mjs +1 -1
- package/dist/list-item-checkbox.mjs +1 -1
- package/dist/list-item.mjs +1 -1
- package/dist/radio.d.mts +10 -24
- package/dist/radio.d.ts +10 -24
- package/dist/radio.js +1 -1
- package/dist/radio.mjs +1 -1
- package/dist/tab.d.mts +2 -2
- package/dist/tab.d.ts +2 -2
- package/dist/table.d.mts +1 -0
- package/dist/table.d.ts +1 -0
- package/dist/textarea.d.mts +75 -2
- package/dist/textarea.d.ts +75 -2
- package/package.json +1 -1
- package/dist/chunk-A4K7ULPD.mjs +0 -1
- package/dist/chunk-YF6MY4ZO.mjs +0 -1
package/dist/chip-input.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as tailwind_variants from 'tailwind-variants';
|
|
2
2
|
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
import * as tailwind_variants_dist_config_js from 'tailwind-variants/dist/config.js';
|
|
3
4
|
import React__default from 'react';
|
|
4
5
|
import { LucideIcon } from 'lucide-react';
|
|
5
6
|
|
|
@@ -44,7 +45,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
44
45
|
container: string;
|
|
45
46
|
startIcon: string;
|
|
46
47
|
closeIcon: string;
|
|
47
|
-
}, undefined, TVConfig<
|
|
48
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
49
|
+
variant: {
|
|
50
|
+
standard: {};
|
|
51
|
+
primary: {};
|
|
52
|
+
};
|
|
53
|
+
type: {
|
|
54
|
+
fill: {};
|
|
55
|
+
outlined: {};
|
|
56
|
+
};
|
|
57
|
+
size: {
|
|
58
|
+
md: {
|
|
59
|
+
container: string;
|
|
60
|
+
startIcon: string;
|
|
61
|
+
closeIcon: string;
|
|
62
|
+
};
|
|
63
|
+
sm: {
|
|
64
|
+
container: string;
|
|
65
|
+
startIcon: string;
|
|
66
|
+
closeIcon: string;
|
|
67
|
+
};
|
|
68
|
+
xs: {
|
|
69
|
+
container: string;
|
|
70
|
+
startIcon: string;
|
|
71
|
+
closeIcon: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
disabled: {
|
|
75
|
+
true: {};
|
|
76
|
+
false: {};
|
|
77
|
+
};
|
|
78
|
+
}, {
|
|
79
|
+
variant: {
|
|
80
|
+
standard: {};
|
|
81
|
+
primary: {};
|
|
82
|
+
};
|
|
83
|
+
type: {
|
|
84
|
+
fill: {};
|
|
85
|
+
outlined: {};
|
|
86
|
+
};
|
|
87
|
+
size: {
|
|
88
|
+
md: {
|
|
89
|
+
container: string;
|
|
90
|
+
startIcon: string;
|
|
91
|
+
closeIcon: string;
|
|
92
|
+
};
|
|
93
|
+
sm: {
|
|
94
|
+
container: string;
|
|
95
|
+
startIcon: string;
|
|
96
|
+
closeIcon: string;
|
|
97
|
+
};
|
|
98
|
+
xs: {
|
|
99
|
+
container: string;
|
|
100
|
+
startIcon: string;
|
|
101
|
+
closeIcon: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
disabled: {
|
|
105
|
+
true: {};
|
|
106
|
+
false: {};
|
|
107
|
+
};
|
|
108
|
+
}>, {
|
|
48
109
|
variant: {
|
|
49
110
|
standard: {};
|
|
50
111
|
primary: {};
|
|
@@ -112,7 +173,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
112
173
|
container: string;
|
|
113
174
|
startIcon: string;
|
|
114
175
|
closeIcon: string;
|
|
115
|
-
}, undefined, TVConfig<
|
|
176
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
177
|
+
variant: {
|
|
178
|
+
standard: {};
|
|
179
|
+
primary: {};
|
|
180
|
+
};
|
|
181
|
+
type: {
|
|
182
|
+
fill: {};
|
|
183
|
+
outlined: {};
|
|
184
|
+
};
|
|
185
|
+
size: {
|
|
186
|
+
md: {
|
|
187
|
+
container: string;
|
|
188
|
+
startIcon: string;
|
|
189
|
+
closeIcon: string;
|
|
190
|
+
};
|
|
191
|
+
sm: {
|
|
192
|
+
container: string;
|
|
193
|
+
startIcon: string;
|
|
194
|
+
closeIcon: string;
|
|
195
|
+
};
|
|
196
|
+
xs: {
|
|
197
|
+
container: string;
|
|
198
|
+
startIcon: string;
|
|
199
|
+
closeIcon: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
disabled: {
|
|
203
|
+
true: {};
|
|
204
|
+
false: {};
|
|
205
|
+
};
|
|
206
|
+
}, {
|
|
207
|
+
variant: {
|
|
208
|
+
standard: {};
|
|
209
|
+
primary: {};
|
|
210
|
+
};
|
|
211
|
+
type: {
|
|
212
|
+
fill: {};
|
|
213
|
+
outlined: {};
|
|
214
|
+
};
|
|
215
|
+
size: {
|
|
216
|
+
md: {
|
|
217
|
+
container: string;
|
|
218
|
+
startIcon: string;
|
|
219
|
+
closeIcon: string;
|
|
220
|
+
};
|
|
221
|
+
sm: {
|
|
222
|
+
container: string;
|
|
223
|
+
startIcon: string;
|
|
224
|
+
closeIcon: string;
|
|
225
|
+
};
|
|
226
|
+
xs: {
|
|
227
|
+
container: string;
|
|
228
|
+
startIcon: string;
|
|
229
|
+
closeIcon: string;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
disabled: {
|
|
233
|
+
true: {};
|
|
234
|
+
false: {};
|
|
235
|
+
};
|
|
236
|
+
}>, unknown, unknown, undefined>>>, "variant"> & Required<Pick<VariantProps<tailwind_variants.TVReturnType<{
|
|
116
237
|
variant: {
|
|
117
238
|
standard: {};
|
|
118
239
|
primary: {};
|
|
@@ -146,7 +267,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
146
267
|
container: string;
|
|
147
268
|
startIcon: string;
|
|
148
269
|
closeIcon: string;
|
|
149
|
-
}, undefined, TVConfig<
|
|
270
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
271
|
+
variant: {
|
|
272
|
+
standard: {};
|
|
273
|
+
primary: {};
|
|
274
|
+
};
|
|
275
|
+
type: {
|
|
276
|
+
fill: {};
|
|
277
|
+
outlined: {};
|
|
278
|
+
};
|
|
279
|
+
size: {
|
|
280
|
+
md: {
|
|
281
|
+
container: string;
|
|
282
|
+
startIcon: string;
|
|
283
|
+
closeIcon: string;
|
|
284
|
+
};
|
|
285
|
+
sm: {
|
|
286
|
+
container: string;
|
|
287
|
+
startIcon: string;
|
|
288
|
+
closeIcon: string;
|
|
289
|
+
};
|
|
290
|
+
xs: {
|
|
291
|
+
container: string;
|
|
292
|
+
startIcon: string;
|
|
293
|
+
closeIcon: string;
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
disabled: {
|
|
297
|
+
true: {};
|
|
298
|
+
false: {};
|
|
299
|
+
};
|
|
300
|
+
}, {
|
|
301
|
+
variant: {
|
|
302
|
+
standard: {};
|
|
303
|
+
primary: {};
|
|
304
|
+
};
|
|
305
|
+
type: {
|
|
306
|
+
fill: {};
|
|
307
|
+
outlined: {};
|
|
308
|
+
};
|
|
309
|
+
size: {
|
|
310
|
+
md: {
|
|
311
|
+
container: string;
|
|
312
|
+
startIcon: string;
|
|
313
|
+
closeIcon: string;
|
|
314
|
+
};
|
|
315
|
+
sm: {
|
|
316
|
+
container: string;
|
|
317
|
+
startIcon: string;
|
|
318
|
+
closeIcon: string;
|
|
319
|
+
};
|
|
320
|
+
xs: {
|
|
321
|
+
container: string;
|
|
322
|
+
startIcon: string;
|
|
323
|
+
closeIcon: string;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
disabled: {
|
|
327
|
+
true: {};
|
|
328
|
+
false: {};
|
|
329
|
+
};
|
|
330
|
+
}>, {
|
|
150
331
|
variant: {
|
|
151
332
|
standard: {};
|
|
152
333
|
primary: {};
|
|
@@ -214,7 +395,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
214
395
|
container: string;
|
|
215
396
|
startIcon: string;
|
|
216
397
|
closeIcon: string;
|
|
217
|
-
}, undefined, TVConfig<
|
|
398
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
399
|
+
variant: {
|
|
400
|
+
standard: {};
|
|
401
|
+
primary: {};
|
|
402
|
+
};
|
|
403
|
+
type: {
|
|
404
|
+
fill: {};
|
|
405
|
+
outlined: {};
|
|
406
|
+
};
|
|
407
|
+
size: {
|
|
408
|
+
md: {
|
|
409
|
+
container: string;
|
|
410
|
+
startIcon: string;
|
|
411
|
+
closeIcon: string;
|
|
412
|
+
};
|
|
413
|
+
sm: {
|
|
414
|
+
container: string;
|
|
415
|
+
startIcon: string;
|
|
416
|
+
closeIcon: string;
|
|
417
|
+
};
|
|
418
|
+
xs: {
|
|
419
|
+
container: string;
|
|
420
|
+
startIcon: string;
|
|
421
|
+
closeIcon: string;
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
disabled: {
|
|
425
|
+
true: {};
|
|
426
|
+
false: {};
|
|
427
|
+
};
|
|
428
|
+
}, {
|
|
429
|
+
variant: {
|
|
430
|
+
standard: {};
|
|
431
|
+
primary: {};
|
|
432
|
+
};
|
|
433
|
+
type: {
|
|
434
|
+
fill: {};
|
|
435
|
+
outlined: {};
|
|
436
|
+
};
|
|
437
|
+
size: {
|
|
438
|
+
md: {
|
|
439
|
+
container: string;
|
|
440
|
+
startIcon: string;
|
|
441
|
+
closeIcon: string;
|
|
442
|
+
};
|
|
443
|
+
sm: {
|
|
444
|
+
container: string;
|
|
445
|
+
startIcon: string;
|
|
446
|
+
closeIcon: string;
|
|
447
|
+
};
|
|
448
|
+
xs: {
|
|
449
|
+
container: string;
|
|
450
|
+
startIcon: string;
|
|
451
|
+
closeIcon: string;
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
disabled: {
|
|
455
|
+
true: {};
|
|
456
|
+
false: {};
|
|
457
|
+
};
|
|
458
|
+
}>, unknown, unknown, undefined>>>, "variant">> & Omit<VariantProps<tailwind_variants.TVReturnType<{
|
|
218
459
|
variant: {
|
|
219
460
|
standard: {};
|
|
220
461
|
primary: {};
|
|
@@ -248,7 +489,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
248
489
|
container: string;
|
|
249
490
|
startIcon: string;
|
|
250
491
|
closeIcon: string;
|
|
251
|
-
}, undefined, TVConfig<
|
|
492
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
493
|
+
variant: {
|
|
494
|
+
standard: {};
|
|
495
|
+
primary: {};
|
|
496
|
+
};
|
|
497
|
+
type: {
|
|
498
|
+
fill: {};
|
|
499
|
+
outlined: {};
|
|
500
|
+
};
|
|
501
|
+
size: {
|
|
502
|
+
md: {
|
|
503
|
+
container: string;
|
|
504
|
+
startIcon: string;
|
|
505
|
+
closeIcon: string;
|
|
506
|
+
};
|
|
507
|
+
sm: {
|
|
508
|
+
container: string;
|
|
509
|
+
startIcon: string;
|
|
510
|
+
closeIcon: string;
|
|
511
|
+
};
|
|
512
|
+
xs: {
|
|
513
|
+
container: string;
|
|
514
|
+
startIcon: string;
|
|
515
|
+
closeIcon: string;
|
|
516
|
+
};
|
|
517
|
+
};
|
|
518
|
+
disabled: {
|
|
519
|
+
true: {};
|
|
520
|
+
false: {};
|
|
521
|
+
};
|
|
522
|
+
}, {
|
|
523
|
+
variant: {
|
|
524
|
+
standard: {};
|
|
525
|
+
primary: {};
|
|
526
|
+
};
|
|
527
|
+
type: {
|
|
528
|
+
fill: {};
|
|
529
|
+
outlined: {};
|
|
530
|
+
};
|
|
531
|
+
size: {
|
|
532
|
+
md: {
|
|
533
|
+
container: string;
|
|
534
|
+
startIcon: string;
|
|
535
|
+
closeIcon: string;
|
|
536
|
+
};
|
|
537
|
+
sm: {
|
|
538
|
+
container: string;
|
|
539
|
+
startIcon: string;
|
|
540
|
+
closeIcon: string;
|
|
541
|
+
};
|
|
542
|
+
xs: {
|
|
543
|
+
container: string;
|
|
544
|
+
startIcon: string;
|
|
545
|
+
closeIcon: string;
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
disabled: {
|
|
549
|
+
true: {};
|
|
550
|
+
false: {};
|
|
551
|
+
};
|
|
552
|
+
}>, {
|
|
252
553
|
variant: {
|
|
253
554
|
standard: {};
|
|
254
555
|
primary: {};
|
|
@@ -316,7 +617,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
316
617
|
container: string;
|
|
317
618
|
startIcon: string;
|
|
318
619
|
closeIcon: string;
|
|
319
|
-
}, undefined, TVConfig<
|
|
620
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
621
|
+
variant: {
|
|
622
|
+
standard: {};
|
|
623
|
+
primary: {};
|
|
624
|
+
};
|
|
625
|
+
type: {
|
|
626
|
+
fill: {};
|
|
627
|
+
outlined: {};
|
|
628
|
+
};
|
|
629
|
+
size: {
|
|
630
|
+
md: {
|
|
631
|
+
container: string;
|
|
632
|
+
startIcon: string;
|
|
633
|
+
closeIcon: string;
|
|
634
|
+
};
|
|
635
|
+
sm: {
|
|
636
|
+
container: string;
|
|
637
|
+
startIcon: string;
|
|
638
|
+
closeIcon: string;
|
|
639
|
+
};
|
|
640
|
+
xs: {
|
|
641
|
+
container: string;
|
|
642
|
+
startIcon: string;
|
|
643
|
+
closeIcon: string;
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
disabled: {
|
|
647
|
+
true: {};
|
|
648
|
+
false: {};
|
|
649
|
+
};
|
|
650
|
+
}, {
|
|
651
|
+
variant: {
|
|
652
|
+
standard: {};
|
|
653
|
+
primary: {};
|
|
654
|
+
};
|
|
655
|
+
type: {
|
|
656
|
+
fill: {};
|
|
657
|
+
outlined: {};
|
|
658
|
+
};
|
|
659
|
+
size: {
|
|
660
|
+
md: {
|
|
661
|
+
container: string;
|
|
662
|
+
startIcon: string;
|
|
663
|
+
closeIcon: string;
|
|
664
|
+
};
|
|
665
|
+
sm: {
|
|
666
|
+
container: string;
|
|
667
|
+
startIcon: string;
|
|
668
|
+
closeIcon: string;
|
|
669
|
+
};
|
|
670
|
+
xs: {
|
|
671
|
+
container: string;
|
|
672
|
+
startIcon: string;
|
|
673
|
+
closeIcon: string;
|
|
674
|
+
};
|
|
675
|
+
};
|
|
676
|
+
disabled: {
|
|
677
|
+
true: {};
|
|
678
|
+
false: {};
|
|
679
|
+
};
|
|
680
|
+
}>, unknown, unknown, undefined>>>, "type"> & Required<Pick<VariantProps<tailwind_variants.TVReturnType<{
|
|
320
681
|
variant: {
|
|
321
682
|
standard: {};
|
|
322
683
|
primary: {};
|
|
@@ -350,7 +711,67 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
350
711
|
container: string;
|
|
351
712
|
startIcon: string;
|
|
352
713
|
closeIcon: string;
|
|
353
|
-
}, undefined, TVConfig<
|
|
714
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
715
|
+
variant: {
|
|
716
|
+
standard: {};
|
|
717
|
+
primary: {};
|
|
718
|
+
};
|
|
719
|
+
type: {
|
|
720
|
+
fill: {};
|
|
721
|
+
outlined: {};
|
|
722
|
+
};
|
|
723
|
+
size: {
|
|
724
|
+
md: {
|
|
725
|
+
container: string;
|
|
726
|
+
startIcon: string;
|
|
727
|
+
closeIcon: string;
|
|
728
|
+
};
|
|
729
|
+
sm: {
|
|
730
|
+
container: string;
|
|
731
|
+
startIcon: string;
|
|
732
|
+
closeIcon: string;
|
|
733
|
+
};
|
|
734
|
+
xs: {
|
|
735
|
+
container: string;
|
|
736
|
+
startIcon: string;
|
|
737
|
+
closeIcon: string;
|
|
738
|
+
};
|
|
739
|
+
};
|
|
740
|
+
disabled: {
|
|
741
|
+
true: {};
|
|
742
|
+
false: {};
|
|
743
|
+
};
|
|
744
|
+
}, {
|
|
745
|
+
variant: {
|
|
746
|
+
standard: {};
|
|
747
|
+
primary: {};
|
|
748
|
+
};
|
|
749
|
+
type: {
|
|
750
|
+
fill: {};
|
|
751
|
+
outlined: {};
|
|
752
|
+
};
|
|
753
|
+
size: {
|
|
754
|
+
md: {
|
|
755
|
+
container: string;
|
|
756
|
+
startIcon: string;
|
|
757
|
+
closeIcon: string;
|
|
758
|
+
};
|
|
759
|
+
sm: {
|
|
760
|
+
container: string;
|
|
761
|
+
startIcon: string;
|
|
762
|
+
closeIcon: string;
|
|
763
|
+
};
|
|
764
|
+
xs: {
|
|
765
|
+
container: string;
|
|
766
|
+
startIcon: string;
|
|
767
|
+
closeIcon: string;
|
|
768
|
+
};
|
|
769
|
+
};
|
|
770
|
+
disabled: {
|
|
771
|
+
true: {};
|
|
772
|
+
false: {};
|
|
773
|
+
};
|
|
774
|
+
}>, {
|
|
354
775
|
variant: {
|
|
355
776
|
standard: {};
|
|
356
777
|
primary: {};
|
|
@@ -418,6 +839,66 @@ declare const ChipInput: React__default.ForwardRefExoticComponent<{
|
|
|
418
839
|
container: string;
|
|
419
840
|
startIcon: string;
|
|
420
841
|
closeIcon: string;
|
|
421
|
-
}, undefined, TVConfig<
|
|
842
|
+
}, undefined, tailwind_variants_dist_config_js.TVConfig<{
|
|
843
|
+
variant: {
|
|
844
|
+
standard: {};
|
|
845
|
+
primary: {};
|
|
846
|
+
};
|
|
847
|
+
type: {
|
|
848
|
+
fill: {};
|
|
849
|
+
outlined: {};
|
|
850
|
+
};
|
|
851
|
+
size: {
|
|
852
|
+
md: {
|
|
853
|
+
container: string;
|
|
854
|
+
startIcon: string;
|
|
855
|
+
closeIcon: string;
|
|
856
|
+
};
|
|
857
|
+
sm: {
|
|
858
|
+
container: string;
|
|
859
|
+
startIcon: string;
|
|
860
|
+
closeIcon: string;
|
|
861
|
+
};
|
|
862
|
+
xs: {
|
|
863
|
+
container: string;
|
|
864
|
+
startIcon: string;
|
|
865
|
+
closeIcon: string;
|
|
866
|
+
};
|
|
867
|
+
};
|
|
868
|
+
disabled: {
|
|
869
|
+
true: {};
|
|
870
|
+
false: {};
|
|
871
|
+
};
|
|
872
|
+
}, {
|
|
873
|
+
variant: {
|
|
874
|
+
standard: {};
|
|
875
|
+
primary: {};
|
|
876
|
+
};
|
|
877
|
+
type: {
|
|
878
|
+
fill: {};
|
|
879
|
+
outlined: {};
|
|
880
|
+
};
|
|
881
|
+
size: {
|
|
882
|
+
md: {
|
|
883
|
+
container: string;
|
|
884
|
+
startIcon: string;
|
|
885
|
+
closeIcon: string;
|
|
886
|
+
};
|
|
887
|
+
sm: {
|
|
888
|
+
container: string;
|
|
889
|
+
startIcon: string;
|
|
890
|
+
closeIcon: string;
|
|
891
|
+
};
|
|
892
|
+
xs: {
|
|
893
|
+
container: string;
|
|
894
|
+
startIcon: string;
|
|
895
|
+
closeIcon: string;
|
|
896
|
+
};
|
|
897
|
+
};
|
|
898
|
+
disabled: {
|
|
899
|
+
true: {};
|
|
900
|
+
false: {};
|
|
901
|
+
};
|
|
902
|
+
}>, unknown, unknown, undefined>>>, "type">> & React__default.RefAttributes<HTMLSpanElement>>;
|
|
422
903
|
|
|
423
904
|
export { ChipInput, ChipInputSizes, ChipInputTypes, ChipInputVariants };
|
|
@@ -6,7 +6,7 @@ type ChipStatusComplementaryVariantType = (typeof ChipStatusComplementaryVariant
|
|
|
6
6
|
type ChipStatusComplementarySizeType = (typeof ChipStatusComplementarySizes)[number];
|
|
7
7
|
declare const chipStatusComplementary: (props?: ({
|
|
8
8
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
10
10
|
} & ({
|
|
11
11
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
12
12
|
[x: string]: any;
|
|
@@ -6,7 +6,7 @@ type ChipStatusComplementaryVariantType = (typeof ChipStatusComplementaryVariant
|
|
|
6
6
|
type ChipStatusComplementarySizeType = (typeof ChipStatusComplementarySizes)[number];
|
|
7
7
|
declare const chipStatusComplementary: (props?: ({
|
|
8
8
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
10
10
|
} & ({
|
|
11
11
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
12
12
|
[x: string]: any;
|
|
@@ -2,7 +2,7 @@ import { VariantProps } from 'cva';
|
|
|
2
2
|
import { HTMLAttributes, FC } from 'react';
|
|
3
3
|
|
|
4
4
|
declare const chipStatusTable: (props?: ({
|
|
5
|
-
variant?: "
|
|
5
|
+
variant?: "info" | "warning" | "success" | "error" | "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
6
6
|
} & ({
|
|
7
7
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
8
8
|
[x: string]: any;
|
|
@@ -2,7 +2,7 @@ import { VariantProps } from 'cva';
|
|
|
2
2
|
import { HTMLAttributes, FC } from 'react';
|
|
3
3
|
|
|
4
4
|
declare const chipStatusTable: (props?: ({
|
|
5
|
-
variant?: "
|
|
5
|
+
variant?: "info" | "warning" | "success" | "error" | "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
6
6
|
} & ({
|
|
7
7
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
8
8
|
[x: string]: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {a}from'./chunk-2WINTZSS.mjs';import {RadioGroupRoot,RadioGroupItem,RadioGroupItemControl,RadioGroupItemText,RadioGroupItemHiddenInput}from'@ark-ui/react/radio-group';import {forwardRef,useCallback}from'react';import {jsx,jsxs}from'react/jsx-runtime';var C=["sm","md"],N=["horizontal","vertical"],f=forwardRef(({className:d,orientation:a$1="horizontal",onValueChange:r,size:e="md",...p},u)=>{let s=useCallback(l=>{r?.(l.value);},[r]);return jsx(RadioGroupRoot,{"data-size":e,className:a("group flex",a$1==="horizontal"&&"flex gap-8",a$1==="vertical"&&e==="sm"&&"flex-col gap-2",a$1==="vertical"&&e==="md"&&"flex-col gap-3",d),orientation:a$1,ref:u,onValueChange:s,...p})});f.displayName="RadioGroup";var b=forwardRef(({value:d,label:a$1,className:r},e)=>jsxs(RadioGroupItem,{value:d,className:a("flex items-center gap-1.5",r),ref:e,children:[jsx(RadioGroupItemControl,{className:a("relative rounded-full border-neutral-900 transition-all after:absolute after:h-full after:w-full after:rounded-full after:border-transparent","data-[state=checked]:border-primary-500 data-[state=checked]:bg-primary-500 data-[state=checked]:after:border-neutral-50","group-data-[size=sm]:h-[14px] group-data-[size=sm]:w-[14px] group-data-[size=sm]:border-[1.5px] group-data-[size=sm]:after:border-2","group-data-[size=md]:h-5 group-data-[size=md]:w-5 group-data-[size=md]:border-2 group-data-[size=md]:after:border-3","group-data-[disabled]:border-neutral-400 group-data-[disabled]:data-[state=checked]:bg-neutral-400")}),a$1&&jsx(RadioGroupItemText,{className:a("font-inter !leading-[130%] text-neutral-900","group-data-[size=sm]:text-xs","group-data-[size=md]:text-sm","group-data-[disabled]:text-neutral-400"),children:a$1}),jsx(RadioGroupItemHiddenInput,{})]}));b.displayName="RadioGroupItem";export{C as a,N as b,f as c,b as d};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {a as a$1}from'./chunk-QHBCNAWO.mjs';import {c as c$1}from'./chunk-WS2F7JWJ.mjs';import {c}from'./chunk-2VL36SBW.mjs';import {d}from'./chunk-TYHJTIAW.mjs';import {a}from'./chunk-2WINTZSS.mjs';import {Dialog}from'@ark-ui/react/dialog';import {Portal}from'@ark-ui/react/portal';import {forwardRef,useCallback}from'react';import {jsxs,jsx}from'react/jsx-runtime';var q=({onOpenChange:a,...o})=>{let r=useCallback(t=>{a?.(t.open);},[a]);return jsx(Dialog.Root,{unmountOnExit:!0,lazyMount:!0,onOpenChange:r,trapFocus:!1,...o})},G=Dialog.Trigger,J=["sm","md","lg","xl"],v=forwardRef(({children:a$1,className:o,size:r="sm",...t},n)=>jsxs(Portal,{children:[jsx(Dialog.Backdrop,{className:"fixed inset-0 z-40 bg-neutral-900/60 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0"}),jsx(Dialog.Positioner,{className:"fixed left-0 top-0 z-40 flex h-screen w-screen items-center justify-end",children:jsx(Dialog.Content,{ref:n,className:a("elevation-10 h-full bg-neutral-50 data-[state=closed]:animate-swipeOut data-[state=open]:animate-slideIn",r==="sm"&&"w-117.5",r==="md"&&"w-187",r==="lg"&&"w-235",r==="xl"&&"w-312",o),...t,children:jsx("div",{className:"flex h-full flex-1 flex-col",children:a$1})})})]}));v.displayName="DrawerStickyContent";var C=forwardRef(({children:a$1,className:o,title:r,buttons:t=[],description:n,...D},g)=>jsxs("div",{className:a("border-b-1 border-neutral-200 pb-3.75 pl-4.5 pt-2",o),ref:g,...D,children:[jsx(Dialog.CloseTrigger,{asChild:!0,children:jsx(d,{className:"ml-auto mr-2 size-6 cursor-pointer"})}),jsxs("div",{className:"mr-4.5 mt-2 flex items-center justify-between gap-4.5",children:[jsx(Dialog.Title,{className:"line-clamp-1 break-all font-jakarta text-2xl font-semibold leading-[130%] text-neutral-900",children:r}),!Array.isArray(t)&&t.visible!==!1&&jsx(c,{size:"sm",variant:"ghost",...t}),Array.isArray(t)&&jsx("div",{className:"flex gap-1",children:t.map(({visible:f=!0,...u},w)=>f?jsx(c$1,{variant:"ghost",size:"sm",...u},w):null)})]}),n&&jsx(Dialog.Description,{className:"mr-4.5 mt-1 line-clamp-2 break-all font-inter text-sm leading-[130%] text-neutral-900",children:n})]}));C.displayName="DrawerStickyHeader";var P=forwardRef(({children:a$1,className:o,...r},t)=>jsx("div",{className:a("flex justify-end gap-3 border-t-1 border-neutral-200 px-4.5 pb-4.5 pt-4.25",o),ref:t,...r,children:a$1}));P.displayName="DrawerStickyFooter";var b=forwardRef(({children:a$2,className:o,...r},t)=>jsxs(a$1,{viewPortClassName:"py-4 px-6",className:a("h-full",o),ref:t,...r,children:[a$2,jsx("div",{className:"min-h-4"})]}));b.displayName="DrawerStickyBody";var K=Dialog.CloseTrigger;export{q as a,G as b,J as c,v as d,C as e,P as f,b as g,K as h};
|
package/dist/data-table.d.mts
CHANGED
package/dist/data-table.d.ts
CHANGED
package/dist/dialog.d.mts
CHANGED
|
@@ -5,6 +5,7 @@ import * as Dialog$1 from '@radix-ui/react-dialog';
|
|
|
5
5
|
export { Dialog$1 as DialogPrimitive };
|
|
6
6
|
import { ButtonProps } from './button.mjs';
|
|
7
7
|
import 'tailwind-variants';
|
|
8
|
+
import 'tailwind-variants/dist/config.js';
|
|
8
9
|
import 'lucide-react';
|
|
9
10
|
|
|
10
11
|
declare const Dialog: React.FC<Dialog$1.DialogProps>;
|
package/dist/dialog.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import * as Dialog$1 from '@radix-ui/react-dialog';
|
|
|
5
5
|
export { Dialog$1 as DialogPrimitive };
|
|
6
6
|
import { ButtonProps } from './button.js';
|
|
7
7
|
import 'tailwind-variants';
|
|
8
|
+
import 'tailwind-variants/dist/config.js';
|
|
8
9
|
import 'lucide-react';
|
|
9
10
|
|
|
10
11
|
declare const Dialog: React.FC<Dialog$1.DialogProps>;
|
package/dist/drawer-sticky.d.mts
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { FC, HTMLAttributes } from 'react';
|
|
4
|
+
import { Dialog, DialogContentProps, DialogRootProps } from '@ark-ui/react/dialog';
|
|
5
5
|
import { IconButtonProps } from './icon-button.mjs';
|
|
6
6
|
import { ButtonProps } from './button.mjs';
|
|
7
7
|
import 'tailwind-variants';
|
|
8
|
+
import 'tailwind-variants/dist/config.js';
|
|
8
9
|
import 'lucide-react';
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
type DrawerStickyProps = Omit<DialogRootProps, "onOpenChange"> & {
|
|
11
12
|
onOpenChange?: (open: boolean) => void;
|
|
12
|
-
}
|
|
13
|
-
declare const
|
|
13
|
+
};
|
|
14
|
+
declare const DrawerSticky: FC<DrawerStickyProps>;
|
|
15
|
+
declare const DrawerStickyTrigger: React.ForwardRefExoticComponent<Dialog.TriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
14
16
|
declare const DrawerStickySizes: readonly ["sm", "md", "lg", "xl"];
|
|
15
|
-
type DrawerStickyContentProps = DialogContentProps &
|
|
16
|
-
className?: HTMLAttributes<HTMLDivElement>["className"];
|
|
17
|
+
type DrawerStickyContentProps = DialogContentProps & {
|
|
17
18
|
size?: (typeof DrawerStickySizes)[number];
|
|
18
19
|
};
|
|
19
|
-
declare const DrawerStickyContent: React.ForwardRefExoticComponent<
|
|
20
|
-
children?: React.ReactNode | undefined;
|
|
21
|
-
} & {
|
|
22
|
-
className?: HTMLAttributes<HTMLDivElement>["className"];
|
|
20
|
+
declare const DrawerStickyContent: React.ForwardRefExoticComponent<Dialog.ContentProps & {
|
|
23
21
|
size?: (typeof DrawerStickySizes)[number];
|
|
24
22
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
25
23
|
type DrawerStickyHeaderButtons = (IconButtonProps & {
|
|
@@ -36,7 +34,7 @@ declare const DrawerStickyHeader: React.ForwardRefExoticComponent<{
|
|
|
36
34
|
title: string;
|
|
37
35
|
description?: string;
|
|
38
36
|
buttons?: DrawerStickyHeaderButtons;
|
|
39
|
-
} & Omit<HTMLAttributes<HTMLDivElement>, "
|
|
37
|
+
} & Omit<HTMLAttributes<HTMLDivElement>, "description" | "title"> & React.RefAttributes<HTMLDivElement>>;
|
|
40
38
|
declare const DrawerStickyFooter: React.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
41
39
|
declare const DrawerStickyBody: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
42
40
|
onScrollEnd?: () => void;
|
|
@@ -44,6 +42,6 @@ declare const DrawerStickyBody: React.ForwardRefExoticComponent<Omit<ScrollAreaP
|
|
|
44
42
|
viewPortClassName?: HTMLAttributes<HTMLDivElement>["className"];
|
|
45
43
|
viewPortStyle?: HTMLAttributes<HTMLDivElement>["style"];
|
|
46
44
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
47
|
-
declare const DrawerStickyCloseTrigger:
|
|
45
|
+
declare const DrawerStickyCloseTrigger: React.ForwardRefExoticComponent<Dialog.CloseTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
48
46
|
|
|
49
47
|
export { DrawerSticky, DrawerStickyBody, DrawerStickyCloseTrigger, DrawerStickyContent, type DrawerStickyContentProps, DrawerStickyFooter, DrawerStickyHeader, type DrawerStickyHeaderProps, DrawerStickySizes, DrawerStickyTrigger };
|