@nextui-org/theme 0.0.0-dev-v2-20230521141624 → 0.0.0-dev-v2-20230526220125
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-W5WYYDCM.mjs → chunk-4A7R2B5L.mjs} +4 -4
- package/dist/{chunk-KUQBSI5S.mjs → chunk-6IVGIMY2.mjs} +1 -1
- package/dist/{chunk-AU7WYHMP.mjs → chunk-FVTLDCTS.mjs} +2 -2
- package/dist/{chunk-B2N536X5.mjs → chunk-LMXA7XIQ.mjs} +11 -6
- package/dist/components/checkbox.d.ts +1 -1
- package/dist/components/checkbox.js +11 -6
- package/dist/components/checkbox.mjs +1 -1
- package/dist/components/chip.js +4 -4
- package/dist/components/chip.mjs +1 -1
- package/dist/components/circular-progress.d.ts +6 -5
- package/dist/components/circular-progress.js +2 -2
- package/dist/components/circular-progress.mjs +1 -1
- package/dist/components/index.js +18 -13
- package/dist/components/index.mjs +42 -42
- package/dist/components/kbd.js +1 -1
- package/dist/components/kbd.mjs +1 -1
- package/dist/index.js +18 -13
- package/dist/index.mjs +55 -55
- package/dist/plugin.mjs +3 -3
- package/package.json +1 -1
- package/dist/{chunk-WUXZWYH4.mjs → chunk-WIZLPJM6.mjs} +5 -5
|
@@ -10,7 +10,7 @@ import { tv } from "tailwind-variants";
|
|
|
10
10
|
var chip = tv({
|
|
11
11
|
slots: {
|
|
12
12
|
base: ["relative", "max-w-fit", "inline-flex", "items-center", "justify-between", "box-border"],
|
|
13
|
-
content: "flex-1 text-inherit select-none font-
|
|
13
|
+
content: "flex-1 text-inherit select-none font-normal",
|
|
14
14
|
dot: ["w-2", "h-2", "ml-1", "rounded-full"],
|
|
15
15
|
avatar: "flex-shrink-0",
|
|
16
16
|
closeButton: [
|
|
@@ -77,19 +77,19 @@ var chip = tv({
|
|
|
77
77
|
avatar: "w-4 h-4"
|
|
78
78
|
},
|
|
79
79
|
md: {
|
|
80
|
-
base: "px-1 h-7 text-
|
|
80
|
+
base: "px-1 h-7 text-sm",
|
|
81
81
|
content: "px-2",
|
|
82
82
|
closeButton: "text-lg",
|
|
83
83
|
avatar: "w-5 h-5"
|
|
84
84
|
},
|
|
85
85
|
lg: {
|
|
86
|
-
base: "px-2 h-8 text-
|
|
86
|
+
base: "px-2 h-8 text-base",
|
|
87
87
|
content: "px-2",
|
|
88
88
|
closeButton: "text-xl",
|
|
89
89
|
avatar: "w-6 h-6"
|
|
90
90
|
},
|
|
91
91
|
xl: {
|
|
92
|
-
base: "px-2 h-9 text-
|
|
92
|
+
base: "px-2 h-9 text-lg",
|
|
93
93
|
content: "px-2",
|
|
94
94
|
closeButton: "text-2xl",
|
|
95
95
|
avatar: "w-7 h-7"
|
|
@@ -7,7 +7,7 @@ var circularProgress = tv({
|
|
|
7
7
|
svgWrapper: "relative block",
|
|
8
8
|
svg: "z-0 relative overflow-hidden",
|
|
9
9
|
track: "h-full stroke-neutral-300/50",
|
|
10
|
-
|
|
10
|
+
indicator: "h-full stroke-current",
|
|
11
11
|
value: "absolute font-normal inset-0 flex items-center justify-center"
|
|
12
12
|
},
|
|
13
13
|
variants: {
|
|
@@ -71,7 +71,7 @@ var circularProgress = tv({
|
|
|
71
71
|
disableAnimation: {
|
|
72
72
|
true: {},
|
|
73
73
|
false: {
|
|
74
|
-
|
|
74
|
+
indicator: "transition-all !duration-500"
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
},
|
|
@@ -23,8 +23,8 @@ var checkbox = tv({
|
|
|
23
23
|
"after:scale-50",
|
|
24
24
|
"after:opacity-0",
|
|
25
25
|
"after:origin-center",
|
|
26
|
-
"group-data-[
|
|
27
|
-
"group-data-[
|
|
26
|
+
"group-data-[selected=true]:after:scale-100",
|
|
27
|
+
"group-data-[selected=true]:after:opacity-100",
|
|
28
28
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
29
29
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
30
30
|
"group-data-[focus-visible=true]:outline-none",
|
|
@@ -34,7 +34,7 @@ var checkbox = tv({
|
|
|
34
34
|
"group-data-[focus-visible=true]:ring-offset-background",
|
|
35
35
|
"group-data-[focus-visible=true]:dark:ring-offset-background-dark"
|
|
36
36
|
],
|
|
37
|
-
icon: "z-10 w-4 h-3 opacity-0 group-data-[
|
|
37
|
+
icon: "z-10 w-4 h-3 opacity-0 group-data-[selected=true]:opacity-100",
|
|
38
38
|
label: "relative text-foreground select-none"
|
|
39
39
|
},
|
|
40
40
|
variants: {
|
|
@@ -119,8 +119,8 @@ var checkbox = tv({
|
|
|
119
119
|
"before:bg-foreground",
|
|
120
120
|
"before:w-0",
|
|
121
121
|
"before:h-0.5",
|
|
122
|
-
"group-data-[
|
|
123
|
-
"group-data-[
|
|
122
|
+
"group-data-[selected=true]:opacity-60",
|
|
123
|
+
"group-data-[selected=true]:before:w-full"
|
|
124
124
|
]
|
|
125
125
|
}
|
|
126
126
|
},
|
|
@@ -136,7 +136,12 @@ var checkbox = tv({
|
|
|
136
136
|
label: "transition-none"
|
|
137
137
|
},
|
|
138
138
|
false: {
|
|
139
|
-
wrapper: [
|
|
139
|
+
wrapper: [
|
|
140
|
+
"before:transition-background",
|
|
141
|
+
"after:transition-transform-opacity",
|
|
142
|
+
"after:!ease-linear",
|
|
143
|
+
"after:!duration-200"
|
|
144
|
+
],
|
|
140
145
|
icon: "transition-opacity",
|
|
141
146
|
label: "transition-opacity before:transition-width"
|
|
142
147
|
}
|
|
@@ -10,7 +10,7 @@ import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
|
|
|
10
10
|
* @example
|
|
11
11
|
* <label className={base())}>
|
|
12
12
|
* // hidden input
|
|
13
|
-
* <span className={wrapper()} aria-hidden="true" data-
|
|
13
|
+
* <span className={wrapper()} aria-hidden="true" data-selected={selected}>
|
|
14
14
|
* <svg className={icon()}>
|
|
15
15
|
* // check icon
|
|
16
16
|
* </svg>
|
|
@@ -48,8 +48,8 @@ var checkbox = (0, import_tailwind_variants.tv)({
|
|
|
48
48
|
"after:scale-50",
|
|
49
49
|
"after:opacity-0",
|
|
50
50
|
"after:origin-center",
|
|
51
|
-
"group-data-[
|
|
52
|
-
"group-data-[
|
|
51
|
+
"group-data-[selected=true]:after:scale-100",
|
|
52
|
+
"group-data-[selected=true]:after:opacity-100",
|
|
53
53
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
54
54
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
55
55
|
"group-data-[focus-visible=true]:outline-none",
|
|
@@ -59,7 +59,7 @@ var checkbox = (0, import_tailwind_variants.tv)({
|
|
|
59
59
|
"group-data-[focus-visible=true]:ring-offset-background",
|
|
60
60
|
"group-data-[focus-visible=true]:dark:ring-offset-background-dark"
|
|
61
61
|
],
|
|
62
|
-
icon: "z-10 w-4 h-3 opacity-0 group-data-[
|
|
62
|
+
icon: "z-10 w-4 h-3 opacity-0 group-data-[selected=true]:opacity-100",
|
|
63
63
|
label: "relative text-foreground select-none"
|
|
64
64
|
},
|
|
65
65
|
variants: {
|
|
@@ -144,8 +144,8 @@ var checkbox = (0, import_tailwind_variants.tv)({
|
|
|
144
144
|
"before:bg-foreground",
|
|
145
145
|
"before:w-0",
|
|
146
146
|
"before:h-0.5",
|
|
147
|
-
"group-data-[
|
|
148
|
-
"group-data-[
|
|
147
|
+
"group-data-[selected=true]:opacity-60",
|
|
148
|
+
"group-data-[selected=true]:before:w-full"
|
|
149
149
|
]
|
|
150
150
|
}
|
|
151
151
|
},
|
|
@@ -161,7 +161,12 @@ var checkbox = (0, import_tailwind_variants.tv)({
|
|
|
161
161
|
label: "transition-none"
|
|
162
162
|
},
|
|
163
163
|
false: {
|
|
164
|
-
wrapper: [
|
|
164
|
+
wrapper: [
|
|
165
|
+
"before:transition-background",
|
|
166
|
+
"after:transition-transform-opacity",
|
|
167
|
+
"after:!ease-linear",
|
|
168
|
+
"after:!duration-200"
|
|
169
|
+
],
|
|
165
170
|
icon: "transition-opacity",
|
|
166
171
|
label: "transition-opacity before:transition-width"
|
|
167
172
|
}
|
package/dist/components/chip.js
CHANGED
|
@@ -113,7 +113,7 @@ var colorVariants = {
|
|
|
113
113
|
var chip = (0, import_tailwind_variants.tv)({
|
|
114
114
|
slots: {
|
|
115
115
|
base: ["relative", "max-w-fit", "inline-flex", "items-center", "justify-between", "box-border"],
|
|
116
|
-
content: "flex-1 text-inherit select-none font-
|
|
116
|
+
content: "flex-1 text-inherit select-none font-normal",
|
|
117
117
|
dot: ["w-2", "h-2", "ml-1", "rounded-full"],
|
|
118
118
|
avatar: "flex-shrink-0",
|
|
119
119
|
closeButton: [
|
|
@@ -180,19 +180,19 @@ var chip = (0, import_tailwind_variants.tv)({
|
|
|
180
180
|
avatar: "w-4 h-4"
|
|
181
181
|
},
|
|
182
182
|
md: {
|
|
183
|
-
base: "px-1 h-7 text-
|
|
183
|
+
base: "px-1 h-7 text-sm",
|
|
184
184
|
content: "px-2",
|
|
185
185
|
closeButton: "text-lg",
|
|
186
186
|
avatar: "w-5 h-5"
|
|
187
187
|
},
|
|
188
188
|
lg: {
|
|
189
|
-
base: "px-2 h-8 text-
|
|
189
|
+
base: "px-2 h-8 text-base",
|
|
190
190
|
content: "px-2",
|
|
191
191
|
closeButton: "text-xl",
|
|
192
192
|
avatar: "w-6 h-6"
|
|
193
193
|
},
|
|
194
194
|
xl: {
|
|
195
|
-
base: "px-2 h-9 text-
|
|
195
|
+
base: "px-2 h-9 text-lg",
|
|
196
196
|
content: "px-2",
|
|
197
197
|
closeButton: "text-2xl",
|
|
198
198
|
avatar: "w-7 h-7"
|
package/dist/components/chip.mjs
CHANGED
|
@@ -7,12 +7,13 @@ import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
|
|
|
7
7
|
*
|
|
8
8
|
* @example
|
|
9
9
|
* ```js
|
|
10
|
-
* const {base, svgWrapper, svg,
|
|
10
|
+
* const {base, svgWrapper, svg, indicator, value, label} = circularProgress({...})
|
|
11
11
|
*
|
|
12
12
|
* <div className={base()} aria-label="progress" role="progressbar" aria-valuenow={value} aria-valuemin={min} aria-valuemax={max}>
|
|
13
13
|
* <div className={svgWrapper()}>
|
|
14
14
|
* <svg className={svg()}>
|
|
15
|
-
* <circle className={
|
|
15
|
+
* <circle className={track()} />
|
|
16
|
+
* <circle className={indicator()} />
|
|
16
17
|
* </svg>
|
|
17
18
|
* <span className={value()}>{value}</span>
|
|
18
19
|
* </div>
|
|
@@ -81,7 +82,7 @@ declare const circularProgress: tailwind_variants.TVReturnType<{
|
|
|
81
82
|
disableAnimation: {
|
|
82
83
|
true: {};
|
|
83
84
|
false: {
|
|
84
|
-
|
|
85
|
+
indicator: string;
|
|
85
86
|
};
|
|
86
87
|
};
|
|
87
88
|
}, unknown, {
|
|
@@ -90,7 +91,7 @@ declare const circularProgress: tailwind_variants.TVReturnType<{
|
|
|
90
91
|
svgWrapper: string;
|
|
91
92
|
svg: string;
|
|
92
93
|
track: string;
|
|
93
|
-
|
|
94
|
+
indicator: string;
|
|
94
95
|
value: string;
|
|
95
96
|
}, undefined, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
96
97
|
color: {
|
|
@@ -153,7 +154,7 @@ declare const circularProgress: tailwind_variants.TVReturnType<{
|
|
|
153
154
|
disableAnimation: {
|
|
154
155
|
true: {};
|
|
155
156
|
false: {
|
|
156
|
-
|
|
157
|
+
indicator: string;
|
|
157
158
|
};
|
|
158
159
|
};
|
|
159
160
|
}, unknown>>;
|
|
@@ -31,7 +31,7 @@ var circularProgress = (0, import_tailwind_variants.tv)({
|
|
|
31
31
|
svgWrapper: "relative block",
|
|
32
32
|
svg: "z-0 relative overflow-hidden",
|
|
33
33
|
track: "h-full stroke-neutral-300/50",
|
|
34
|
-
|
|
34
|
+
indicator: "h-full stroke-current",
|
|
35
35
|
value: "absolute font-normal inset-0 flex items-center justify-center"
|
|
36
36
|
},
|
|
37
37
|
variants: {
|
|
@@ -95,7 +95,7 @@ var circularProgress = (0, import_tailwind_variants.tv)({
|
|
|
95
95
|
disableAnimation: {
|
|
96
96
|
true: {},
|
|
97
97
|
false: {
|
|
98
|
-
|
|
98
|
+
indicator: "transition-all !duration-500"
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
},
|
package/dist/components/index.js
CHANGED
|
@@ -1776,7 +1776,7 @@ var import_tailwind_variants11 = require("tailwind-variants");
|
|
|
1776
1776
|
var chip = (0, import_tailwind_variants11.tv)({
|
|
1777
1777
|
slots: {
|
|
1778
1778
|
base: ["relative", "max-w-fit", "inline-flex", "items-center", "justify-between", "box-border"],
|
|
1779
|
-
content: "flex-1 text-inherit select-none font-
|
|
1779
|
+
content: "flex-1 text-inherit select-none font-normal",
|
|
1780
1780
|
dot: ["w-2", "h-2", "ml-1", "rounded-full"],
|
|
1781
1781
|
avatar: "flex-shrink-0",
|
|
1782
1782
|
closeButton: [
|
|
@@ -1843,19 +1843,19 @@ var chip = (0, import_tailwind_variants11.tv)({
|
|
|
1843
1843
|
avatar: "w-4 h-4"
|
|
1844
1844
|
},
|
|
1845
1845
|
md: {
|
|
1846
|
-
base: "px-1 h-7 text-
|
|
1846
|
+
base: "px-1 h-7 text-sm",
|
|
1847
1847
|
content: "px-2",
|
|
1848
1848
|
closeButton: "text-lg",
|
|
1849
1849
|
avatar: "w-5 h-5"
|
|
1850
1850
|
},
|
|
1851
1851
|
lg: {
|
|
1852
|
-
base: "px-2 h-8 text-
|
|
1852
|
+
base: "px-2 h-8 text-base",
|
|
1853
1853
|
content: "px-2",
|
|
1854
1854
|
closeButton: "text-xl",
|
|
1855
1855
|
avatar: "w-6 h-6"
|
|
1856
1856
|
},
|
|
1857
1857
|
xl: {
|
|
1858
|
-
base: "px-2 h-9 text-
|
|
1858
|
+
base: "px-2 h-9 text-lg",
|
|
1859
1859
|
content: "px-2",
|
|
1860
1860
|
closeButton: "text-2xl",
|
|
1861
1861
|
avatar: "w-7 h-7"
|
|
@@ -2629,8 +2629,8 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2629
2629
|
"after:scale-50",
|
|
2630
2630
|
"after:opacity-0",
|
|
2631
2631
|
"after:origin-center",
|
|
2632
|
-
"group-data-[
|
|
2633
|
-
"group-data-[
|
|
2632
|
+
"group-data-[selected=true]:after:scale-100",
|
|
2633
|
+
"group-data-[selected=true]:after:opacity-100",
|
|
2634
2634
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
2635
2635
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
2636
2636
|
"group-data-[focus-visible=true]:outline-none",
|
|
@@ -2640,7 +2640,7 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2640
2640
|
"group-data-[focus-visible=true]:ring-offset-background",
|
|
2641
2641
|
"group-data-[focus-visible=true]:dark:ring-offset-background-dark"
|
|
2642
2642
|
],
|
|
2643
|
-
icon: "z-10 w-4 h-3 opacity-0 group-data-[
|
|
2643
|
+
icon: "z-10 w-4 h-3 opacity-0 group-data-[selected=true]:opacity-100",
|
|
2644
2644
|
label: "relative text-foreground select-none"
|
|
2645
2645
|
},
|
|
2646
2646
|
variants: {
|
|
@@ -2725,8 +2725,8 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2725
2725
|
"before:bg-foreground",
|
|
2726
2726
|
"before:w-0",
|
|
2727
2727
|
"before:h-0.5",
|
|
2728
|
-
"group-data-[
|
|
2729
|
-
"group-data-[
|
|
2728
|
+
"group-data-[selected=true]:opacity-60",
|
|
2729
|
+
"group-data-[selected=true]:before:w-full"
|
|
2730
2730
|
]
|
|
2731
2731
|
}
|
|
2732
2732
|
},
|
|
@@ -2742,7 +2742,12 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2742
2742
|
label: "transition-none"
|
|
2743
2743
|
},
|
|
2744
2744
|
false: {
|
|
2745
|
-
wrapper: [
|
|
2745
|
+
wrapper: [
|
|
2746
|
+
"before:transition-background",
|
|
2747
|
+
"after:transition-transform-opacity",
|
|
2748
|
+
"after:!ease-linear",
|
|
2749
|
+
"after:!duration-200"
|
|
2750
|
+
],
|
|
2746
2751
|
icon: "transition-opacity",
|
|
2747
2752
|
label: "transition-opacity before:transition-width"
|
|
2748
2753
|
}
|
|
@@ -3740,7 +3745,7 @@ var circularProgress = (0, import_tailwind_variants19.tv)({
|
|
|
3740
3745
|
svgWrapper: "relative block",
|
|
3741
3746
|
svg: "z-0 relative overflow-hidden",
|
|
3742
3747
|
track: "h-full stroke-neutral-300/50",
|
|
3743
|
-
|
|
3748
|
+
indicator: "h-full stroke-current",
|
|
3744
3749
|
value: "absolute font-normal inset-0 flex items-center justify-center"
|
|
3745
3750
|
},
|
|
3746
3751
|
variants: {
|
|
@@ -3804,7 +3809,7 @@ var circularProgress = (0, import_tailwind_variants19.tv)({
|
|
|
3804
3809
|
disableAnimation: {
|
|
3805
3810
|
true: {},
|
|
3806
3811
|
false: {
|
|
3807
|
-
|
|
3812
|
+
indicator: "transition-all !duration-500"
|
|
3808
3813
|
}
|
|
3809
3814
|
}
|
|
3810
3815
|
},
|
|
@@ -5794,7 +5799,7 @@ var kbd = (0, import_tailwind_variants28.tv)({
|
|
|
5794
5799
|
"inline-block",
|
|
5795
5800
|
"space-x-0.5",
|
|
5796
5801
|
"font-sans",
|
|
5797
|
-
"font-
|
|
5802
|
+
"font-normal",
|
|
5798
5803
|
"text-center",
|
|
5799
5804
|
"text-sm",
|
|
5800
5805
|
"border",
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
import "../chunk-PRWEADY4.mjs";
|
|
2
|
-
import {
|
|
3
|
-
spacer
|
|
4
|
-
} from "../chunk-3B4SYPW2.mjs";
|
|
5
|
-
import {
|
|
6
|
-
spinner
|
|
7
|
-
} from "../chunk-MFJMHP3B.mjs";
|
|
8
|
-
import {
|
|
9
|
-
table
|
|
10
|
-
} from "../chunk-KWWWVBJL.mjs";
|
|
11
2
|
import {
|
|
12
3
|
tabs
|
|
13
4
|
} from "../chunk-UUJTS7XS.mjs";
|
|
@@ -17,15 +8,6 @@ import {
|
|
|
17
8
|
import {
|
|
18
9
|
user
|
|
19
10
|
} from "../chunk-ZNBW4PQF.mjs";
|
|
20
|
-
import {
|
|
21
|
-
modal
|
|
22
|
-
} from "../chunk-YMIOHWCD.mjs";
|
|
23
|
-
import {
|
|
24
|
-
navbar
|
|
25
|
-
} from "../chunk-LC5AFIW7.mjs";
|
|
26
|
-
import {
|
|
27
|
-
pagination
|
|
28
|
-
} from "../chunk-3LME35GX.mjs";
|
|
29
11
|
import {
|
|
30
12
|
popover
|
|
31
13
|
} from "../chunk-JWVJZEAT.mjs";
|
|
@@ -43,17 +25,14 @@ import {
|
|
|
43
25
|
snippet
|
|
44
26
|
} from "../chunk-5ZJFAFZA.mjs";
|
|
45
27
|
import {
|
|
46
|
-
|
|
47
|
-
} from "../chunk-
|
|
28
|
+
spacer
|
|
29
|
+
} from "../chunk-3B4SYPW2.mjs";
|
|
48
30
|
import {
|
|
49
|
-
|
|
50
|
-
} from "../chunk-
|
|
31
|
+
spinner
|
|
32
|
+
} from "../chunk-MFJMHP3B.mjs";
|
|
51
33
|
import {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
dropdownMenu,
|
|
55
|
-
dropdownSection
|
|
56
|
-
} from "../chunk-7EC2WH7W.mjs";
|
|
34
|
+
table
|
|
35
|
+
} from "../chunk-KWWWVBJL.mjs";
|
|
57
36
|
import {
|
|
58
37
|
image
|
|
59
38
|
} from "../chunk-6D57DOQF.mjs";
|
|
@@ -62,45 +41,66 @@ import {
|
|
|
62
41
|
} from "../chunk-7EDXWCUZ.mjs";
|
|
63
42
|
import {
|
|
64
43
|
kbd
|
|
65
|
-
} from "../chunk-
|
|
44
|
+
} from "../chunk-6IVGIMY2.mjs";
|
|
66
45
|
import {
|
|
67
46
|
link,
|
|
68
47
|
linkAnchorClasses
|
|
69
48
|
} from "../chunk-YQXYRWJP.mjs";
|
|
70
49
|
import {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
} from "../chunk-Y43NAEAT.mjs";
|
|
50
|
+
modal
|
|
51
|
+
} from "../chunk-YMIOHWCD.mjs";
|
|
74
52
|
import {
|
|
75
|
-
|
|
76
|
-
} from "../chunk-
|
|
53
|
+
navbar
|
|
54
|
+
} from "../chunk-LC5AFIW7.mjs";
|
|
77
55
|
import {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
} from "../chunk-HAR22HFA.mjs";
|
|
56
|
+
pagination
|
|
57
|
+
} from "../chunk-3LME35GX.mjs";
|
|
81
58
|
import {
|
|
82
59
|
card
|
|
83
60
|
} from "../chunk-NFNV2TXA.mjs";
|
|
84
61
|
import {
|
|
85
62
|
checkbox,
|
|
86
63
|
checkboxGroup
|
|
87
|
-
} from "../chunk-
|
|
64
|
+
} from "../chunk-LMXA7XIQ.mjs";
|
|
88
65
|
import {
|
|
89
66
|
chip
|
|
90
|
-
} from "../chunk-
|
|
67
|
+
} from "../chunk-4A7R2B5L.mjs";
|
|
91
68
|
import {
|
|
92
69
|
circularProgress
|
|
93
|
-
} from "../chunk-
|
|
70
|
+
} from "../chunk-FVTLDCTS.mjs";
|
|
94
71
|
import {
|
|
95
72
|
code
|
|
96
73
|
} from "../chunk-WFCALVUC.mjs";
|
|
97
|
-
import
|
|
98
|
-
|
|
99
|
-
|
|
74
|
+
import {
|
|
75
|
+
divider
|
|
76
|
+
} from "../chunk-5HKM2D3Z.mjs";
|
|
77
|
+
import {
|
|
78
|
+
drip
|
|
79
|
+
} from "../chunk-OIVGIOVG.mjs";
|
|
80
|
+
import {
|
|
81
|
+
dropdown,
|
|
82
|
+
dropdownItem,
|
|
83
|
+
dropdownMenu,
|
|
84
|
+
dropdownSection
|
|
85
|
+
} from "../chunk-7EC2WH7W.mjs";
|
|
100
86
|
import {
|
|
101
87
|
accordion,
|
|
102
88
|
accordionItem
|
|
103
89
|
} from "../chunk-7CTZKPXG.mjs";
|
|
90
|
+
import {
|
|
91
|
+
avatar,
|
|
92
|
+
avatarGroup
|
|
93
|
+
} from "../chunk-Y43NAEAT.mjs";
|
|
94
|
+
import {
|
|
95
|
+
badge
|
|
96
|
+
} from "../chunk-25QTQFHB.mjs";
|
|
97
|
+
import {
|
|
98
|
+
button,
|
|
99
|
+
buttonGroup
|
|
100
|
+
} from "../chunk-HAR22HFA.mjs";
|
|
101
|
+
import "../chunk-CMYR6AOY.mjs";
|
|
102
|
+
import "../chunk-K7LK7NCE.mjs";
|
|
103
|
+
import "../chunk-RO3WUCFF.mjs";
|
|
104
104
|
import "../chunk-INZK6TTL.mjs";
|
|
105
105
|
export {
|
|
106
106
|
accordion,
|
package/dist/components/kbd.js
CHANGED
package/dist/components/kbd.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -1808,7 +1808,7 @@ var import_tailwind_variants11 = require("tailwind-variants");
|
|
|
1808
1808
|
var chip = (0, import_tailwind_variants11.tv)({
|
|
1809
1809
|
slots: {
|
|
1810
1810
|
base: ["relative", "max-w-fit", "inline-flex", "items-center", "justify-between", "box-border"],
|
|
1811
|
-
content: "flex-1 text-inherit select-none font-
|
|
1811
|
+
content: "flex-1 text-inherit select-none font-normal",
|
|
1812
1812
|
dot: ["w-2", "h-2", "ml-1", "rounded-full"],
|
|
1813
1813
|
avatar: "flex-shrink-0",
|
|
1814
1814
|
closeButton: [
|
|
@@ -1875,19 +1875,19 @@ var chip = (0, import_tailwind_variants11.tv)({
|
|
|
1875
1875
|
avatar: "w-4 h-4"
|
|
1876
1876
|
},
|
|
1877
1877
|
md: {
|
|
1878
|
-
base: "px-1 h-7 text-
|
|
1878
|
+
base: "px-1 h-7 text-sm",
|
|
1879
1879
|
content: "px-2",
|
|
1880
1880
|
closeButton: "text-lg",
|
|
1881
1881
|
avatar: "w-5 h-5"
|
|
1882
1882
|
},
|
|
1883
1883
|
lg: {
|
|
1884
|
-
base: "px-2 h-8 text-
|
|
1884
|
+
base: "px-2 h-8 text-base",
|
|
1885
1885
|
content: "px-2",
|
|
1886
1886
|
closeButton: "text-xl",
|
|
1887
1887
|
avatar: "w-6 h-6"
|
|
1888
1888
|
},
|
|
1889
1889
|
xl: {
|
|
1890
|
-
base: "px-2 h-9 text-
|
|
1890
|
+
base: "px-2 h-9 text-lg",
|
|
1891
1891
|
content: "px-2",
|
|
1892
1892
|
closeButton: "text-2xl",
|
|
1893
1893
|
avatar: "w-7 h-7"
|
|
@@ -2661,8 +2661,8 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2661
2661
|
"after:scale-50",
|
|
2662
2662
|
"after:opacity-0",
|
|
2663
2663
|
"after:origin-center",
|
|
2664
|
-
"group-data-[
|
|
2665
|
-
"group-data-[
|
|
2664
|
+
"group-data-[selected=true]:after:scale-100",
|
|
2665
|
+
"group-data-[selected=true]:after:opacity-100",
|
|
2666
2666
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
2667
2667
|
"group-data-[hover=true]:before:bg-neutral-100",
|
|
2668
2668
|
"group-data-[focus-visible=true]:outline-none",
|
|
@@ -2672,7 +2672,7 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2672
2672
|
"group-data-[focus-visible=true]:ring-offset-background",
|
|
2673
2673
|
"group-data-[focus-visible=true]:dark:ring-offset-background-dark"
|
|
2674
2674
|
],
|
|
2675
|
-
icon: "z-10 w-4 h-3 opacity-0 group-data-[
|
|
2675
|
+
icon: "z-10 w-4 h-3 opacity-0 group-data-[selected=true]:opacity-100",
|
|
2676
2676
|
label: "relative text-foreground select-none"
|
|
2677
2677
|
},
|
|
2678
2678
|
variants: {
|
|
@@ -2757,8 +2757,8 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2757
2757
|
"before:bg-foreground",
|
|
2758
2758
|
"before:w-0",
|
|
2759
2759
|
"before:h-0.5",
|
|
2760
|
-
"group-data-[
|
|
2761
|
-
"group-data-[
|
|
2760
|
+
"group-data-[selected=true]:opacity-60",
|
|
2761
|
+
"group-data-[selected=true]:before:w-full"
|
|
2762
2762
|
]
|
|
2763
2763
|
}
|
|
2764
2764
|
},
|
|
@@ -2774,7 +2774,12 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2774
2774
|
label: "transition-none"
|
|
2775
2775
|
},
|
|
2776
2776
|
false: {
|
|
2777
|
-
wrapper: [
|
|
2777
|
+
wrapper: [
|
|
2778
|
+
"before:transition-background",
|
|
2779
|
+
"after:transition-transform-opacity",
|
|
2780
|
+
"after:!ease-linear",
|
|
2781
|
+
"after:!duration-200"
|
|
2782
|
+
],
|
|
2778
2783
|
icon: "transition-opacity",
|
|
2779
2784
|
label: "transition-opacity before:transition-width"
|
|
2780
2785
|
}
|
|
@@ -3772,7 +3777,7 @@ var circularProgress = (0, import_tailwind_variants19.tv)({
|
|
|
3772
3777
|
svgWrapper: "relative block",
|
|
3773
3778
|
svg: "z-0 relative overflow-hidden",
|
|
3774
3779
|
track: "h-full stroke-neutral-300/50",
|
|
3775
|
-
|
|
3780
|
+
indicator: "h-full stroke-current",
|
|
3776
3781
|
value: "absolute font-normal inset-0 flex items-center justify-center"
|
|
3777
3782
|
},
|
|
3778
3783
|
variants: {
|
|
@@ -3836,7 +3841,7 @@ var circularProgress = (0, import_tailwind_variants19.tv)({
|
|
|
3836
3841
|
disableAnimation: {
|
|
3837
3842
|
true: {},
|
|
3838
3843
|
false: {
|
|
3839
|
-
|
|
3844
|
+
indicator: "transition-all !duration-500"
|
|
3840
3845
|
}
|
|
3841
3846
|
}
|
|
3842
3847
|
},
|
|
@@ -5826,7 +5831,7 @@ var kbd = (0, import_tailwind_variants28.tv)({
|
|
|
5826
5831
|
"inline-block",
|
|
5827
5832
|
"space-x-0.5",
|
|
5828
5833
|
"font-sans",
|
|
5829
|
-
"font-
|
|
5834
|
+
"font-normal",
|
|
5830
5835
|
"text-center",
|
|
5831
5836
|
"text-sm",
|
|
5832
5837
|
"border",
|
package/dist/index.mjs
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
import "./chunk-PRWEADY4.mjs";
|
|
2
|
-
import {
|
|
3
|
-
spacer
|
|
4
|
-
} from "./chunk-3B4SYPW2.mjs";
|
|
5
|
-
import {
|
|
6
|
-
spinner
|
|
7
|
-
} from "./chunk-MFJMHP3B.mjs";
|
|
8
|
-
import {
|
|
9
|
-
table
|
|
10
|
-
} from "./chunk-KWWWVBJL.mjs";
|
|
11
2
|
import {
|
|
12
3
|
tabs
|
|
13
4
|
} from "./chunk-UUJTS7XS.mjs";
|
|
@@ -17,15 +8,6 @@ import {
|
|
|
17
8
|
import {
|
|
18
9
|
user
|
|
19
10
|
} from "./chunk-ZNBW4PQF.mjs";
|
|
20
|
-
import {
|
|
21
|
-
modal
|
|
22
|
-
} from "./chunk-YMIOHWCD.mjs";
|
|
23
|
-
import {
|
|
24
|
-
navbar
|
|
25
|
-
} from "./chunk-LC5AFIW7.mjs";
|
|
26
|
-
import {
|
|
27
|
-
pagination
|
|
28
|
-
} from "./chunk-3LME35GX.mjs";
|
|
29
11
|
import {
|
|
30
12
|
popover
|
|
31
13
|
} from "./chunk-JWVJZEAT.mjs";
|
|
@@ -43,17 +25,14 @@ import {
|
|
|
43
25
|
snippet
|
|
44
26
|
} from "./chunk-5ZJFAFZA.mjs";
|
|
45
27
|
import {
|
|
46
|
-
|
|
47
|
-
} from "./chunk-
|
|
28
|
+
spacer
|
|
29
|
+
} from "./chunk-3B4SYPW2.mjs";
|
|
48
30
|
import {
|
|
49
|
-
|
|
50
|
-
} from "./chunk-
|
|
31
|
+
spinner
|
|
32
|
+
} from "./chunk-MFJMHP3B.mjs";
|
|
51
33
|
import {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
dropdownMenu,
|
|
55
|
-
dropdownSection
|
|
56
|
-
} from "./chunk-7EC2WH7W.mjs";
|
|
34
|
+
table
|
|
35
|
+
} from "./chunk-KWWWVBJL.mjs";
|
|
57
36
|
import {
|
|
58
37
|
image
|
|
59
38
|
} from "./chunk-6D57DOQF.mjs";
|
|
@@ -62,58 +41,52 @@ import {
|
|
|
62
41
|
} from "./chunk-7EDXWCUZ.mjs";
|
|
63
42
|
import {
|
|
64
43
|
kbd
|
|
65
|
-
} from "./chunk-
|
|
44
|
+
} from "./chunk-6IVGIMY2.mjs";
|
|
66
45
|
import {
|
|
67
46
|
link,
|
|
68
47
|
linkAnchorClasses
|
|
69
48
|
} from "./chunk-YQXYRWJP.mjs";
|
|
70
49
|
import {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
} from "./chunk-Y43NAEAT.mjs";
|
|
50
|
+
modal
|
|
51
|
+
} from "./chunk-YMIOHWCD.mjs";
|
|
74
52
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
53
|
+
navbar
|
|
54
|
+
} from "./chunk-LC5AFIW7.mjs";
|
|
77
55
|
import {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
} from "./chunk-HAR22HFA.mjs";
|
|
56
|
+
pagination
|
|
57
|
+
} from "./chunk-3LME35GX.mjs";
|
|
81
58
|
import {
|
|
82
59
|
card
|
|
83
60
|
} from "./chunk-NFNV2TXA.mjs";
|
|
84
61
|
import {
|
|
85
62
|
checkbox,
|
|
86
63
|
checkboxGroup
|
|
87
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-LMXA7XIQ.mjs";
|
|
88
65
|
import {
|
|
89
66
|
chip
|
|
90
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-4A7R2B5L.mjs";
|
|
91
68
|
import {
|
|
92
69
|
circularProgress
|
|
93
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-FVTLDCTS.mjs";
|
|
94
71
|
import {
|
|
95
72
|
code
|
|
96
73
|
} from "./chunk-WFCALVUC.mjs";
|
|
97
|
-
import "./chunk-CMYR6AOY.mjs";
|
|
98
|
-
import "./chunk-K7LK7NCE.mjs";
|
|
99
74
|
import {
|
|
100
|
-
|
|
101
|
-
} from "./chunk-
|
|
75
|
+
divider
|
|
76
|
+
} from "./chunk-5HKM2D3Z.mjs";
|
|
102
77
|
import {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
78
|
+
drip
|
|
79
|
+
} from "./chunk-OIVGIOVG.mjs";
|
|
80
|
+
import {
|
|
81
|
+
dropdown,
|
|
82
|
+
dropdownItem,
|
|
83
|
+
dropdownMenu,
|
|
84
|
+
dropdownSection
|
|
85
|
+
} from "./chunk-7EC2WH7W.mjs";
|
|
106
86
|
import {
|
|
107
87
|
nextui
|
|
108
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-WIZLPJM6.mjs";
|
|
109
89
|
import "./chunk-XLATS5QU.mjs";
|
|
110
|
-
import {
|
|
111
|
-
absoluteFullClasses,
|
|
112
|
-
baseStyles,
|
|
113
|
-
focusVisibleClasses,
|
|
114
|
-
ringClasses,
|
|
115
|
-
translateCenterClasses
|
|
116
|
-
} from "./chunk-INZK6TTL.mjs";
|
|
117
90
|
import "./chunk-WQEDQHKX.mjs";
|
|
118
91
|
import {
|
|
119
92
|
colors
|
|
@@ -123,7 +96,6 @@ import {
|
|
|
123
96
|
} from "./chunk-LQHWK6UV.mjs";
|
|
124
97
|
import "./chunk-37PIXVP4.mjs";
|
|
125
98
|
import "./chunk-M63AFAHO.mjs";
|
|
126
|
-
import "./chunk-DMASP6FA.mjs";
|
|
127
99
|
import {
|
|
128
100
|
commonColors
|
|
129
101
|
} from "./chunk-CRCBVLUP.mjs";
|
|
@@ -134,6 +106,34 @@ import "./chunk-Y4YW5MKL.mjs";
|
|
|
134
106
|
import "./chunk-KZJBCC2H.mjs";
|
|
135
107
|
import "./chunk-T3GWIVAM.mjs";
|
|
136
108
|
import "./chunk-OR5PUD24.mjs";
|
|
109
|
+
import "./chunk-DMASP6FA.mjs";
|
|
110
|
+
import {
|
|
111
|
+
accordion,
|
|
112
|
+
accordionItem
|
|
113
|
+
} from "./chunk-7CTZKPXG.mjs";
|
|
114
|
+
import {
|
|
115
|
+
avatar,
|
|
116
|
+
avatarGroup
|
|
117
|
+
} from "./chunk-Y43NAEAT.mjs";
|
|
118
|
+
import {
|
|
119
|
+
badge
|
|
120
|
+
} from "./chunk-25QTQFHB.mjs";
|
|
121
|
+
import {
|
|
122
|
+
button,
|
|
123
|
+
buttonGroup
|
|
124
|
+
} from "./chunk-HAR22HFA.mjs";
|
|
125
|
+
import "./chunk-CMYR6AOY.mjs";
|
|
126
|
+
import "./chunk-K7LK7NCE.mjs";
|
|
127
|
+
import {
|
|
128
|
+
colorVariants
|
|
129
|
+
} from "./chunk-RO3WUCFF.mjs";
|
|
130
|
+
import {
|
|
131
|
+
absoluteFullClasses,
|
|
132
|
+
baseStyles,
|
|
133
|
+
focusVisibleClasses,
|
|
134
|
+
ringClasses,
|
|
135
|
+
translateCenterClasses
|
|
136
|
+
} from "./chunk-INZK6TTL.mjs";
|
|
137
137
|
|
|
138
138
|
// src/index.ts
|
|
139
139
|
import { cn as cnBase } from "tailwind-variants";
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WIZLPJM6.mjs";
|
|
4
4
|
import "./chunk-XLATS5QU.mjs";
|
|
5
|
-
import "./chunk-INZK6TTL.mjs";
|
|
6
5
|
import "./chunk-WQEDQHKX.mjs";
|
|
7
6
|
import "./chunk-M74ZSXB7.mjs";
|
|
8
7
|
import "./chunk-LQHWK6UV.mjs";
|
|
9
8
|
import "./chunk-37PIXVP4.mjs";
|
|
10
9
|
import "./chunk-M63AFAHO.mjs";
|
|
11
|
-
import "./chunk-DMASP6FA.mjs";
|
|
12
10
|
import "./chunk-CRCBVLUP.mjs";
|
|
13
11
|
import "./chunk-DCEG5LGX.mjs";
|
|
14
12
|
import "./chunk-L2OL7R23.mjs";
|
|
@@ -17,6 +15,8 @@ import "./chunk-Y4YW5MKL.mjs";
|
|
|
17
15
|
import "./chunk-KZJBCC2H.mjs";
|
|
18
16
|
import "./chunk-T3GWIVAM.mjs";
|
|
19
17
|
import "./chunk-OR5PUD24.mjs";
|
|
18
|
+
import "./chunk-DMASP6FA.mjs";
|
|
19
|
+
import "./chunk-INZK6TTL.mjs";
|
|
20
20
|
export {
|
|
21
21
|
nextui
|
|
22
22
|
};
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
utilities
|
|
3
3
|
} from "./chunk-XLATS5QU.mjs";
|
|
4
|
-
import {
|
|
5
|
-
baseStyles
|
|
6
|
-
} from "./chunk-INZK6TTL.mjs";
|
|
7
4
|
import {
|
|
8
5
|
semanticColors
|
|
9
6
|
} from "./chunk-LQHWK6UV.mjs";
|
|
10
7
|
import {
|
|
11
8
|
removeDefaultKeys
|
|
12
9
|
} from "./chunk-37PIXVP4.mjs";
|
|
10
|
+
import {
|
|
11
|
+
commonColors
|
|
12
|
+
} from "./chunk-CRCBVLUP.mjs";
|
|
13
13
|
import {
|
|
14
14
|
animations
|
|
15
15
|
} from "./chunk-DMASP6FA.mjs";
|
|
16
16
|
import {
|
|
17
|
-
|
|
18
|
-
} from "./chunk-
|
|
17
|
+
baseStyles
|
|
18
|
+
} from "./chunk-INZK6TTL.mjs";
|
|
19
19
|
|
|
20
20
|
// src/plugin.ts
|
|
21
21
|
import Color from "color";
|