@nextui-org/theme 0.0.0-dev-v2-20230407155017 → 0.0.0-dev-v2-20230407185204
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-GCEW7NA5.mjs → chunk-7MQD7UA2.mjs} +1 -1
- package/dist/{chunk-YTKG6BAD.mjs → chunk-BMY6CGCY.mjs} +9 -9
- package/dist/{chunk-ODRVDB5Z.mjs → chunk-NOS5D5X5.mjs} +27 -8
- package/dist/colors/index.mjs +3 -3
- package/dist/colors/semantic.mjs +2 -2
- package/dist/colors.mjs +3 -3
- package/dist/components/index.js +27 -8
- package/dist/components/index.mjs +32 -32
- package/dist/components/popover.d.ts +32 -13
- package/dist/components/popover.js +27 -8
- package/dist/components/popover.mjs +1 -1
- package/dist/index.js +27 -8
- package/dist/index.mjs +52 -52
- package/dist/plugin.mjs +6 -6
- package/package.json +1 -1
- package/dist/{chunk-KOJ773XJ.mjs → chunk-Y52EXP4A.mjs} +3 -3
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
animations
|
|
3
|
-
} from "./chunk-7QLHM6OE.mjs";
|
|
4
1
|
import {
|
|
5
2
|
utilities
|
|
6
3
|
} from "./chunk-XLATS5QU.mjs";
|
|
7
4
|
import {
|
|
8
|
-
|
|
9
|
-
} from "./chunk-
|
|
5
|
+
baseStyles
|
|
6
|
+
} from "./chunk-IJCHUO4J.mjs";
|
|
10
7
|
import {
|
|
11
|
-
|
|
12
|
-
} from "./chunk-
|
|
8
|
+
semanticColors
|
|
9
|
+
} from "./chunk-Y52EXP4A.mjs";
|
|
13
10
|
import {
|
|
14
11
|
removeDefaultKeys
|
|
15
12
|
} from "./chunk-37PIXVP4.mjs";
|
|
16
13
|
import {
|
|
17
|
-
|
|
18
|
-
} from "./chunk-
|
|
14
|
+
animations
|
|
15
|
+
} from "./chunk-7QLHM6OE.mjs";
|
|
16
|
+
import {
|
|
17
|
+
commonColors
|
|
18
|
+
} from "./chunk-CRCBVLUP.mjs";
|
|
19
19
|
|
|
20
20
|
// src/plugin.ts
|
|
21
21
|
import Color from "color";
|
|
@@ -22,7 +22,8 @@ var popover = tv({
|
|
|
22
22
|
"text-base",
|
|
23
23
|
"!outline-none"
|
|
24
24
|
],
|
|
25
|
-
trigger: [],
|
|
25
|
+
trigger: ["z-10"],
|
|
26
|
+
backdrop: ["hidden"],
|
|
26
27
|
arrow: [
|
|
27
28
|
"-z-10",
|
|
28
29
|
"absolute",
|
|
@@ -87,18 +88,29 @@ var popover = tv({
|
|
|
87
88
|
xl: { base: "rounded-xl" },
|
|
88
89
|
full: { base: "rounded-full" }
|
|
89
90
|
},
|
|
91
|
+
backdropVariant: {
|
|
92
|
+
transparent: {},
|
|
93
|
+
opaque: {
|
|
94
|
+
backdrop: "bg-black/30 backdrop-opacity-50"
|
|
95
|
+
},
|
|
96
|
+
blur: {
|
|
97
|
+
backdrop: "backdrop-blur-sm backdrop-saturate-150 bg-black/20"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
90
100
|
isFocusVisible: {
|
|
91
101
|
true: {
|
|
92
102
|
base: [...ringClasses]
|
|
93
103
|
}
|
|
94
104
|
},
|
|
95
|
-
|
|
96
|
-
true: {
|
|
97
|
-
},
|
|
98
|
-
isTriggerForeground: {
|
|
99
|
-
true: {},
|
|
100
|
-
false: {
|
|
105
|
+
triggerScaleOnOpen: {
|
|
106
|
+
true: {
|
|
101
107
|
trigger: ["aria-expanded:scale-95", "aria-expanded:opacity-70", "subpixel-antialiased"]
|
|
108
|
+
},
|
|
109
|
+
false: {}
|
|
110
|
+
},
|
|
111
|
+
disableAnimation: {
|
|
112
|
+
true: {
|
|
113
|
+
base: "animate-none"
|
|
102
114
|
}
|
|
103
115
|
}
|
|
104
116
|
},
|
|
@@ -106,8 +118,9 @@ var popover = tv({
|
|
|
106
118
|
variant: "solid",
|
|
107
119
|
color: "neutral",
|
|
108
120
|
radius: "xl",
|
|
121
|
+
backdropVariant: "transparent",
|
|
109
122
|
disableAnimation: false,
|
|
110
|
-
|
|
123
|
+
triggerScaleOnOpen: true
|
|
111
124
|
},
|
|
112
125
|
compoundVariants: [
|
|
113
126
|
{
|
|
@@ -286,6 +299,12 @@ var popover = tv({
|
|
|
286
299
|
variant: "light",
|
|
287
300
|
color: "danger",
|
|
288
301
|
class: { base: colorVariants.light.danger }
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
backdropVariant: ["opaque", "blur"],
|
|
305
|
+
class: {
|
|
306
|
+
backdrop: "block w-full h-full fixed inset-0 -z-30"
|
|
307
|
+
}
|
|
289
308
|
}
|
|
290
309
|
]
|
|
291
310
|
});
|
package/dist/colors/index.mjs
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
colors
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-7MQD7UA2.mjs";
|
|
4
4
|
import {
|
|
5
5
|
semanticColors
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-Y52EXP4A.mjs";
|
|
7
|
+
import "../chunk-37PIXVP4.mjs";
|
|
7
8
|
import "../chunk-M63AFAHO.mjs";
|
|
8
9
|
import {
|
|
9
10
|
commonColors
|
|
@@ -15,7 +16,6 @@ import "../chunk-Y4YW5MKL.mjs";
|
|
|
15
16
|
import "../chunk-KZJBCC2H.mjs";
|
|
16
17
|
import "../chunk-T3GWIVAM.mjs";
|
|
17
18
|
import "../chunk-OR5PUD24.mjs";
|
|
18
|
-
import "../chunk-37PIXVP4.mjs";
|
|
19
19
|
export {
|
|
20
20
|
colors,
|
|
21
21
|
commonColors,
|
package/dist/colors/semantic.mjs
CHANGED
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
semanticColors,
|
|
3
3
|
semanticColorsDark,
|
|
4
4
|
semanticColorsLight
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-Y52EXP4A.mjs";
|
|
6
|
+
import "../chunk-37PIXVP4.mjs";
|
|
6
7
|
import "../chunk-CRCBVLUP.mjs";
|
|
7
8
|
import "../chunk-DCEG5LGX.mjs";
|
|
8
9
|
import "../chunk-L2OL7R23.mjs";
|
|
@@ -11,7 +12,6 @@ import "../chunk-Y4YW5MKL.mjs";
|
|
|
11
12
|
import "../chunk-KZJBCC2H.mjs";
|
|
12
13
|
import "../chunk-T3GWIVAM.mjs";
|
|
13
14
|
import "../chunk-OR5PUD24.mjs";
|
|
14
|
-
import "../chunk-37PIXVP4.mjs";
|
|
15
15
|
export {
|
|
16
16
|
semanticColors,
|
|
17
17
|
semanticColorsDark,
|
package/dist/colors.mjs
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import "./chunk-WQEDQHKX.mjs";
|
|
2
2
|
import {
|
|
3
3
|
colors
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-7MQD7UA2.mjs";
|
|
5
5
|
import {
|
|
6
6
|
semanticColors
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-Y52EXP4A.mjs";
|
|
8
|
+
import "./chunk-37PIXVP4.mjs";
|
|
8
9
|
import "./chunk-M63AFAHO.mjs";
|
|
9
10
|
import {
|
|
10
11
|
commonColors
|
|
@@ -16,7 +17,6 @@ import "./chunk-Y4YW5MKL.mjs";
|
|
|
16
17
|
import "./chunk-KZJBCC2H.mjs";
|
|
17
18
|
import "./chunk-T3GWIVAM.mjs";
|
|
18
19
|
import "./chunk-OR5PUD24.mjs";
|
|
19
|
-
import "./chunk-37PIXVP4.mjs";
|
|
20
20
|
export {
|
|
21
21
|
colors,
|
|
22
22
|
commonColors,
|
package/dist/components/index.js
CHANGED
|
@@ -1172,7 +1172,8 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1172
1172
|
"text-base",
|
|
1173
1173
|
"!outline-none"
|
|
1174
1174
|
],
|
|
1175
|
-
trigger: [],
|
|
1175
|
+
trigger: ["z-10"],
|
|
1176
|
+
backdrop: ["hidden"],
|
|
1176
1177
|
arrow: [
|
|
1177
1178
|
"-z-10",
|
|
1178
1179
|
"absolute",
|
|
@@ -1237,18 +1238,29 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1237
1238
|
xl: { base: "rounded-xl" },
|
|
1238
1239
|
full: { base: "rounded-full" }
|
|
1239
1240
|
},
|
|
1241
|
+
backdropVariant: {
|
|
1242
|
+
transparent: {},
|
|
1243
|
+
opaque: {
|
|
1244
|
+
backdrop: "bg-black/30 backdrop-opacity-50"
|
|
1245
|
+
},
|
|
1246
|
+
blur: {
|
|
1247
|
+
backdrop: "backdrop-blur-sm backdrop-saturate-150 bg-black/20"
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1240
1250
|
isFocusVisible: {
|
|
1241
1251
|
true: {
|
|
1242
1252
|
base: [...ringClasses]
|
|
1243
1253
|
}
|
|
1244
1254
|
},
|
|
1245
|
-
|
|
1246
|
-
true: {
|
|
1247
|
-
},
|
|
1248
|
-
isTriggerForeground: {
|
|
1249
|
-
true: {},
|
|
1250
|
-
false: {
|
|
1255
|
+
triggerScaleOnOpen: {
|
|
1256
|
+
true: {
|
|
1251
1257
|
trigger: ["aria-expanded:scale-95", "aria-expanded:opacity-70", "subpixel-antialiased"]
|
|
1258
|
+
},
|
|
1259
|
+
false: {}
|
|
1260
|
+
},
|
|
1261
|
+
disableAnimation: {
|
|
1262
|
+
true: {
|
|
1263
|
+
base: "animate-none"
|
|
1252
1264
|
}
|
|
1253
1265
|
}
|
|
1254
1266
|
},
|
|
@@ -1256,8 +1268,9 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1256
1268
|
variant: "solid",
|
|
1257
1269
|
color: "neutral",
|
|
1258
1270
|
radius: "xl",
|
|
1271
|
+
backdropVariant: "transparent",
|
|
1259
1272
|
disableAnimation: false,
|
|
1260
|
-
|
|
1273
|
+
triggerScaleOnOpen: true
|
|
1261
1274
|
},
|
|
1262
1275
|
compoundVariants: [
|
|
1263
1276
|
{
|
|
@@ -1436,6 +1449,12 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1436
1449
|
variant: "light",
|
|
1437
1450
|
color: "danger",
|
|
1438
1451
|
class: { base: colorVariants.light.danger }
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
backdropVariant: ["opaque", "blur"],
|
|
1455
|
+
class: {
|
|
1456
|
+
backdrop: "block w-full h-full fixed inset-0 -z-30"
|
|
1457
|
+
}
|
|
1439
1458
|
}
|
|
1440
1459
|
]
|
|
1441
1460
|
});
|
|
@@ -1,34 +1,13 @@
|
|
|
1
1
|
import "../chunk-O2BO77DA.mjs";
|
|
2
|
-
import {
|
|
3
|
-
radio
|
|
4
|
-
} from "../chunk-Y37XC5QN.mjs";
|
|
5
|
-
import {
|
|
6
|
-
snippet
|
|
7
|
-
} from "../chunk-QMP2FDFR.mjs";
|
|
8
|
-
import {
|
|
9
|
-
spinner
|
|
10
|
-
} from "../chunk-CO6ANWRA.mjs";
|
|
11
|
-
import {
|
|
12
|
-
toggle
|
|
13
|
-
} from "../chunk-GJCSKHK6.mjs";
|
|
14
2
|
import {
|
|
15
3
|
user
|
|
16
4
|
} from "../chunk-FS36US4S.mjs";
|
|
17
|
-
import {
|
|
18
|
-
drip
|
|
19
|
-
} from "../chunk-OIVGIOVG.mjs";
|
|
20
|
-
import {
|
|
21
|
-
input
|
|
22
|
-
} from "../chunk-6YCEBN5V.mjs";
|
|
23
|
-
import {
|
|
24
|
-
link
|
|
25
|
-
} from "../chunk-5OE5CWK6.mjs";
|
|
26
5
|
import {
|
|
27
6
|
pagination
|
|
28
7
|
} from "../chunk-7BYRB2YS.mjs";
|
|
29
8
|
import {
|
|
30
9
|
popover
|
|
31
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-NOS5D5X5.mjs";
|
|
32
11
|
import {
|
|
33
12
|
progress
|
|
34
13
|
} from "../chunk-I7DM7NL7.mjs";
|
|
@@ -36,17 +15,17 @@ import {
|
|
|
36
15
|
radioGroup
|
|
37
16
|
} from "../chunk-HHWXPWYN.mjs";
|
|
38
17
|
import {
|
|
39
|
-
|
|
40
|
-
} from "../chunk-
|
|
18
|
+
radio
|
|
19
|
+
} from "../chunk-Y37XC5QN.mjs";
|
|
41
20
|
import {
|
|
42
|
-
|
|
43
|
-
} from "../chunk-
|
|
21
|
+
snippet
|
|
22
|
+
} from "../chunk-QMP2FDFR.mjs";
|
|
44
23
|
import {
|
|
45
|
-
|
|
46
|
-
} from "../chunk-
|
|
24
|
+
spinner
|
|
25
|
+
} from "../chunk-CO6ANWRA.mjs";
|
|
47
26
|
import {
|
|
48
|
-
|
|
49
|
-
} from "../chunk-
|
|
27
|
+
toggle
|
|
28
|
+
} from "../chunk-GJCSKHK6.mjs";
|
|
50
29
|
import {
|
|
51
30
|
checkbox
|
|
52
31
|
} from "../chunk-NJQP2VWT.mjs";
|
|
@@ -60,8 +39,14 @@ import {
|
|
|
60
39
|
code
|
|
61
40
|
} from "../chunk-B5S7HT6N.mjs";
|
|
62
41
|
import {
|
|
63
|
-
|
|
64
|
-
} from "../chunk-
|
|
42
|
+
drip
|
|
43
|
+
} from "../chunk-OIVGIOVG.mjs";
|
|
44
|
+
import {
|
|
45
|
+
input
|
|
46
|
+
} from "../chunk-6YCEBN5V.mjs";
|
|
47
|
+
import {
|
|
48
|
+
link
|
|
49
|
+
} from "../chunk-5OE5CWK6.mjs";
|
|
65
50
|
import {
|
|
66
51
|
accordion
|
|
67
52
|
} from "../chunk-YYBLBQIV.mjs";
|
|
@@ -74,6 +59,21 @@ import {
|
|
|
74
59
|
import {
|
|
75
60
|
badge
|
|
76
61
|
} from "../chunk-5Z3NCB7W.mjs";
|
|
62
|
+
import {
|
|
63
|
+
buttonGroup
|
|
64
|
+
} from "../chunk-VKFQ7EZN.mjs";
|
|
65
|
+
import {
|
|
66
|
+
button
|
|
67
|
+
} from "../chunk-BD2KW4ZD.mjs";
|
|
68
|
+
import {
|
|
69
|
+
card
|
|
70
|
+
} from "../chunk-HESJI33K.mjs";
|
|
71
|
+
import {
|
|
72
|
+
checkboxGroup
|
|
73
|
+
} from "../chunk-U77YMEWM.mjs";
|
|
74
|
+
import {
|
|
75
|
+
accordionItem
|
|
76
|
+
} from "../chunk-RD42SVXB.mjs";
|
|
77
77
|
import "../chunk-CMYR6AOY.mjs";
|
|
78
78
|
import "../chunk-K7LK7NCE.mjs";
|
|
79
79
|
import "../chunk-LGGZKBOO.mjs";
|
|
@@ -87,25 +87,35 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
87
87
|
base: string;
|
|
88
88
|
};
|
|
89
89
|
};
|
|
90
|
+
backdropVariant: {
|
|
91
|
+
transparent: {};
|
|
92
|
+
opaque: {
|
|
93
|
+
backdrop: string;
|
|
94
|
+
};
|
|
95
|
+
blur: {
|
|
96
|
+
backdrop: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
90
99
|
isFocusVisible: {
|
|
91
100
|
true: {
|
|
92
101
|
base: string[];
|
|
93
102
|
};
|
|
94
103
|
};
|
|
95
|
-
|
|
104
|
+
triggerScaleOnOpen: {
|
|
96
105
|
true: {
|
|
97
|
-
|
|
106
|
+
trigger: string[];
|
|
98
107
|
};
|
|
108
|
+
false: {};
|
|
99
109
|
};
|
|
100
|
-
|
|
101
|
-
true: {
|
|
102
|
-
|
|
103
|
-
trigger: string[];
|
|
110
|
+
disableAnimation: {
|
|
111
|
+
true: {
|
|
112
|
+
base: string;
|
|
104
113
|
};
|
|
105
114
|
};
|
|
106
115
|
}, unknown, {
|
|
107
116
|
base: string[];
|
|
108
|
-
trigger:
|
|
117
|
+
trigger: string[];
|
|
118
|
+
backdrop: string[];
|
|
109
119
|
arrow: string[];
|
|
110
120
|
}, undefined, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
111
121
|
variant: {
|
|
@@ -178,20 +188,29 @@ declare const popover: tailwind_variants.TVReturnType<{
|
|
|
178
188
|
base: string;
|
|
179
189
|
};
|
|
180
190
|
};
|
|
191
|
+
backdropVariant: {
|
|
192
|
+
transparent: {};
|
|
193
|
+
opaque: {
|
|
194
|
+
backdrop: string;
|
|
195
|
+
};
|
|
196
|
+
blur: {
|
|
197
|
+
backdrop: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
181
200
|
isFocusVisible: {
|
|
182
201
|
true: {
|
|
183
202
|
base: string[];
|
|
184
203
|
};
|
|
185
204
|
};
|
|
186
|
-
|
|
205
|
+
triggerScaleOnOpen: {
|
|
187
206
|
true: {
|
|
188
|
-
|
|
207
|
+
trigger: string[];
|
|
189
208
|
};
|
|
209
|
+
false: {};
|
|
190
210
|
};
|
|
191
|
-
|
|
192
|
-
true: {
|
|
193
|
-
|
|
194
|
-
trigger: string[];
|
|
211
|
+
disableAnimation: {
|
|
212
|
+
true: {
|
|
213
|
+
base: string;
|
|
195
214
|
};
|
|
196
215
|
};
|
|
197
216
|
}, unknown>>;
|
|
@@ -125,7 +125,8 @@ var popover = (0, import_tailwind_variants.tv)({
|
|
|
125
125
|
"text-base",
|
|
126
126
|
"!outline-none"
|
|
127
127
|
],
|
|
128
|
-
trigger: [],
|
|
128
|
+
trigger: ["z-10"],
|
|
129
|
+
backdrop: ["hidden"],
|
|
129
130
|
arrow: [
|
|
130
131
|
"-z-10",
|
|
131
132
|
"absolute",
|
|
@@ -190,18 +191,29 @@ var popover = (0, import_tailwind_variants.tv)({
|
|
|
190
191
|
xl: { base: "rounded-xl" },
|
|
191
192
|
full: { base: "rounded-full" }
|
|
192
193
|
},
|
|
194
|
+
backdropVariant: {
|
|
195
|
+
transparent: {},
|
|
196
|
+
opaque: {
|
|
197
|
+
backdrop: "bg-black/30 backdrop-opacity-50"
|
|
198
|
+
},
|
|
199
|
+
blur: {
|
|
200
|
+
backdrop: "backdrop-blur-sm backdrop-saturate-150 bg-black/20"
|
|
201
|
+
}
|
|
202
|
+
},
|
|
193
203
|
isFocusVisible: {
|
|
194
204
|
true: {
|
|
195
205
|
base: [...ringClasses]
|
|
196
206
|
}
|
|
197
207
|
},
|
|
198
|
-
|
|
199
|
-
true: {
|
|
200
|
-
},
|
|
201
|
-
isTriggerForeground: {
|
|
202
|
-
true: {},
|
|
203
|
-
false: {
|
|
208
|
+
triggerScaleOnOpen: {
|
|
209
|
+
true: {
|
|
204
210
|
trigger: ["aria-expanded:scale-95", "aria-expanded:opacity-70", "subpixel-antialiased"]
|
|
211
|
+
},
|
|
212
|
+
false: {}
|
|
213
|
+
},
|
|
214
|
+
disableAnimation: {
|
|
215
|
+
true: {
|
|
216
|
+
base: "animate-none"
|
|
205
217
|
}
|
|
206
218
|
}
|
|
207
219
|
},
|
|
@@ -209,8 +221,9 @@ var popover = (0, import_tailwind_variants.tv)({
|
|
|
209
221
|
variant: "solid",
|
|
210
222
|
color: "neutral",
|
|
211
223
|
radius: "xl",
|
|
224
|
+
backdropVariant: "transparent",
|
|
212
225
|
disableAnimation: false,
|
|
213
|
-
|
|
226
|
+
triggerScaleOnOpen: true
|
|
214
227
|
},
|
|
215
228
|
compoundVariants: [
|
|
216
229
|
{
|
|
@@ -389,6 +402,12 @@ var popover = (0, import_tailwind_variants.tv)({
|
|
|
389
402
|
variant: "light",
|
|
390
403
|
color: "danger",
|
|
391
404
|
class: { base: colorVariants.light.danger }
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
backdropVariant: ["opaque", "blur"],
|
|
408
|
+
class: {
|
|
409
|
+
backdrop: "block w-full h-full fixed inset-0 -z-30"
|
|
410
|
+
}
|
|
392
411
|
}
|
|
393
412
|
]
|
|
394
413
|
});
|
package/dist/index.js
CHANGED
|
@@ -1195,7 +1195,8 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1195
1195
|
"text-base",
|
|
1196
1196
|
"!outline-none"
|
|
1197
1197
|
],
|
|
1198
|
-
trigger: [],
|
|
1198
|
+
trigger: ["z-10"],
|
|
1199
|
+
backdrop: ["hidden"],
|
|
1199
1200
|
arrow: [
|
|
1200
1201
|
"-z-10",
|
|
1201
1202
|
"absolute",
|
|
@@ -1260,18 +1261,29 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1260
1261
|
xl: { base: "rounded-xl" },
|
|
1261
1262
|
full: { base: "rounded-full" }
|
|
1262
1263
|
},
|
|
1264
|
+
backdropVariant: {
|
|
1265
|
+
transparent: {},
|
|
1266
|
+
opaque: {
|
|
1267
|
+
backdrop: "bg-black/30 backdrop-opacity-50"
|
|
1268
|
+
},
|
|
1269
|
+
blur: {
|
|
1270
|
+
backdrop: "backdrop-blur-sm backdrop-saturate-150 bg-black/20"
|
|
1271
|
+
}
|
|
1272
|
+
},
|
|
1263
1273
|
isFocusVisible: {
|
|
1264
1274
|
true: {
|
|
1265
1275
|
base: [...ringClasses]
|
|
1266
1276
|
}
|
|
1267
1277
|
},
|
|
1268
|
-
|
|
1269
|
-
true: {
|
|
1270
|
-
},
|
|
1271
|
-
isTriggerForeground: {
|
|
1272
|
-
true: {},
|
|
1273
|
-
false: {
|
|
1278
|
+
triggerScaleOnOpen: {
|
|
1279
|
+
true: {
|
|
1274
1280
|
trigger: ["aria-expanded:scale-95", "aria-expanded:opacity-70", "subpixel-antialiased"]
|
|
1281
|
+
},
|
|
1282
|
+
false: {}
|
|
1283
|
+
},
|
|
1284
|
+
disableAnimation: {
|
|
1285
|
+
true: {
|
|
1286
|
+
base: "animate-none"
|
|
1275
1287
|
}
|
|
1276
1288
|
}
|
|
1277
1289
|
},
|
|
@@ -1279,8 +1291,9 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1279
1291
|
variant: "solid",
|
|
1280
1292
|
color: "neutral",
|
|
1281
1293
|
radius: "xl",
|
|
1294
|
+
backdropVariant: "transparent",
|
|
1282
1295
|
disableAnimation: false,
|
|
1283
|
-
|
|
1296
|
+
triggerScaleOnOpen: true
|
|
1284
1297
|
},
|
|
1285
1298
|
compoundVariants: [
|
|
1286
1299
|
{
|
|
@@ -1459,6 +1472,12 @@ var popover = (0, import_tailwind_variants11.tv)({
|
|
|
1459
1472
|
variant: "light",
|
|
1460
1473
|
color: "danger",
|
|
1461
1474
|
class: { base: colorVariants.light.danger }
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
backdropVariant: ["opaque", "blur"],
|
|
1478
|
+
class: {
|
|
1479
|
+
backdrop: "block w-full h-full fixed inset-0 -z-30"
|
|
1480
|
+
}
|
|
1462
1481
|
}
|
|
1463
1482
|
]
|
|
1464
1483
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
import "./chunk-O2BO77DA.mjs";
|
|
2
|
+
import {
|
|
3
|
+
user
|
|
4
|
+
} from "./chunk-FS36US4S.mjs";
|
|
5
|
+
import {
|
|
6
|
+
pagination
|
|
7
|
+
} from "./chunk-7BYRB2YS.mjs";
|
|
8
|
+
import {
|
|
9
|
+
popover
|
|
10
|
+
} from "./chunk-NOS5D5X5.mjs";
|
|
11
|
+
import {
|
|
12
|
+
progress
|
|
13
|
+
} from "./chunk-I7DM7NL7.mjs";
|
|
14
|
+
import {
|
|
15
|
+
radioGroup
|
|
16
|
+
} from "./chunk-HHWXPWYN.mjs";
|
|
2
17
|
import {
|
|
3
18
|
radio
|
|
4
19
|
} from "./chunk-Y37XC5QN.mjs";
|
|
@@ -12,8 +27,17 @@ import {
|
|
|
12
27
|
toggle
|
|
13
28
|
} from "./chunk-GJCSKHK6.mjs";
|
|
14
29
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
30
|
+
checkbox
|
|
31
|
+
} from "./chunk-NJQP2VWT.mjs";
|
|
32
|
+
import {
|
|
33
|
+
chip
|
|
34
|
+
} from "./chunk-CPOL2EGG.mjs";
|
|
35
|
+
import {
|
|
36
|
+
circularProgress
|
|
37
|
+
} from "./chunk-FK5GDC67.mjs";
|
|
38
|
+
import {
|
|
39
|
+
code
|
|
40
|
+
} from "./chunk-B5S7HT6N.mjs";
|
|
17
41
|
import {
|
|
18
42
|
drip
|
|
19
43
|
} from "./chunk-OIVGIOVG.mjs";
|
|
@@ -24,17 +48,17 @@ import {
|
|
|
24
48
|
link
|
|
25
49
|
} from "./chunk-5OE5CWK6.mjs";
|
|
26
50
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
51
|
+
accordion
|
|
52
|
+
} from "./chunk-YYBLBQIV.mjs";
|
|
29
53
|
import {
|
|
30
|
-
|
|
31
|
-
} from "./chunk-
|
|
54
|
+
avatarGroup
|
|
55
|
+
} from "./chunk-MLH3XSY7.mjs";
|
|
32
56
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
57
|
+
avatar
|
|
58
|
+
} from "./chunk-D4TJV7NY.mjs";
|
|
35
59
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
60
|
+
badge
|
|
61
|
+
} from "./chunk-5Z3NCB7W.mjs";
|
|
38
62
|
import {
|
|
39
63
|
buttonGroup
|
|
40
64
|
} from "./chunk-VKFQ7EZN.mjs";
|
|
@@ -48,30 +72,34 @@ import {
|
|
|
48
72
|
checkboxGroup
|
|
49
73
|
} from "./chunk-U77YMEWM.mjs";
|
|
50
74
|
import {
|
|
51
|
-
|
|
52
|
-
} from "./chunk-
|
|
53
|
-
import
|
|
54
|
-
|
|
55
|
-
} from "./chunk-CPOL2EGG.mjs";
|
|
56
|
-
import {
|
|
57
|
-
circularProgress
|
|
58
|
-
} from "./chunk-FK5GDC67.mjs";
|
|
75
|
+
accordionItem
|
|
76
|
+
} from "./chunk-RD42SVXB.mjs";
|
|
77
|
+
import "./chunk-CMYR6AOY.mjs";
|
|
78
|
+
import "./chunk-K7LK7NCE.mjs";
|
|
59
79
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
80
|
+
colorVariants
|
|
81
|
+
} from "./chunk-LGGZKBOO.mjs";
|
|
62
82
|
import {
|
|
63
83
|
nextui
|
|
64
|
-
} from "./chunk-
|
|
65
|
-
import "./chunk-7QLHM6OE.mjs";
|
|
84
|
+
} from "./chunk-BMY6CGCY.mjs";
|
|
66
85
|
import "./chunk-XLATS5QU.mjs";
|
|
86
|
+
import {
|
|
87
|
+
absoluteFullClasses,
|
|
88
|
+
baseStyles,
|
|
89
|
+
focusVisibleClasses,
|
|
90
|
+
ringClasses,
|
|
91
|
+
translateCenterClasses
|
|
92
|
+
} from "./chunk-IJCHUO4J.mjs";
|
|
67
93
|
import "./chunk-WQEDQHKX.mjs";
|
|
68
94
|
import {
|
|
69
95
|
colors
|
|
70
|
-
} from "./chunk-
|
|
96
|
+
} from "./chunk-7MQD7UA2.mjs";
|
|
71
97
|
import {
|
|
72
98
|
semanticColors
|
|
73
|
-
} from "./chunk-
|
|
99
|
+
} from "./chunk-Y52EXP4A.mjs";
|
|
100
|
+
import "./chunk-37PIXVP4.mjs";
|
|
74
101
|
import "./chunk-M63AFAHO.mjs";
|
|
102
|
+
import "./chunk-7QLHM6OE.mjs";
|
|
75
103
|
import {
|
|
76
104
|
commonColors
|
|
77
105
|
} from "./chunk-CRCBVLUP.mjs";
|
|
@@ -82,34 +110,6 @@ import "./chunk-Y4YW5MKL.mjs";
|
|
|
82
110
|
import "./chunk-KZJBCC2H.mjs";
|
|
83
111
|
import "./chunk-T3GWIVAM.mjs";
|
|
84
112
|
import "./chunk-OR5PUD24.mjs";
|
|
85
|
-
import "./chunk-37PIXVP4.mjs";
|
|
86
|
-
import {
|
|
87
|
-
accordionItem
|
|
88
|
-
} from "./chunk-RD42SVXB.mjs";
|
|
89
|
-
import {
|
|
90
|
-
accordion
|
|
91
|
-
} from "./chunk-YYBLBQIV.mjs";
|
|
92
|
-
import {
|
|
93
|
-
avatarGroup
|
|
94
|
-
} from "./chunk-MLH3XSY7.mjs";
|
|
95
|
-
import {
|
|
96
|
-
avatar
|
|
97
|
-
} from "./chunk-D4TJV7NY.mjs";
|
|
98
|
-
import {
|
|
99
|
-
badge
|
|
100
|
-
} from "./chunk-5Z3NCB7W.mjs";
|
|
101
|
-
import "./chunk-CMYR6AOY.mjs";
|
|
102
|
-
import "./chunk-K7LK7NCE.mjs";
|
|
103
|
-
import {
|
|
104
|
-
colorVariants
|
|
105
|
-
} from "./chunk-LGGZKBOO.mjs";
|
|
106
|
-
import {
|
|
107
|
-
absoluteFullClasses,
|
|
108
|
-
baseStyles,
|
|
109
|
-
focusVisibleClasses,
|
|
110
|
-
ringClasses,
|
|
111
|
-
translateCenterClasses
|
|
112
|
-
} from "./chunk-IJCHUO4J.mjs";
|
|
113
113
|
|
|
114
114
|
// src/index.ts
|
|
115
115
|
import { cn as cnBase } from "tailwind-variants";
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-7QLHM6OE.mjs";
|
|
3
|
+
} from "./chunk-BMY6CGCY.mjs";
|
|
5
4
|
import "./chunk-XLATS5QU.mjs";
|
|
5
|
+
import "./chunk-IJCHUO4J.mjs";
|
|
6
6
|
import "./chunk-WQEDQHKX.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-7MQD7UA2.mjs";
|
|
8
|
+
import "./chunk-Y52EXP4A.mjs";
|
|
9
|
+
import "./chunk-37PIXVP4.mjs";
|
|
9
10
|
import "./chunk-M63AFAHO.mjs";
|
|
11
|
+
import "./chunk-7QLHM6OE.mjs";
|
|
10
12
|
import "./chunk-CRCBVLUP.mjs";
|
|
11
13
|
import "./chunk-DCEG5LGX.mjs";
|
|
12
14
|
import "./chunk-L2OL7R23.mjs";
|
|
@@ -15,8 +17,6 @@ import "./chunk-Y4YW5MKL.mjs";
|
|
|
15
17
|
import "./chunk-KZJBCC2H.mjs";
|
|
16
18
|
import "./chunk-T3GWIVAM.mjs";
|
|
17
19
|
import "./chunk-OR5PUD24.mjs";
|
|
18
|
-
import "./chunk-37PIXVP4.mjs";
|
|
19
|
-
import "./chunk-IJCHUO4J.mjs";
|
|
20
20
|
export {
|
|
21
21
|
nextui
|
|
22
22
|
};
|
package/package.json
CHANGED