@nextui-org/theme 0.0.0-dev-v2-20230622015559 → 0.0.0-dev-v2-20230622203738
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-R4PNBVFX.mjs → chunk-46ZSXBCH.mjs} +9 -9
- package/dist/{chunk-7HXCM7IA.mjs → chunk-52QYM3YD.mjs} +4 -4
- package/dist/{chunk-P22ZXPCY.mjs → chunk-I2CDYXU5.mjs} +9 -5
- package/dist/components/image.d.ts +36 -36
- package/dist/components/image.js +9 -9
- package/dist/components/image.mjs +1 -1
- package/dist/components/index.js +18 -14
- package/dist/components/index.mjs +25 -25
- package/dist/components/pagination.js +9 -5
- package/dist/components/pagination.mjs +1 -1
- package/dist/index.js +18 -14
- package/dist/index.mjs +30 -30
- package/dist/plugin.mjs +5 -5
- package/dist/utilities/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/{chunk-XU7PS67I.mjs → chunk-OQGOVMIP.mjs} +3 -3
|
@@ -34,35 +34,35 @@ var image = tv({
|
|
|
34
34
|
},
|
|
35
35
|
shadow: {
|
|
36
36
|
none: {
|
|
37
|
-
|
|
37
|
+
wrapper: "shadow-none",
|
|
38
38
|
img: "shadow-none"
|
|
39
39
|
},
|
|
40
40
|
sm: {
|
|
41
|
-
|
|
41
|
+
wrapper: "shadow-sm",
|
|
42
42
|
img: "shadow-sm"
|
|
43
43
|
},
|
|
44
44
|
base: {
|
|
45
|
-
|
|
45
|
+
wrapper: "shadow",
|
|
46
46
|
img: "shadow"
|
|
47
47
|
},
|
|
48
48
|
md: {
|
|
49
|
-
|
|
49
|
+
wrapper: "shadow-md",
|
|
50
50
|
img: "shadow-md"
|
|
51
51
|
},
|
|
52
52
|
lg: {
|
|
53
|
-
|
|
53
|
+
wrapper: "shadow-lg",
|
|
54
54
|
img: "shadow-lg"
|
|
55
55
|
},
|
|
56
56
|
xl: {
|
|
57
|
-
|
|
57
|
+
wrapper: "shadow-xl",
|
|
58
58
|
img: "shadow-xl"
|
|
59
59
|
},
|
|
60
60
|
"2xl": {
|
|
61
|
-
|
|
61
|
+
wrapper: "shadow-2xl",
|
|
62
62
|
img: "shadow-2xl"
|
|
63
63
|
},
|
|
64
64
|
inner: {
|
|
65
|
-
|
|
65
|
+
wrapper: "shadow-inner",
|
|
66
66
|
img: "shadow-inner"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
@@ -73,7 +73,7 @@ var image = tv({
|
|
|
73
73
|
},
|
|
74
74
|
showSkeleton: {
|
|
75
75
|
true: {
|
|
76
|
-
|
|
76
|
+
wrapper: [
|
|
77
77
|
"group",
|
|
78
78
|
"relative",
|
|
79
79
|
"overflow-hidden",
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
animations
|
|
3
|
-
} from "./chunk-DMASP6FA.mjs";
|
|
4
1
|
import {
|
|
5
2
|
utilities
|
|
6
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-OQGOVMIP.mjs";
|
|
7
4
|
import {
|
|
8
5
|
baseStyles
|
|
9
6
|
} from "./chunk-TSW7CNKY.mjs";
|
|
@@ -13,6 +10,9 @@ import {
|
|
|
13
10
|
import {
|
|
14
11
|
removeDefaultKeys
|
|
15
12
|
} from "./chunk-37PIXVP4.mjs";
|
|
13
|
+
import {
|
|
14
|
+
animations
|
|
15
|
+
} from "./chunk-DMASP6FA.mjs";
|
|
16
16
|
import {
|
|
17
17
|
commonColors
|
|
18
18
|
} from "./chunk-5LKRUH3Q.mjs";
|
|
@@ -11,15 +11,15 @@ var pagination = tv({
|
|
|
11
11
|
"flex-nowrap",
|
|
12
12
|
"h-fit",
|
|
13
13
|
"max-w-fit",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"p-2.5",
|
|
15
|
+
"-m-2.5",
|
|
16
16
|
"relative",
|
|
17
17
|
"gap-1",
|
|
18
18
|
"items-center",
|
|
19
19
|
"overflow-x-scroll",
|
|
20
20
|
"scrollbar-hide"
|
|
21
21
|
],
|
|
22
|
-
item: ["tap-highlight-transparent"],
|
|
22
|
+
item: ["tap-highlight-transparent", "select-none", "touch-none"],
|
|
23
23
|
prev: "",
|
|
24
24
|
next: "",
|
|
25
25
|
cursor: [
|
|
@@ -29,7 +29,10 @@ var pagination = tv({
|
|
|
29
29
|
"items-center",
|
|
30
30
|
"justify-center",
|
|
31
31
|
"origin-center",
|
|
32
|
-
"left-0"
|
|
32
|
+
"left-0",
|
|
33
|
+
"select-none",
|
|
34
|
+
"touch-none",
|
|
35
|
+
"z-20"
|
|
33
36
|
],
|
|
34
37
|
forwardIcon: "hidden group-hover:block data-[before=true]:rotate-180",
|
|
35
38
|
ellipsis: "group-hover:hidden",
|
|
@@ -178,7 +181,7 @@ var pagination = tv({
|
|
|
178
181
|
isCompact: true,
|
|
179
182
|
variant: "bordered",
|
|
180
183
|
class: {
|
|
181
|
-
item: "[&:not(:first-of-type)]:
|
|
184
|
+
item: "[&:not(:first-of-type)]:ml-[calc(theme(borderWidth.2)*-1)]"
|
|
182
185
|
}
|
|
183
186
|
},
|
|
184
187
|
{
|
|
@@ -308,6 +311,7 @@ var pagination = tv({
|
|
|
308
311
|
"items-center",
|
|
309
312
|
"justify-center",
|
|
310
313
|
"text-default-foreground",
|
|
314
|
+
"data-[focus-visible=true]:z-10",
|
|
311
315
|
"data-[focus-visible=true]:outline-none",
|
|
312
316
|
"data-[focus-visible=true]:ring-2",
|
|
313
317
|
"data-[focus-visible=true]:ring-primary",
|
|
@@ -32,35 +32,35 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
32
32
|
};
|
|
33
33
|
shadow: {
|
|
34
34
|
none: {
|
|
35
|
-
|
|
35
|
+
wrapper: string;
|
|
36
36
|
img: string;
|
|
37
37
|
};
|
|
38
38
|
sm: {
|
|
39
|
-
|
|
39
|
+
wrapper: string;
|
|
40
40
|
img: string;
|
|
41
41
|
};
|
|
42
42
|
base: {
|
|
43
|
-
|
|
43
|
+
wrapper: string;
|
|
44
44
|
img: string;
|
|
45
45
|
};
|
|
46
46
|
md: {
|
|
47
|
-
|
|
47
|
+
wrapper: string;
|
|
48
48
|
img: string;
|
|
49
49
|
};
|
|
50
50
|
lg: {
|
|
51
|
-
|
|
51
|
+
wrapper: string;
|
|
52
52
|
img: string;
|
|
53
53
|
};
|
|
54
54
|
xl: {
|
|
55
|
-
|
|
55
|
+
wrapper: string;
|
|
56
56
|
img: string;
|
|
57
57
|
};
|
|
58
58
|
"2xl": {
|
|
59
|
-
|
|
59
|
+
wrapper: string;
|
|
60
60
|
img: string;
|
|
61
61
|
};
|
|
62
62
|
inner: {
|
|
63
|
-
|
|
63
|
+
wrapper: string;
|
|
64
64
|
img: string;
|
|
65
65
|
};
|
|
66
66
|
};
|
|
@@ -71,7 +71,7 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
71
71
|
};
|
|
72
72
|
showSkeleton: {
|
|
73
73
|
true: {
|
|
74
|
-
|
|
74
|
+
wrapper: string[];
|
|
75
75
|
img: string;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
@@ -102,35 +102,35 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
102
102
|
};
|
|
103
103
|
shadow: {
|
|
104
104
|
none: {
|
|
105
|
-
|
|
105
|
+
wrapper: string;
|
|
106
106
|
img: string;
|
|
107
107
|
};
|
|
108
108
|
sm: {
|
|
109
|
-
|
|
109
|
+
wrapper: string;
|
|
110
110
|
img: string;
|
|
111
111
|
};
|
|
112
112
|
base: {
|
|
113
|
-
|
|
113
|
+
wrapper: string;
|
|
114
114
|
img: string;
|
|
115
115
|
};
|
|
116
116
|
md: {
|
|
117
|
-
|
|
117
|
+
wrapper: string;
|
|
118
118
|
img: string;
|
|
119
119
|
};
|
|
120
120
|
lg: {
|
|
121
|
-
|
|
121
|
+
wrapper: string;
|
|
122
122
|
img: string;
|
|
123
123
|
};
|
|
124
124
|
xl: {
|
|
125
|
-
|
|
125
|
+
wrapper: string;
|
|
126
126
|
img: string;
|
|
127
127
|
};
|
|
128
128
|
"2xl": {
|
|
129
|
-
|
|
129
|
+
wrapper: string;
|
|
130
130
|
img: string;
|
|
131
131
|
};
|
|
132
132
|
inner: {
|
|
133
|
-
|
|
133
|
+
wrapper: string;
|
|
134
134
|
img: string;
|
|
135
135
|
};
|
|
136
136
|
};
|
|
@@ -141,7 +141,7 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
141
141
|
};
|
|
142
142
|
showSkeleton: {
|
|
143
143
|
true: {
|
|
144
|
-
|
|
144
|
+
wrapper: string[];
|
|
145
145
|
img: string;
|
|
146
146
|
};
|
|
147
147
|
};
|
|
@@ -167,35 +167,35 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
167
167
|
};
|
|
168
168
|
shadow: {
|
|
169
169
|
none: {
|
|
170
|
-
|
|
170
|
+
wrapper: string;
|
|
171
171
|
img: string;
|
|
172
172
|
};
|
|
173
173
|
sm: {
|
|
174
|
-
|
|
174
|
+
wrapper: string;
|
|
175
175
|
img: string;
|
|
176
176
|
};
|
|
177
177
|
base: {
|
|
178
|
-
|
|
178
|
+
wrapper: string;
|
|
179
179
|
img: string;
|
|
180
180
|
};
|
|
181
181
|
md: {
|
|
182
|
-
|
|
182
|
+
wrapper: string;
|
|
183
183
|
img: string;
|
|
184
184
|
};
|
|
185
185
|
lg: {
|
|
186
|
-
|
|
186
|
+
wrapper: string;
|
|
187
187
|
img: string;
|
|
188
188
|
};
|
|
189
189
|
xl: {
|
|
190
|
-
|
|
190
|
+
wrapper: string;
|
|
191
191
|
img: string;
|
|
192
192
|
};
|
|
193
193
|
"2xl": {
|
|
194
|
-
|
|
194
|
+
wrapper: string;
|
|
195
195
|
img: string;
|
|
196
196
|
};
|
|
197
197
|
inner: {
|
|
198
|
-
|
|
198
|
+
wrapper: string;
|
|
199
199
|
img: string;
|
|
200
200
|
};
|
|
201
201
|
};
|
|
@@ -206,7 +206,7 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
206
206
|
};
|
|
207
207
|
showSkeleton: {
|
|
208
208
|
true: {
|
|
209
|
-
|
|
209
|
+
wrapper: string[];
|
|
210
210
|
img: string;
|
|
211
211
|
};
|
|
212
212
|
};
|
|
@@ -232,35 +232,35 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
232
232
|
};
|
|
233
233
|
shadow: {
|
|
234
234
|
none: {
|
|
235
|
-
|
|
235
|
+
wrapper: string;
|
|
236
236
|
img: string;
|
|
237
237
|
};
|
|
238
238
|
sm: {
|
|
239
|
-
|
|
239
|
+
wrapper: string;
|
|
240
240
|
img: string;
|
|
241
241
|
};
|
|
242
242
|
base: {
|
|
243
|
-
|
|
243
|
+
wrapper: string;
|
|
244
244
|
img: string;
|
|
245
245
|
};
|
|
246
246
|
md: {
|
|
247
|
-
|
|
247
|
+
wrapper: string;
|
|
248
248
|
img: string;
|
|
249
249
|
};
|
|
250
250
|
lg: {
|
|
251
|
-
|
|
251
|
+
wrapper: string;
|
|
252
252
|
img: string;
|
|
253
253
|
};
|
|
254
254
|
xl: {
|
|
255
|
-
|
|
255
|
+
wrapper: string;
|
|
256
256
|
img: string;
|
|
257
257
|
};
|
|
258
258
|
"2xl": {
|
|
259
|
-
|
|
259
|
+
wrapper: string;
|
|
260
260
|
img: string;
|
|
261
261
|
};
|
|
262
262
|
inner: {
|
|
263
|
-
|
|
263
|
+
wrapper: string;
|
|
264
264
|
img: string;
|
|
265
265
|
};
|
|
266
266
|
};
|
|
@@ -271,7 +271,7 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
271
271
|
};
|
|
272
272
|
showSkeleton: {
|
|
273
273
|
true: {
|
|
274
|
-
|
|
274
|
+
wrapper: string[];
|
|
275
275
|
img: string;
|
|
276
276
|
};
|
|
277
277
|
};
|
package/dist/components/image.js
CHANGED
|
@@ -58,35 +58,35 @@ var image = (0, import_tailwind_variants.tv)({
|
|
|
58
58
|
},
|
|
59
59
|
shadow: {
|
|
60
60
|
none: {
|
|
61
|
-
|
|
61
|
+
wrapper: "shadow-none",
|
|
62
62
|
img: "shadow-none"
|
|
63
63
|
},
|
|
64
64
|
sm: {
|
|
65
|
-
|
|
65
|
+
wrapper: "shadow-sm",
|
|
66
66
|
img: "shadow-sm"
|
|
67
67
|
},
|
|
68
68
|
base: {
|
|
69
|
-
|
|
69
|
+
wrapper: "shadow",
|
|
70
70
|
img: "shadow"
|
|
71
71
|
},
|
|
72
72
|
md: {
|
|
73
|
-
|
|
73
|
+
wrapper: "shadow-md",
|
|
74
74
|
img: "shadow-md"
|
|
75
75
|
},
|
|
76
76
|
lg: {
|
|
77
|
-
|
|
77
|
+
wrapper: "shadow-lg",
|
|
78
78
|
img: "shadow-lg"
|
|
79
79
|
},
|
|
80
80
|
xl: {
|
|
81
|
-
|
|
81
|
+
wrapper: "shadow-xl",
|
|
82
82
|
img: "shadow-xl"
|
|
83
83
|
},
|
|
84
84
|
"2xl": {
|
|
85
|
-
|
|
85
|
+
wrapper: "shadow-2xl",
|
|
86
86
|
img: "shadow-2xl"
|
|
87
87
|
},
|
|
88
88
|
inner: {
|
|
89
|
-
|
|
89
|
+
wrapper: "shadow-inner",
|
|
90
90
|
img: "shadow-inner"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
@@ -97,7 +97,7 @@ var image = (0, import_tailwind_variants.tv)({
|
|
|
97
97
|
},
|
|
98
98
|
showSkeleton: {
|
|
99
99
|
true: {
|
|
100
|
-
|
|
100
|
+
wrapper: [
|
|
101
101
|
"group",
|
|
102
102
|
"relative",
|
|
103
103
|
"overflow-hidden",
|
package/dist/components/index.js
CHANGED
|
@@ -2877,15 +2877,15 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
2877
2877
|
"flex-nowrap",
|
|
2878
2878
|
"h-fit",
|
|
2879
2879
|
"max-w-fit",
|
|
2880
|
-
"
|
|
2881
|
-
"
|
|
2880
|
+
"p-2.5",
|
|
2881
|
+
"-m-2.5",
|
|
2882
2882
|
"relative",
|
|
2883
2883
|
"gap-1",
|
|
2884
2884
|
"items-center",
|
|
2885
2885
|
"overflow-x-scroll",
|
|
2886
2886
|
"scrollbar-hide"
|
|
2887
2887
|
],
|
|
2888
|
-
item: ["tap-highlight-transparent"],
|
|
2888
|
+
item: ["tap-highlight-transparent", "select-none", "touch-none"],
|
|
2889
2889
|
prev: "",
|
|
2890
2890
|
next: "",
|
|
2891
2891
|
cursor: [
|
|
@@ -2895,7 +2895,10 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
2895
2895
|
"items-center",
|
|
2896
2896
|
"justify-center",
|
|
2897
2897
|
"origin-center",
|
|
2898
|
-
"left-0"
|
|
2898
|
+
"left-0",
|
|
2899
|
+
"select-none",
|
|
2900
|
+
"touch-none",
|
|
2901
|
+
"z-20"
|
|
2899
2902
|
],
|
|
2900
2903
|
forwardIcon: "hidden group-hover:block data-[before=true]:rotate-180",
|
|
2901
2904
|
ellipsis: "group-hover:hidden",
|
|
@@ -3044,7 +3047,7 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
3044
3047
|
isCompact: true,
|
|
3045
3048
|
variant: "bordered",
|
|
3046
3049
|
class: {
|
|
3047
|
-
item: "[&:not(:first-of-type)]:
|
|
3050
|
+
item: "[&:not(:first-of-type)]:ml-[calc(theme(borderWidth.2)*-1)]"
|
|
3048
3051
|
}
|
|
3049
3052
|
},
|
|
3050
3053
|
{
|
|
@@ -3174,6 +3177,7 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
3174
3177
|
"items-center",
|
|
3175
3178
|
"justify-center",
|
|
3176
3179
|
"text-default-foreground",
|
|
3180
|
+
"data-[focus-visible=true]:z-10",
|
|
3177
3181
|
"data-[focus-visible=true]:outline-none",
|
|
3178
3182
|
"data-[focus-visible=true]:ring-2",
|
|
3179
3183
|
"data-[focus-visible=true]:ring-primary",
|
|
@@ -5005,35 +5009,35 @@ var image = (0, import_tailwind_variants22.tv)({
|
|
|
5005
5009
|
},
|
|
5006
5010
|
shadow: {
|
|
5007
5011
|
none: {
|
|
5008
|
-
|
|
5012
|
+
wrapper: "shadow-none",
|
|
5009
5013
|
img: "shadow-none"
|
|
5010
5014
|
},
|
|
5011
5015
|
sm: {
|
|
5012
|
-
|
|
5016
|
+
wrapper: "shadow-sm",
|
|
5013
5017
|
img: "shadow-sm"
|
|
5014
5018
|
},
|
|
5015
5019
|
base: {
|
|
5016
|
-
|
|
5020
|
+
wrapper: "shadow",
|
|
5017
5021
|
img: "shadow"
|
|
5018
5022
|
},
|
|
5019
5023
|
md: {
|
|
5020
|
-
|
|
5024
|
+
wrapper: "shadow-md",
|
|
5021
5025
|
img: "shadow-md"
|
|
5022
5026
|
},
|
|
5023
5027
|
lg: {
|
|
5024
|
-
|
|
5028
|
+
wrapper: "shadow-lg",
|
|
5025
5029
|
img: "shadow-lg"
|
|
5026
5030
|
},
|
|
5027
5031
|
xl: {
|
|
5028
|
-
|
|
5032
|
+
wrapper: "shadow-xl",
|
|
5029
5033
|
img: "shadow-xl"
|
|
5030
5034
|
},
|
|
5031
5035
|
"2xl": {
|
|
5032
|
-
|
|
5036
|
+
wrapper: "shadow-2xl",
|
|
5033
5037
|
img: "shadow-2xl"
|
|
5034
5038
|
},
|
|
5035
5039
|
inner: {
|
|
5036
|
-
|
|
5040
|
+
wrapper: "shadow-inner",
|
|
5037
5041
|
img: "shadow-inner"
|
|
5038
5042
|
}
|
|
5039
5043
|
},
|
|
@@ -5044,7 +5048,7 @@ var image = (0, import_tailwind_variants22.tv)({
|
|
|
5044
5048
|
},
|
|
5045
5049
|
showSkeleton: {
|
|
5046
5050
|
true: {
|
|
5047
|
-
|
|
5051
|
+
wrapper: [
|
|
5048
5052
|
"group",
|
|
5049
5053
|
"relative",
|
|
5050
5054
|
"overflow-hidden",
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import "../chunk-PRWEADY4.mjs";
|
|
2
|
+
import {
|
|
3
|
+
snippet
|
|
4
|
+
} from "../chunk-3D7G7PZH.mjs";
|
|
5
|
+
import {
|
|
6
|
+
spacer
|
|
7
|
+
} from "../chunk-3B4SYPW2.mjs";
|
|
2
8
|
import {
|
|
3
9
|
spinner
|
|
4
10
|
} from "../chunk-HOQUCE4N.mjs";
|
|
@@ -14,12 +20,19 @@ import {
|
|
|
14
20
|
import {
|
|
15
21
|
user
|
|
16
22
|
} from "../chunk-ZFYINWFR.mjs";
|
|
23
|
+
import {
|
|
24
|
+
link,
|
|
25
|
+
linkAnchorClasses
|
|
26
|
+
} from "../chunk-I36TDMJB.mjs";
|
|
27
|
+
import {
|
|
28
|
+
modal
|
|
29
|
+
} from "../chunk-AUOEYXLQ.mjs";
|
|
17
30
|
import {
|
|
18
31
|
navbar
|
|
19
32
|
} from "../chunk-A4SRDPJZ.mjs";
|
|
20
33
|
import {
|
|
21
34
|
pagination
|
|
22
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-I2CDYXU5.mjs";
|
|
23
36
|
import {
|
|
24
37
|
popover
|
|
25
38
|
} from "../chunk-SEWAA5ZW.mjs";
|
|
@@ -34,11 +47,11 @@ import {
|
|
|
34
47
|
skeleton
|
|
35
48
|
} from "../chunk-P5E3PNHW.mjs";
|
|
36
49
|
import {
|
|
37
|
-
|
|
38
|
-
} from "../chunk-
|
|
50
|
+
code
|
|
51
|
+
} from "../chunk-576B55VI.mjs";
|
|
39
52
|
import {
|
|
40
|
-
|
|
41
|
-
} from "../chunk-
|
|
53
|
+
divider
|
|
54
|
+
} from "../chunk-2ENRZMQI.mjs";
|
|
42
55
|
import {
|
|
43
56
|
drip
|
|
44
57
|
} from "../chunk-OIVGIOVG.mjs";
|
|
@@ -50,7 +63,7 @@ import {
|
|
|
50
63
|
} from "../chunk-4K3TOAY2.mjs";
|
|
51
64
|
import {
|
|
52
65
|
image
|
|
53
|
-
} from "../chunk-
|
|
66
|
+
} from "../chunk-46ZSXBCH.mjs";
|
|
54
67
|
import {
|
|
55
68
|
input
|
|
56
69
|
} from "../chunk-YEHFHLHQ.mjs";
|
|
@@ -58,12 +71,13 @@ import {
|
|
|
58
71
|
kbd
|
|
59
72
|
} from "../chunk-GBPOVFEX.mjs";
|
|
60
73
|
import {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
} from "../chunk-
|
|
74
|
+
accordion,
|
|
75
|
+
accordionItem
|
|
76
|
+
} from "../chunk-YNGJCDQN.mjs";
|
|
64
77
|
import {
|
|
65
|
-
|
|
66
|
-
|
|
78
|
+
avatar,
|
|
79
|
+
avatarGroup
|
|
80
|
+
} from "../chunk-ZQF2KGKX.mjs";
|
|
67
81
|
import {
|
|
68
82
|
badge
|
|
69
83
|
} from "../chunk-I75M4OOG.mjs";
|
|
@@ -84,20 +98,6 @@ import {
|
|
|
84
98
|
import {
|
|
85
99
|
circularProgress
|
|
86
100
|
} from "../chunk-UPBFQDTD.mjs";
|
|
87
|
-
import {
|
|
88
|
-
code
|
|
89
|
-
} from "../chunk-576B55VI.mjs";
|
|
90
|
-
import {
|
|
91
|
-
divider
|
|
92
|
-
} from "../chunk-2ENRZMQI.mjs";
|
|
93
|
-
import {
|
|
94
|
-
accordion,
|
|
95
|
-
accordionItem
|
|
96
|
-
} from "../chunk-YNGJCDQN.mjs";
|
|
97
|
-
import {
|
|
98
|
-
avatar,
|
|
99
|
-
avatarGroup
|
|
100
|
-
} from "../chunk-ZQF2KGKX.mjs";
|
|
101
101
|
import "../chunk-CMYR6AOY.mjs";
|
|
102
102
|
import "../chunk-K7LK7NCE.mjs";
|
|
103
103
|
import "../chunk-CEW7YOHH.mjs";
|
|
@@ -107,15 +107,15 @@ var pagination = (0, import_tailwind_variants.tv)({
|
|
|
107
107
|
"flex-nowrap",
|
|
108
108
|
"h-fit",
|
|
109
109
|
"max-w-fit",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
110
|
+
"p-2.5",
|
|
111
|
+
"-m-2.5",
|
|
112
112
|
"relative",
|
|
113
113
|
"gap-1",
|
|
114
114
|
"items-center",
|
|
115
115
|
"overflow-x-scroll",
|
|
116
116
|
"scrollbar-hide"
|
|
117
117
|
],
|
|
118
|
-
item: ["tap-highlight-transparent"],
|
|
118
|
+
item: ["tap-highlight-transparent", "select-none", "touch-none"],
|
|
119
119
|
prev: "",
|
|
120
120
|
next: "",
|
|
121
121
|
cursor: [
|
|
@@ -125,7 +125,10 @@ var pagination = (0, import_tailwind_variants.tv)({
|
|
|
125
125
|
"items-center",
|
|
126
126
|
"justify-center",
|
|
127
127
|
"origin-center",
|
|
128
|
-
"left-0"
|
|
128
|
+
"left-0",
|
|
129
|
+
"select-none",
|
|
130
|
+
"touch-none",
|
|
131
|
+
"z-20"
|
|
129
132
|
],
|
|
130
133
|
forwardIcon: "hidden group-hover:block data-[before=true]:rotate-180",
|
|
131
134
|
ellipsis: "group-hover:hidden",
|
|
@@ -274,7 +277,7 @@ var pagination = (0, import_tailwind_variants.tv)({
|
|
|
274
277
|
isCompact: true,
|
|
275
278
|
variant: "bordered",
|
|
276
279
|
class: {
|
|
277
|
-
item: "[&:not(:first-of-type)]:
|
|
280
|
+
item: "[&:not(:first-of-type)]:ml-[calc(theme(borderWidth.2)*-1)]"
|
|
278
281
|
}
|
|
279
282
|
},
|
|
280
283
|
{
|
|
@@ -404,6 +407,7 @@ var pagination = (0, import_tailwind_variants.tv)({
|
|
|
404
407
|
"items-center",
|
|
405
408
|
"justify-center",
|
|
406
409
|
"text-default-foreground",
|
|
410
|
+
"data-[focus-visible=true]:z-10",
|
|
407
411
|
"data-[focus-visible=true]:outline-none",
|
|
408
412
|
"data-[focus-visible=true]:ring-2",
|
|
409
413
|
"data-[focus-visible=true]:ring-primary",
|
package/dist/index.js
CHANGED
|
@@ -2909,15 +2909,15 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
2909
2909
|
"flex-nowrap",
|
|
2910
2910
|
"h-fit",
|
|
2911
2911
|
"max-w-fit",
|
|
2912
|
-
"
|
|
2913
|
-
"
|
|
2912
|
+
"p-2.5",
|
|
2913
|
+
"-m-2.5",
|
|
2914
2914
|
"relative",
|
|
2915
2915
|
"gap-1",
|
|
2916
2916
|
"items-center",
|
|
2917
2917
|
"overflow-x-scroll",
|
|
2918
2918
|
"scrollbar-hide"
|
|
2919
2919
|
],
|
|
2920
|
-
item: ["tap-highlight-transparent"],
|
|
2920
|
+
item: ["tap-highlight-transparent", "select-none", "touch-none"],
|
|
2921
2921
|
prev: "",
|
|
2922
2922
|
next: "",
|
|
2923
2923
|
cursor: [
|
|
@@ -2927,7 +2927,10 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
2927
2927
|
"items-center",
|
|
2928
2928
|
"justify-center",
|
|
2929
2929
|
"origin-center",
|
|
2930
|
-
"left-0"
|
|
2930
|
+
"left-0",
|
|
2931
|
+
"select-none",
|
|
2932
|
+
"touch-none",
|
|
2933
|
+
"z-20"
|
|
2931
2934
|
],
|
|
2932
2935
|
forwardIcon: "hidden group-hover:block data-[before=true]:rotate-180",
|
|
2933
2936
|
ellipsis: "group-hover:hidden",
|
|
@@ -3076,7 +3079,7 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
3076
3079
|
isCompact: true,
|
|
3077
3080
|
variant: "bordered",
|
|
3078
3081
|
class: {
|
|
3079
|
-
item: "[&:not(:first-of-type)]:
|
|
3082
|
+
item: "[&:not(:first-of-type)]:ml-[calc(theme(borderWidth.2)*-1)]"
|
|
3080
3083
|
}
|
|
3081
3084
|
},
|
|
3082
3085
|
{
|
|
@@ -3206,6 +3209,7 @@ var pagination = (0, import_tailwind_variants15.tv)({
|
|
|
3206
3209
|
"items-center",
|
|
3207
3210
|
"justify-center",
|
|
3208
3211
|
"text-default-foreground",
|
|
3212
|
+
"data-[focus-visible=true]:z-10",
|
|
3209
3213
|
"data-[focus-visible=true]:outline-none",
|
|
3210
3214
|
"data-[focus-visible=true]:ring-2",
|
|
3211
3215
|
"data-[focus-visible=true]:ring-primary",
|
|
@@ -5037,35 +5041,35 @@ var image = (0, import_tailwind_variants22.tv)({
|
|
|
5037
5041
|
},
|
|
5038
5042
|
shadow: {
|
|
5039
5043
|
none: {
|
|
5040
|
-
|
|
5044
|
+
wrapper: "shadow-none",
|
|
5041
5045
|
img: "shadow-none"
|
|
5042
5046
|
},
|
|
5043
5047
|
sm: {
|
|
5044
|
-
|
|
5048
|
+
wrapper: "shadow-sm",
|
|
5045
5049
|
img: "shadow-sm"
|
|
5046
5050
|
},
|
|
5047
5051
|
base: {
|
|
5048
|
-
|
|
5052
|
+
wrapper: "shadow",
|
|
5049
5053
|
img: "shadow"
|
|
5050
5054
|
},
|
|
5051
5055
|
md: {
|
|
5052
|
-
|
|
5056
|
+
wrapper: "shadow-md",
|
|
5053
5057
|
img: "shadow-md"
|
|
5054
5058
|
},
|
|
5055
5059
|
lg: {
|
|
5056
|
-
|
|
5060
|
+
wrapper: "shadow-lg",
|
|
5057
5061
|
img: "shadow-lg"
|
|
5058
5062
|
},
|
|
5059
5063
|
xl: {
|
|
5060
|
-
|
|
5064
|
+
wrapper: "shadow-xl",
|
|
5061
5065
|
img: "shadow-xl"
|
|
5062
5066
|
},
|
|
5063
5067
|
"2xl": {
|
|
5064
|
-
|
|
5068
|
+
wrapper: "shadow-2xl",
|
|
5065
5069
|
img: "shadow-2xl"
|
|
5066
5070
|
},
|
|
5067
5071
|
inner: {
|
|
5068
|
-
|
|
5072
|
+
wrapper: "shadow-inner",
|
|
5069
5073
|
img: "shadow-inner"
|
|
5070
5074
|
}
|
|
5071
5075
|
},
|
|
@@ -5076,7 +5080,7 @@ var image = (0, import_tailwind_variants22.tv)({
|
|
|
5076
5080
|
},
|
|
5077
5081
|
showSkeleton: {
|
|
5078
5082
|
true: {
|
|
5079
|
-
|
|
5083
|
+
wrapper: [
|
|
5080
5084
|
"group",
|
|
5081
5085
|
"relative",
|
|
5082
5086
|
"overflow-hidden",
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import "./chunk-PRWEADY4.mjs";
|
|
2
|
+
import {
|
|
3
|
+
snippet
|
|
4
|
+
} from "./chunk-3D7G7PZH.mjs";
|
|
5
|
+
import {
|
|
6
|
+
spacer
|
|
7
|
+
} from "./chunk-3B4SYPW2.mjs";
|
|
2
8
|
import {
|
|
3
9
|
spinner
|
|
4
10
|
} from "./chunk-HOQUCE4N.mjs";
|
|
@@ -14,12 +20,19 @@ import {
|
|
|
14
20
|
import {
|
|
15
21
|
user
|
|
16
22
|
} from "./chunk-ZFYINWFR.mjs";
|
|
23
|
+
import {
|
|
24
|
+
link,
|
|
25
|
+
linkAnchorClasses
|
|
26
|
+
} from "./chunk-I36TDMJB.mjs";
|
|
27
|
+
import {
|
|
28
|
+
modal
|
|
29
|
+
} from "./chunk-AUOEYXLQ.mjs";
|
|
17
30
|
import {
|
|
18
31
|
navbar
|
|
19
32
|
} from "./chunk-A4SRDPJZ.mjs";
|
|
20
33
|
import {
|
|
21
34
|
pagination
|
|
22
|
-
} from "./chunk-
|
|
35
|
+
} from "./chunk-I2CDYXU5.mjs";
|
|
23
36
|
import {
|
|
24
37
|
popover
|
|
25
38
|
} from "./chunk-SEWAA5ZW.mjs";
|
|
@@ -34,11 +47,11 @@ import {
|
|
|
34
47
|
skeleton
|
|
35
48
|
} from "./chunk-P5E3PNHW.mjs";
|
|
36
49
|
import {
|
|
37
|
-
|
|
38
|
-
} from "./chunk-
|
|
50
|
+
code
|
|
51
|
+
} from "./chunk-576B55VI.mjs";
|
|
39
52
|
import {
|
|
40
|
-
|
|
41
|
-
} from "./chunk-
|
|
53
|
+
divider
|
|
54
|
+
} from "./chunk-2ENRZMQI.mjs";
|
|
42
55
|
import {
|
|
43
56
|
drip
|
|
44
57
|
} from "./chunk-OIVGIOVG.mjs";
|
|
@@ -50,7 +63,7 @@ import {
|
|
|
50
63
|
} from "./chunk-4K3TOAY2.mjs";
|
|
51
64
|
import {
|
|
52
65
|
image
|
|
53
|
-
} from "./chunk-
|
|
66
|
+
} from "./chunk-46ZSXBCH.mjs";
|
|
54
67
|
import {
|
|
55
68
|
input
|
|
56
69
|
} from "./chunk-YEHFHLHQ.mjs";
|
|
@@ -58,12 +71,13 @@ import {
|
|
|
58
71
|
kbd
|
|
59
72
|
} from "./chunk-GBPOVFEX.mjs";
|
|
60
73
|
import {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
} from "./chunk-
|
|
74
|
+
accordion,
|
|
75
|
+
accordionItem
|
|
76
|
+
} from "./chunk-YNGJCDQN.mjs";
|
|
64
77
|
import {
|
|
65
|
-
|
|
66
|
-
|
|
78
|
+
avatar,
|
|
79
|
+
avatarGroup
|
|
80
|
+
} from "./chunk-ZQF2KGKX.mjs";
|
|
67
81
|
import {
|
|
68
82
|
badge
|
|
69
83
|
} from "./chunk-I75M4OOG.mjs";
|
|
@@ -84,20 +98,6 @@ import {
|
|
|
84
98
|
import {
|
|
85
99
|
circularProgress
|
|
86
100
|
} from "./chunk-UPBFQDTD.mjs";
|
|
87
|
-
import {
|
|
88
|
-
code
|
|
89
|
-
} from "./chunk-576B55VI.mjs";
|
|
90
|
-
import {
|
|
91
|
-
divider
|
|
92
|
-
} from "./chunk-2ENRZMQI.mjs";
|
|
93
|
-
import {
|
|
94
|
-
accordion,
|
|
95
|
-
accordionItem
|
|
96
|
-
} from "./chunk-YNGJCDQN.mjs";
|
|
97
|
-
import {
|
|
98
|
-
avatar,
|
|
99
|
-
avatarGroup
|
|
100
|
-
} from "./chunk-ZQF2KGKX.mjs";
|
|
101
101
|
import "./chunk-CMYR6AOY.mjs";
|
|
102
102
|
import "./chunk-K7LK7NCE.mjs";
|
|
103
103
|
import {
|
|
@@ -105,12 +105,10 @@ import {
|
|
|
105
105
|
} from "./chunk-CEW7YOHH.mjs";
|
|
106
106
|
import {
|
|
107
107
|
nextui
|
|
108
|
-
} from "./chunk-
|
|
109
|
-
import "./chunk-
|
|
110
|
-
import "./chunk-XU7PS67I.mjs";
|
|
111
|
-
import "./chunk-HJLDXSH7.mjs";
|
|
112
|
-
import "./chunk-DI2L75XK.mjs";
|
|
108
|
+
} from "./chunk-52QYM3YD.mjs";
|
|
109
|
+
import "./chunk-OQGOVMIP.mjs";
|
|
113
110
|
import "./chunk-4Z22WXZX.mjs";
|
|
111
|
+
import "./chunk-HJLDXSH7.mjs";
|
|
114
112
|
import {
|
|
115
113
|
absoluteFullClasses,
|
|
116
114
|
baseStyles,
|
|
@@ -118,6 +116,7 @@ import {
|
|
|
118
116
|
ringClasses,
|
|
119
117
|
translateCenterClasses
|
|
120
118
|
} from "./chunk-TSW7CNKY.mjs";
|
|
119
|
+
import "./chunk-DI2L75XK.mjs";
|
|
121
120
|
import "./chunk-WQEDQHKX.mjs";
|
|
122
121
|
import {
|
|
123
122
|
colors
|
|
@@ -127,6 +126,7 @@ import {
|
|
|
127
126
|
} from "./chunk-RB7R7Z3Y.mjs";
|
|
128
127
|
import "./chunk-37PIXVP4.mjs";
|
|
129
128
|
import "./chunk-M63AFAHO.mjs";
|
|
129
|
+
import "./chunk-DMASP6FA.mjs";
|
|
130
130
|
import {
|
|
131
131
|
commonColors
|
|
132
132
|
} from "./chunk-5LKRUH3Q.mjs";
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-XU7PS67I.mjs";
|
|
6
|
-
import "./chunk-HJLDXSH7.mjs";
|
|
7
|
-
import "./chunk-DI2L75XK.mjs";
|
|
3
|
+
} from "./chunk-52QYM3YD.mjs";
|
|
4
|
+
import "./chunk-OQGOVMIP.mjs";
|
|
8
5
|
import "./chunk-4Z22WXZX.mjs";
|
|
6
|
+
import "./chunk-HJLDXSH7.mjs";
|
|
9
7
|
import "./chunk-TSW7CNKY.mjs";
|
|
8
|
+
import "./chunk-DI2L75XK.mjs";
|
|
10
9
|
import "./chunk-WQEDQHKX.mjs";
|
|
11
10
|
import "./chunk-LBMDDCFV.mjs";
|
|
12
11
|
import "./chunk-RB7R7Z3Y.mjs";
|
|
13
12
|
import "./chunk-37PIXVP4.mjs";
|
|
14
13
|
import "./chunk-M63AFAHO.mjs";
|
|
14
|
+
import "./chunk-DMASP6FA.mjs";
|
|
15
15
|
import "./chunk-5LKRUH3Q.mjs";
|
|
16
16
|
import "./chunk-DCEG5LGX.mjs";
|
|
17
17
|
import "./chunk-L2OL7R23.mjs";
|
package/dist/utilities/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
scrollbar_hide_default
|
|
3
|
+
} from "./chunk-4Z22WXZX.mjs";
|
|
1
4
|
import {
|
|
2
5
|
transition_default
|
|
3
6
|
} from "./chunk-HJLDXSH7.mjs";
|
|
4
7
|
import {
|
|
5
8
|
custom_default
|
|
6
9
|
} from "./chunk-DI2L75XK.mjs";
|
|
7
|
-
import {
|
|
8
|
-
scrollbar_hide_default
|
|
9
|
-
} from "./chunk-4Z22WXZX.mjs";
|
|
10
10
|
|
|
11
11
|
// src/utilities/index.ts
|
|
12
12
|
var utilities = {
|