@nextui-org/theme 0.0.0-dev-v2-20230331154026 → 0.0.0-dev-v2-20230405024536
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-TV7EJNXI.mjs → chunk-CPOL2EGG.mjs} +8 -7
- package/dist/{chunk-7ZURDN3V.mjs → chunk-FK5GDC67.mjs} +4 -5
- package/dist/chunk-HGNLDFUE.mjs +787 -0
- package/dist/components/chip.d.ts +4 -4
- package/dist/components/chip.js +8 -7
- package/dist/components/chip.mjs +1 -1
- package/dist/components/circular-progress.js +4 -5
- package/dist/components/circular-progress.mjs +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +794 -12
- package/dist/components/index.mjs +13 -9
- package/dist/components/input.d.ts +336 -0
- package/dist/components/input.js +819 -0
- package/dist/components/input.mjs +10 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +797 -15
- package/dist/index.mjs +13 -9
- package/package.json +2 -2
- /package/dist/{chunk-YMVSDHED.mjs → chunk-O2BO77DA.mjs} +0 -0
|
@@ -21,7 +21,8 @@ var chip = tv({
|
|
|
21
21
|
"transition-opacity",
|
|
22
22
|
"opacity-70",
|
|
23
23
|
"hover:opacity-100",
|
|
24
|
-
"cursor-pointer"
|
|
24
|
+
"cursor-pointer",
|
|
25
|
+
"active:opacity-70"
|
|
25
26
|
]
|
|
26
27
|
},
|
|
27
28
|
variants: {
|
|
@@ -105,10 +106,10 @@ var chip = tv({
|
|
|
105
106
|
"3xl": { base: "rounded-3xl" },
|
|
106
107
|
full: { base: "rounded-full" }
|
|
107
108
|
},
|
|
108
|
-
|
|
109
|
+
hasStartContent: {
|
|
109
110
|
true: {}
|
|
110
111
|
},
|
|
111
|
-
|
|
112
|
+
hasEndContent: {
|
|
112
113
|
true: {}
|
|
113
114
|
},
|
|
114
115
|
isOneChar: {
|
|
@@ -422,28 +423,28 @@ var chip = tv({
|
|
|
422
423
|
}
|
|
423
424
|
},
|
|
424
425
|
{
|
|
425
|
-
|
|
426
|
+
hasStartContent: true,
|
|
426
427
|
size: ["xs", "sm"],
|
|
427
428
|
class: {
|
|
428
429
|
content: "pl-0.5"
|
|
429
430
|
}
|
|
430
431
|
},
|
|
431
432
|
{
|
|
432
|
-
|
|
433
|
+
hasStartContent: true,
|
|
433
434
|
size: ["md", "lg", "xl"],
|
|
434
435
|
class: {
|
|
435
436
|
content: "pl-1"
|
|
436
437
|
}
|
|
437
438
|
},
|
|
438
439
|
{
|
|
439
|
-
|
|
440
|
+
hasEndContent: true,
|
|
440
441
|
size: ["xs", "sm"],
|
|
441
442
|
class: {
|
|
442
443
|
content: "pr-0.5"
|
|
443
444
|
}
|
|
444
445
|
},
|
|
445
446
|
{
|
|
446
|
-
|
|
447
|
+
hasEndContent: true,
|
|
447
448
|
size: ["md", "lg", "xl"],
|
|
448
449
|
class: {
|
|
449
450
|
content: "pr-1"
|
|
@@ -7,7 +7,7 @@ var circularProgress = tv({
|
|
|
7
7
|
svgWrapper: "relative block",
|
|
8
8
|
svg: "z-0 relative overflow-hidden",
|
|
9
9
|
circle: "h-full stroke-current",
|
|
10
|
-
value: "absolute font-normal
|
|
10
|
+
value: "absolute font-normal inset-0 flex items-center justify-center"
|
|
11
11
|
},
|
|
12
12
|
variants: {
|
|
13
13
|
color: {
|
|
@@ -44,16 +44,16 @@ var circularProgress = tv({
|
|
|
44
44
|
md: {
|
|
45
45
|
svg: "w-10 h-10",
|
|
46
46
|
label: "text-sm",
|
|
47
|
-
value: "text-[0.
|
|
47
|
+
value: "text-[0.55rem]"
|
|
48
48
|
},
|
|
49
49
|
lg: {
|
|
50
50
|
svg: "w-12 h-12",
|
|
51
51
|
label: "text-base",
|
|
52
|
-
value: "text-
|
|
52
|
+
value: "text-[0.6rem]"
|
|
53
53
|
},
|
|
54
54
|
xl: {
|
|
55
55
|
svg: "w-14 h-14",
|
|
56
|
-
label: "text-
|
|
56
|
+
label: "text-base",
|
|
57
57
|
value: "text-xs"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
@@ -77,7 +77,6 @@ var circularProgress = tv({
|
|
|
77
77
|
defaultVariants: {
|
|
78
78
|
color: "primary",
|
|
79
79
|
size: "md",
|
|
80
|
-
isIndeterminate: false,
|
|
81
80
|
isDisabled: false,
|
|
82
81
|
disableAnimation: false
|
|
83
82
|
},
|