@nextui-org/theme 0.0.0-dev-v2-20230528153341 → 0.0.0-dev-v2-20230529224901
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-AWAXOLMA.mjs → chunk-ADHGFNBD.mjs} +14 -6
- package/dist/{chunk-QGXXHT3T.mjs → chunk-FE6D6PKC.mjs} +9 -9
- package/dist/{chunk-6QXUR7SY.mjs → chunk-FPQXJXRL.mjs} +3 -3
- package/dist/{chunk-7PRU5S35.mjs → chunk-NU4XY237.mjs} +2 -2
- package/dist/{chunk-ZHKZR5C3.mjs → chunk-PAR74N2D.mjs} +17 -17
- package/dist/colors/common.mjs +2 -2
- package/dist/colors/index.mjs +5 -5
- package/dist/colors/semantic.mjs +4 -4
- package/dist/colors.mjs +5 -5
- package/dist/components/index.js +31 -23
- package/dist/components/index.mjs +26 -26
- package/dist/components/input.js +17 -17
- package/dist/components/input.mjs +1 -1
- package/dist/components/snippet.js +14 -6
- package/dist/components/snippet.mjs +1 -1
- package/dist/index.js +31 -23
- package/dist/index.mjs +42 -42
- package/dist/plugin.mjs +9 -9
- package/package.json +1 -1
- package/dist/{chunk-CRCBVLUP.mjs → chunk-TPAK7DPZ.mjs} +3 -3
|
@@ -6,11 +6,19 @@ import {
|
|
|
6
6
|
import { tv } from "tailwind-variants";
|
|
7
7
|
var snippet = tv({
|
|
8
8
|
slots: {
|
|
9
|
-
base: "inline-flex items-center justify-between rounded-md",
|
|
10
|
-
pre: "bg-transparent text-inherit font-mono whitespace-
|
|
9
|
+
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
10
|
+
pre: "bg-transparent text-inherit font-mono font-normal inline-block whitespace-nowrap",
|
|
11
11
|
content: "flex flex-col",
|
|
12
12
|
symbol: "select-none",
|
|
13
|
-
copyButton: [
|
|
13
|
+
copyButton: [
|
|
14
|
+
"group",
|
|
15
|
+
"relative",
|
|
16
|
+
"z-10",
|
|
17
|
+
"ml-2",
|
|
18
|
+
"text-lg",
|
|
19
|
+
"text-inherit",
|
|
20
|
+
"data-[hover=true]:bg-transparent"
|
|
21
|
+
],
|
|
14
22
|
copyIcon: [
|
|
15
23
|
"absolute text-inherit opacity-100 scale-100 group-data-[copied=true]:opacity-0 group-data-[copied=true]:scale-50"
|
|
16
24
|
],
|
|
@@ -53,13 +61,13 @@ var snippet = tv({
|
|
|
53
61
|
base: "px-2 py-1 text-sm"
|
|
54
62
|
},
|
|
55
63
|
md: {
|
|
56
|
-
base: "px-3 py-1.5 text-
|
|
64
|
+
base: "px-3 py-1.5 text-sm"
|
|
57
65
|
},
|
|
58
66
|
lg: {
|
|
59
|
-
base: "px-4 py-2 text-
|
|
67
|
+
base: "px-4 py-2 text-base"
|
|
60
68
|
},
|
|
61
69
|
xl: {
|
|
62
|
-
base: "px-4 py-2 text-
|
|
70
|
+
base: "px-4 py-2 text-lg"
|
|
63
71
|
}
|
|
64
72
|
},
|
|
65
73
|
radius: {
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
+
import {
|
|
2
|
+
semanticColors
|
|
3
|
+
} from "./chunk-FPQXJXRL.mjs";
|
|
4
|
+
import {
|
|
5
|
+
commonColors
|
|
6
|
+
} from "./chunk-TPAK7DPZ.mjs";
|
|
7
|
+
import {
|
|
8
|
+
animations
|
|
9
|
+
} from "./chunk-DMASP6FA.mjs";
|
|
1
10
|
import {
|
|
2
11
|
utilities
|
|
3
12
|
} from "./chunk-XLATS5QU.mjs";
|
|
4
13
|
import {
|
|
5
14
|
baseStyles
|
|
6
15
|
} from "./chunk-INZK6TTL.mjs";
|
|
7
|
-
import {
|
|
8
|
-
semanticColors
|
|
9
|
-
} from "./chunk-6QXUR7SY.mjs";
|
|
10
16
|
import {
|
|
11
17
|
removeDefaultKeys
|
|
12
18
|
} from "./chunk-37PIXVP4.mjs";
|
|
13
|
-
import {
|
|
14
|
-
animations
|
|
15
|
-
} from "./chunk-DMASP6FA.mjs";
|
|
16
|
-
import {
|
|
17
|
-
commonColors
|
|
18
|
-
} from "./chunk-CRCBVLUP.mjs";
|
|
19
19
|
|
|
20
20
|
// src/plugin.ts
|
|
21
21
|
import Color from "color";
|
|
@@ -6,7 +6,7 @@ var input = tv({
|
|
|
6
6
|
label: "block text-sm font-medium text-default-600",
|
|
7
7
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
8
8
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
9
|
-
input: "w-full h-full !bg-transparent outline-none placeholder:text-default-500",
|
|
9
|
+
input: "w-full h-full font-normal !bg-transparent outline-none placeholder:text-default-500",
|
|
10
10
|
clearButton: [
|
|
11
11
|
"z-10",
|
|
12
12
|
"hidden",
|
|
@@ -36,7 +36,7 @@ var input = tv({
|
|
|
36
36
|
inputWrapper: [
|
|
37
37
|
"bg-default-100",
|
|
38
38
|
"data-[hover=true]:bg-default-200",
|
|
39
|
-
"
|
|
39
|
+
"group-data-[focused=true]:bg-default-100"
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
faded: {
|
|
@@ -52,7 +52,7 @@ var input = tv({
|
|
|
52
52
|
"border-2",
|
|
53
53
|
"border-default-200",
|
|
54
54
|
"data-[hover=true]:border-default-400",
|
|
55
|
-
"
|
|
55
|
+
"group-data-[focused=true]:border-foreground"
|
|
56
56
|
]
|
|
57
57
|
},
|
|
58
58
|
underlined: {
|
|
@@ -76,7 +76,7 @@ var input = tv({
|
|
|
76
76
|
"after:-translate-x-1/2",
|
|
77
77
|
"after:-bottom-[2px]",
|
|
78
78
|
"after:h-[2px]",
|
|
79
|
-
"
|
|
79
|
+
"group-data-[focused=true]:after:w-full"
|
|
80
80
|
]
|
|
81
81
|
}
|
|
82
82
|
},
|
|
@@ -240,7 +240,7 @@ var input = tv({
|
|
|
240
240
|
"bg-primary-50",
|
|
241
241
|
"data-[hover=true]:bg-primary-100",
|
|
242
242
|
"text-primary",
|
|
243
|
-
"
|
|
243
|
+
"group-data-[focused=true]:bg-primary-50",
|
|
244
244
|
"placeholder:text-primary"
|
|
245
245
|
],
|
|
246
246
|
input: "placeholder:text-primary"
|
|
@@ -252,9 +252,9 @@ var input = tv({
|
|
|
252
252
|
class: {
|
|
253
253
|
inputWrapper: [
|
|
254
254
|
"bg-secondary-50",
|
|
255
|
-
"data-[hover=true]:bg-secondary-100",
|
|
256
255
|
"text-secondary",
|
|
257
|
-
"
|
|
256
|
+
"data-[hover=true]:bg-secondary-100",
|
|
257
|
+
"group-data-[focused=true]:bg-secondary-50",
|
|
258
258
|
"placeholder:text-secondary"
|
|
259
259
|
],
|
|
260
260
|
input: "placeholder:text-secondary"
|
|
@@ -268,7 +268,7 @@ var input = tv({
|
|
|
268
268
|
"bg-success-50",
|
|
269
269
|
"data-[hover=true]:bg-success-100",
|
|
270
270
|
"text-success",
|
|
271
|
-
"
|
|
271
|
+
"group-data-[focused=true]:bg-success-50",
|
|
272
272
|
"placeholder:text-success"
|
|
273
273
|
],
|
|
274
274
|
input: "placeholder:text-success"
|
|
@@ -282,7 +282,7 @@ var input = tv({
|
|
|
282
282
|
"bg-warning-50",
|
|
283
283
|
"data-[hover=true]:bg-warning-100",
|
|
284
284
|
"text-warning",
|
|
285
|
-
"
|
|
285
|
+
"group-data-[focused=true]:bg-warning-50",
|
|
286
286
|
"placeholder:text-warning"
|
|
287
287
|
],
|
|
288
288
|
input: "placeholder:text-warning"
|
|
@@ -296,7 +296,7 @@ var input = tv({
|
|
|
296
296
|
"bg-danger-50",
|
|
297
297
|
"data-[hover=true]:bg-danger-100",
|
|
298
298
|
"text-danger",
|
|
299
|
-
"
|
|
299
|
+
"group-data-[focused=true]:bg-danger-50",
|
|
300
300
|
"placeholder:text-danger"
|
|
301
301
|
],
|
|
302
302
|
input: "placeholder:text-danger"
|
|
@@ -381,35 +381,35 @@ var input = tv({
|
|
|
381
381
|
variant: "bordered",
|
|
382
382
|
color: "primary",
|
|
383
383
|
class: {
|
|
384
|
-
inputWrapper: "
|
|
384
|
+
inputWrapper: "group-data-[focused=true]:border-primary"
|
|
385
385
|
}
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
388
|
variant: "bordered",
|
|
389
389
|
color: "secondary",
|
|
390
390
|
class: {
|
|
391
|
-
inputWrapper: "
|
|
391
|
+
inputWrapper: "group-data-[focused=true]:border-secondary"
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
394
|
{
|
|
395
395
|
variant: "bordered",
|
|
396
396
|
color: "success",
|
|
397
397
|
class: {
|
|
398
|
-
inputWrapper: "
|
|
398
|
+
inputWrapper: "group-data-[focused=true]:border-success"
|
|
399
399
|
}
|
|
400
400
|
},
|
|
401
401
|
{
|
|
402
402
|
variant: "bordered",
|
|
403
403
|
color: "warning",
|
|
404
404
|
class: {
|
|
405
|
-
inputWrapper: "
|
|
405
|
+
inputWrapper: "group-data-[focused=true]:border-warning"
|
|
406
406
|
}
|
|
407
407
|
},
|
|
408
408
|
{
|
|
409
409
|
variant: "bordered",
|
|
410
410
|
color: "danger",
|
|
411
411
|
class: {
|
|
412
|
-
inputWrapper: "
|
|
412
|
+
inputWrapper: "group-data-[focused=true]:border-danger"
|
|
413
413
|
}
|
|
414
414
|
},
|
|
415
415
|
{
|
|
@@ -474,7 +474,7 @@ var input = tv({
|
|
|
474
474
|
inputWrapper: [
|
|
475
475
|
"bg-danger-50",
|
|
476
476
|
"data-[hover=true]:bg-danger-100",
|
|
477
|
-
"
|
|
477
|
+
"group-data-[focused=true]:bg-danger-50"
|
|
478
478
|
]
|
|
479
479
|
}
|
|
480
480
|
},
|
|
@@ -482,7 +482,7 @@ var input = tv({
|
|
|
482
482
|
isInvalid: true,
|
|
483
483
|
variant: "bordered",
|
|
484
484
|
class: {
|
|
485
|
-
inputWrapper: "!border-danger
|
|
485
|
+
inputWrapper: "!border-danger group-data-[focused=true]:border-danger"
|
|
486
486
|
}
|
|
487
487
|
},
|
|
488
488
|
{
|
package/dist/colors/common.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
commonColors
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
3
|
+
} from "../chunk-TPAK7DPZ.mjs";
|
|
5
4
|
import "../chunk-L2OL7R23.mjs";
|
|
6
5
|
import "../chunk-YZYGFPNK.mjs";
|
|
7
6
|
import "../chunk-Y4YW5MKL.mjs";
|
|
8
7
|
import "../chunk-KZJBCC2H.mjs";
|
|
9
8
|
import "../chunk-T3GWIVAM.mjs";
|
|
10
9
|
import "../chunk-OR5PUD24.mjs";
|
|
10
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
11
11
|
export {
|
|
12
12
|
commonColors
|
|
13
13
|
};
|
package/dist/colors/index.mjs
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
colors
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-NU4XY237.mjs";
|
|
4
4
|
import {
|
|
5
5
|
semanticColors
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-37PIXVP4.mjs";
|
|
6
|
+
} from "../chunk-FPQXJXRL.mjs";
|
|
8
7
|
import "../chunk-M63AFAHO.mjs";
|
|
9
8
|
import {
|
|
10
9
|
commonColors
|
|
11
|
-
} from "../chunk-
|
|
12
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
10
|
+
} from "../chunk-TPAK7DPZ.mjs";
|
|
13
11
|
import "../chunk-L2OL7R23.mjs";
|
|
14
12
|
import "../chunk-YZYGFPNK.mjs";
|
|
15
13
|
import "../chunk-Y4YW5MKL.mjs";
|
|
16
14
|
import "../chunk-KZJBCC2H.mjs";
|
|
17
15
|
import "../chunk-T3GWIVAM.mjs";
|
|
18
16
|
import "../chunk-OR5PUD24.mjs";
|
|
17
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
18
|
+
import "../chunk-37PIXVP4.mjs";
|
|
19
19
|
export {
|
|
20
20
|
colors,
|
|
21
21
|
commonColors,
|
package/dist/colors/semantic.mjs
CHANGED
|
@@ -2,16 +2,16 @@ import {
|
|
|
2
2
|
semanticColors,
|
|
3
3
|
semanticColorsDark,
|
|
4
4
|
semanticColorsLight
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-CRCBVLUP.mjs";
|
|
8
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
5
|
+
} from "../chunk-FPQXJXRL.mjs";
|
|
6
|
+
import "../chunk-TPAK7DPZ.mjs";
|
|
9
7
|
import "../chunk-L2OL7R23.mjs";
|
|
10
8
|
import "../chunk-YZYGFPNK.mjs";
|
|
11
9
|
import "../chunk-Y4YW5MKL.mjs";
|
|
12
10
|
import "../chunk-KZJBCC2H.mjs";
|
|
13
11
|
import "../chunk-T3GWIVAM.mjs";
|
|
14
12
|
import "../chunk-OR5PUD24.mjs";
|
|
13
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
14
|
+
import "../chunk-37PIXVP4.mjs";
|
|
15
15
|
export {
|
|
16
16
|
semanticColors,
|
|
17
17
|
semanticColorsDark,
|
package/dist/colors.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import "./chunk-WQEDQHKX.mjs";
|
|
2
2
|
import {
|
|
3
3
|
colors
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-NU4XY237.mjs";
|
|
5
5
|
import {
|
|
6
6
|
semanticColors
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-37PIXVP4.mjs";
|
|
7
|
+
} from "./chunk-FPQXJXRL.mjs";
|
|
9
8
|
import "./chunk-M63AFAHO.mjs";
|
|
10
9
|
import {
|
|
11
10
|
commonColors
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
11
|
+
} from "./chunk-TPAK7DPZ.mjs";
|
|
14
12
|
import "./chunk-L2OL7R23.mjs";
|
|
15
13
|
import "./chunk-YZYGFPNK.mjs";
|
|
16
14
|
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-DCEG5LGX.mjs";
|
|
19
|
+
import "./chunk-37PIXVP4.mjs";
|
|
20
20
|
export {
|
|
21
21
|
colors,
|
|
22
22
|
commonColors,
|
package/dist/components/index.js
CHANGED
|
@@ -1551,11 +1551,19 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1551
1551
|
var import_tailwind_variants10 = require("tailwind-variants");
|
|
1552
1552
|
var snippet = (0, import_tailwind_variants10.tv)({
|
|
1553
1553
|
slots: {
|
|
1554
|
-
base: "inline-flex items-center justify-between rounded-md",
|
|
1555
|
-
pre: "bg-transparent text-inherit font-mono whitespace-
|
|
1554
|
+
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
1555
|
+
pre: "bg-transparent text-inherit font-mono font-normal inline-block whitespace-nowrap",
|
|
1556
1556
|
content: "flex flex-col",
|
|
1557
1557
|
symbol: "select-none",
|
|
1558
|
-
copyButton: [
|
|
1558
|
+
copyButton: [
|
|
1559
|
+
"group",
|
|
1560
|
+
"relative",
|
|
1561
|
+
"z-10",
|
|
1562
|
+
"ml-2",
|
|
1563
|
+
"text-lg",
|
|
1564
|
+
"text-inherit",
|
|
1565
|
+
"data-[hover=true]:bg-transparent"
|
|
1566
|
+
],
|
|
1559
1567
|
copyIcon: [
|
|
1560
1568
|
"absolute text-inherit opacity-100 scale-100 group-data-[copied=true]:opacity-0 group-data-[copied=true]:scale-50"
|
|
1561
1569
|
],
|
|
@@ -1598,13 +1606,13 @@ var snippet = (0, import_tailwind_variants10.tv)({
|
|
|
1598
1606
|
base: "px-2 py-1 text-sm"
|
|
1599
1607
|
},
|
|
1600
1608
|
md: {
|
|
1601
|
-
base: "px-3 py-1.5 text-
|
|
1609
|
+
base: "px-3 py-1.5 text-sm"
|
|
1602
1610
|
},
|
|
1603
1611
|
lg: {
|
|
1604
|
-
base: "px-4 py-2 text-
|
|
1612
|
+
base: "px-4 py-2 text-base"
|
|
1605
1613
|
},
|
|
1606
1614
|
xl: {
|
|
1607
|
-
base: "px-4 py-2 text-
|
|
1615
|
+
base: "px-4 py-2 text-lg"
|
|
1608
1616
|
}
|
|
1609
1617
|
},
|
|
1610
1618
|
radius: {
|
|
@@ -3848,7 +3856,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3848
3856
|
label: "block text-sm font-medium text-default-600",
|
|
3849
3857
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
3850
3858
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
3851
|
-
input: "w-full h-full !bg-transparent outline-none placeholder:text-default-500",
|
|
3859
|
+
input: "w-full h-full font-normal !bg-transparent outline-none placeholder:text-default-500",
|
|
3852
3860
|
clearButton: [
|
|
3853
3861
|
"z-10",
|
|
3854
3862
|
"hidden",
|
|
@@ -3878,7 +3886,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3878
3886
|
inputWrapper: [
|
|
3879
3887
|
"bg-default-100",
|
|
3880
3888
|
"data-[hover=true]:bg-default-200",
|
|
3881
|
-
"
|
|
3889
|
+
"group-data-[focused=true]:bg-default-100"
|
|
3882
3890
|
]
|
|
3883
3891
|
},
|
|
3884
3892
|
faded: {
|
|
@@ -3894,7 +3902,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3894
3902
|
"border-2",
|
|
3895
3903
|
"border-default-200",
|
|
3896
3904
|
"data-[hover=true]:border-default-400",
|
|
3897
|
-
"
|
|
3905
|
+
"group-data-[focused=true]:border-foreground"
|
|
3898
3906
|
]
|
|
3899
3907
|
},
|
|
3900
3908
|
underlined: {
|
|
@@ -3918,7 +3926,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3918
3926
|
"after:-translate-x-1/2",
|
|
3919
3927
|
"after:-bottom-[2px]",
|
|
3920
3928
|
"after:h-[2px]",
|
|
3921
|
-
"
|
|
3929
|
+
"group-data-[focused=true]:after:w-full"
|
|
3922
3930
|
]
|
|
3923
3931
|
}
|
|
3924
3932
|
},
|
|
@@ -4082,7 +4090,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4082
4090
|
"bg-primary-50",
|
|
4083
4091
|
"data-[hover=true]:bg-primary-100",
|
|
4084
4092
|
"text-primary",
|
|
4085
|
-
"
|
|
4093
|
+
"group-data-[focused=true]:bg-primary-50",
|
|
4086
4094
|
"placeholder:text-primary"
|
|
4087
4095
|
],
|
|
4088
4096
|
input: "placeholder:text-primary"
|
|
@@ -4094,9 +4102,9 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4094
4102
|
class: {
|
|
4095
4103
|
inputWrapper: [
|
|
4096
4104
|
"bg-secondary-50",
|
|
4097
|
-
"data-[hover=true]:bg-secondary-100",
|
|
4098
4105
|
"text-secondary",
|
|
4099
|
-
"
|
|
4106
|
+
"data-[hover=true]:bg-secondary-100",
|
|
4107
|
+
"group-data-[focused=true]:bg-secondary-50",
|
|
4100
4108
|
"placeholder:text-secondary"
|
|
4101
4109
|
],
|
|
4102
4110
|
input: "placeholder:text-secondary"
|
|
@@ -4110,7 +4118,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4110
4118
|
"bg-success-50",
|
|
4111
4119
|
"data-[hover=true]:bg-success-100",
|
|
4112
4120
|
"text-success",
|
|
4113
|
-
"
|
|
4121
|
+
"group-data-[focused=true]:bg-success-50",
|
|
4114
4122
|
"placeholder:text-success"
|
|
4115
4123
|
],
|
|
4116
4124
|
input: "placeholder:text-success"
|
|
@@ -4124,7 +4132,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4124
4132
|
"bg-warning-50",
|
|
4125
4133
|
"data-[hover=true]:bg-warning-100",
|
|
4126
4134
|
"text-warning",
|
|
4127
|
-
"
|
|
4135
|
+
"group-data-[focused=true]:bg-warning-50",
|
|
4128
4136
|
"placeholder:text-warning"
|
|
4129
4137
|
],
|
|
4130
4138
|
input: "placeholder:text-warning"
|
|
@@ -4138,7 +4146,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4138
4146
|
"bg-danger-50",
|
|
4139
4147
|
"data-[hover=true]:bg-danger-100",
|
|
4140
4148
|
"text-danger",
|
|
4141
|
-
"
|
|
4149
|
+
"group-data-[focused=true]:bg-danger-50",
|
|
4142
4150
|
"placeholder:text-danger"
|
|
4143
4151
|
],
|
|
4144
4152
|
input: "placeholder:text-danger"
|
|
@@ -4223,35 +4231,35 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4223
4231
|
variant: "bordered",
|
|
4224
4232
|
color: "primary",
|
|
4225
4233
|
class: {
|
|
4226
|
-
inputWrapper: "
|
|
4234
|
+
inputWrapper: "group-data-[focused=true]:border-primary"
|
|
4227
4235
|
}
|
|
4228
4236
|
},
|
|
4229
4237
|
{
|
|
4230
4238
|
variant: "bordered",
|
|
4231
4239
|
color: "secondary",
|
|
4232
4240
|
class: {
|
|
4233
|
-
inputWrapper: "
|
|
4241
|
+
inputWrapper: "group-data-[focused=true]:border-secondary"
|
|
4234
4242
|
}
|
|
4235
4243
|
},
|
|
4236
4244
|
{
|
|
4237
4245
|
variant: "bordered",
|
|
4238
4246
|
color: "success",
|
|
4239
4247
|
class: {
|
|
4240
|
-
inputWrapper: "
|
|
4248
|
+
inputWrapper: "group-data-[focused=true]:border-success"
|
|
4241
4249
|
}
|
|
4242
4250
|
},
|
|
4243
4251
|
{
|
|
4244
4252
|
variant: "bordered",
|
|
4245
4253
|
color: "warning",
|
|
4246
4254
|
class: {
|
|
4247
|
-
inputWrapper: "
|
|
4255
|
+
inputWrapper: "group-data-[focused=true]:border-warning"
|
|
4248
4256
|
}
|
|
4249
4257
|
},
|
|
4250
4258
|
{
|
|
4251
4259
|
variant: "bordered",
|
|
4252
4260
|
color: "danger",
|
|
4253
4261
|
class: {
|
|
4254
|
-
inputWrapper: "
|
|
4262
|
+
inputWrapper: "group-data-[focused=true]:border-danger"
|
|
4255
4263
|
}
|
|
4256
4264
|
},
|
|
4257
4265
|
{
|
|
@@ -4316,7 +4324,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4316
4324
|
inputWrapper: [
|
|
4317
4325
|
"bg-danger-50",
|
|
4318
4326
|
"data-[hover=true]:bg-danger-100",
|
|
4319
|
-
"
|
|
4327
|
+
"group-data-[focused=true]:bg-danger-50"
|
|
4320
4328
|
]
|
|
4321
4329
|
}
|
|
4322
4330
|
},
|
|
@@ -4324,7 +4332,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4324
4332
|
isInvalid: true,
|
|
4325
4333
|
variant: "bordered",
|
|
4326
4334
|
class: {
|
|
4327
|
-
inputWrapper: "!border-danger
|
|
4335
|
+
inputWrapper: "!border-danger group-data-[focused=true]:border-danger"
|
|
4328
4336
|
}
|
|
4329
4337
|
},
|
|
4330
4338
|
{
|
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import "../chunk-PRWEADY4.mjs";
|
|
2
|
-
import {
|
|
3
|
-
spacer
|
|
4
|
-
} from "../chunk-3B4SYPW2.mjs";
|
|
5
|
-
import {
|
|
6
|
-
spinner
|
|
7
|
-
} from "../chunk-EQNNT2LH.mjs";
|
|
8
2
|
import {
|
|
9
3
|
table
|
|
10
4
|
} from "../chunk-U54UQOTS.mjs";
|
|
@@ -17,12 +11,6 @@ import {
|
|
|
17
11
|
import {
|
|
18
12
|
user
|
|
19
13
|
} from "../chunk-ZFYINWFR.mjs";
|
|
20
|
-
import {
|
|
21
|
-
modal
|
|
22
|
-
} from "../chunk-QYXL3KZR.mjs";
|
|
23
|
-
import {
|
|
24
|
-
navbar
|
|
25
|
-
} from "../chunk-6LITGDC7.mjs";
|
|
26
14
|
import {
|
|
27
15
|
pagination
|
|
28
16
|
} from "../chunk-4MSPP245.mjs";
|
|
@@ -41,13 +29,13 @@ import {
|
|
|
41
29
|
} from "../chunk-P5E3PNHW.mjs";
|
|
42
30
|
import {
|
|
43
31
|
snippet
|
|
44
|
-
} from "../chunk-
|
|
32
|
+
} from "../chunk-ADHGFNBD.mjs";
|
|
45
33
|
import {
|
|
46
|
-
|
|
47
|
-
} from "../chunk-
|
|
34
|
+
spacer
|
|
35
|
+
} from "../chunk-3B4SYPW2.mjs";
|
|
48
36
|
import {
|
|
49
|
-
|
|
50
|
-
} from "../chunk-
|
|
37
|
+
spinner
|
|
38
|
+
} from "../chunk-EQNNT2LH.mjs";
|
|
51
39
|
import {
|
|
52
40
|
dropdown,
|
|
53
41
|
dropdownItem,
|
|
@@ -59,7 +47,7 @@ import {
|
|
|
59
47
|
} from "../chunk-X4S56RGZ.mjs";
|
|
60
48
|
import {
|
|
61
49
|
input
|
|
62
|
-
} from "../chunk-
|
|
50
|
+
} from "../chunk-PAR74N2D.mjs";
|
|
63
51
|
import {
|
|
64
52
|
kbd
|
|
65
53
|
} from "../chunk-GYSMGV7B.mjs";
|
|
@@ -68,12 +56,11 @@ import {
|
|
|
68
56
|
linkAnchorClasses
|
|
69
57
|
} from "../chunk-YQXYRWJP.mjs";
|
|
70
58
|
import {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
} from "../chunk-ZL6WUYLC.mjs";
|
|
59
|
+
modal
|
|
60
|
+
} from "../chunk-QYXL3KZR.mjs";
|
|
74
61
|
import {
|
|
75
|
-
|
|
76
|
-
} from "../chunk-
|
|
62
|
+
navbar
|
|
63
|
+
} from "../chunk-6LITGDC7.mjs";
|
|
77
64
|
import {
|
|
78
65
|
button,
|
|
79
66
|
buttonGroup
|
|
@@ -94,13 +81,26 @@ import {
|
|
|
94
81
|
import {
|
|
95
82
|
code
|
|
96
83
|
} from "../chunk-E3HXNSRG.mjs";
|
|
97
|
-
import
|
|
98
|
-
|
|
99
|
-
|
|
84
|
+
import {
|
|
85
|
+
divider
|
|
86
|
+
} from "../chunk-5HKM2D3Z.mjs";
|
|
87
|
+
import {
|
|
88
|
+
drip
|
|
89
|
+
} from "../chunk-OIVGIOVG.mjs";
|
|
100
90
|
import {
|
|
101
91
|
accordion,
|
|
102
92
|
accordionItem
|
|
103
93
|
} from "../chunk-76WBK7WN.mjs";
|
|
94
|
+
import {
|
|
95
|
+
avatar,
|
|
96
|
+
avatarGroup
|
|
97
|
+
} from "../chunk-ZL6WUYLC.mjs";
|
|
98
|
+
import {
|
|
99
|
+
badge
|
|
100
|
+
} from "../chunk-BUDAC6TR.mjs";
|
|
101
|
+
import "../chunk-CMYR6AOY.mjs";
|
|
102
|
+
import "../chunk-K7LK7NCE.mjs";
|
|
103
|
+
import "../chunk-IQPW7V4N.mjs";
|
|
104
104
|
import "../chunk-INZK6TTL.mjs";
|
|
105
105
|
export {
|
|
106
106
|
accordion,
|
package/dist/components/input.js
CHANGED
|
@@ -30,7 +30,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
30
30
|
label: "block text-sm font-medium text-default-600",
|
|
31
31
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
32
32
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
33
|
-
input: "w-full h-full !bg-transparent outline-none placeholder:text-default-500",
|
|
33
|
+
input: "w-full h-full font-normal !bg-transparent outline-none placeholder:text-default-500",
|
|
34
34
|
clearButton: [
|
|
35
35
|
"z-10",
|
|
36
36
|
"hidden",
|
|
@@ -60,7 +60,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
60
60
|
inputWrapper: [
|
|
61
61
|
"bg-default-100",
|
|
62
62
|
"data-[hover=true]:bg-default-200",
|
|
63
|
-
"
|
|
63
|
+
"group-data-[focused=true]:bg-default-100"
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
66
|
faded: {
|
|
@@ -76,7 +76,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
76
76
|
"border-2",
|
|
77
77
|
"border-default-200",
|
|
78
78
|
"data-[hover=true]:border-default-400",
|
|
79
|
-
"
|
|
79
|
+
"group-data-[focused=true]:border-foreground"
|
|
80
80
|
]
|
|
81
81
|
},
|
|
82
82
|
underlined: {
|
|
@@ -100,7 +100,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
100
100
|
"after:-translate-x-1/2",
|
|
101
101
|
"after:-bottom-[2px]",
|
|
102
102
|
"after:h-[2px]",
|
|
103
|
-
"
|
|
103
|
+
"group-data-[focused=true]:after:w-full"
|
|
104
104
|
]
|
|
105
105
|
}
|
|
106
106
|
},
|
|
@@ -264,7 +264,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
264
264
|
"bg-primary-50",
|
|
265
265
|
"data-[hover=true]:bg-primary-100",
|
|
266
266
|
"text-primary",
|
|
267
|
-
"
|
|
267
|
+
"group-data-[focused=true]:bg-primary-50",
|
|
268
268
|
"placeholder:text-primary"
|
|
269
269
|
],
|
|
270
270
|
input: "placeholder:text-primary"
|
|
@@ -276,9 +276,9 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
276
276
|
class: {
|
|
277
277
|
inputWrapper: [
|
|
278
278
|
"bg-secondary-50",
|
|
279
|
-
"data-[hover=true]:bg-secondary-100",
|
|
280
279
|
"text-secondary",
|
|
281
|
-
"
|
|
280
|
+
"data-[hover=true]:bg-secondary-100",
|
|
281
|
+
"group-data-[focused=true]:bg-secondary-50",
|
|
282
282
|
"placeholder:text-secondary"
|
|
283
283
|
],
|
|
284
284
|
input: "placeholder:text-secondary"
|
|
@@ -292,7 +292,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
292
292
|
"bg-success-50",
|
|
293
293
|
"data-[hover=true]:bg-success-100",
|
|
294
294
|
"text-success",
|
|
295
|
-
"
|
|
295
|
+
"group-data-[focused=true]:bg-success-50",
|
|
296
296
|
"placeholder:text-success"
|
|
297
297
|
],
|
|
298
298
|
input: "placeholder:text-success"
|
|
@@ -306,7 +306,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
306
306
|
"bg-warning-50",
|
|
307
307
|
"data-[hover=true]:bg-warning-100",
|
|
308
308
|
"text-warning",
|
|
309
|
-
"
|
|
309
|
+
"group-data-[focused=true]:bg-warning-50",
|
|
310
310
|
"placeholder:text-warning"
|
|
311
311
|
],
|
|
312
312
|
input: "placeholder:text-warning"
|
|
@@ -320,7 +320,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
320
320
|
"bg-danger-50",
|
|
321
321
|
"data-[hover=true]:bg-danger-100",
|
|
322
322
|
"text-danger",
|
|
323
|
-
"
|
|
323
|
+
"group-data-[focused=true]:bg-danger-50",
|
|
324
324
|
"placeholder:text-danger"
|
|
325
325
|
],
|
|
326
326
|
input: "placeholder:text-danger"
|
|
@@ -405,35 +405,35 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
405
405
|
variant: "bordered",
|
|
406
406
|
color: "primary",
|
|
407
407
|
class: {
|
|
408
|
-
inputWrapper: "
|
|
408
|
+
inputWrapper: "group-data-[focused=true]:border-primary"
|
|
409
409
|
}
|
|
410
410
|
},
|
|
411
411
|
{
|
|
412
412
|
variant: "bordered",
|
|
413
413
|
color: "secondary",
|
|
414
414
|
class: {
|
|
415
|
-
inputWrapper: "
|
|
415
|
+
inputWrapper: "group-data-[focused=true]:border-secondary"
|
|
416
416
|
}
|
|
417
417
|
},
|
|
418
418
|
{
|
|
419
419
|
variant: "bordered",
|
|
420
420
|
color: "success",
|
|
421
421
|
class: {
|
|
422
|
-
inputWrapper: "
|
|
422
|
+
inputWrapper: "group-data-[focused=true]:border-success"
|
|
423
423
|
}
|
|
424
424
|
},
|
|
425
425
|
{
|
|
426
426
|
variant: "bordered",
|
|
427
427
|
color: "warning",
|
|
428
428
|
class: {
|
|
429
|
-
inputWrapper: "
|
|
429
|
+
inputWrapper: "group-data-[focused=true]:border-warning"
|
|
430
430
|
}
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
variant: "bordered",
|
|
434
434
|
color: "danger",
|
|
435
435
|
class: {
|
|
436
|
-
inputWrapper: "
|
|
436
|
+
inputWrapper: "group-data-[focused=true]:border-danger"
|
|
437
437
|
}
|
|
438
438
|
},
|
|
439
439
|
{
|
|
@@ -498,7 +498,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
498
498
|
inputWrapper: [
|
|
499
499
|
"bg-danger-50",
|
|
500
500
|
"data-[hover=true]:bg-danger-100",
|
|
501
|
-
"
|
|
501
|
+
"group-data-[focused=true]:bg-danger-50"
|
|
502
502
|
]
|
|
503
503
|
}
|
|
504
504
|
},
|
|
@@ -506,7 +506,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
506
506
|
isInvalid: true,
|
|
507
507
|
variant: "bordered",
|
|
508
508
|
class: {
|
|
509
|
-
inputWrapper: "!border-danger
|
|
509
|
+
inputWrapper: "!border-danger group-data-[focused=true]:border-danger"
|
|
510
510
|
}
|
|
511
511
|
},
|
|
512
512
|
{
|
|
@@ -102,11 +102,19 @@ var colorVariants = {
|
|
|
102
102
|
// src/components/snippet.ts
|
|
103
103
|
var snippet = (0, import_tailwind_variants.tv)({
|
|
104
104
|
slots: {
|
|
105
|
-
base: "inline-flex items-center justify-between rounded-md",
|
|
106
|
-
pre: "bg-transparent text-inherit font-mono whitespace-
|
|
105
|
+
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
106
|
+
pre: "bg-transparent text-inherit font-mono font-normal inline-block whitespace-nowrap",
|
|
107
107
|
content: "flex flex-col",
|
|
108
108
|
symbol: "select-none",
|
|
109
|
-
copyButton: [
|
|
109
|
+
copyButton: [
|
|
110
|
+
"group",
|
|
111
|
+
"relative",
|
|
112
|
+
"z-10",
|
|
113
|
+
"ml-2",
|
|
114
|
+
"text-lg",
|
|
115
|
+
"text-inherit",
|
|
116
|
+
"data-[hover=true]:bg-transparent"
|
|
117
|
+
],
|
|
110
118
|
copyIcon: [
|
|
111
119
|
"absolute text-inherit opacity-100 scale-100 group-data-[copied=true]:opacity-0 group-data-[copied=true]:scale-50"
|
|
112
120
|
],
|
|
@@ -149,13 +157,13 @@ var snippet = (0, import_tailwind_variants.tv)({
|
|
|
149
157
|
base: "px-2 py-1 text-sm"
|
|
150
158
|
},
|
|
151
159
|
md: {
|
|
152
|
-
base: "px-3 py-1.5 text-
|
|
160
|
+
base: "px-3 py-1.5 text-sm"
|
|
153
161
|
},
|
|
154
162
|
lg: {
|
|
155
|
-
base: "px-4 py-2 text-
|
|
163
|
+
base: "px-4 py-2 text-base"
|
|
156
164
|
},
|
|
157
165
|
xl: {
|
|
158
|
-
base: "px-4 py-2 text-
|
|
166
|
+
base: "px-4 py-2 text-lg"
|
|
159
167
|
}
|
|
160
168
|
},
|
|
161
169
|
radius: {
|
package/dist/index.js
CHANGED
|
@@ -1583,11 +1583,19 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1583
1583
|
var import_tailwind_variants10 = require("tailwind-variants");
|
|
1584
1584
|
var snippet = (0, import_tailwind_variants10.tv)({
|
|
1585
1585
|
slots: {
|
|
1586
|
-
base: "inline-flex items-center justify-between rounded-md",
|
|
1587
|
-
pre: "bg-transparent text-inherit font-mono whitespace-
|
|
1586
|
+
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
1587
|
+
pre: "bg-transparent text-inherit font-mono font-normal inline-block whitespace-nowrap",
|
|
1588
1588
|
content: "flex flex-col",
|
|
1589
1589
|
symbol: "select-none",
|
|
1590
|
-
copyButton: [
|
|
1590
|
+
copyButton: [
|
|
1591
|
+
"group",
|
|
1592
|
+
"relative",
|
|
1593
|
+
"z-10",
|
|
1594
|
+
"ml-2",
|
|
1595
|
+
"text-lg",
|
|
1596
|
+
"text-inherit",
|
|
1597
|
+
"data-[hover=true]:bg-transparent"
|
|
1598
|
+
],
|
|
1591
1599
|
copyIcon: [
|
|
1592
1600
|
"absolute text-inherit opacity-100 scale-100 group-data-[copied=true]:opacity-0 group-data-[copied=true]:scale-50"
|
|
1593
1601
|
],
|
|
@@ -1630,13 +1638,13 @@ var snippet = (0, import_tailwind_variants10.tv)({
|
|
|
1630
1638
|
base: "px-2 py-1 text-sm"
|
|
1631
1639
|
},
|
|
1632
1640
|
md: {
|
|
1633
|
-
base: "px-3 py-1.5 text-
|
|
1641
|
+
base: "px-3 py-1.5 text-sm"
|
|
1634
1642
|
},
|
|
1635
1643
|
lg: {
|
|
1636
|
-
base: "px-4 py-2 text-
|
|
1644
|
+
base: "px-4 py-2 text-base"
|
|
1637
1645
|
},
|
|
1638
1646
|
xl: {
|
|
1639
|
-
base: "px-4 py-2 text-
|
|
1647
|
+
base: "px-4 py-2 text-lg"
|
|
1640
1648
|
}
|
|
1641
1649
|
},
|
|
1642
1650
|
radius: {
|
|
@@ -3880,7 +3888,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3880
3888
|
label: "block text-sm font-medium text-default-600",
|
|
3881
3889
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
3882
3890
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
3883
|
-
input: "w-full h-full !bg-transparent outline-none placeholder:text-default-500",
|
|
3891
|
+
input: "w-full h-full font-normal !bg-transparent outline-none placeholder:text-default-500",
|
|
3884
3892
|
clearButton: [
|
|
3885
3893
|
"z-10",
|
|
3886
3894
|
"hidden",
|
|
@@ -3910,7 +3918,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3910
3918
|
inputWrapper: [
|
|
3911
3919
|
"bg-default-100",
|
|
3912
3920
|
"data-[hover=true]:bg-default-200",
|
|
3913
|
-
"
|
|
3921
|
+
"group-data-[focused=true]:bg-default-100"
|
|
3914
3922
|
]
|
|
3915
3923
|
},
|
|
3916
3924
|
faded: {
|
|
@@ -3926,7 +3934,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3926
3934
|
"border-2",
|
|
3927
3935
|
"border-default-200",
|
|
3928
3936
|
"data-[hover=true]:border-default-400",
|
|
3929
|
-
"
|
|
3937
|
+
"group-data-[focused=true]:border-foreground"
|
|
3930
3938
|
]
|
|
3931
3939
|
},
|
|
3932
3940
|
underlined: {
|
|
@@ -3950,7 +3958,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
3950
3958
|
"after:-translate-x-1/2",
|
|
3951
3959
|
"after:-bottom-[2px]",
|
|
3952
3960
|
"after:h-[2px]",
|
|
3953
|
-
"
|
|
3961
|
+
"group-data-[focused=true]:after:w-full"
|
|
3954
3962
|
]
|
|
3955
3963
|
}
|
|
3956
3964
|
},
|
|
@@ -4114,7 +4122,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4114
4122
|
"bg-primary-50",
|
|
4115
4123
|
"data-[hover=true]:bg-primary-100",
|
|
4116
4124
|
"text-primary",
|
|
4117
|
-
"
|
|
4125
|
+
"group-data-[focused=true]:bg-primary-50",
|
|
4118
4126
|
"placeholder:text-primary"
|
|
4119
4127
|
],
|
|
4120
4128
|
input: "placeholder:text-primary"
|
|
@@ -4126,9 +4134,9 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4126
4134
|
class: {
|
|
4127
4135
|
inputWrapper: [
|
|
4128
4136
|
"bg-secondary-50",
|
|
4129
|
-
"data-[hover=true]:bg-secondary-100",
|
|
4130
4137
|
"text-secondary",
|
|
4131
|
-
"
|
|
4138
|
+
"data-[hover=true]:bg-secondary-100",
|
|
4139
|
+
"group-data-[focused=true]:bg-secondary-50",
|
|
4132
4140
|
"placeholder:text-secondary"
|
|
4133
4141
|
],
|
|
4134
4142
|
input: "placeholder:text-secondary"
|
|
@@ -4142,7 +4150,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4142
4150
|
"bg-success-50",
|
|
4143
4151
|
"data-[hover=true]:bg-success-100",
|
|
4144
4152
|
"text-success",
|
|
4145
|
-
"
|
|
4153
|
+
"group-data-[focused=true]:bg-success-50",
|
|
4146
4154
|
"placeholder:text-success"
|
|
4147
4155
|
],
|
|
4148
4156
|
input: "placeholder:text-success"
|
|
@@ -4156,7 +4164,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4156
4164
|
"bg-warning-50",
|
|
4157
4165
|
"data-[hover=true]:bg-warning-100",
|
|
4158
4166
|
"text-warning",
|
|
4159
|
-
"
|
|
4167
|
+
"group-data-[focused=true]:bg-warning-50",
|
|
4160
4168
|
"placeholder:text-warning"
|
|
4161
4169
|
],
|
|
4162
4170
|
input: "placeholder:text-warning"
|
|
@@ -4170,7 +4178,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4170
4178
|
"bg-danger-50",
|
|
4171
4179
|
"data-[hover=true]:bg-danger-100",
|
|
4172
4180
|
"text-danger",
|
|
4173
|
-
"
|
|
4181
|
+
"group-data-[focused=true]:bg-danger-50",
|
|
4174
4182
|
"placeholder:text-danger"
|
|
4175
4183
|
],
|
|
4176
4184
|
input: "placeholder:text-danger"
|
|
@@ -4255,35 +4263,35 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4255
4263
|
variant: "bordered",
|
|
4256
4264
|
color: "primary",
|
|
4257
4265
|
class: {
|
|
4258
|
-
inputWrapper: "
|
|
4266
|
+
inputWrapper: "group-data-[focused=true]:border-primary"
|
|
4259
4267
|
}
|
|
4260
4268
|
},
|
|
4261
4269
|
{
|
|
4262
4270
|
variant: "bordered",
|
|
4263
4271
|
color: "secondary",
|
|
4264
4272
|
class: {
|
|
4265
|
-
inputWrapper: "
|
|
4273
|
+
inputWrapper: "group-data-[focused=true]:border-secondary"
|
|
4266
4274
|
}
|
|
4267
4275
|
},
|
|
4268
4276
|
{
|
|
4269
4277
|
variant: "bordered",
|
|
4270
4278
|
color: "success",
|
|
4271
4279
|
class: {
|
|
4272
|
-
inputWrapper: "
|
|
4280
|
+
inputWrapper: "group-data-[focused=true]:border-success"
|
|
4273
4281
|
}
|
|
4274
4282
|
},
|
|
4275
4283
|
{
|
|
4276
4284
|
variant: "bordered",
|
|
4277
4285
|
color: "warning",
|
|
4278
4286
|
class: {
|
|
4279
|
-
inputWrapper: "
|
|
4287
|
+
inputWrapper: "group-data-[focused=true]:border-warning"
|
|
4280
4288
|
}
|
|
4281
4289
|
},
|
|
4282
4290
|
{
|
|
4283
4291
|
variant: "bordered",
|
|
4284
4292
|
color: "danger",
|
|
4285
4293
|
class: {
|
|
4286
|
-
inputWrapper: "
|
|
4294
|
+
inputWrapper: "group-data-[focused=true]:border-danger"
|
|
4287
4295
|
}
|
|
4288
4296
|
},
|
|
4289
4297
|
{
|
|
@@ -4348,7 +4356,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4348
4356
|
inputWrapper: [
|
|
4349
4357
|
"bg-danger-50",
|
|
4350
4358
|
"data-[hover=true]:bg-danger-100",
|
|
4351
|
-
"
|
|
4359
|
+
"group-data-[focused=true]:bg-danger-50"
|
|
4352
4360
|
]
|
|
4353
4361
|
}
|
|
4354
4362
|
},
|
|
@@ -4356,7 +4364,7 @@ var input = (0, import_tailwind_variants20.tv)({
|
|
|
4356
4364
|
isInvalid: true,
|
|
4357
4365
|
variant: "bordered",
|
|
4358
4366
|
class: {
|
|
4359
|
-
inputWrapper: "!border-danger
|
|
4367
|
+
inputWrapper: "!border-danger group-data-[focused=true]:border-danger"
|
|
4360
4368
|
}
|
|
4361
4369
|
},
|
|
4362
4370
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import "./chunk-PRWEADY4.mjs";
|
|
2
|
-
import {
|
|
3
|
-
spacer
|
|
4
|
-
} from "./chunk-3B4SYPW2.mjs";
|
|
5
|
-
import {
|
|
6
|
-
spinner
|
|
7
|
-
} from "./chunk-EQNNT2LH.mjs";
|
|
8
2
|
import {
|
|
9
3
|
table
|
|
10
4
|
} from "./chunk-U54UQOTS.mjs";
|
|
@@ -17,12 +11,6 @@ import {
|
|
|
17
11
|
import {
|
|
18
12
|
user
|
|
19
13
|
} from "./chunk-ZFYINWFR.mjs";
|
|
20
|
-
import {
|
|
21
|
-
modal
|
|
22
|
-
} from "./chunk-QYXL3KZR.mjs";
|
|
23
|
-
import {
|
|
24
|
-
navbar
|
|
25
|
-
} from "./chunk-6LITGDC7.mjs";
|
|
26
14
|
import {
|
|
27
15
|
pagination
|
|
28
16
|
} from "./chunk-4MSPP245.mjs";
|
|
@@ -41,13 +29,13 @@ import {
|
|
|
41
29
|
} from "./chunk-P5E3PNHW.mjs";
|
|
42
30
|
import {
|
|
43
31
|
snippet
|
|
44
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-ADHGFNBD.mjs";
|
|
45
33
|
import {
|
|
46
|
-
|
|
47
|
-
} from "./chunk-
|
|
34
|
+
spacer
|
|
35
|
+
} from "./chunk-3B4SYPW2.mjs";
|
|
48
36
|
import {
|
|
49
|
-
|
|
50
|
-
} from "./chunk-
|
|
37
|
+
spinner
|
|
38
|
+
} from "./chunk-EQNNT2LH.mjs";
|
|
51
39
|
import {
|
|
52
40
|
dropdown,
|
|
53
41
|
dropdownItem,
|
|
@@ -59,7 +47,7 @@ import {
|
|
|
59
47
|
} from "./chunk-X4S56RGZ.mjs";
|
|
60
48
|
import {
|
|
61
49
|
input
|
|
62
|
-
} from "./chunk-
|
|
50
|
+
} from "./chunk-PAR74N2D.mjs";
|
|
63
51
|
import {
|
|
64
52
|
kbd
|
|
65
53
|
} from "./chunk-GYSMGV7B.mjs";
|
|
@@ -68,12 +56,11 @@ import {
|
|
|
68
56
|
linkAnchorClasses
|
|
69
57
|
} from "./chunk-YQXYRWJP.mjs";
|
|
70
58
|
import {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
} from "./chunk-ZL6WUYLC.mjs";
|
|
59
|
+
modal
|
|
60
|
+
} from "./chunk-QYXL3KZR.mjs";
|
|
74
61
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
62
|
+
navbar
|
|
63
|
+
} from "./chunk-6LITGDC7.mjs";
|
|
77
64
|
import {
|
|
78
65
|
button,
|
|
79
66
|
buttonGroup
|
|
@@ -94,46 +81,59 @@ import {
|
|
|
94
81
|
import {
|
|
95
82
|
code
|
|
96
83
|
} from "./chunk-E3HXNSRG.mjs";
|
|
97
|
-
import "./chunk-CMYR6AOY.mjs";
|
|
98
|
-
import "./chunk-K7LK7NCE.mjs";
|
|
99
84
|
import {
|
|
100
|
-
|
|
101
|
-
} from "./chunk-
|
|
85
|
+
divider
|
|
86
|
+
} from "./chunk-5HKM2D3Z.mjs";
|
|
87
|
+
import {
|
|
88
|
+
drip
|
|
89
|
+
} from "./chunk-OIVGIOVG.mjs";
|
|
102
90
|
import {
|
|
103
91
|
accordion,
|
|
104
92
|
accordionItem
|
|
105
93
|
} from "./chunk-76WBK7WN.mjs";
|
|
106
94
|
import {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
95
|
+
avatar,
|
|
96
|
+
avatarGroup
|
|
97
|
+
} from "./chunk-ZL6WUYLC.mjs";
|
|
110
98
|
import {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
} from "./chunk-INZK6TTL.mjs";
|
|
99
|
+
badge
|
|
100
|
+
} from "./chunk-BUDAC6TR.mjs";
|
|
101
|
+
import {
|
|
102
|
+
nextui
|
|
103
|
+
} from "./chunk-FE6D6PKC.mjs";
|
|
117
104
|
import "./chunk-WQEDQHKX.mjs";
|
|
118
105
|
import {
|
|
119
106
|
colors
|
|
120
|
-
} from "./chunk-
|
|
107
|
+
} from "./chunk-NU4XY237.mjs";
|
|
121
108
|
import {
|
|
122
109
|
semanticColors
|
|
123
|
-
} from "./chunk-
|
|
124
|
-
import "./chunk-37PIXVP4.mjs";
|
|
110
|
+
} from "./chunk-FPQXJXRL.mjs";
|
|
125
111
|
import "./chunk-M63AFAHO.mjs";
|
|
126
|
-
import "./chunk-DMASP6FA.mjs";
|
|
127
112
|
import {
|
|
128
113
|
commonColors
|
|
129
|
-
} from "./chunk-
|
|
130
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
114
|
+
} from "./chunk-TPAK7DPZ.mjs";
|
|
131
115
|
import "./chunk-L2OL7R23.mjs";
|
|
132
116
|
import "./chunk-YZYGFPNK.mjs";
|
|
133
117
|
import "./chunk-Y4YW5MKL.mjs";
|
|
134
118
|
import "./chunk-KZJBCC2H.mjs";
|
|
135
119
|
import "./chunk-T3GWIVAM.mjs";
|
|
136
120
|
import "./chunk-OR5PUD24.mjs";
|
|
121
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
122
|
+
import "./chunk-DMASP6FA.mjs";
|
|
123
|
+
import "./chunk-XLATS5QU.mjs";
|
|
124
|
+
import "./chunk-CMYR6AOY.mjs";
|
|
125
|
+
import "./chunk-K7LK7NCE.mjs";
|
|
126
|
+
import {
|
|
127
|
+
colorVariants
|
|
128
|
+
} from "./chunk-IQPW7V4N.mjs";
|
|
129
|
+
import {
|
|
130
|
+
absoluteFullClasses,
|
|
131
|
+
baseStyles,
|
|
132
|
+
focusVisibleClasses,
|
|
133
|
+
ringClasses,
|
|
134
|
+
translateCenterClasses
|
|
135
|
+
} from "./chunk-INZK6TTL.mjs";
|
|
136
|
+
import "./chunk-37PIXVP4.mjs";
|
|
137
137
|
|
|
138
138
|
// src/index.ts
|
|
139
139
|
import { cn as cnBase } from "tailwind-variants";
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-XLATS5QU.mjs";
|
|
5
|
-
import "./chunk-INZK6TTL.mjs";
|
|
3
|
+
} from "./chunk-FE6D6PKC.mjs";
|
|
6
4
|
import "./chunk-WQEDQHKX.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-37PIXVP4.mjs";
|
|
5
|
+
import "./chunk-NU4XY237.mjs";
|
|
6
|
+
import "./chunk-FPQXJXRL.mjs";
|
|
10
7
|
import "./chunk-M63AFAHO.mjs";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-CRCBVLUP.mjs";
|
|
13
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
8
|
+
import "./chunk-TPAK7DPZ.mjs";
|
|
14
9
|
import "./chunk-L2OL7R23.mjs";
|
|
15
10
|
import "./chunk-YZYGFPNK.mjs";
|
|
16
11
|
import "./chunk-Y4YW5MKL.mjs";
|
|
17
12
|
import "./chunk-KZJBCC2H.mjs";
|
|
18
13
|
import "./chunk-T3GWIVAM.mjs";
|
|
19
14
|
import "./chunk-OR5PUD24.mjs";
|
|
15
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
16
|
+
import "./chunk-DMASP6FA.mjs";
|
|
17
|
+
import "./chunk-XLATS5QU.mjs";
|
|
18
|
+
import "./chunk-INZK6TTL.mjs";
|
|
19
|
+
import "./chunk-37PIXVP4.mjs";
|
|
20
20
|
export {
|
|
21
21
|
nextui
|
|
22
22
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
pink
|
|
3
|
-
} from "./chunk-DCEG5LGX.mjs";
|
|
4
1
|
import {
|
|
5
2
|
purple
|
|
6
3
|
} from "./chunk-L2OL7R23.mjs";
|
|
@@ -19,6 +16,9 @@ import {
|
|
|
19
16
|
import {
|
|
20
17
|
green
|
|
21
18
|
} from "./chunk-OR5PUD24.mjs";
|
|
19
|
+
import {
|
|
20
|
+
pink
|
|
21
|
+
} from "./chunk-DCEG5LGX.mjs";
|
|
22
22
|
|
|
23
23
|
// src/colors/common.ts
|
|
24
24
|
var commonColors = {
|