@nextui-org/theme 2.1.2 → 2.1.3
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-GF5XUX5Z.mjs → chunk-SN5GEHHN.mjs} +13 -8
- package/dist/components/index.js +13 -8
- package/dist/components/index.mjs +1 -1
- package/dist/components/popover.d.ts +24 -0
- package/dist/components/popover.js +13 -8
- package/dist/components/popover.mjs +1 -1
- package/dist/index.js +13 -8
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,6 @@ var popover = tv({
|
|
|
32
32
|
"z-[-1]",
|
|
33
33
|
"absolute",
|
|
34
34
|
"rotate-45",
|
|
35
|
-
"bg-inherit",
|
|
36
35
|
"w-2.5",
|
|
37
36
|
"h-2.5",
|
|
38
37
|
"rounded-sm",
|
|
@@ -71,25 +70,31 @@ var popover = tv({
|
|
|
71
70
|
color: {
|
|
72
71
|
default: {
|
|
73
72
|
base: "bg-content1",
|
|
74
|
-
arrow: "shadow-small"
|
|
73
|
+
arrow: "shadow-small bg-content1"
|
|
75
74
|
},
|
|
76
75
|
foreground: {
|
|
77
|
-
base: colorVariants.solid.foreground
|
|
76
|
+
base: colorVariants.solid.foreground,
|
|
77
|
+
arrow: "bg-foreground"
|
|
78
78
|
},
|
|
79
79
|
primary: {
|
|
80
|
-
base: colorVariants.solid.primary
|
|
80
|
+
base: colorVariants.solid.primary,
|
|
81
|
+
arrow: "bg-primary"
|
|
81
82
|
},
|
|
82
83
|
secondary: {
|
|
83
|
-
base: colorVariants.solid.secondary
|
|
84
|
+
base: colorVariants.solid.secondary,
|
|
85
|
+
arrow: "bg-secondary"
|
|
84
86
|
},
|
|
85
87
|
success: {
|
|
86
|
-
base: colorVariants.solid.success
|
|
88
|
+
base: colorVariants.solid.success,
|
|
89
|
+
arrow: "bg-success"
|
|
87
90
|
},
|
|
88
91
|
warning: {
|
|
89
|
-
base: colorVariants.solid.warning
|
|
92
|
+
base: colorVariants.solid.warning,
|
|
93
|
+
arrow: "bg-warning"
|
|
90
94
|
},
|
|
91
95
|
danger: {
|
|
92
|
-
base: colorVariants.solid.danger
|
|
96
|
+
base: colorVariants.solid.danger,
|
|
97
|
+
arrow: "bg-danger"
|
|
93
98
|
}
|
|
94
99
|
},
|
|
95
100
|
radius: {
|
package/dist/components/index.js
CHANGED
|
@@ -1213,7 +1213,6 @@ var popover = tv({
|
|
|
1213
1213
|
"z-[-1]",
|
|
1214
1214
|
"absolute",
|
|
1215
1215
|
"rotate-45",
|
|
1216
|
-
"bg-inherit",
|
|
1217
1216
|
"w-2.5",
|
|
1218
1217
|
"h-2.5",
|
|
1219
1218
|
"rounded-sm",
|
|
@@ -1252,25 +1251,31 @@ var popover = tv({
|
|
|
1252
1251
|
color: {
|
|
1253
1252
|
default: {
|
|
1254
1253
|
base: "bg-content1",
|
|
1255
|
-
arrow: "shadow-small"
|
|
1254
|
+
arrow: "shadow-small bg-content1"
|
|
1256
1255
|
},
|
|
1257
1256
|
foreground: {
|
|
1258
|
-
base: colorVariants.solid.foreground
|
|
1257
|
+
base: colorVariants.solid.foreground,
|
|
1258
|
+
arrow: "bg-foreground"
|
|
1259
1259
|
},
|
|
1260
1260
|
primary: {
|
|
1261
|
-
base: colorVariants.solid.primary
|
|
1261
|
+
base: colorVariants.solid.primary,
|
|
1262
|
+
arrow: "bg-primary"
|
|
1262
1263
|
},
|
|
1263
1264
|
secondary: {
|
|
1264
|
-
base: colorVariants.solid.secondary
|
|
1265
|
+
base: colorVariants.solid.secondary,
|
|
1266
|
+
arrow: "bg-secondary"
|
|
1265
1267
|
},
|
|
1266
1268
|
success: {
|
|
1267
|
-
base: colorVariants.solid.success
|
|
1269
|
+
base: colorVariants.solid.success,
|
|
1270
|
+
arrow: "bg-success"
|
|
1268
1271
|
},
|
|
1269
1272
|
warning: {
|
|
1270
|
-
base: colorVariants.solid.warning
|
|
1273
|
+
base: colorVariants.solid.warning,
|
|
1274
|
+
arrow: "bg-warning"
|
|
1271
1275
|
},
|
|
1272
1276
|
danger: {
|
|
1273
|
-
base: colorVariants.solid.danger
|
|
1277
|
+
base: colorVariants.solid.danger,
|
|
1278
|
+
arrow: "bg-danger"
|
|
1274
1279
|
}
|
|
1275
1280
|
},
|
|
1276
1281
|
radius: {
|
|
@@ -36,21 +36,27 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
36
36
|
};
|
|
37
37
|
foreground: {
|
|
38
38
|
base: string;
|
|
39
|
+
arrow: string;
|
|
39
40
|
};
|
|
40
41
|
primary: {
|
|
41
42
|
base: string;
|
|
43
|
+
arrow: string;
|
|
42
44
|
};
|
|
43
45
|
secondary: {
|
|
44
46
|
base: string;
|
|
47
|
+
arrow: string;
|
|
45
48
|
};
|
|
46
49
|
success: {
|
|
47
50
|
base: string;
|
|
51
|
+
arrow: string;
|
|
48
52
|
};
|
|
49
53
|
warning: {
|
|
50
54
|
base: string;
|
|
55
|
+
arrow: string;
|
|
51
56
|
};
|
|
52
57
|
danger: {
|
|
53
58
|
base: string;
|
|
59
|
+
arrow: string;
|
|
54
60
|
};
|
|
55
61
|
};
|
|
56
62
|
radius: {
|
|
@@ -125,21 +131,27 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
125
131
|
};
|
|
126
132
|
foreground: {
|
|
127
133
|
base: string;
|
|
134
|
+
arrow: string;
|
|
128
135
|
};
|
|
129
136
|
primary: {
|
|
130
137
|
base: string;
|
|
138
|
+
arrow: string;
|
|
131
139
|
};
|
|
132
140
|
secondary: {
|
|
133
141
|
base: string;
|
|
142
|
+
arrow: string;
|
|
134
143
|
};
|
|
135
144
|
success: {
|
|
136
145
|
base: string;
|
|
146
|
+
arrow: string;
|
|
137
147
|
};
|
|
138
148
|
warning: {
|
|
139
149
|
base: string;
|
|
150
|
+
arrow: string;
|
|
140
151
|
};
|
|
141
152
|
danger: {
|
|
142
153
|
base: string;
|
|
154
|
+
arrow: string;
|
|
143
155
|
};
|
|
144
156
|
};
|
|
145
157
|
radius: {
|
|
@@ -209,21 +221,27 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
209
221
|
};
|
|
210
222
|
foreground: {
|
|
211
223
|
base: string;
|
|
224
|
+
arrow: string;
|
|
212
225
|
};
|
|
213
226
|
primary: {
|
|
214
227
|
base: string;
|
|
228
|
+
arrow: string;
|
|
215
229
|
};
|
|
216
230
|
secondary: {
|
|
217
231
|
base: string;
|
|
232
|
+
arrow: string;
|
|
218
233
|
};
|
|
219
234
|
success: {
|
|
220
235
|
base: string;
|
|
236
|
+
arrow: string;
|
|
221
237
|
};
|
|
222
238
|
warning: {
|
|
223
239
|
base: string;
|
|
240
|
+
arrow: string;
|
|
224
241
|
};
|
|
225
242
|
danger: {
|
|
226
243
|
base: string;
|
|
244
|
+
arrow: string;
|
|
227
245
|
};
|
|
228
246
|
};
|
|
229
247
|
radius: {
|
|
@@ -293,21 +311,27 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
293
311
|
};
|
|
294
312
|
foreground: {
|
|
295
313
|
base: string;
|
|
314
|
+
arrow: string;
|
|
296
315
|
};
|
|
297
316
|
primary: {
|
|
298
317
|
base: string;
|
|
318
|
+
arrow: string;
|
|
299
319
|
};
|
|
300
320
|
secondary: {
|
|
301
321
|
base: string;
|
|
322
|
+
arrow: string;
|
|
302
323
|
};
|
|
303
324
|
success: {
|
|
304
325
|
base: string;
|
|
326
|
+
arrow: string;
|
|
305
327
|
};
|
|
306
328
|
warning: {
|
|
307
329
|
base: string;
|
|
330
|
+
arrow: string;
|
|
308
331
|
};
|
|
309
332
|
danger: {
|
|
310
333
|
base: string;
|
|
334
|
+
arrow: string;
|
|
311
335
|
};
|
|
312
336
|
};
|
|
313
337
|
radius: {
|
|
@@ -223,7 +223,6 @@ var popover = tv({
|
|
|
223
223
|
"z-[-1]",
|
|
224
224
|
"absolute",
|
|
225
225
|
"rotate-45",
|
|
226
|
-
"bg-inherit",
|
|
227
226
|
"w-2.5",
|
|
228
227
|
"h-2.5",
|
|
229
228
|
"rounded-sm",
|
|
@@ -262,25 +261,31 @@ var popover = tv({
|
|
|
262
261
|
color: {
|
|
263
262
|
default: {
|
|
264
263
|
base: "bg-content1",
|
|
265
|
-
arrow: "shadow-small"
|
|
264
|
+
arrow: "shadow-small bg-content1"
|
|
266
265
|
},
|
|
267
266
|
foreground: {
|
|
268
|
-
base: colorVariants.solid.foreground
|
|
267
|
+
base: colorVariants.solid.foreground,
|
|
268
|
+
arrow: "bg-foreground"
|
|
269
269
|
},
|
|
270
270
|
primary: {
|
|
271
|
-
base: colorVariants.solid.primary
|
|
271
|
+
base: colorVariants.solid.primary,
|
|
272
|
+
arrow: "bg-primary"
|
|
272
273
|
},
|
|
273
274
|
secondary: {
|
|
274
|
-
base: colorVariants.solid.secondary
|
|
275
|
+
base: colorVariants.solid.secondary,
|
|
276
|
+
arrow: "bg-secondary"
|
|
275
277
|
},
|
|
276
278
|
success: {
|
|
277
|
-
base: colorVariants.solid.success
|
|
279
|
+
base: colorVariants.solid.success,
|
|
280
|
+
arrow: "bg-success"
|
|
278
281
|
},
|
|
279
282
|
warning: {
|
|
280
|
-
base: colorVariants.solid.warning
|
|
283
|
+
base: colorVariants.solid.warning,
|
|
284
|
+
arrow: "bg-warning"
|
|
281
285
|
},
|
|
282
286
|
danger: {
|
|
283
|
-
base: colorVariants.solid.danger
|
|
287
|
+
base: colorVariants.solid.danger,
|
|
288
|
+
arrow: "bg-danger"
|
|
284
289
|
}
|
|
285
290
|
},
|
|
286
291
|
radius: {
|
package/dist/index.js
CHANGED
|
@@ -1245,7 +1245,6 @@ var popover = tv({
|
|
|
1245
1245
|
"z-[-1]",
|
|
1246
1246
|
"absolute",
|
|
1247
1247
|
"rotate-45",
|
|
1248
|
-
"bg-inherit",
|
|
1249
1248
|
"w-2.5",
|
|
1250
1249
|
"h-2.5",
|
|
1251
1250
|
"rounded-sm",
|
|
@@ -1284,25 +1283,31 @@ var popover = tv({
|
|
|
1284
1283
|
color: {
|
|
1285
1284
|
default: {
|
|
1286
1285
|
base: "bg-content1",
|
|
1287
|
-
arrow: "shadow-small"
|
|
1286
|
+
arrow: "shadow-small bg-content1"
|
|
1288
1287
|
},
|
|
1289
1288
|
foreground: {
|
|
1290
|
-
base: colorVariants.solid.foreground
|
|
1289
|
+
base: colorVariants.solid.foreground,
|
|
1290
|
+
arrow: "bg-foreground"
|
|
1291
1291
|
},
|
|
1292
1292
|
primary: {
|
|
1293
|
-
base: colorVariants.solid.primary
|
|
1293
|
+
base: colorVariants.solid.primary,
|
|
1294
|
+
arrow: "bg-primary"
|
|
1294
1295
|
},
|
|
1295
1296
|
secondary: {
|
|
1296
|
-
base: colorVariants.solid.secondary
|
|
1297
|
+
base: colorVariants.solid.secondary,
|
|
1298
|
+
arrow: "bg-secondary"
|
|
1297
1299
|
},
|
|
1298
1300
|
success: {
|
|
1299
|
-
base: colorVariants.solid.success
|
|
1301
|
+
base: colorVariants.solid.success,
|
|
1302
|
+
arrow: "bg-success"
|
|
1300
1303
|
},
|
|
1301
1304
|
warning: {
|
|
1302
|
-
base: colorVariants.solid.warning
|
|
1305
|
+
base: colorVariants.solid.warning,
|
|
1306
|
+
arrow: "bg-warning"
|
|
1303
1307
|
},
|
|
1304
1308
|
danger: {
|
|
1305
|
-
base: colorVariants.solid.danger
|
|
1309
|
+
base: colorVariants.solid.danger,
|
|
1310
|
+
arrow: "bg-danger"
|
|
1306
1311
|
}
|
|
1307
1312
|
},
|
|
1308
1313
|
radius: {
|
package/dist/index.mjs
CHANGED