sodtrack-web-ui 0.83.0 → 0.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-QP7ZCYZI.mjs → chunk-4MF2IFZT.mjs} +1 -1
- package/dist/{chunk-W4PMSOUB.mjs → chunk-5MFO5X4O.mjs} +1 -1
- package/dist/chunk-EOJM3KHF.mjs +1 -0
- package/dist/{chunk-MXULBFWP.mjs → chunk-JFVQTEOV.mjs} +1 -1
- package/dist/chunk-R3YSOGZ7.mjs +1 -0
- package/dist/chunk-UAUPRGMG.mjs +1 -0
- package/dist/chunk-WAF6FQLO.mjs +1 -0
- package/dist/{chunk-S5PGZOEZ.mjs → chunk-XGWMDVKH.mjs} +1 -1
- package/dist/{chunk-FYXOLYGP.mjs → chunk-XKENLG5T.mjs} +1 -1
- package/dist/components/accordion-form.mjs +1 -1
- package/dist/components/accordion.mjs +1 -1
- package/dist/components/badge-category-skeleton.d.mts +42 -0
- package/dist/components/badge-category-skeleton.d.ts +42 -0
- package/dist/components/badge-category-skeleton.js +1 -0
- package/dist/components/badge-category-skeleton.mjs +1 -0
- package/dist/components/badge-category.d.mts +179 -0
- package/dist/components/badge-category.d.ts +179 -0
- package/dist/components/badge-category.js +1 -0
- package/dist/components/badge-category.mjs +1 -0
- package/dist/components/{status-badge-skeleton.d.mts → badge-status-skeleton.d.mts} +7 -7
- package/dist/components/{status-badge-skeleton.d.ts → badge-status-skeleton.d.ts} +7 -7
- package/dist/components/{status-badge-skeleton.js → badge-status-skeleton.js} +1 -1
- package/dist/components/badge-status-skeleton.mjs +1 -0
- package/dist/components/{status-badge.d.mts → badge-status.d.mts} +87 -51
- package/dist/components/{status-badge.d.ts → badge-status.d.ts} +87 -51
- package/dist/components/badge-status.js +1 -0
- package/dist/components/badge-status.mjs +1 -0
- package/dist/components/card-expandable.mjs +1 -1
- package/dist/components/index.d.mts +4 -1
- package/dist/components/index.d.ts +4 -1
- package/dist/components/index.js +2 -2
- package/dist/components/index.mjs +1 -1
- package/dist/components/list-item-arrow.mjs +1 -1
- package/dist/components/list-item-button.mjs +1 -1
- package/dist/components/list-item-checkbox-left.mjs +1 -1
- package/dist/components/list-item-checkbox.mjs +1 -1
- package/dist/components/list-item.mjs +1 -1
- package/dist/components/tab.mjs +1 -1
- package/dist/styles/colors.css +1 -1
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/dist/chunk-AU74IT3Q.mjs +0 -1
- package/dist/components/status-badge-skeleton.mjs +0 -1
- package/dist/components/status-badge.js +0 -1
- package/dist/components/status-badge.mjs +0 -1
|
@@ -3,10 +3,10 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
3
3
|
import { LucideIcon } from 'lucide-react';
|
|
4
4
|
import { FC, HTMLAttributes } from 'react';
|
|
5
5
|
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
declare const
|
|
6
|
+
type BadgeStatusVariant = "aqua-100" | "sky-50" | "info-100" | "success-50" | "mint-50" | "success-200" | "jungle-200" | "green-200" | "banana-50" | "banana-100" | "secondary-100" | "warning-50" | "warning-200" | "orange-50" | "orange-100" | "coral-50" | "danger-50" | "danger-100" | "new-50" | "lavender-100" | "orchid-100" | "neutral-200" | "neutral-300" | "neutral-400";
|
|
7
|
+
type BadgeStatusSize = "sm" | "md" | "lg" | "xl";
|
|
8
|
+
type BadgeStatusLeading = "dot" | LucideIcon | undefined;
|
|
9
|
+
declare const badgeStatus: tailwind_variants.TVReturnType<{
|
|
10
10
|
size: {
|
|
11
11
|
sm: {
|
|
12
12
|
text: string;
|
|
@@ -33,13 +33,19 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
33
33
|
false: {};
|
|
34
34
|
};
|
|
35
35
|
variant: {
|
|
36
|
+
"aqua-100": {
|
|
37
|
+
container: string;
|
|
38
|
+
icon: string;
|
|
39
|
+
text: string;
|
|
40
|
+
dot: string;
|
|
41
|
+
};
|
|
36
42
|
"sky-50": {
|
|
37
43
|
container: string;
|
|
38
44
|
icon: string;
|
|
39
45
|
text: string;
|
|
40
46
|
dot: string;
|
|
41
47
|
};
|
|
42
|
-
"
|
|
48
|
+
"info-100": {
|
|
43
49
|
container: string;
|
|
44
50
|
icon: string;
|
|
45
51
|
text: string;
|
|
@@ -51,67 +57,73 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
51
57
|
text: string;
|
|
52
58
|
dot: string;
|
|
53
59
|
};
|
|
54
|
-
"
|
|
60
|
+
"mint-50": {
|
|
55
61
|
container: string;
|
|
56
62
|
icon: string;
|
|
57
63
|
text: string;
|
|
58
64
|
dot: string;
|
|
59
65
|
};
|
|
60
|
-
"
|
|
66
|
+
"success-200": {
|
|
61
67
|
container: string;
|
|
62
68
|
icon: string;
|
|
63
69
|
text: string;
|
|
64
70
|
dot: string;
|
|
65
71
|
};
|
|
66
|
-
"
|
|
72
|
+
"jungle-200": {
|
|
67
73
|
container: string;
|
|
68
74
|
icon: string;
|
|
69
75
|
text: string;
|
|
70
76
|
dot: string;
|
|
71
77
|
};
|
|
72
|
-
"
|
|
78
|
+
"green-200": {
|
|
73
79
|
container: string;
|
|
74
80
|
icon: string;
|
|
75
81
|
text: string;
|
|
76
82
|
dot: string;
|
|
77
83
|
};
|
|
78
|
-
"
|
|
84
|
+
"banana-50": {
|
|
79
85
|
container: string;
|
|
80
86
|
icon: string;
|
|
81
87
|
text: string;
|
|
82
88
|
dot: string;
|
|
83
89
|
};
|
|
84
|
-
"
|
|
90
|
+
"banana-100": {
|
|
85
91
|
container: string;
|
|
86
92
|
icon: string;
|
|
87
93
|
text: string;
|
|
88
94
|
dot: string;
|
|
89
95
|
};
|
|
90
|
-
"
|
|
96
|
+
"secondary-100": {
|
|
91
97
|
container: string;
|
|
92
98
|
icon: string;
|
|
93
99
|
text: string;
|
|
94
100
|
dot: string;
|
|
95
101
|
};
|
|
96
|
-
"
|
|
102
|
+
"warning-50": {
|
|
97
103
|
container: string;
|
|
98
104
|
icon: string;
|
|
99
105
|
text: string;
|
|
100
106
|
dot: string;
|
|
101
107
|
};
|
|
102
|
-
"
|
|
108
|
+
"warning-200": {
|
|
103
109
|
container: string;
|
|
104
110
|
icon: string;
|
|
105
111
|
text: string;
|
|
106
112
|
dot: string;
|
|
107
113
|
};
|
|
108
|
-
"
|
|
114
|
+
"orange-50": {
|
|
109
115
|
container: string;
|
|
110
116
|
icon: string;
|
|
111
117
|
text: string;
|
|
112
118
|
dot: string;
|
|
113
119
|
};
|
|
114
|
-
"
|
|
120
|
+
"orange-100": {
|
|
121
|
+
container: string;
|
|
122
|
+
icon: string;
|
|
123
|
+
text: string;
|
|
124
|
+
dot: string;
|
|
125
|
+
};
|
|
126
|
+
"coral-50": {
|
|
115
127
|
container: string;
|
|
116
128
|
icon: string;
|
|
117
129
|
text: string;
|
|
@@ -135,13 +147,13 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
135
147
|
text: string;
|
|
136
148
|
dot: string;
|
|
137
149
|
};
|
|
138
|
-
"
|
|
150
|
+
"lavender-100": {
|
|
139
151
|
container: string;
|
|
140
152
|
icon: string;
|
|
141
153
|
text: string;
|
|
142
154
|
dot: string;
|
|
143
155
|
};
|
|
144
|
-
"
|
|
156
|
+
"orchid-100": {
|
|
145
157
|
container: string;
|
|
146
158
|
icon: string;
|
|
147
159
|
text: string;
|
|
@@ -198,13 +210,19 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
198
210
|
false: {};
|
|
199
211
|
};
|
|
200
212
|
variant: {
|
|
213
|
+
"aqua-100": {
|
|
214
|
+
container: string;
|
|
215
|
+
icon: string;
|
|
216
|
+
text: string;
|
|
217
|
+
dot: string;
|
|
218
|
+
};
|
|
201
219
|
"sky-50": {
|
|
202
220
|
container: string;
|
|
203
221
|
icon: string;
|
|
204
222
|
text: string;
|
|
205
223
|
dot: string;
|
|
206
224
|
};
|
|
207
|
-
"
|
|
225
|
+
"info-100": {
|
|
208
226
|
container: string;
|
|
209
227
|
icon: string;
|
|
210
228
|
text: string;
|
|
@@ -216,67 +234,73 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
216
234
|
text: string;
|
|
217
235
|
dot: string;
|
|
218
236
|
};
|
|
219
|
-
"
|
|
237
|
+
"mint-50": {
|
|
220
238
|
container: string;
|
|
221
239
|
icon: string;
|
|
222
240
|
text: string;
|
|
223
241
|
dot: string;
|
|
224
242
|
};
|
|
225
|
-
"
|
|
243
|
+
"success-200": {
|
|
226
244
|
container: string;
|
|
227
245
|
icon: string;
|
|
228
246
|
text: string;
|
|
229
247
|
dot: string;
|
|
230
248
|
};
|
|
231
|
-
"
|
|
249
|
+
"jungle-200": {
|
|
232
250
|
container: string;
|
|
233
251
|
icon: string;
|
|
234
252
|
text: string;
|
|
235
253
|
dot: string;
|
|
236
254
|
};
|
|
237
|
-
"
|
|
255
|
+
"green-200": {
|
|
238
256
|
container: string;
|
|
239
257
|
icon: string;
|
|
240
258
|
text: string;
|
|
241
259
|
dot: string;
|
|
242
260
|
};
|
|
243
|
-
"
|
|
261
|
+
"banana-50": {
|
|
244
262
|
container: string;
|
|
245
263
|
icon: string;
|
|
246
264
|
text: string;
|
|
247
265
|
dot: string;
|
|
248
266
|
};
|
|
249
|
-
"
|
|
267
|
+
"banana-100": {
|
|
250
268
|
container: string;
|
|
251
269
|
icon: string;
|
|
252
270
|
text: string;
|
|
253
271
|
dot: string;
|
|
254
272
|
};
|
|
255
|
-
"
|
|
273
|
+
"secondary-100": {
|
|
256
274
|
container: string;
|
|
257
275
|
icon: string;
|
|
258
276
|
text: string;
|
|
259
277
|
dot: string;
|
|
260
278
|
};
|
|
261
|
-
"
|
|
279
|
+
"warning-50": {
|
|
262
280
|
container: string;
|
|
263
281
|
icon: string;
|
|
264
282
|
text: string;
|
|
265
283
|
dot: string;
|
|
266
284
|
};
|
|
267
|
-
"
|
|
285
|
+
"warning-200": {
|
|
268
286
|
container: string;
|
|
269
287
|
icon: string;
|
|
270
288
|
text: string;
|
|
271
289
|
dot: string;
|
|
272
290
|
};
|
|
273
|
-
"
|
|
291
|
+
"orange-50": {
|
|
292
|
+
container: string;
|
|
293
|
+
icon: string;
|
|
294
|
+
text: string;
|
|
295
|
+
dot: string;
|
|
296
|
+
};
|
|
297
|
+
"orange-100": {
|
|
274
298
|
container: string;
|
|
275
299
|
icon: string;
|
|
276
300
|
text: string;
|
|
277
301
|
dot: string;
|
|
278
302
|
};
|
|
279
|
-
"
|
|
303
|
+
"coral-50": {
|
|
280
304
|
container: string;
|
|
281
305
|
icon: string;
|
|
282
306
|
text: string;
|
|
@@ -300,13 +324,13 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
300
324
|
text: string;
|
|
301
325
|
dot: string;
|
|
302
326
|
};
|
|
303
|
-
"
|
|
327
|
+
"lavender-100": {
|
|
304
328
|
container: string;
|
|
305
329
|
icon: string;
|
|
306
330
|
text: string;
|
|
307
331
|
dot: string;
|
|
308
332
|
};
|
|
309
|
-
"
|
|
333
|
+
"orchid-100": {
|
|
310
334
|
container: string;
|
|
311
335
|
icon: string;
|
|
312
336
|
text: string;
|
|
@@ -363,13 +387,19 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
363
387
|
false: {};
|
|
364
388
|
};
|
|
365
389
|
variant: {
|
|
390
|
+
"aqua-100": {
|
|
391
|
+
container: string;
|
|
392
|
+
icon: string;
|
|
393
|
+
text: string;
|
|
394
|
+
dot: string;
|
|
395
|
+
};
|
|
366
396
|
"sky-50": {
|
|
367
397
|
container: string;
|
|
368
398
|
icon: string;
|
|
369
399
|
text: string;
|
|
370
400
|
dot: string;
|
|
371
401
|
};
|
|
372
|
-
"
|
|
402
|
+
"info-100": {
|
|
373
403
|
container: string;
|
|
374
404
|
icon: string;
|
|
375
405
|
text: string;
|
|
@@ -381,67 +411,73 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
381
411
|
text: string;
|
|
382
412
|
dot: string;
|
|
383
413
|
};
|
|
384
|
-
"
|
|
414
|
+
"mint-50": {
|
|
385
415
|
container: string;
|
|
386
416
|
icon: string;
|
|
387
417
|
text: string;
|
|
388
418
|
dot: string;
|
|
389
419
|
};
|
|
390
|
-
"
|
|
420
|
+
"success-200": {
|
|
391
421
|
container: string;
|
|
392
422
|
icon: string;
|
|
393
423
|
text: string;
|
|
394
424
|
dot: string;
|
|
395
425
|
};
|
|
396
|
-
"
|
|
426
|
+
"jungle-200": {
|
|
397
427
|
container: string;
|
|
398
428
|
icon: string;
|
|
399
429
|
text: string;
|
|
400
430
|
dot: string;
|
|
401
431
|
};
|
|
402
|
-
"
|
|
432
|
+
"green-200": {
|
|
403
433
|
container: string;
|
|
404
434
|
icon: string;
|
|
405
435
|
text: string;
|
|
406
436
|
dot: string;
|
|
407
437
|
};
|
|
408
|
-
"
|
|
438
|
+
"banana-50": {
|
|
409
439
|
container: string;
|
|
410
440
|
icon: string;
|
|
411
441
|
text: string;
|
|
412
442
|
dot: string;
|
|
413
443
|
};
|
|
414
|
-
"
|
|
444
|
+
"banana-100": {
|
|
415
445
|
container: string;
|
|
416
446
|
icon: string;
|
|
417
447
|
text: string;
|
|
418
448
|
dot: string;
|
|
419
449
|
};
|
|
420
|
-
"
|
|
450
|
+
"secondary-100": {
|
|
421
451
|
container: string;
|
|
422
452
|
icon: string;
|
|
423
453
|
text: string;
|
|
424
454
|
dot: string;
|
|
425
455
|
};
|
|
426
|
-
"
|
|
456
|
+
"warning-50": {
|
|
427
457
|
container: string;
|
|
428
458
|
icon: string;
|
|
429
459
|
text: string;
|
|
430
460
|
dot: string;
|
|
431
461
|
};
|
|
432
|
-
"
|
|
462
|
+
"warning-200": {
|
|
433
463
|
container: string;
|
|
434
464
|
icon: string;
|
|
435
465
|
text: string;
|
|
436
466
|
dot: string;
|
|
437
467
|
};
|
|
438
|
-
"
|
|
468
|
+
"orange-50": {
|
|
469
|
+
container: string;
|
|
470
|
+
icon: string;
|
|
471
|
+
text: string;
|
|
472
|
+
dot: string;
|
|
473
|
+
};
|
|
474
|
+
"orange-100": {
|
|
439
475
|
container: string;
|
|
440
476
|
icon: string;
|
|
441
477
|
text: string;
|
|
442
478
|
dot: string;
|
|
443
479
|
};
|
|
444
|
-
"
|
|
480
|
+
"coral-50": {
|
|
445
481
|
container: string;
|
|
446
482
|
icon: string;
|
|
447
483
|
text: string;
|
|
@@ -465,13 +501,13 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
465
501
|
text: string;
|
|
466
502
|
dot: string;
|
|
467
503
|
};
|
|
468
|
-
"
|
|
504
|
+
"lavender-100": {
|
|
469
505
|
container: string;
|
|
470
506
|
icon: string;
|
|
471
507
|
text: string;
|
|
472
508
|
dot: string;
|
|
473
509
|
};
|
|
474
|
-
"
|
|
510
|
+
"orchid-100": {
|
|
475
511
|
container: string;
|
|
476
512
|
icon: string;
|
|
477
513
|
text: string;
|
|
@@ -502,12 +538,12 @@ declare const statusBadge: tailwind_variants.TVReturnType<{
|
|
|
502
538
|
text: string;
|
|
503
539
|
dot: string;
|
|
504
540
|
}, undefined, unknown, unknown, undefined>>;
|
|
505
|
-
type
|
|
541
|
+
type BadgeStatusProps = {
|
|
506
542
|
text?: string;
|
|
507
543
|
className?: HTMLAttributes<HTMLDivElement>["className"];
|
|
508
544
|
leading?: "dot" | LucideIcon;
|
|
509
|
-
size:
|
|
510
|
-
} & VariantProps<typeof
|
|
511
|
-
declare const
|
|
545
|
+
size: BadgeStatusSize;
|
|
546
|
+
} & VariantProps<typeof badgeStatus>;
|
|
547
|
+
declare const BadgeStatus: FC<BadgeStatusProps>;
|
|
512
548
|
|
|
513
|
-
export {
|
|
549
|
+
export { BadgeStatus, type BadgeStatusLeading, type BadgeStatusProps, type BadgeStatusSize, type BadgeStatusVariant };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';var tailwindVariants=require('tailwind-variants'),jsxRuntime=require('react/jsx-runtime');var u=tailwindVariants.tv({slots:{container:"flex w-fit items-center justify-center gap-1 rounded-sm ring ring-inset",icon:"shrink-0",text:"line-clamp-1",dot:"size-1.5 shrink-0 rounded-full"},variants:{size:{sm:{text:"text-2xs leading-[130%]",icon:"size-3"},md:{text:"text-xs leading-[133%]",icon:"size-3"},lg:{text:"text-sm leading-[143%]",icon:"size-3.5"},xl:{container:"shrink-0",text:"line-clamp-3 text-center text-xs leading-[144%]",icon:"size-3.5"}},isIconOnly:{true:{container:"aspect-square"},false:{}},variant:{"aqua-100":{container:"bg-aqua-100 ring-aqua-500",icon:"text-aqua-800",text:"text-aqua-800",dot:"bg-aqua-700"},"sky-50":{container:"bg-sky-50 ring-sky-300",icon:"text-sky-800",text:"text-sky-800",dot:"bg-sky-700"},"info-100":{container:"bg-info-100 ring-info-500",icon:"text-info-800",text:"text-info-800",dot:"bg-info-600"},"success-50":{container:"bg-success-50 ring-success-300",icon:"text-success-800",text:"text-success-800",dot:"bg-success-700"},"mint-50":{container:"bg-mint-50 ring-mint-300",icon:"text-mint-800",text:"text-mint-800",dot:"bg-mint-500"},"success-200":{container:"bg-success-200 ring-success-300",icon:"text-success-800",text:"text-success-800",dot:"bg-success-700"},"jungle-200":{container:"bg-jungle-200 ring-mint-500",icon:"text-jungle-800",text:"text-jungle-800",dot:"bg-jungle-700"},"green-200":{container:"bg-green-200 ring-green-600",icon:"text-green-800",text:"text-green-800",dot:"bg-green-700"},"banana-50":{container:"bg-banana-50 ring-banana-500",icon:"text-banana-800",text:"text-banana-800",dot:"bg-banana-700"},"banana-100":{container:"bg-banana-100 ring-banana-500",icon:"text-banana-800",text:"text-banana-800",dot:"bg-banana-700"},"secondary-100":{container:"bg-secondary-100 ring-secondary-400",icon:"text-secondary-900",text:"text-secondary-900",dot:"bg-secondary-700"},"warning-50":{container:"bg-warning-50 ring-warning-300",icon:"text-warning-800",text:"text-warning-800",dot:"bg-warning-600"},"warning-200":{container:"bg-warning-200 ring-warning-500",icon:"text-warning-800",text:"text-warning-800",dot:"bg-warning-700"},"orange-50":{container:"bg-orange-50 ring-orange-200",icon:"text-warning-800",text:"text-warning-800",dot:"bg-orange-500"},"orange-100":{container:"bg-orange-100 ring-orange-300",icon:"text-orange-800",text:"text-orange-800",dot:"bg-orange-600"},"coral-50":{container:"bg-coral-50 ring-coral-300",icon:"text-coral-800",text:"text-coral-800",dot:"bg-coral-600"},"danger-50":{container:"bg-danger-50 ring-danger-300",icon:"text-danger-800",text:"text-danger-800",dot:"bg-danger-600"},"danger-100":{container:"bg-danger-100 ring-danger-300",icon:"text-danger-800",text:"text-danger-800",dot:"bg-danger-600"},"new-50":{container:"bg-new-50 ring-new-300",icon:"text-new-800",text:"text-new-800",dot:"bg-new-500"},"lavender-100":{container:"bg-lavender-100 ring-lavender-300",icon:"text-lavender-800",text:"text-lavender-800",dot:"bg-lavender-700"},"orchid-100":{container:"bg-orchid-100 ring-orchid-300",icon:"text-orchid-800",text:"text-orchid-800",dot:"bg-orchid-700"},"neutral-200":{container:"bg-neutral-200 ring-neutral-600",icon:"text-neutral-800",text:"text-neutral-800",dot:"bg-neutral-700"},"neutral-300":{container:"bg-neutral-300 ring-neutral-600",icon:"text-neutral-800",text:"text-neutral-800",dot:"bg-neutral-700"},"neutral-400":{container:"bg-neutral-400 ring-neutral-700",icon:"text-neutral-800",text:"text-neutral-800",dot:"bg-neutral-700"}}},compoundVariants:[{size:"sm",isIconOnly:false,class:{container:"py-0.625 px-1.5"}},{size:"sm",isIconOnly:true,class:{container:"p-0.75"}},{size:"md",isIconOnly:false,class:{container:"px-1.5 py-0.5"}},{size:"md",isIconOnly:true,class:{container:"p-1"}},{size:"lg",isIconOnly:false,class:{container:"px-1.5 py-0.5"}},{size:"lg",isIconOnly:true,class:{container:"p-1.125"}},{size:"xl",isIconOnly:false,class:{container:"w-30 px-1.5 py-1"}},{size:"xl",isIconOnly:true,class:{container:"p-1.75",icon:"size-4.5"}}]}),m=({text:t,className:a,variant:r="neutral-400",leading:n,size:i,...o})=>{let s=!t&&!!n&&n!=="dot",{container:c,text:g,dot:x,icon:l}=u({variant:r,size:i,isIconOnly:s});return jsxRuntime.jsxs("div",{className:c({className:a}),...o,children:[n==="dot"&&jsxRuntime.jsx("div",{className:x()}),n!=="dot"&&n&&jsxRuntime.jsx(n,{className:l()}),t&&jsxRuntime.jsx("p",{className:g(),children:t})]})};exports.BadgeStatus=m;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{a as BadgeStatus}from'../chunk-WAF6FQLO.mjs';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export{d as CardExpandable,b as CardExpandableContent,c as CardExpandableFixedContent,a as CardExpandableHeader}from'../chunk-
|
|
1
|
+
export{d as CardExpandable,b as CardExpandableContent,c as CardExpandableFixedContent,a as CardExpandableHeader}from'../chunk-4MF2IFZT.mjs';import'../chunk-AI4D6AOK.mjs';import'../chunk-PTRXL7BY.mjs';import'../chunk-GBBE3RHT.mjs';import'../chunk-FAMLJ6AJ.mjs';import'../chunk-JWB3TN2C.mjs';import'../chunk-DHWOGUID.mjs';import'../chunk-5VHBHGBZ.mjs';import'../chunk-XJD5SYZJ.mjs';
|
|
@@ -57,7 +57,10 @@ export { ChipExpandable, ChipExpandableProps, ChipExpandableTypeType, ChipExpand
|
|
|
57
57
|
export { Carousel, Carousel as CarouselComponent, CarouselControl, CarouselIndicator, CarouselIndicatorGroup, CarouselItem, CarouselItemGroup, CarouselNextTrigger, CarouselPrevTrigger, CarouselRoot, CarouselViewport } from './carousel.mjs';
|
|
58
58
|
export { TextareaNew, TextareaNewProps } from './textarea-new.mjs';
|
|
59
59
|
export { Drawer, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerContentProps, DrawerFooter, DrawerHeader, DrawerHeaderProps, DrawerSizes, DrawerTrigger } from './drawer.mjs';
|
|
60
|
-
export {
|
|
60
|
+
export { BadgeStatus, BadgeStatusLeading, BadgeStatusProps, BadgeStatusSize, BadgeStatusVariant } from './badge-status.mjs';
|
|
61
|
+
export { BadgeStatusSkeleton, BadgeStatusSkeletonProps } from './badge-status-skeleton.mjs';
|
|
62
|
+
export { BadgeCategory, BadgeCategoryColor, BadgeCategoryProps, BadgeCategorySize, BadgeCategoryVariant } from './badge-category.mjs';
|
|
63
|
+
export { BadgeCategorySkeleton, BadgeCategorySkeletonProps } from './badge-category-skeleton.mjs';
|
|
61
64
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
62
65
|
export { AccordionPrimitive };
|
|
63
66
|
export { CarouselControlProps, CarouselIndicatorGroupProps, CarouselIndicatorProps, CarouselItemGroupProps, CarouselItemProps, CarouselNextTriggerProps, CarouselPrevTriggerProps, CarouselRootProps } from '@ark-ui/react/carousel';
|
|
@@ -57,7 +57,10 @@ export { ChipExpandable, ChipExpandableProps, ChipExpandableTypeType, ChipExpand
|
|
|
57
57
|
export { Carousel, Carousel as CarouselComponent, CarouselControl, CarouselIndicator, CarouselIndicatorGroup, CarouselItem, CarouselItemGroup, CarouselNextTrigger, CarouselPrevTrigger, CarouselRoot, CarouselViewport } from './carousel.js';
|
|
58
58
|
export { TextareaNew, TextareaNewProps } from './textarea-new.js';
|
|
59
59
|
export { Drawer, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerContentProps, DrawerFooter, DrawerHeader, DrawerHeaderProps, DrawerSizes, DrawerTrigger } from './drawer.js';
|
|
60
|
-
export {
|
|
60
|
+
export { BadgeStatus, BadgeStatusLeading, BadgeStatusProps, BadgeStatusSize, BadgeStatusVariant } from './badge-status.js';
|
|
61
|
+
export { BadgeStatusSkeleton, BadgeStatusSkeletonProps } from './badge-status-skeleton.js';
|
|
62
|
+
export { BadgeCategory, BadgeCategoryColor, BadgeCategoryProps, BadgeCategorySize, BadgeCategoryVariant } from './badge-category.js';
|
|
63
|
+
export { BadgeCategorySkeleton, BadgeCategorySkeletonProps } from './badge-category-skeleton.js';
|
|
61
64
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
62
65
|
export { AccordionPrimitive };
|
|
63
66
|
export { CarouselControlProps, CarouselIndicatorGroupProps, CarouselIndicatorProps, CarouselItemGroupProps, CarouselItemProps, CarouselNextTriggerProps, CarouselPrevTriggerProps, CarouselRootProps } from '@ark-ui/react/carousel';
|