@nextui-org/theme 2.1.4 → 2.1.5
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-FZZINZOQ.mjs → chunk-ER6JQ3OQ.mjs} +21 -4
- package/dist/components/accordion.d.ts +153 -2
- package/dist/components/avatar.d.ts +227 -2
- package/dist/components/badge.d.ts +199 -1
- package/dist/components/button.d.ts +155 -2
- package/dist/components/card.d.ts +225 -1
- package/dist/components/checkbox.d.ts +250 -2
- package/dist/components/chip.d.ts +304 -1
- package/dist/components/circular-progress.d.ts +171 -1
- package/dist/components/code.d.ts +64 -1
- package/dist/components/divider.d.ts +16 -1
- package/dist/components/drip.d.ts +1 -1
- package/dist/components/dropdown.d.ts +135 -4
- package/dist/components/image.d.ts +141 -1
- package/dist/components/index.js +21 -4
- package/dist/components/index.mjs +1 -1
- package/dist/components/input.d.ts +387 -1
- package/dist/components/kbd.d.ts +5 -1
- package/dist/components/link.d.ts +94 -1
- package/dist/components/menu.d.ts +152 -3
- package/dist/components/modal.d.ts +315 -1
- package/dist/components/navbar.d.ts +174 -1
- package/dist/components/pagination.d.ts +239 -1
- package/dist/components/pagination.js +21 -4
- package/dist/components/pagination.mjs +1 -1
- package/dist/components/popover.d.ts +276 -1
- package/dist/components/progress.d.ts +91 -1
- package/dist/components/radio.d.ts +231 -2
- package/dist/components/scroll-shadow.d.ts +28 -1
- package/dist/components/select.d.ts +388 -1
- package/dist/components/skeleton.d.ts +37 -1
- package/dist/components/snippet.d.ts +165 -1
- package/dist/components/spacer.d.ts +16 -1
- package/dist/components/spinner.d.ts +232 -1
- package/dist/components/table.d.ts +311 -1
- package/dist/components/tabs.d.ts +269 -1
- package/dist/components/toggle.d.ts +192 -1
- package/dist/components/user.d.ts +11 -1
- package/dist/index.js +21 -4
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
|
@@ -342,7 +342,245 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
342
342
|
forwardIcon: string;
|
|
343
343
|
ellipsis: string;
|
|
344
344
|
chevronNext: string;
|
|
345
|
-
}
|
|
345
|
+
}, tailwind_variants.TVReturnType<{
|
|
346
|
+
variant: {
|
|
347
|
+
bordered: {
|
|
348
|
+
item: string[];
|
|
349
|
+
};
|
|
350
|
+
light: {
|
|
351
|
+
item: string;
|
|
352
|
+
};
|
|
353
|
+
flat: {};
|
|
354
|
+
faded: {
|
|
355
|
+
item: string[];
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
color: {
|
|
359
|
+
default: {
|
|
360
|
+
cursor: string;
|
|
361
|
+
};
|
|
362
|
+
primary: {
|
|
363
|
+
cursor: string;
|
|
364
|
+
};
|
|
365
|
+
secondary: {
|
|
366
|
+
cursor: string;
|
|
367
|
+
};
|
|
368
|
+
success: {
|
|
369
|
+
cursor: string;
|
|
370
|
+
};
|
|
371
|
+
warning: {
|
|
372
|
+
cursor: string;
|
|
373
|
+
};
|
|
374
|
+
danger: {
|
|
375
|
+
cursor: string;
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
size: {
|
|
379
|
+
sm: {};
|
|
380
|
+
md: {};
|
|
381
|
+
lg: {};
|
|
382
|
+
};
|
|
383
|
+
radius: {
|
|
384
|
+
none: {};
|
|
385
|
+
sm: {};
|
|
386
|
+
md: {};
|
|
387
|
+
lg: {};
|
|
388
|
+
full: {};
|
|
389
|
+
};
|
|
390
|
+
isCompact: {
|
|
391
|
+
true: {
|
|
392
|
+
wrapper: string;
|
|
393
|
+
item: string[];
|
|
394
|
+
prev: string;
|
|
395
|
+
next: string;
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
isDisabled: {
|
|
399
|
+
true: {
|
|
400
|
+
base: string;
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
showShadow: {
|
|
404
|
+
true: {};
|
|
405
|
+
};
|
|
406
|
+
disableCursorAnimation: {
|
|
407
|
+
true: {
|
|
408
|
+
cursor: string;
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
disableAnimation: {
|
|
412
|
+
true: {
|
|
413
|
+
item: string;
|
|
414
|
+
cursor: string;
|
|
415
|
+
};
|
|
416
|
+
false: {
|
|
417
|
+
item: string[];
|
|
418
|
+
cursor: string[];
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
}, {
|
|
422
|
+
base: string[];
|
|
423
|
+
wrapper: string[];
|
|
424
|
+
item: string[];
|
|
425
|
+
prev: string;
|
|
426
|
+
next: string;
|
|
427
|
+
cursor: string[];
|
|
428
|
+
forwardIcon: string;
|
|
429
|
+
ellipsis: string;
|
|
430
|
+
chevronNext: string;
|
|
431
|
+
}, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
432
|
+
variant: {
|
|
433
|
+
bordered: {
|
|
434
|
+
item: string[];
|
|
435
|
+
};
|
|
436
|
+
light: {
|
|
437
|
+
item: string;
|
|
438
|
+
};
|
|
439
|
+
flat: {};
|
|
440
|
+
faded: {
|
|
441
|
+
item: string[];
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
color: {
|
|
445
|
+
default: {
|
|
446
|
+
cursor: string;
|
|
447
|
+
};
|
|
448
|
+
primary: {
|
|
449
|
+
cursor: string;
|
|
450
|
+
};
|
|
451
|
+
secondary: {
|
|
452
|
+
cursor: string;
|
|
453
|
+
};
|
|
454
|
+
success: {
|
|
455
|
+
cursor: string;
|
|
456
|
+
};
|
|
457
|
+
warning: {
|
|
458
|
+
cursor: string;
|
|
459
|
+
};
|
|
460
|
+
danger: {
|
|
461
|
+
cursor: string;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
size: {
|
|
465
|
+
sm: {};
|
|
466
|
+
md: {};
|
|
467
|
+
lg: {};
|
|
468
|
+
};
|
|
469
|
+
radius: {
|
|
470
|
+
none: {};
|
|
471
|
+
sm: {};
|
|
472
|
+
md: {};
|
|
473
|
+
lg: {};
|
|
474
|
+
full: {};
|
|
475
|
+
};
|
|
476
|
+
isCompact: {
|
|
477
|
+
true: {
|
|
478
|
+
wrapper: string;
|
|
479
|
+
item: string[];
|
|
480
|
+
prev: string;
|
|
481
|
+
next: string;
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
isDisabled: {
|
|
485
|
+
true: {
|
|
486
|
+
base: string;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
showShadow: {
|
|
490
|
+
true: {};
|
|
491
|
+
};
|
|
492
|
+
disableCursorAnimation: {
|
|
493
|
+
true: {
|
|
494
|
+
cursor: string;
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
disableAnimation: {
|
|
498
|
+
true: {
|
|
499
|
+
item: string;
|
|
500
|
+
cursor: string;
|
|
501
|
+
};
|
|
502
|
+
false: {
|
|
503
|
+
item: string[];
|
|
504
|
+
cursor: string[];
|
|
505
|
+
};
|
|
506
|
+
};
|
|
507
|
+
}, {
|
|
508
|
+
variant: {
|
|
509
|
+
bordered: {
|
|
510
|
+
item: string[];
|
|
511
|
+
};
|
|
512
|
+
light: {
|
|
513
|
+
item: string;
|
|
514
|
+
};
|
|
515
|
+
flat: {};
|
|
516
|
+
faded: {
|
|
517
|
+
item: string[];
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
color: {
|
|
521
|
+
default: {
|
|
522
|
+
cursor: string;
|
|
523
|
+
};
|
|
524
|
+
primary: {
|
|
525
|
+
cursor: string;
|
|
526
|
+
};
|
|
527
|
+
secondary: {
|
|
528
|
+
cursor: string;
|
|
529
|
+
};
|
|
530
|
+
success: {
|
|
531
|
+
cursor: string;
|
|
532
|
+
};
|
|
533
|
+
warning: {
|
|
534
|
+
cursor: string;
|
|
535
|
+
};
|
|
536
|
+
danger: {
|
|
537
|
+
cursor: string;
|
|
538
|
+
};
|
|
539
|
+
};
|
|
540
|
+
size: {
|
|
541
|
+
sm: {};
|
|
542
|
+
md: {};
|
|
543
|
+
lg: {};
|
|
544
|
+
};
|
|
545
|
+
radius: {
|
|
546
|
+
none: {};
|
|
547
|
+
sm: {};
|
|
548
|
+
md: {};
|
|
549
|
+
lg: {};
|
|
550
|
+
full: {};
|
|
551
|
+
};
|
|
552
|
+
isCompact: {
|
|
553
|
+
true: {
|
|
554
|
+
wrapper: string;
|
|
555
|
+
item: string[];
|
|
556
|
+
prev: string;
|
|
557
|
+
next: string;
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
isDisabled: {
|
|
561
|
+
true: {
|
|
562
|
+
base: string;
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
showShadow: {
|
|
566
|
+
true: {};
|
|
567
|
+
};
|
|
568
|
+
disableCursorAnimation: {
|
|
569
|
+
true: {
|
|
570
|
+
cursor: string;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
disableAnimation: {
|
|
574
|
+
true: {
|
|
575
|
+
item: string;
|
|
576
|
+
cursor: string;
|
|
577
|
+
};
|
|
578
|
+
false: {
|
|
579
|
+
item: string[];
|
|
580
|
+
cursor: string[];
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
}>, unknown, unknown, undefined>>;
|
|
346
584
|
type PaginationVariantProps = VariantProps<typeof pagination>;
|
|
347
585
|
type PaginationSlots = keyof ReturnType<typeof pagination>;
|
|
348
586
|
|
|
@@ -226,6 +226,7 @@ var pagination = tv({
|
|
|
226
226
|
"left-0",
|
|
227
227
|
"select-none",
|
|
228
228
|
"touch-none",
|
|
229
|
+
"pointer-events-none",
|
|
229
230
|
"z-20"
|
|
230
231
|
],
|
|
231
232
|
forwardIcon: "hidden group-hover:block group-data-[focus-visible=true]:block data-[before=true]:rotate-180",
|
|
@@ -315,7 +316,12 @@ var pagination = tv({
|
|
|
315
316
|
},
|
|
316
317
|
false: {
|
|
317
318
|
item: ["data-[pressed=true]:scale-[0.97]", "transition-transform-background"],
|
|
318
|
-
cursor: [
|
|
319
|
+
cursor: [
|
|
320
|
+
"data-[moving=true]:transition-transform",
|
|
321
|
+
"!data-[moving=true]:duration-300",
|
|
322
|
+
"opacity-0",
|
|
323
|
+
"data-[moving]:opacity-100"
|
|
324
|
+
]
|
|
319
325
|
}
|
|
320
326
|
}
|
|
321
327
|
},
|
|
@@ -520,17 +526,28 @@ var pagination = tv({
|
|
|
520
526
|
{
|
|
521
527
|
slots: ["item", "prev", "next"],
|
|
522
528
|
variant: "flat",
|
|
523
|
-
class: [
|
|
529
|
+
class: [
|
|
530
|
+
"bg-default-100",
|
|
531
|
+
"[&[data-hover=true]:not([data-active=true])]:bg-default-200",
|
|
532
|
+
"active:bg-default-300"
|
|
533
|
+
]
|
|
524
534
|
},
|
|
525
535
|
{
|
|
526
536
|
slots: ["item", "prev", "next"],
|
|
527
537
|
variant: "faded",
|
|
528
|
-
class: [
|
|
538
|
+
class: [
|
|
539
|
+
"bg-default-50",
|
|
540
|
+
"[&[data-hover=true]:not([data-active=true])]:bg-default-100",
|
|
541
|
+
"active:bg-default-200"
|
|
542
|
+
]
|
|
529
543
|
},
|
|
530
544
|
{
|
|
531
545
|
slots: ["item", "prev", "next"],
|
|
532
546
|
variant: "light",
|
|
533
|
-
class: [
|
|
547
|
+
class: [
|
|
548
|
+
"[&[data-hover=true]:not([data-active=true])]:bg-default-100",
|
|
549
|
+
"active:bg-default-200"
|
|
550
|
+
]
|
|
534
551
|
},
|
|
535
552
|
{
|
|
536
553
|
slots: ["item", "cursor", "prev", "next"],
|
|
@@ -387,7 +387,282 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
387
387
|
trigger: string[];
|
|
388
388
|
backdrop: string[];
|
|
389
389
|
arrow: string[];
|
|
390
|
-
}
|
|
390
|
+
}, tailwind_variants.TVReturnType<{
|
|
391
|
+
size: {
|
|
392
|
+
sm: {
|
|
393
|
+
base: string;
|
|
394
|
+
};
|
|
395
|
+
md: {
|
|
396
|
+
base: string;
|
|
397
|
+
};
|
|
398
|
+
lg: {
|
|
399
|
+
base: string;
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
color: {
|
|
403
|
+
default: {
|
|
404
|
+
base: string;
|
|
405
|
+
arrow: string;
|
|
406
|
+
};
|
|
407
|
+
foreground: {
|
|
408
|
+
base: string;
|
|
409
|
+
arrow: string;
|
|
410
|
+
};
|
|
411
|
+
primary: {
|
|
412
|
+
base: string;
|
|
413
|
+
arrow: string;
|
|
414
|
+
};
|
|
415
|
+
secondary: {
|
|
416
|
+
base: string;
|
|
417
|
+
arrow: string;
|
|
418
|
+
};
|
|
419
|
+
success: {
|
|
420
|
+
base: string;
|
|
421
|
+
arrow: string;
|
|
422
|
+
};
|
|
423
|
+
warning: {
|
|
424
|
+
base: string;
|
|
425
|
+
arrow: string;
|
|
426
|
+
};
|
|
427
|
+
danger: {
|
|
428
|
+
base: string;
|
|
429
|
+
arrow: string;
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
radius: {
|
|
433
|
+
none: {
|
|
434
|
+
base: string;
|
|
435
|
+
};
|
|
436
|
+
sm: {
|
|
437
|
+
base: string;
|
|
438
|
+
};
|
|
439
|
+
md: {
|
|
440
|
+
base: string;
|
|
441
|
+
};
|
|
442
|
+
lg: {
|
|
443
|
+
base: string;
|
|
444
|
+
};
|
|
445
|
+
full: {
|
|
446
|
+
base: string;
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
shadow: {
|
|
450
|
+
sm: {
|
|
451
|
+
base: string;
|
|
452
|
+
};
|
|
453
|
+
md: {
|
|
454
|
+
base: string;
|
|
455
|
+
};
|
|
456
|
+
lg: {
|
|
457
|
+
base: string;
|
|
458
|
+
};
|
|
459
|
+
};
|
|
460
|
+
backdrop: {
|
|
461
|
+
transparent: {};
|
|
462
|
+
opaque: {
|
|
463
|
+
backdrop: string;
|
|
464
|
+
};
|
|
465
|
+
blur: {
|
|
466
|
+
backdrop: string;
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
triggerScaleOnOpen: {
|
|
470
|
+
true: {
|
|
471
|
+
trigger: string[];
|
|
472
|
+
};
|
|
473
|
+
false: {};
|
|
474
|
+
};
|
|
475
|
+
disableAnimation: {
|
|
476
|
+
true: {
|
|
477
|
+
base: string;
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
}, {
|
|
481
|
+
base: string[];
|
|
482
|
+
trigger: string[];
|
|
483
|
+
backdrop: string[];
|
|
484
|
+
arrow: string[];
|
|
485
|
+
}, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
486
|
+
size: {
|
|
487
|
+
sm: {
|
|
488
|
+
base: string;
|
|
489
|
+
};
|
|
490
|
+
md: {
|
|
491
|
+
base: string;
|
|
492
|
+
};
|
|
493
|
+
lg: {
|
|
494
|
+
base: string;
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
color: {
|
|
498
|
+
default: {
|
|
499
|
+
base: string;
|
|
500
|
+
arrow: string;
|
|
501
|
+
};
|
|
502
|
+
foreground: {
|
|
503
|
+
base: string;
|
|
504
|
+
arrow: string;
|
|
505
|
+
};
|
|
506
|
+
primary: {
|
|
507
|
+
base: string;
|
|
508
|
+
arrow: string;
|
|
509
|
+
};
|
|
510
|
+
secondary: {
|
|
511
|
+
base: string;
|
|
512
|
+
arrow: string;
|
|
513
|
+
};
|
|
514
|
+
success: {
|
|
515
|
+
base: string;
|
|
516
|
+
arrow: string;
|
|
517
|
+
};
|
|
518
|
+
warning: {
|
|
519
|
+
base: string;
|
|
520
|
+
arrow: string;
|
|
521
|
+
};
|
|
522
|
+
danger: {
|
|
523
|
+
base: string;
|
|
524
|
+
arrow: string;
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
radius: {
|
|
528
|
+
none: {
|
|
529
|
+
base: string;
|
|
530
|
+
};
|
|
531
|
+
sm: {
|
|
532
|
+
base: string;
|
|
533
|
+
};
|
|
534
|
+
md: {
|
|
535
|
+
base: string;
|
|
536
|
+
};
|
|
537
|
+
lg: {
|
|
538
|
+
base: string;
|
|
539
|
+
};
|
|
540
|
+
full: {
|
|
541
|
+
base: string;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
shadow: {
|
|
545
|
+
sm: {
|
|
546
|
+
base: string;
|
|
547
|
+
};
|
|
548
|
+
md: {
|
|
549
|
+
base: string;
|
|
550
|
+
};
|
|
551
|
+
lg: {
|
|
552
|
+
base: string;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
backdrop: {
|
|
556
|
+
transparent: {};
|
|
557
|
+
opaque: {
|
|
558
|
+
backdrop: string;
|
|
559
|
+
};
|
|
560
|
+
blur: {
|
|
561
|
+
backdrop: string;
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
triggerScaleOnOpen: {
|
|
565
|
+
true: {
|
|
566
|
+
trigger: string[];
|
|
567
|
+
};
|
|
568
|
+
false: {};
|
|
569
|
+
};
|
|
570
|
+
disableAnimation: {
|
|
571
|
+
true: {
|
|
572
|
+
base: string;
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
}, {
|
|
576
|
+
size: {
|
|
577
|
+
sm: {
|
|
578
|
+
base: string;
|
|
579
|
+
};
|
|
580
|
+
md: {
|
|
581
|
+
base: string;
|
|
582
|
+
};
|
|
583
|
+
lg: {
|
|
584
|
+
base: string;
|
|
585
|
+
};
|
|
586
|
+
};
|
|
587
|
+
color: {
|
|
588
|
+
default: {
|
|
589
|
+
base: string;
|
|
590
|
+
arrow: string;
|
|
591
|
+
};
|
|
592
|
+
foreground: {
|
|
593
|
+
base: string;
|
|
594
|
+
arrow: string;
|
|
595
|
+
};
|
|
596
|
+
primary: {
|
|
597
|
+
base: string;
|
|
598
|
+
arrow: string;
|
|
599
|
+
};
|
|
600
|
+
secondary: {
|
|
601
|
+
base: string;
|
|
602
|
+
arrow: string;
|
|
603
|
+
};
|
|
604
|
+
success: {
|
|
605
|
+
base: string;
|
|
606
|
+
arrow: string;
|
|
607
|
+
};
|
|
608
|
+
warning: {
|
|
609
|
+
base: string;
|
|
610
|
+
arrow: string;
|
|
611
|
+
};
|
|
612
|
+
danger: {
|
|
613
|
+
base: string;
|
|
614
|
+
arrow: string;
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
radius: {
|
|
618
|
+
none: {
|
|
619
|
+
base: string;
|
|
620
|
+
};
|
|
621
|
+
sm: {
|
|
622
|
+
base: string;
|
|
623
|
+
};
|
|
624
|
+
md: {
|
|
625
|
+
base: string;
|
|
626
|
+
};
|
|
627
|
+
lg: {
|
|
628
|
+
base: string;
|
|
629
|
+
};
|
|
630
|
+
full: {
|
|
631
|
+
base: string;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
shadow: {
|
|
635
|
+
sm: {
|
|
636
|
+
base: string;
|
|
637
|
+
};
|
|
638
|
+
md: {
|
|
639
|
+
base: string;
|
|
640
|
+
};
|
|
641
|
+
lg: {
|
|
642
|
+
base: string;
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
backdrop: {
|
|
646
|
+
transparent: {};
|
|
647
|
+
opaque: {
|
|
648
|
+
backdrop: string;
|
|
649
|
+
};
|
|
650
|
+
blur: {
|
|
651
|
+
backdrop: string;
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
triggerScaleOnOpen: {
|
|
655
|
+
true: {
|
|
656
|
+
trigger: string[];
|
|
657
|
+
};
|
|
658
|
+
false: {};
|
|
659
|
+
};
|
|
660
|
+
disableAnimation: {
|
|
661
|
+
true: {
|
|
662
|
+
base: string;
|
|
663
|
+
};
|
|
664
|
+
};
|
|
665
|
+
}>, unknown, unknown, undefined>>;
|
|
391
666
|
type PopoverVariantProps = VariantProps<typeof popover>;
|
|
392
667
|
type PopoverSlots = keyof ReturnType<typeof popover>;
|
|
393
668
|
|
|
@@ -197,7 +197,97 @@ declare const progress: tailwind_variants.TVReturnType<{
|
|
|
197
197
|
value: string;
|
|
198
198
|
track: string;
|
|
199
199
|
indicator: string;
|
|
200
|
-
}
|
|
200
|
+
}, tailwind_variants.TVReturnType<{
|
|
201
|
+
color: {
|
|
202
|
+
default: {
|
|
203
|
+
indicator: string;
|
|
204
|
+
};
|
|
205
|
+
primary: {
|
|
206
|
+
indicator: string;
|
|
207
|
+
};
|
|
208
|
+
secondary: {
|
|
209
|
+
indicator: string;
|
|
210
|
+
};
|
|
211
|
+
success: {
|
|
212
|
+
indicator: string;
|
|
213
|
+
};
|
|
214
|
+
warning: {
|
|
215
|
+
indicator: string;
|
|
216
|
+
};
|
|
217
|
+
danger: {
|
|
218
|
+
indicator: string;
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
size: {
|
|
222
|
+
sm: {
|
|
223
|
+
label: string;
|
|
224
|
+
value: string;
|
|
225
|
+
track: string;
|
|
226
|
+
};
|
|
227
|
+
md: {
|
|
228
|
+
label: string;
|
|
229
|
+
value: string;
|
|
230
|
+
track: string;
|
|
231
|
+
};
|
|
232
|
+
lg: {
|
|
233
|
+
label: string;
|
|
234
|
+
value: string;
|
|
235
|
+
track: string;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
radius: {
|
|
239
|
+
none: {
|
|
240
|
+
track: string;
|
|
241
|
+
indicator: string;
|
|
242
|
+
};
|
|
243
|
+
sm: {
|
|
244
|
+
track: string;
|
|
245
|
+
indicator: string;
|
|
246
|
+
};
|
|
247
|
+
md: {
|
|
248
|
+
track: string;
|
|
249
|
+
indicator: string;
|
|
250
|
+
};
|
|
251
|
+
lg: {
|
|
252
|
+
track: string;
|
|
253
|
+
indicator: string;
|
|
254
|
+
};
|
|
255
|
+
full: {
|
|
256
|
+
track: string;
|
|
257
|
+
indicator: string;
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
isStriped: {
|
|
261
|
+
true: {
|
|
262
|
+
indicator: string;
|
|
263
|
+
};
|
|
264
|
+
};
|
|
265
|
+
isIndeterminate: {
|
|
266
|
+
true: {
|
|
267
|
+
indicator: string[];
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
isDisabled: {
|
|
271
|
+
true: {
|
|
272
|
+
base: string;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
disableAnimation: {
|
|
276
|
+
true: {};
|
|
277
|
+
false: {
|
|
278
|
+
indicator: string;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
}, {
|
|
282
|
+
base: string;
|
|
283
|
+
label: string;
|
|
284
|
+
labelWrapper: string;
|
|
285
|
+
value: string;
|
|
286
|
+
track: string;
|
|
287
|
+
indicator: string;
|
|
288
|
+
}, undefined, {
|
|
289
|
+
twMerge: false;
|
|
290
|
+
}, unknown, unknown, undefined>>;
|
|
201
291
|
type ProgressVariantProps = VariantProps<typeof progress>;
|
|
202
292
|
type ProgressSlots = keyof ReturnType<typeof progress>;
|
|
203
293
|
|