@nextui-org/theme 0.0.0-dev-v2-20230527145118 → 0.0.0-dev-v2-20230528022407
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-IVZYEA5N.mjs → chunk-BHHIVMOY.mjs} +18 -18
- package/dist/{chunk-V5673FD5.mjs → chunk-T23JC6II.mjs} +8 -0
- package/dist/components/index.js +26 -18
- package/dist/components/index.mjs +2 -2
- package/dist/components/popover.d.ts +34 -0
- package/dist/components/popover.js +8 -0
- package/dist/components/popover.mjs +1 -1
- package/dist/components/progress.d.ts +19 -19
- package/dist/components/progress.js +18 -18
- package/dist/components/progress.mjs +1 -1
- package/dist/index.js +26 -18
- package/dist/index.mjs +4 -4
- package/dist/plugin.mjs +2 -2
- package/package.json +1 -1
- package/dist/{chunk-QGXXHT3T.mjs → chunk-3YIFM2I2.mjs} +3 -3
|
@@ -8,27 +8,27 @@ var progress = tv(
|
|
|
8
8
|
labelWrapper: "flex justify-between",
|
|
9
9
|
value: "",
|
|
10
10
|
track: "z-0 relative bg-default-300/50 overflow-hidden",
|
|
11
|
-
|
|
11
|
+
indicator: "h-full"
|
|
12
12
|
},
|
|
13
13
|
variants: {
|
|
14
14
|
color: {
|
|
15
15
|
default: {
|
|
16
|
-
|
|
16
|
+
indicator: "bg-default-400"
|
|
17
17
|
},
|
|
18
18
|
primary: {
|
|
19
|
-
|
|
19
|
+
indicator: "bg-primary"
|
|
20
20
|
},
|
|
21
21
|
secondary: {
|
|
22
|
-
|
|
22
|
+
indicator: "bg-secondary"
|
|
23
23
|
},
|
|
24
24
|
success: {
|
|
25
|
-
|
|
25
|
+
indicator: "bg-success"
|
|
26
26
|
},
|
|
27
27
|
warning: {
|
|
28
|
-
|
|
28
|
+
indicator: "bg-warning"
|
|
29
29
|
},
|
|
30
30
|
danger: {
|
|
31
|
-
|
|
31
|
+
indicator: "bg-danger"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
size: {
|
|
@@ -61,41 +61,41 @@ var progress = tv(
|
|
|
61
61
|
radius: {
|
|
62
62
|
none: {
|
|
63
63
|
track: "rounded-none",
|
|
64
|
-
|
|
64
|
+
indicator: "rounded-none"
|
|
65
65
|
},
|
|
66
66
|
base: {
|
|
67
67
|
track: "rounded",
|
|
68
|
-
|
|
68
|
+
indicator: "rounded"
|
|
69
69
|
},
|
|
70
70
|
sm: {
|
|
71
71
|
track: "rounded-sm",
|
|
72
|
-
|
|
72
|
+
indicator: "rounded-sm"
|
|
73
73
|
},
|
|
74
74
|
md: {
|
|
75
75
|
track: "rounded-md",
|
|
76
|
-
|
|
76
|
+
indicator: "rounded-md"
|
|
77
77
|
},
|
|
78
78
|
lg: {
|
|
79
79
|
track: "rounded-lg",
|
|
80
|
-
|
|
80
|
+
indicator: "rounded-lg"
|
|
81
81
|
},
|
|
82
82
|
xl: {
|
|
83
83
|
track: "rounded-xl",
|
|
84
|
-
|
|
84
|
+
indicator: "rounded-xl"
|
|
85
85
|
},
|
|
86
86
|
full: {
|
|
87
87
|
track: "rounded-full",
|
|
88
|
-
|
|
88
|
+
indicator: "rounded-full"
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
91
|
isStriped: {
|
|
92
92
|
true: {
|
|
93
|
-
|
|
93
|
+
indicator: "bg-stripe-gradient bg-[length:1.25rem_1.25rem]"
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
isIndeterminate: {
|
|
97
97
|
true: {
|
|
98
|
-
|
|
98
|
+
indicator: ["absolute", "w-full", "origin-left", "animate-indeterminate-bar"]
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
101
|
isDisabled: {
|
|
@@ -106,7 +106,7 @@ var progress = tv(
|
|
|
106
106
|
disableAnimation: {
|
|
107
107
|
true: {},
|
|
108
108
|
false: {
|
|
109
|
-
|
|
109
|
+
indicator: "transition-transform !duration-500"
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
},
|
|
@@ -124,7 +124,7 @@ var progress = tv(
|
|
|
124
124
|
disableAnimation: true,
|
|
125
125
|
isIndeterminate: false,
|
|
126
126
|
class: {
|
|
127
|
-
|
|
127
|
+
indicator: "!transition-none motion-reduce:transition-none"
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
]
|
|
@@ -73,6 +73,13 @@ var popover = tv({
|
|
|
73
73
|
flat: { base: "" },
|
|
74
74
|
shadow: { base: "" }
|
|
75
75
|
},
|
|
76
|
+
size: {
|
|
77
|
+
xs: { base: "text-xs" },
|
|
78
|
+
sm: { base: "text-sm" },
|
|
79
|
+
md: { base: "text-base" },
|
|
80
|
+
lg: { base: "text-lg" },
|
|
81
|
+
xl: { base: "text-xl" }
|
|
82
|
+
},
|
|
76
83
|
color: {
|
|
77
84
|
default: { base: colorVariants.solid.default },
|
|
78
85
|
foreground: { base: colorVariants.solid.foreground },
|
|
@@ -116,6 +123,7 @@ var popover = tv({
|
|
|
116
123
|
variant: "solid",
|
|
117
124
|
color: "default",
|
|
118
125
|
radius: "xl",
|
|
126
|
+
size: "md",
|
|
119
127
|
backdropVariant: "transparent",
|
|
120
128
|
disableAnimation: false,
|
|
121
129
|
triggerScaleOnOpen: true
|
package/dist/components/index.js
CHANGED
|
@@ -1305,6 +1305,13 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1305
1305
|
flat: { base: "" },
|
|
1306
1306
|
shadow: { base: "" }
|
|
1307
1307
|
},
|
|
1308
|
+
size: {
|
|
1309
|
+
xs: { base: "text-xs" },
|
|
1310
|
+
sm: { base: "text-sm" },
|
|
1311
|
+
md: { base: "text-base" },
|
|
1312
|
+
lg: { base: "text-lg" },
|
|
1313
|
+
xl: { base: "text-xl" }
|
|
1314
|
+
},
|
|
1308
1315
|
color: {
|
|
1309
1316
|
default: { base: colorVariants.solid.default },
|
|
1310
1317
|
foreground: { base: colorVariants.solid.foreground },
|
|
@@ -1348,6 +1355,7 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1348
1355
|
variant: "solid",
|
|
1349
1356
|
color: "default",
|
|
1350
1357
|
radius: "xl",
|
|
1358
|
+
size: "md",
|
|
1351
1359
|
backdropVariant: "transparent",
|
|
1352
1360
|
disableAnimation: false,
|
|
1353
1361
|
triggerScaleOnOpen: true
|
|
@@ -3612,27 +3620,27 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3612
3620
|
labelWrapper: "flex justify-between",
|
|
3613
3621
|
value: "",
|
|
3614
3622
|
track: "z-0 relative bg-default-300/50 overflow-hidden",
|
|
3615
|
-
|
|
3623
|
+
indicator: "h-full"
|
|
3616
3624
|
},
|
|
3617
3625
|
variants: {
|
|
3618
3626
|
color: {
|
|
3619
3627
|
default: {
|
|
3620
|
-
|
|
3628
|
+
indicator: "bg-default-400"
|
|
3621
3629
|
},
|
|
3622
3630
|
primary: {
|
|
3623
|
-
|
|
3631
|
+
indicator: "bg-primary"
|
|
3624
3632
|
},
|
|
3625
3633
|
secondary: {
|
|
3626
|
-
|
|
3634
|
+
indicator: "bg-secondary"
|
|
3627
3635
|
},
|
|
3628
3636
|
success: {
|
|
3629
|
-
|
|
3637
|
+
indicator: "bg-success"
|
|
3630
3638
|
},
|
|
3631
3639
|
warning: {
|
|
3632
|
-
|
|
3640
|
+
indicator: "bg-warning"
|
|
3633
3641
|
},
|
|
3634
3642
|
danger: {
|
|
3635
|
-
|
|
3643
|
+
indicator: "bg-danger"
|
|
3636
3644
|
}
|
|
3637
3645
|
},
|
|
3638
3646
|
size: {
|
|
@@ -3665,41 +3673,41 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3665
3673
|
radius: {
|
|
3666
3674
|
none: {
|
|
3667
3675
|
track: "rounded-none",
|
|
3668
|
-
|
|
3676
|
+
indicator: "rounded-none"
|
|
3669
3677
|
},
|
|
3670
3678
|
base: {
|
|
3671
3679
|
track: "rounded",
|
|
3672
|
-
|
|
3680
|
+
indicator: "rounded"
|
|
3673
3681
|
},
|
|
3674
3682
|
sm: {
|
|
3675
3683
|
track: "rounded-sm",
|
|
3676
|
-
|
|
3684
|
+
indicator: "rounded-sm"
|
|
3677
3685
|
},
|
|
3678
3686
|
md: {
|
|
3679
3687
|
track: "rounded-md",
|
|
3680
|
-
|
|
3688
|
+
indicator: "rounded-md"
|
|
3681
3689
|
},
|
|
3682
3690
|
lg: {
|
|
3683
3691
|
track: "rounded-lg",
|
|
3684
|
-
|
|
3692
|
+
indicator: "rounded-lg"
|
|
3685
3693
|
},
|
|
3686
3694
|
xl: {
|
|
3687
3695
|
track: "rounded-xl",
|
|
3688
|
-
|
|
3696
|
+
indicator: "rounded-xl"
|
|
3689
3697
|
},
|
|
3690
3698
|
full: {
|
|
3691
3699
|
track: "rounded-full",
|
|
3692
|
-
|
|
3700
|
+
indicator: "rounded-full"
|
|
3693
3701
|
}
|
|
3694
3702
|
},
|
|
3695
3703
|
isStriped: {
|
|
3696
3704
|
true: {
|
|
3697
|
-
|
|
3705
|
+
indicator: "bg-stripe-gradient bg-[length:1.25rem_1.25rem]"
|
|
3698
3706
|
}
|
|
3699
3707
|
},
|
|
3700
3708
|
isIndeterminate: {
|
|
3701
3709
|
true: {
|
|
3702
|
-
|
|
3710
|
+
indicator: ["absolute", "w-full", "origin-left", "animate-indeterminate-bar"]
|
|
3703
3711
|
}
|
|
3704
3712
|
},
|
|
3705
3713
|
isDisabled: {
|
|
@@ -3710,7 +3718,7 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3710
3718
|
disableAnimation: {
|
|
3711
3719
|
true: {},
|
|
3712
3720
|
false: {
|
|
3713
|
-
|
|
3721
|
+
indicator: "transition-transform !duration-500"
|
|
3714
3722
|
}
|
|
3715
3723
|
}
|
|
3716
3724
|
},
|
|
@@ -3728,7 +3736,7 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3728
3736
|
disableAnimation: true,
|
|
3729
3737
|
isIndeterminate: false,
|
|
3730
3738
|
class: {
|
|
3731
|
-
|
|
3739
|
+
indicator: "!transition-none motion-reduce:transition-none"
|
|
3732
3740
|
}
|
|
3733
3741
|
}
|
|
3734
3742
|
]
|
|
@@ -28,10 +28,10 @@ import {
|
|
|
28
28
|
} from "../chunk-4MSPP245.mjs";
|
|
29
29
|
import {
|
|
30
30
|
popover
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-T23JC6II.mjs";
|
|
32
32
|
import {
|
|
33
33
|
progress
|
|
34
|
-
} from "../chunk-
|
|
34
|
+
} from "../chunk-BHHIVMOY.mjs";
|
|
35
35
|
import {
|
|
36
36
|
radio,
|
|
37
37
|
radioGroup
|
|
@@ -40,6 +40,23 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
40
40
|
base: string;
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
|
+
size: {
|
|
44
|
+
xs: {
|
|
45
|
+
base: string;
|
|
46
|
+
};
|
|
47
|
+
sm: {
|
|
48
|
+
base: string;
|
|
49
|
+
};
|
|
50
|
+
md: {
|
|
51
|
+
base: string;
|
|
52
|
+
};
|
|
53
|
+
lg: {
|
|
54
|
+
base: string;
|
|
55
|
+
};
|
|
56
|
+
xl: {
|
|
57
|
+
base: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
43
60
|
color: {
|
|
44
61
|
default: {
|
|
45
62
|
base: string;
|
|
@@ -135,6 +152,23 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
135
152
|
base: string;
|
|
136
153
|
};
|
|
137
154
|
};
|
|
155
|
+
size: {
|
|
156
|
+
xs: {
|
|
157
|
+
base: string;
|
|
158
|
+
};
|
|
159
|
+
sm: {
|
|
160
|
+
base: string;
|
|
161
|
+
};
|
|
162
|
+
md: {
|
|
163
|
+
base: string;
|
|
164
|
+
};
|
|
165
|
+
lg: {
|
|
166
|
+
base: string;
|
|
167
|
+
};
|
|
168
|
+
xl: {
|
|
169
|
+
base: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
138
172
|
color: {
|
|
139
173
|
default: {
|
|
140
174
|
base: string;
|
|
@@ -169,6 +169,13 @@ var popover = (0, import_tailwind_variants.tv)({
|
|
|
169
169
|
flat: { base: "" },
|
|
170
170
|
shadow: { base: "" }
|
|
171
171
|
},
|
|
172
|
+
size: {
|
|
173
|
+
xs: { base: "text-xs" },
|
|
174
|
+
sm: { base: "text-sm" },
|
|
175
|
+
md: { base: "text-base" },
|
|
176
|
+
lg: { base: "text-lg" },
|
|
177
|
+
xl: { base: "text-xl" }
|
|
178
|
+
},
|
|
172
179
|
color: {
|
|
173
180
|
default: { base: colorVariants.solid.default },
|
|
174
181
|
foreground: { base: colorVariants.solid.foreground },
|
|
@@ -212,6 +219,7 @@ var popover = (0, import_tailwind_variants.tv)({
|
|
|
212
219
|
variant: "solid",
|
|
213
220
|
color: "default",
|
|
214
221
|
radius: "xl",
|
|
222
|
+
size: "md",
|
|
215
223
|
backdropVariant: "transparent",
|
|
216
224
|
disableAnimation: false,
|
|
217
225
|
triggerScaleOnOpen: true
|
|
@@ -6,7 +6,7 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* ```js
|
|
9
|
-
* const {base, labelWrapper, label, value, track,
|
|
9
|
+
* const {base, labelWrapper, label, value, track, indicator} = progress({...})
|
|
10
10
|
*
|
|
11
11
|
* <div className={base()} aria-label="progress" role="progressbar" aria-valuenow={value} aria-valuemin={min} aria-valuemax={max}>
|
|
12
12
|
* <div className={labelWrapper()}>
|
|
@@ -14,7 +14,7 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
14
14
|
* <span className={value()}>{value}</span>
|
|
15
15
|
* </div>
|
|
16
16
|
* <div className={track()}>
|
|
17
|
-
* <div className={
|
|
17
|
+
* <div className={indicator()} style={{width: `${value}%`}} />
|
|
18
18
|
* </div>
|
|
19
19
|
* </div>
|
|
20
20
|
* ```
|
|
@@ -22,22 +22,22 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
22
22
|
declare const progress: tailwind_variants.TVReturnType<{
|
|
23
23
|
color: {
|
|
24
24
|
default: {
|
|
25
|
-
|
|
25
|
+
indicator: string;
|
|
26
26
|
};
|
|
27
27
|
primary: {
|
|
28
|
-
|
|
28
|
+
indicator: string;
|
|
29
29
|
};
|
|
30
30
|
secondary: {
|
|
31
|
-
|
|
31
|
+
indicator: string;
|
|
32
32
|
};
|
|
33
33
|
success: {
|
|
34
|
-
|
|
34
|
+
indicator: string;
|
|
35
35
|
};
|
|
36
36
|
warning: {
|
|
37
|
-
|
|
37
|
+
indicator: string;
|
|
38
38
|
};
|
|
39
39
|
danger: {
|
|
40
|
-
|
|
40
|
+
indicator: string;
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
size: {
|
|
@@ -70,41 +70,41 @@ declare const progress: tailwind_variants.TVReturnType<{
|
|
|
70
70
|
radius: {
|
|
71
71
|
none: {
|
|
72
72
|
track: string;
|
|
73
|
-
|
|
73
|
+
indicator: string;
|
|
74
74
|
};
|
|
75
75
|
base: {
|
|
76
76
|
track: string;
|
|
77
|
-
|
|
77
|
+
indicator: string;
|
|
78
78
|
};
|
|
79
79
|
sm: {
|
|
80
80
|
track: string;
|
|
81
|
-
|
|
81
|
+
indicator: string;
|
|
82
82
|
};
|
|
83
83
|
md: {
|
|
84
84
|
track: string;
|
|
85
|
-
|
|
85
|
+
indicator: string;
|
|
86
86
|
};
|
|
87
87
|
lg: {
|
|
88
88
|
track: string;
|
|
89
|
-
|
|
89
|
+
indicator: string;
|
|
90
90
|
};
|
|
91
91
|
xl: {
|
|
92
92
|
track: string;
|
|
93
|
-
|
|
93
|
+
indicator: string;
|
|
94
94
|
};
|
|
95
95
|
full: {
|
|
96
96
|
track: string;
|
|
97
|
-
|
|
97
|
+
indicator: string;
|
|
98
98
|
};
|
|
99
99
|
};
|
|
100
100
|
isStriped: {
|
|
101
101
|
true: {
|
|
102
|
-
|
|
102
|
+
indicator: string;
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
105
|
isIndeterminate: {
|
|
106
106
|
true: {
|
|
107
|
-
|
|
107
|
+
indicator: string[];
|
|
108
108
|
};
|
|
109
109
|
};
|
|
110
110
|
isDisabled: {
|
|
@@ -115,7 +115,7 @@ declare const progress: tailwind_variants.TVReturnType<{
|
|
|
115
115
|
disableAnimation: {
|
|
116
116
|
true: {};
|
|
117
117
|
false: {
|
|
118
|
-
|
|
118
|
+
indicator: string;
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
121
|
}, unknown, {
|
|
@@ -124,7 +124,7 @@ declare const progress: tailwind_variants.TVReturnType<{
|
|
|
124
124
|
labelWrapper: string;
|
|
125
125
|
value: string;
|
|
126
126
|
track: string;
|
|
127
|
-
|
|
127
|
+
indicator: string;
|
|
128
128
|
}, undefined, undefined, {
|
|
129
129
|
twMerge: false;
|
|
130
130
|
}>;
|
|
@@ -32,27 +32,27 @@ var progress = (0, import_tailwind_variants.tv)(
|
|
|
32
32
|
labelWrapper: "flex justify-between",
|
|
33
33
|
value: "",
|
|
34
34
|
track: "z-0 relative bg-default-300/50 overflow-hidden",
|
|
35
|
-
|
|
35
|
+
indicator: "h-full"
|
|
36
36
|
},
|
|
37
37
|
variants: {
|
|
38
38
|
color: {
|
|
39
39
|
default: {
|
|
40
|
-
|
|
40
|
+
indicator: "bg-default-400"
|
|
41
41
|
},
|
|
42
42
|
primary: {
|
|
43
|
-
|
|
43
|
+
indicator: "bg-primary"
|
|
44
44
|
},
|
|
45
45
|
secondary: {
|
|
46
|
-
|
|
46
|
+
indicator: "bg-secondary"
|
|
47
47
|
},
|
|
48
48
|
success: {
|
|
49
|
-
|
|
49
|
+
indicator: "bg-success"
|
|
50
50
|
},
|
|
51
51
|
warning: {
|
|
52
|
-
|
|
52
|
+
indicator: "bg-warning"
|
|
53
53
|
},
|
|
54
54
|
danger: {
|
|
55
|
-
|
|
55
|
+
indicator: "bg-danger"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
size: {
|
|
@@ -85,41 +85,41 @@ var progress = (0, import_tailwind_variants.tv)(
|
|
|
85
85
|
radius: {
|
|
86
86
|
none: {
|
|
87
87
|
track: "rounded-none",
|
|
88
|
-
|
|
88
|
+
indicator: "rounded-none"
|
|
89
89
|
},
|
|
90
90
|
base: {
|
|
91
91
|
track: "rounded",
|
|
92
|
-
|
|
92
|
+
indicator: "rounded"
|
|
93
93
|
},
|
|
94
94
|
sm: {
|
|
95
95
|
track: "rounded-sm",
|
|
96
|
-
|
|
96
|
+
indicator: "rounded-sm"
|
|
97
97
|
},
|
|
98
98
|
md: {
|
|
99
99
|
track: "rounded-md",
|
|
100
|
-
|
|
100
|
+
indicator: "rounded-md"
|
|
101
101
|
},
|
|
102
102
|
lg: {
|
|
103
103
|
track: "rounded-lg",
|
|
104
|
-
|
|
104
|
+
indicator: "rounded-lg"
|
|
105
105
|
},
|
|
106
106
|
xl: {
|
|
107
107
|
track: "rounded-xl",
|
|
108
|
-
|
|
108
|
+
indicator: "rounded-xl"
|
|
109
109
|
},
|
|
110
110
|
full: {
|
|
111
111
|
track: "rounded-full",
|
|
112
|
-
|
|
112
|
+
indicator: "rounded-full"
|
|
113
113
|
}
|
|
114
114
|
},
|
|
115
115
|
isStriped: {
|
|
116
116
|
true: {
|
|
117
|
-
|
|
117
|
+
indicator: "bg-stripe-gradient bg-[length:1.25rem_1.25rem]"
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
isIndeterminate: {
|
|
121
121
|
true: {
|
|
122
|
-
|
|
122
|
+
indicator: ["absolute", "w-full", "origin-left", "animate-indeterminate-bar"]
|
|
123
123
|
}
|
|
124
124
|
},
|
|
125
125
|
isDisabled: {
|
|
@@ -130,7 +130,7 @@ var progress = (0, import_tailwind_variants.tv)(
|
|
|
130
130
|
disableAnimation: {
|
|
131
131
|
true: {},
|
|
132
132
|
false: {
|
|
133
|
-
|
|
133
|
+
indicator: "transition-transform !duration-500"
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
},
|
|
@@ -148,7 +148,7 @@ var progress = (0, import_tailwind_variants.tv)(
|
|
|
148
148
|
disableAnimation: true,
|
|
149
149
|
isIndeterminate: false,
|
|
150
150
|
class: {
|
|
151
|
-
|
|
151
|
+
indicator: "!transition-none motion-reduce:transition-none"
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
]
|
package/dist/index.js
CHANGED
|
@@ -1337,6 +1337,13 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1337
1337
|
flat: { base: "" },
|
|
1338
1338
|
shadow: { base: "" }
|
|
1339
1339
|
},
|
|
1340
|
+
size: {
|
|
1341
|
+
xs: { base: "text-xs" },
|
|
1342
|
+
sm: { base: "text-sm" },
|
|
1343
|
+
md: { base: "text-base" },
|
|
1344
|
+
lg: { base: "text-lg" },
|
|
1345
|
+
xl: { base: "text-xl" }
|
|
1346
|
+
},
|
|
1340
1347
|
color: {
|
|
1341
1348
|
default: { base: colorVariants.solid.default },
|
|
1342
1349
|
foreground: { base: colorVariants.solid.foreground },
|
|
@@ -1380,6 +1387,7 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1380
1387
|
variant: "solid",
|
|
1381
1388
|
color: "default",
|
|
1382
1389
|
radius: "xl",
|
|
1390
|
+
size: "md",
|
|
1383
1391
|
backdropVariant: "transparent",
|
|
1384
1392
|
disableAnimation: false,
|
|
1385
1393
|
triggerScaleOnOpen: true
|
|
@@ -3644,27 +3652,27 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3644
3652
|
labelWrapper: "flex justify-between",
|
|
3645
3653
|
value: "",
|
|
3646
3654
|
track: "z-0 relative bg-default-300/50 overflow-hidden",
|
|
3647
|
-
|
|
3655
|
+
indicator: "h-full"
|
|
3648
3656
|
},
|
|
3649
3657
|
variants: {
|
|
3650
3658
|
color: {
|
|
3651
3659
|
default: {
|
|
3652
|
-
|
|
3660
|
+
indicator: "bg-default-400"
|
|
3653
3661
|
},
|
|
3654
3662
|
primary: {
|
|
3655
|
-
|
|
3663
|
+
indicator: "bg-primary"
|
|
3656
3664
|
},
|
|
3657
3665
|
secondary: {
|
|
3658
|
-
|
|
3666
|
+
indicator: "bg-secondary"
|
|
3659
3667
|
},
|
|
3660
3668
|
success: {
|
|
3661
|
-
|
|
3669
|
+
indicator: "bg-success"
|
|
3662
3670
|
},
|
|
3663
3671
|
warning: {
|
|
3664
|
-
|
|
3672
|
+
indicator: "bg-warning"
|
|
3665
3673
|
},
|
|
3666
3674
|
danger: {
|
|
3667
|
-
|
|
3675
|
+
indicator: "bg-danger"
|
|
3668
3676
|
}
|
|
3669
3677
|
},
|
|
3670
3678
|
size: {
|
|
@@ -3697,41 +3705,41 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3697
3705
|
radius: {
|
|
3698
3706
|
none: {
|
|
3699
3707
|
track: "rounded-none",
|
|
3700
|
-
|
|
3708
|
+
indicator: "rounded-none"
|
|
3701
3709
|
},
|
|
3702
3710
|
base: {
|
|
3703
3711
|
track: "rounded",
|
|
3704
|
-
|
|
3712
|
+
indicator: "rounded"
|
|
3705
3713
|
},
|
|
3706
3714
|
sm: {
|
|
3707
3715
|
track: "rounded-sm",
|
|
3708
|
-
|
|
3716
|
+
indicator: "rounded-sm"
|
|
3709
3717
|
},
|
|
3710
3718
|
md: {
|
|
3711
3719
|
track: "rounded-md",
|
|
3712
|
-
|
|
3720
|
+
indicator: "rounded-md"
|
|
3713
3721
|
},
|
|
3714
3722
|
lg: {
|
|
3715
3723
|
track: "rounded-lg",
|
|
3716
|
-
|
|
3724
|
+
indicator: "rounded-lg"
|
|
3717
3725
|
},
|
|
3718
3726
|
xl: {
|
|
3719
3727
|
track: "rounded-xl",
|
|
3720
|
-
|
|
3728
|
+
indicator: "rounded-xl"
|
|
3721
3729
|
},
|
|
3722
3730
|
full: {
|
|
3723
3731
|
track: "rounded-full",
|
|
3724
|
-
|
|
3732
|
+
indicator: "rounded-full"
|
|
3725
3733
|
}
|
|
3726
3734
|
},
|
|
3727
3735
|
isStriped: {
|
|
3728
3736
|
true: {
|
|
3729
|
-
|
|
3737
|
+
indicator: "bg-stripe-gradient bg-[length:1.25rem_1.25rem]"
|
|
3730
3738
|
}
|
|
3731
3739
|
},
|
|
3732
3740
|
isIndeterminate: {
|
|
3733
3741
|
true: {
|
|
3734
|
-
|
|
3742
|
+
indicator: ["absolute", "w-full", "origin-left", "animate-indeterminate-bar"]
|
|
3735
3743
|
}
|
|
3736
3744
|
},
|
|
3737
3745
|
isDisabled: {
|
|
@@ -3742,7 +3750,7 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3742
3750
|
disableAnimation: {
|
|
3743
3751
|
true: {},
|
|
3744
3752
|
false: {
|
|
3745
|
-
|
|
3753
|
+
indicator: "transition-transform !duration-500"
|
|
3746
3754
|
}
|
|
3747
3755
|
}
|
|
3748
3756
|
},
|
|
@@ -3760,7 +3768,7 @@ var progress = (0, import_tailwind_variants18.tv)(
|
|
|
3760
3768
|
disableAnimation: true,
|
|
3761
3769
|
isIndeterminate: false,
|
|
3762
3770
|
class: {
|
|
3763
|
-
|
|
3771
|
+
indicator: "!transition-none motion-reduce:transition-none"
|
|
3764
3772
|
}
|
|
3765
3773
|
}
|
|
3766
3774
|
]
|
package/dist/index.mjs
CHANGED
|
@@ -28,10 +28,10 @@ import {
|
|
|
28
28
|
} from "./chunk-4MSPP245.mjs";
|
|
29
29
|
import {
|
|
30
30
|
popover
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-T23JC6II.mjs";
|
|
32
32
|
import {
|
|
33
33
|
progress
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-BHHIVMOY.mjs";
|
|
35
35
|
import {
|
|
36
36
|
radio,
|
|
37
37
|
radioGroup
|
|
@@ -105,7 +105,7 @@ import {
|
|
|
105
105
|
} from "./chunk-76WBK7WN.mjs";
|
|
106
106
|
import {
|
|
107
107
|
nextui
|
|
108
|
-
} from "./chunk-
|
|
108
|
+
} from "./chunk-3YIFM2I2.mjs";
|
|
109
109
|
import "./chunk-XLATS5QU.mjs";
|
|
110
110
|
import {
|
|
111
111
|
absoluteFullClasses,
|
|
@@ -114,6 +114,7 @@ import {
|
|
|
114
114
|
ringClasses,
|
|
115
115
|
translateCenterClasses
|
|
116
116
|
} from "./chunk-INZK6TTL.mjs";
|
|
117
|
+
import "./chunk-DMASP6FA.mjs";
|
|
117
118
|
import "./chunk-WQEDQHKX.mjs";
|
|
118
119
|
import {
|
|
119
120
|
colors
|
|
@@ -123,7 +124,6 @@ import {
|
|
|
123
124
|
} from "./chunk-6QXUR7SY.mjs";
|
|
124
125
|
import "./chunk-37PIXVP4.mjs";
|
|
125
126
|
import "./chunk-M63AFAHO.mjs";
|
|
126
|
-
import "./chunk-DMASP6FA.mjs";
|
|
127
127
|
import {
|
|
128
128
|
commonColors
|
|
129
129
|
} from "./chunk-CRCBVLUP.mjs";
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-3YIFM2I2.mjs";
|
|
4
4
|
import "./chunk-XLATS5QU.mjs";
|
|
5
5
|
import "./chunk-INZK6TTL.mjs";
|
|
6
|
+
import "./chunk-DMASP6FA.mjs";
|
|
6
7
|
import "./chunk-WQEDQHKX.mjs";
|
|
7
8
|
import "./chunk-7PRU5S35.mjs";
|
|
8
9
|
import "./chunk-6QXUR7SY.mjs";
|
|
9
10
|
import "./chunk-37PIXVP4.mjs";
|
|
10
11
|
import "./chunk-M63AFAHO.mjs";
|
|
11
|
-
import "./chunk-DMASP6FA.mjs";
|
|
12
12
|
import "./chunk-CRCBVLUP.mjs";
|
|
13
13
|
import "./chunk-DCEG5LGX.mjs";
|
|
14
14
|
import "./chunk-L2OL7R23.mjs";
|
package/package.json
CHANGED
|
@@ -4,15 +4,15 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
baseStyles
|
|
6
6
|
} from "./chunk-INZK6TTL.mjs";
|
|
7
|
+
import {
|
|
8
|
+
animations
|
|
9
|
+
} from "./chunk-DMASP6FA.mjs";
|
|
7
10
|
import {
|
|
8
11
|
semanticColors
|
|
9
12
|
} from "./chunk-6QXUR7SY.mjs";
|
|
10
13
|
import {
|
|
11
14
|
removeDefaultKeys
|
|
12
15
|
} from "./chunk-37PIXVP4.mjs";
|
|
13
|
-
import {
|
|
14
|
-
animations
|
|
15
|
-
} from "./chunk-DMASP6FA.mjs";
|
|
16
16
|
import {
|
|
17
17
|
commonColors
|
|
18
18
|
} from "./chunk-CRCBVLUP.mjs";
|