@nextui-org/theme 0.0.0-dev-v2-20230617005419 → 0.0.0-dev-v2-20230618174149
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-Z5FFO6RH.mjs → chunk-3YM7ZXUG.mjs} +3 -3
- package/dist/{chunk-PFNGC6IG.mjs → chunk-CNGIMNA5.mjs} +2 -2
- package/dist/{chunk-2FCKB2MY.mjs → chunk-EQVBIZB3.mjs} +25 -2
- package/dist/{chunk-XMV4AU26.mjs → chunk-JR6TMRUJ.mjs} +6 -6
- package/dist/{chunk-WUX2XFG4.mjs → chunk-RWCBIS6I.mjs} +6 -6
- package/dist/{chunk-HKMIRUA2.mjs → chunk-SPRUF3FQ.mjs} +1 -2
- package/dist/colors/common.mjs +3 -3
- package/dist/colors/index.mjs +6 -6
- package/dist/colors/semantic.mjs +5 -5
- package/dist/colors.mjs +6 -6
- package/dist/components/avatar.mjs +1 -1
- package/dist/components/badge.mjs +1 -1
- package/dist/components/button.d.ts +4 -4
- package/dist/components/button.js +6 -6
- package/dist/components/button.mjs +2 -2
- package/dist/components/chip.mjs +1 -1
- package/dist/components/code.mjs +1 -1
- package/dist/components/index.js +32 -10
- package/dist/components/index.mjs +17 -17
- package/dist/components/modal.d.ts +94 -4
- package/dist/components/modal.js +25 -2
- package/dist/components/modal.mjs +1 -1
- package/dist/components/pagination.mjs +1 -1
- package/dist/components/popover.mjs +1 -1
- package/dist/components/snippet.js +1 -2
- package/dist/components/snippet.mjs +2 -2
- package/dist/components/tabs.mjs +1 -1
- package/dist/index.js +32 -10
- package/dist/index.mjs +41 -41
- package/dist/plugin.mjs +9 -9
- package/dist/utils/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/{chunk-W4HTBNGS.mjs → chunk-CRCBVLUP.mjs} +6 -6
|
@@ -21,14 +21,13 @@ var modal = tv({
|
|
|
21
21
|
"bg-white",
|
|
22
22
|
"z-50",
|
|
23
23
|
"w-full",
|
|
24
|
-
"shadow-lg",
|
|
25
24
|
"box-border",
|
|
25
|
+
"bg-background",
|
|
26
26
|
"dark:bg-content1",
|
|
27
27
|
"border border-default-100",
|
|
28
28
|
"outline-none",
|
|
29
29
|
"my-16"
|
|
30
30
|
],
|
|
31
|
-
trigger: [],
|
|
32
31
|
backdrop: "z-50",
|
|
33
32
|
header: "flex py-4 px-6 flex-initial text-lg font-semibold",
|
|
34
33
|
body: "flex flex-1 flex-col gap-3 px-6 py-2",
|
|
@@ -96,6 +95,29 @@ var modal = tv({
|
|
|
96
95
|
"2xl": { base: "rounded-2xl" },
|
|
97
96
|
"3xl": { base: "rounded-3xl" }
|
|
98
97
|
},
|
|
98
|
+
shadow: {
|
|
99
|
+
none: {
|
|
100
|
+
base: "shadow-none"
|
|
101
|
+
},
|
|
102
|
+
sm: {
|
|
103
|
+
base: "shadow-sm"
|
|
104
|
+
},
|
|
105
|
+
md: {
|
|
106
|
+
base: "shadow-md"
|
|
107
|
+
},
|
|
108
|
+
lg: {
|
|
109
|
+
base: "shadow-lg"
|
|
110
|
+
},
|
|
111
|
+
xl: {
|
|
112
|
+
base: "shadow-xl"
|
|
113
|
+
},
|
|
114
|
+
"2xl": {
|
|
115
|
+
base: "shadow-2xl"
|
|
116
|
+
},
|
|
117
|
+
inner: {
|
|
118
|
+
base: "shadow-inner"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
99
121
|
backdrop: {
|
|
100
122
|
transparent: {
|
|
101
123
|
backdrop: "hidden"
|
|
@@ -124,6 +146,7 @@ var modal = tv({
|
|
|
124
146
|
defaultVariants: {
|
|
125
147
|
size: "md",
|
|
126
148
|
radius: "lg",
|
|
149
|
+
shadow: "lg",
|
|
127
150
|
backdrop: "opaque",
|
|
128
151
|
scrollBehavior: "normal"
|
|
129
152
|
},
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
baseStyles
|
|
3
|
+
} from "./chunk-INZK6TTL.mjs";
|
|
1
4
|
import {
|
|
2
5
|
utilities
|
|
3
6
|
} from "./chunk-JH2TR6BI.mjs";
|
|
4
7
|
import {
|
|
5
8
|
semanticColors
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import {
|
|
8
|
-
commonColors
|
|
9
|
-
} from "./chunk-W4HTBNGS.mjs";
|
|
9
|
+
} from "./chunk-3YM7ZXUG.mjs";
|
|
10
10
|
import {
|
|
11
11
|
removeDefaultKeys
|
|
12
12
|
} from "./chunk-37PIXVP4.mjs";
|
|
@@ -14,8 +14,8 @@ import {
|
|
|
14
14
|
animations
|
|
15
15
|
} from "./chunk-DMASP6FA.mjs";
|
|
16
16
|
import {
|
|
17
|
-
|
|
18
|
-
} from "./chunk-
|
|
17
|
+
commonColors
|
|
18
|
+
} from "./chunk-CRCBVLUP.mjs";
|
|
19
19
|
|
|
20
20
|
// src/plugin.ts
|
|
21
21
|
import Color from "color";
|
|
@@ -77,7 +77,7 @@ var button = tv({
|
|
|
77
77
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none"
|
|
78
78
|
},
|
|
79
79
|
isIconOnly: {
|
|
80
|
-
true: "p-0 gap-0
|
|
80
|
+
true: "p-0 gap-0",
|
|
81
81
|
false: "[&>svg]:max-w-[2em]"
|
|
82
82
|
},
|
|
83
83
|
disableAnimation: {
|
|
@@ -355,27 +355,27 @@ var button = tv({
|
|
|
355
355
|
{
|
|
356
356
|
isIconOnly: true,
|
|
357
357
|
size: "xs",
|
|
358
|
-
class: "w-6 h-6"
|
|
358
|
+
class: "min-w-[1.5rem] w-6 h-6"
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
isIconOnly: true,
|
|
362
362
|
size: "sm",
|
|
363
|
-
class: "w-8 h-8"
|
|
363
|
+
class: "min-w-[2rem] w-8 h-8"
|
|
364
364
|
},
|
|
365
365
|
{
|
|
366
366
|
isIconOnly: true,
|
|
367
367
|
size: "md",
|
|
368
|
-
class: "w-10 h-10"
|
|
368
|
+
class: "min-w-[2.5rem] w-10 h-10"
|
|
369
369
|
},
|
|
370
370
|
{
|
|
371
371
|
isIconOnly: true,
|
|
372
372
|
size: "lg",
|
|
373
|
-
class: "w-12 h-12"
|
|
373
|
+
class: "min-w-[3rem] w-12 h-12"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
isIconOnly: true,
|
|
377
377
|
size: "xl",
|
|
378
|
-
class: "w-14 h-14"
|
|
378
|
+
class: "min-w-[3.5rem] w-14 h-14"
|
|
379
379
|
}
|
|
380
380
|
]
|
|
381
381
|
});
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
import { tv } from "tailwind-variants";
|
|
7
7
|
var snippet = tv({
|
|
8
8
|
slots: {
|
|
9
|
-
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
9
|
+
base: "inline-flex items-center justify-between h-fit rounded-md gap-2",
|
|
10
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",
|
|
@@ -14,7 +14,6 @@ var snippet = tv({
|
|
|
14
14
|
"group",
|
|
15
15
|
"relative",
|
|
16
16
|
"z-10",
|
|
17
|
-
"ml-2",
|
|
18
17
|
"text-lg",
|
|
19
18
|
"text-inherit",
|
|
20
19
|
"data-[hover=true]:bg-transparent"
|
package/dist/colors/common.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
commonColors
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-CRCBVLUP.mjs";
|
|
4
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
5
|
+
import "../chunk-L2OL7R23.mjs";
|
|
4
6
|
import "../chunk-YZYGFPNK.mjs";
|
|
5
7
|
import "../chunk-Y4YW5MKL.mjs";
|
|
6
8
|
import "../chunk-KZJBCC2H.mjs";
|
|
7
9
|
import "../chunk-T3GWIVAM.mjs";
|
|
8
10
|
import "../chunk-OR5PUD24.mjs";
|
|
9
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
10
|
-
import "../chunk-L2OL7R23.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-CNGIMNA5.mjs";
|
|
4
4
|
import {
|
|
5
5
|
semanticColors
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-3YM7ZXUG.mjs";
|
|
7
|
+
import "../chunk-37PIXVP4.mjs";
|
|
7
8
|
import "../chunk-M63AFAHO.mjs";
|
|
8
9
|
import {
|
|
9
10
|
commonColors
|
|
10
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-CRCBVLUP.mjs";
|
|
12
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
13
|
+
import "../chunk-L2OL7R23.mjs";
|
|
11
14
|
import "../chunk-YZYGFPNK.mjs";
|
|
12
15
|
import "../chunk-Y4YW5MKL.mjs";
|
|
13
16
|
import "../chunk-KZJBCC2H.mjs";
|
|
14
17
|
import "../chunk-T3GWIVAM.mjs";
|
|
15
18
|
import "../chunk-OR5PUD24.mjs";
|
|
16
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
17
|
-
import "../chunk-L2OL7R23.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-
|
|
5
|
+
} from "../chunk-3YM7ZXUG.mjs";
|
|
6
|
+
import "../chunk-37PIXVP4.mjs";
|
|
7
|
+
import "../chunk-CRCBVLUP.mjs";
|
|
8
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
9
|
+
import "../chunk-L2OL7R23.mjs";
|
|
7
10
|
import "../chunk-YZYGFPNK.mjs";
|
|
8
11
|
import "../chunk-Y4YW5MKL.mjs";
|
|
9
12
|
import "../chunk-KZJBCC2H.mjs";
|
|
10
13
|
import "../chunk-T3GWIVAM.mjs";
|
|
11
14
|
import "../chunk-OR5PUD24.mjs";
|
|
12
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
13
|
-
import "../chunk-L2OL7R23.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-CNGIMNA5.mjs";
|
|
5
5
|
import {
|
|
6
6
|
semanticColors
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-3YM7ZXUG.mjs";
|
|
8
|
+
import "./chunk-37PIXVP4.mjs";
|
|
8
9
|
import "./chunk-M63AFAHO.mjs";
|
|
9
10
|
import {
|
|
10
11
|
commonColors
|
|
11
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-CRCBVLUP.mjs";
|
|
13
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
14
|
+
import "./chunk-L2OL7R23.mjs";
|
|
12
15
|
import "./chunk-YZYGFPNK.mjs";
|
|
13
16
|
import "./chunk-Y4YW5MKL.mjs";
|
|
14
17
|
import "./chunk-KZJBCC2H.mjs";
|
|
15
18
|
import "./chunk-T3GWIVAM.mjs";
|
|
16
19
|
import "./chunk-OR5PUD24.mjs";
|
|
17
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
18
|
-
import "./chunk-L2OL7R23.mjs";
|
|
19
|
-
import "./chunk-37PIXVP4.mjs";
|
|
20
20
|
export {
|
|
21
21
|
colors,
|
|
22
22
|
commonColors,
|
|
@@ -67,7 +67,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
67
67
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none";
|
|
68
68
|
};
|
|
69
69
|
isIconOnly: {
|
|
70
|
-
true: "p-0 gap-0
|
|
70
|
+
true: "p-0 gap-0";
|
|
71
71
|
false: "[&>svg]:max-w-[2em]";
|
|
72
72
|
};
|
|
73
73
|
disableAnimation: {
|
|
@@ -123,7 +123,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
123
123
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none";
|
|
124
124
|
};
|
|
125
125
|
isIconOnly: {
|
|
126
|
-
true: "p-0 gap-0
|
|
126
|
+
true: "p-0 gap-0";
|
|
127
127
|
false: "[&>svg]:max-w-[2em]";
|
|
128
128
|
};
|
|
129
129
|
disableAnimation: {
|
|
@@ -179,7 +179,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
179
179
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none";
|
|
180
180
|
};
|
|
181
181
|
isIconOnly: {
|
|
182
|
-
true: "p-0 gap-0
|
|
182
|
+
true: "p-0 gap-0";
|
|
183
183
|
false: "[&>svg]:max-w-[2em]";
|
|
184
184
|
};
|
|
185
185
|
disableAnimation: {
|
|
@@ -235,7 +235,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
235
235
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none";
|
|
236
236
|
};
|
|
237
237
|
isIconOnly: {
|
|
238
|
-
true: "p-0 gap-0
|
|
238
|
+
true: "p-0 gap-0";
|
|
239
239
|
false: "[&>svg]:max-w-[2em]";
|
|
240
240
|
};
|
|
241
241
|
disableAnimation: {
|
|
@@ -174,7 +174,7 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
174
174
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none"
|
|
175
175
|
},
|
|
176
176
|
isIconOnly: {
|
|
177
|
-
true: "p-0 gap-0
|
|
177
|
+
true: "p-0 gap-0",
|
|
178
178
|
false: "[&>svg]:max-w-[2em]"
|
|
179
179
|
},
|
|
180
180
|
disableAnimation: {
|
|
@@ -452,27 +452,27 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
452
452
|
{
|
|
453
453
|
isIconOnly: true,
|
|
454
454
|
size: "xs",
|
|
455
|
-
class: "w-6 h-6"
|
|
455
|
+
class: "min-w-[1.5rem] w-6 h-6"
|
|
456
456
|
},
|
|
457
457
|
{
|
|
458
458
|
isIconOnly: true,
|
|
459
459
|
size: "sm",
|
|
460
|
-
class: "w-8 h-8"
|
|
460
|
+
class: "min-w-[2rem] w-8 h-8"
|
|
461
461
|
},
|
|
462
462
|
{
|
|
463
463
|
isIconOnly: true,
|
|
464
464
|
size: "md",
|
|
465
|
-
class: "w-10 h-10"
|
|
465
|
+
class: "min-w-[2.5rem] w-10 h-10"
|
|
466
466
|
},
|
|
467
467
|
{
|
|
468
468
|
isIconOnly: true,
|
|
469
469
|
size: "lg",
|
|
470
|
-
class: "w-12 h-12"
|
|
470
|
+
class: "min-w-[3rem] w-12 h-12"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
473
|
isIconOnly: true,
|
|
474
474
|
size: "xl",
|
|
475
|
-
class: "w-14 h-14"
|
|
475
|
+
class: "min-w-[3.5rem] w-14 h-14"
|
|
476
476
|
}
|
|
477
477
|
]
|
|
478
478
|
});
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
button,
|
|
3
3
|
buttonGroup
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-RWCBIS6I.mjs";
|
|
5
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
|
-
import "../chunk-I4OYRSA7.mjs";
|
|
7
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
|
+
import "../chunk-I4OYRSA7.mjs";
|
|
8
8
|
import "../chunk-INZK6TTL.mjs";
|
|
9
9
|
export {
|
|
10
10
|
button,
|
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.mjs
CHANGED
package/dist/components/index.js
CHANGED
|
@@ -744,7 +744,7 @@ var button = (0, import_tailwind_variants5.tv)({
|
|
|
744
744
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none"
|
|
745
745
|
},
|
|
746
746
|
isIconOnly: {
|
|
747
|
-
true: "p-0 gap-0
|
|
747
|
+
true: "p-0 gap-0",
|
|
748
748
|
false: "[&>svg]:max-w-[2em]"
|
|
749
749
|
},
|
|
750
750
|
disableAnimation: {
|
|
@@ -1022,27 +1022,27 @@ var button = (0, import_tailwind_variants5.tv)({
|
|
|
1022
1022
|
{
|
|
1023
1023
|
isIconOnly: true,
|
|
1024
1024
|
size: "xs",
|
|
1025
|
-
class: "w-6 h-6"
|
|
1025
|
+
class: "min-w-[1.5rem] w-6 h-6"
|
|
1026
1026
|
},
|
|
1027
1027
|
{
|
|
1028
1028
|
isIconOnly: true,
|
|
1029
1029
|
size: "sm",
|
|
1030
|
-
class: "w-8 h-8"
|
|
1030
|
+
class: "min-w-[2rem] w-8 h-8"
|
|
1031
1031
|
},
|
|
1032
1032
|
{
|
|
1033
1033
|
isIconOnly: true,
|
|
1034
1034
|
size: "md",
|
|
1035
|
-
class: "w-10 h-10"
|
|
1035
|
+
class: "min-w-[2.5rem] w-10 h-10"
|
|
1036
1036
|
},
|
|
1037
1037
|
{
|
|
1038
1038
|
isIconOnly: true,
|
|
1039
1039
|
size: "lg",
|
|
1040
|
-
class: "w-12 h-12"
|
|
1040
|
+
class: "min-w-[3rem] w-12 h-12"
|
|
1041
1041
|
},
|
|
1042
1042
|
{
|
|
1043
1043
|
isIconOnly: true,
|
|
1044
1044
|
size: "xl",
|
|
1045
|
-
class: "w-14 h-14"
|
|
1045
|
+
class: "min-w-[3.5rem] w-14 h-14"
|
|
1046
1046
|
}
|
|
1047
1047
|
]
|
|
1048
1048
|
});
|
|
@@ -1396,7 +1396,7 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1396
1396
|
var import_tailwind_variants10 = require("tailwind-variants");
|
|
1397
1397
|
var snippet = (0, import_tailwind_variants10.tv)({
|
|
1398
1398
|
slots: {
|
|
1399
|
-
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
1399
|
+
base: "inline-flex items-center justify-between h-fit rounded-md gap-2",
|
|
1400
1400
|
pre: "bg-transparent text-inherit font-mono font-normal inline-block whitespace-nowrap",
|
|
1401
1401
|
content: "flex flex-col",
|
|
1402
1402
|
symbol: "select-none",
|
|
@@ -1404,7 +1404,6 @@ var snippet = (0, import_tailwind_variants10.tv)({
|
|
|
1404
1404
|
"group",
|
|
1405
1405
|
"relative",
|
|
1406
1406
|
"z-10",
|
|
1407
|
-
"ml-2",
|
|
1408
1407
|
"text-lg",
|
|
1409
1408
|
"text-inherit",
|
|
1410
1409
|
"data-[hover=true]:bg-transparent"
|
|
@@ -5147,14 +5146,13 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5147
5146
|
"bg-white",
|
|
5148
5147
|
"z-50",
|
|
5149
5148
|
"w-full",
|
|
5150
|
-
"shadow-lg",
|
|
5151
5149
|
"box-border",
|
|
5150
|
+
"bg-background",
|
|
5152
5151
|
"dark:bg-content1",
|
|
5153
5152
|
"border border-default-100",
|
|
5154
5153
|
"outline-none",
|
|
5155
5154
|
"my-16"
|
|
5156
5155
|
],
|
|
5157
|
-
trigger: [],
|
|
5158
5156
|
backdrop: "z-50",
|
|
5159
5157
|
header: "flex py-4 px-6 flex-initial text-lg font-semibold",
|
|
5160
5158
|
body: "flex flex-1 flex-col gap-3 px-6 py-2",
|
|
@@ -5222,6 +5220,29 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5222
5220
|
"2xl": { base: "rounded-2xl" },
|
|
5223
5221
|
"3xl": { base: "rounded-3xl" }
|
|
5224
5222
|
},
|
|
5223
|
+
shadow: {
|
|
5224
|
+
none: {
|
|
5225
|
+
base: "shadow-none"
|
|
5226
|
+
},
|
|
5227
|
+
sm: {
|
|
5228
|
+
base: "shadow-sm"
|
|
5229
|
+
},
|
|
5230
|
+
md: {
|
|
5231
|
+
base: "shadow-md"
|
|
5232
|
+
},
|
|
5233
|
+
lg: {
|
|
5234
|
+
base: "shadow-lg"
|
|
5235
|
+
},
|
|
5236
|
+
xl: {
|
|
5237
|
+
base: "shadow-xl"
|
|
5238
|
+
},
|
|
5239
|
+
"2xl": {
|
|
5240
|
+
base: "shadow-2xl"
|
|
5241
|
+
},
|
|
5242
|
+
inner: {
|
|
5243
|
+
base: "shadow-inner"
|
|
5244
|
+
}
|
|
5245
|
+
},
|
|
5225
5246
|
backdrop: {
|
|
5226
5247
|
transparent: {
|
|
5227
5248
|
backdrop: "hidden"
|
|
@@ -5250,6 +5271,7 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5250
5271
|
defaultVariants: {
|
|
5251
5272
|
size: "md",
|
|
5252
5273
|
radius: "lg",
|
|
5274
|
+
shadow: "lg",
|
|
5253
5275
|
backdrop: "opaque",
|
|
5254
5276
|
scrollBehavior: "normal"
|
|
5255
5277
|
},
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import "../chunk-PRWEADY4.mjs";
|
|
2
|
+
import {
|
|
3
|
+
table
|
|
4
|
+
} from "../chunk-U54UQOTS.mjs";
|
|
2
5
|
import {
|
|
3
6
|
tabs
|
|
4
7
|
} from "../chunk-RWQ57OVD.mjs";
|
|
@@ -8,6 +11,9 @@ import {
|
|
|
8
11
|
import {
|
|
9
12
|
user
|
|
10
13
|
} from "../chunk-ZFYINWFR.mjs";
|
|
14
|
+
import {
|
|
15
|
+
pagination
|
|
16
|
+
} from "../chunk-K55AW2NU.mjs";
|
|
11
17
|
import {
|
|
12
18
|
popover
|
|
13
19
|
} from "../chunk-YOSP6YO6.mjs";
|
|
@@ -23,7 +29,7 @@ import {
|
|
|
23
29
|
} from "../chunk-P5E3PNHW.mjs";
|
|
24
30
|
import {
|
|
25
31
|
snippet
|
|
26
|
-
} from "../chunk-
|
|
32
|
+
} from "../chunk-SPRUF3FQ.mjs";
|
|
27
33
|
import {
|
|
28
34
|
spacer
|
|
29
35
|
} from "../chunk-3B4SYPW2.mjs";
|
|
@@ -31,8 +37,11 @@ import {
|
|
|
31
37
|
spinner
|
|
32
38
|
} from "../chunk-HOQUCE4N.mjs";
|
|
33
39
|
import {
|
|
34
|
-
|
|
35
|
-
|
|
40
|
+
dropdown,
|
|
41
|
+
dropdownItem,
|
|
42
|
+
dropdownMenu,
|
|
43
|
+
dropdownSection
|
|
44
|
+
} from "../chunk-4K3TOAY2.mjs";
|
|
36
45
|
import {
|
|
37
46
|
image
|
|
38
47
|
} from "../chunk-R4PNBVFX.mjs";
|
|
@@ -48,13 +57,14 @@ import {
|
|
|
48
57
|
} from "../chunk-YQXYRWJP.mjs";
|
|
49
58
|
import {
|
|
50
59
|
modal
|
|
51
|
-
} from "../chunk-
|
|
60
|
+
} from "../chunk-EQVBIZB3.mjs";
|
|
52
61
|
import {
|
|
53
62
|
navbar
|
|
54
63
|
} from "../chunk-LWJT5D6G.mjs";
|
|
55
64
|
import {
|
|
56
|
-
|
|
57
|
-
|
|
65
|
+
button,
|
|
66
|
+
buttonGroup
|
|
67
|
+
} from "../chunk-RWCBIS6I.mjs";
|
|
58
68
|
import {
|
|
59
69
|
card
|
|
60
70
|
} from "../chunk-QW2ZGOKD.mjs";
|
|
@@ -77,12 +87,6 @@ import {
|
|
|
77
87
|
import {
|
|
78
88
|
drip
|
|
79
89
|
} from "../chunk-OIVGIOVG.mjs";
|
|
80
|
-
import {
|
|
81
|
-
dropdown,
|
|
82
|
-
dropdownItem,
|
|
83
|
-
dropdownMenu,
|
|
84
|
-
dropdownSection
|
|
85
|
-
} from "../chunk-4K3TOAY2.mjs";
|
|
86
90
|
import {
|
|
87
91
|
accordion,
|
|
88
92
|
accordionItem
|
|
@@ -94,13 +98,9 @@ import {
|
|
|
94
98
|
import {
|
|
95
99
|
badge
|
|
96
100
|
} from "../chunk-NASOHMPB.mjs";
|
|
97
|
-
import {
|
|
98
|
-
button,
|
|
99
|
-
buttonGroup
|
|
100
|
-
} from "../chunk-WUX2XFG4.mjs";
|
|
101
101
|
import "../chunk-CMYR6AOY.mjs";
|
|
102
|
-
import "../chunk-I4OYRSA7.mjs";
|
|
103
102
|
import "../chunk-K7LK7NCE.mjs";
|
|
103
|
+
import "../chunk-I4OYRSA7.mjs";
|
|
104
104
|
import "../chunk-INZK6TTL.mjs";
|
|
105
105
|
export {
|
|
106
106
|
accordion,
|
|
@@ -7,10 +7,10 @@ import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
|
|
|
7
7
|
*
|
|
8
8
|
* @example
|
|
9
9
|
* ```js
|
|
10
|
-
* const {base,
|
|
10
|
+
* const {base, backdrop, header, body, footer} = modal({...})
|
|
11
11
|
*
|
|
12
12
|
* <div>
|
|
13
|
-
* <button
|
|
13
|
+
* <button>Open Modal</button>
|
|
14
14
|
* <div className={backdrop()}/>
|
|
15
15
|
* <div className={base()}>
|
|
16
16
|
* <div className={header()}>Header</div>
|
|
@@ -79,6 +79,29 @@ declare const modal: tailwind_variants.TVReturnType<{
|
|
|
79
79
|
base: string;
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
|
+
shadow: {
|
|
83
|
+
none: {
|
|
84
|
+
base: string;
|
|
85
|
+
};
|
|
86
|
+
sm: {
|
|
87
|
+
base: string;
|
|
88
|
+
};
|
|
89
|
+
md: {
|
|
90
|
+
base: string;
|
|
91
|
+
};
|
|
92
|
+
lg: {
|
|
93
|
+
base: string;
|
|
94
|
+
};
|
|
95
|
+
xl: {
|
|
96
|
+
base: string;
|
|
97
|
+
};
|
|
98
|
+
"2xl": {
|
|
99
|
+
base: string;
|
|
100
|
+
};
|
|
101
|
+
inner: {
|
|
102
|
+
base: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
82
105
|
backdrop: {
|
|
83
106
|
transparent: {
|
|
84
107
|
backdrop: string;
|
|
@@ -106,7 +129,6 @@ declare const modal: tailwind_variants.TVReturnType<{
|
|
|
106
129
|
}, {
|
|
107
130
|
wrapper: string[];
|
|
108
131
|
base: string[];
|
|
109
|
-
trigger: never[];
|
|
110
132
|
backdrop: string;
|
|
111
133
|
header: string;
|
|
112
134
|
body: string;
|
|
@@ -171,6 +193,29 @@ declare const modal: tailwind_variants.TVReturnType<{
|
|
|
171
193
|
base: string;
|
|
172
194
|
};
|
|
173
195
|
};
|
|
196
|
+
shadow: {
|
|
197
|
+
none: {
|
|
198
|
+
base: string;
|
|
199
|
+
};
|
|
200
|
+
sm: {
|
|
201
|
+
base: string;
|
|
202
|
+
};
|
|
203
|
+
md: {
|
|
204
|
+
base: string;
|
|
205
|
+
};
|
|
206
|
+
lg: {
|
|
207
|
+
base: string;
|
|
208
|
+
};
|
|
209
|
+
xl: {
|
|
210
|
+
base: string;
|
|
211
|
+
};
|
|
212
|
+
"2xl": {
|
|
213
|
+
base: string;
|
|
214
|
+
};
|
|
215
|
+
inner: {
|
|
216
|
+
base: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
174
219
|
backdrop: {
|
|
175
220
|
transparent: {
|
|
176
221
|
backdrop: string;
|
|
@@ -254,6 +299,29 @@ declare const modal: tailwind_variants.TVReturnType<{
|
|
|
254
299
|
base: string;
|
|
255
300
|
};
|
|
256
301
|
};
|
|
302
|
+
shadow: {
|
|
303
|
+
none: {
|
|
304
|
+
base: string;
|
|
305
|
+
};
|
|
306
|
+
sm: {
|
|
307
|
+
base: string;
|
|
308
|
+
};
|
|
309
|
+
md: {
|
|
310
|
+
base: string;
|
|
311
|
+
};
|
|
312
|
+
lg: {
|
|
313
|
+
base: string;
|
|
314
|
+
};
|
|
315
|
+
xl: {
|
|
316
|
+
base: string;
|
|
317
|
+
};
|
|
318
|
+
"2xl": {
|
|
319
|
+
base: string;
|
|
320
|
+
};
|
|
321
|
+
inner: {
|
|
322
|
+
base: string;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
257
325
|
backdrop: {
|
|
258
326
|
transparent: {
|
|
259
327
|
backdrop: string;
|
|
@@ -337,6 +405,29 @@ declare const modal: tailwind_variants.TVReturnType<{
|
|
|
337
405
|
base: string;
|
|
338
406
|
};
|
|
339
407
|
};
|
|
408
|
+
shadow: {
|
|
409
|
+
none: {
|
|
410
|
+
base: string;
|
|
411
|
+
};
|
|
412
|
+
sm: {
|
|
413
|
+
base: string;
|
|
414
|
+
};
|
|
415
|
+
md: {
|
|
416
|
+
base: string;
|
|
417
|
+
};
|
|
418
|
+
lg: {
|
|
419
|
+
base: string;
|
|
420
|
+
};
|
|
421
|
+
xl: {
|
|
422
|
+
base: string;
|
|
423
|
+
};
|
|
424
|
+
"2xl": {
|
|
425
|
+
base: string;
|
|
426
|
+
};
|
|
427
|
+
inner: {
|
|
428
|
+
base: string;
|
|
429
|
+
};
|
|
430
|
+
};
|
|
340
431
|
backdrop: {
|
|
341
432
|
transparent: {
|
|
342
433
|
backdrop: string;
|
|
@@ -364,7 +455,6 @@ declare const modal: tailwind_variants.TVReturnType<{
|
|
|
364
455
|
}, {
|
|
365
456
|
wrapper: string[];
|
|
366
457
|
base: string[];
|
|
367
|
-
trigger: never[];
|
|
368
458
|
backdrop: string;
|
|
369
459
|
header: string;
|
|
370
460
|
body: string;
|
package/dist/components/modal.js
CHANGED
|
@@ -45,14 +45,13 @@ var modal = (0, import_tailwind_variants.tv)({
|
|
|
45
45
|
"bg-white",
|
|
46
46
|
"z-50",
|
|
47
47
|
"w-full",
|
|
48
|
-
"shadow-lg",
|
|
49
48
|
"box-border",
|
|
49
|
+
"bg-background",
|
|
50
50
|
"dark:bg-content1",
|
|
51
51
|
"border border-default-100",
|
|
52
52
|
"outline-none",
|
|
53
53
|
"my-16"
|
|
54
54
|
],
|
|
55
|
-
trigger: [],
|
|
56
55
|
backdrop: "z-50",
|
|
57
56
|
header: "flex py-4 px-6 flex-initial text-lg font-semibold",
|
|
58
57
|
body: "flex flex-1 flex-col gap-3 px-6 py-2",
|
|
@@ -120,6 +119,29 @@ var modal = (0, import_tailwind_variants.tv)({
|
|
|
120
119
|
"2xl": { base: "rounded-2xl" },
|
|
121
120
|
"3xl": { base: "rounded-3xl" }
|
|
122
121
|
},
|
|
122
|
+
shadow: {
|
|
123
|
+
none: {
|
|
124
|
+
base: "shadow-none"
|
|
125
|
+
},
|
|
126
|
+
sm: {
|
|
127
|
+
base: "shadow-sm"
|
|
128
|
+
},
|
|
129
|
+
md: {
|
|
130
|
+
base: "shadow-md"
|
|
131
|
+
},
|
|
132
|
+
lg: {
|
|
133
|
+
base: "shadow-lg"
|
|
134
|
+
},
|
|
135
|
+
xl: {
|
|
136
|
+
base: "shadow-xl"
|
|
137
|
+
},
|
|
138
|
+
"2xl": {
|
|
139
|
+
base: "shadow-2xl"
|
|
140
|
+
},
|
|
141
|
+
inner: {
|
|
142
|
+
base: "shadow-inner"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
123
145
|
backdrop: {
|
|
124
146
|
transparent: {
|
|
125
147
|
backdrop: "hidden"
|
|
@@ -148,6 +170,7 @@ var modal = (0, import_tailwind_variants.tv)({
|
|
|
148
170
|
defaultVariants: {
|
|
149
171
|
size: "md",
|
|
150
172
|
radius: "lg",
|
|
173
|
+
shadow: "lg",
|
|
151
174
|
backdrop: "opaque",
|
|
152
175
|
scrollBehavior: "normal"
|
|
153
176
|
},
|
|
@@ -102,7 +102,7 @@ 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 h-fit rounded-md",
|
|
105
|
+
base: "inline-flex items-center justify-between h-fit rounded-md gap-2",
|
|
106
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",
|
|
@@ -110,7 +110,6 @@ var snippet = (0, import_tailwind_variants.tv)({
|
|
|
110
110
|
"group",
|
|
111
111
|
"relative",
|
|
112
112
|
"z-10",
|
|
113
|
-
"ml-2",
|
|
114
113
|
"text-lg",
|
|
115
114
|
"text-inherit",
|
|
116
115
|
"data-[hover=true]:bg-transparent"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
snippet
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-SPRUF3FQ.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
|
-
import "../chunk-I4OYRSA7.mjs";
|
|
6
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
+
import "../chunk-I4OYRSA7.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
snippet
|
package/dist/components/tabs.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -776,7 +776,7 @@ var button = (0, import_tailwind_variants5.tv)({
|
|
|
776
776
|
true: "[&:not(:first-child):not(:last-child)]:rounded-none"
|
|
777
777
|
},
|
|
778
778
|
isIconOnly: {
|
|
779
|
-
true: "p-0 gap-0
|
|
779
|
+
true: "p-0 gap-0",
|
|
780
780
|
false: "[&>svg]:max-w-[2em]"
|
|
781
781
|
},
|
|
782
782
|
disableAnimation: {
|
|
@@ -1054,27 +1054,27 @@ var button = (0, import_tailwind_variants5.tv)({
|
|
|
1054
1054
|
{
|
|
1055
1055
|
isIconOnly: true,
|
|
1056
1056
|
size: "xs",
|
|
1057
|
-
class: "w-6 h-6"
|
|
1057
|
+
class: "min-w-[1.5rem] w-6 h-6"
|
|
1058
1058
|
},
|
|
1059
1059
|
{
|
|
1060
1060
|
isIconOnly: true,
|
|
1061
1061
|
size: "sm",
|
|
1062
|
-
class: "w-8 h-8"
|
|
1062
|
+
class: "min-w-[2rem] w-8 h-8"
|
|
1063
1063
|
},
|
|
1064
1064
|
{
|
|
1065
1065
|
isIconOnly: true,
|
|
1066
1066
|
size: "md",
|
|
1067
|
-
class: "w-10 h-10"
|
|
1067
|
+
class: "min-w-[2.5rem] w-10 h-10"
|
|
1068
1068
|
},
|
|
1069
1069
|
{
|
|
1070
1070
|
isIconOnly: true,
|
|
1071
1071
|
size: "lg",
|
|
1072
|
-
class: "w-12 h-12"
|
|
1072
|
+
class: "min-w-[3rem] w-12 h-12"
|
|
1073
1073
|
},
|
|
1074
1074
|
{
|
|
1075
1075
|
isIconOnly: true,
|
|
1076
1076
|
size: "xl",
|
|
1077
|
-
class: "w-14 h-14"
|
|
1077
|
+
class: "min-w-[3.5rem] w-14 h-14"
|
|
1078
1078
|
}
|
|
1079
1079
|
]
|
|
1080
1080
|
});
|
|
@@ -1428,7 +1428,7 @@ var popover = (0, import_tailwind_variants9.tv)({
|
|
|
1428
1428
|
var import_tailwind_variants10 = require("tailwind-variants");
|
|
1429
1429
|
var snippet = (0, import_tailwind_variants10.tv)({
|
|
1430
1430
|
slots: {
|
|
1431
|
-
base: "inline-flex items-center justify-between h-fit rounded-md",
|
|
1431
|
+
base: "inline-flex items-center justify-between h-fit rounded-md gap-2",
|
|
1432
1432
|
pre: "bg-transparent text-inherit font-mono font-normal inline-block whitespace-nowrap",
|
|
1433
1433
|
content: "flex flex-col",
|
|
1434
1434
|
symbol: "select-none",
|
|
@@ -1436,7 +1436,6 @@ var snippet = (0, import_tailwind_variants10.tv)({
|
|
|
1436
1436
|
"group",
|
|
1437
1437
|
"relative",
|
|
1438
1438
|
"z-10",
|
|
1439
|
-
"ml-2",
|
|
1440
1439
|
"text-lg",
|
|
1441
1440
|
"text-inherit",
|
|
1442
1441
|
"data-[hover=true]:bg-transparent"
|
|
@@ -5179,14 +5178,13 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5179
5178
|
"bg-white",
|
|
5180
5179
|
"z-50",
|
|
5181
5180
|
"w-full",
|
|
5182
|
-
"shadow-lg",
|
|
5183
5181
|
"box-border",
|
|
5182
|
+
"bg-background",
|
|
5184
5183
|
"dark:bg-content1",
|
|
5185
5184
|
"border border-default-100",
|
|
5186
5185
|
"outline-none",
|
|
5187
5186
|
"my-16"
|
|
5188
5187
|
],
|
|
5189
|
-
trigger: [],
|
|
5190
5188
|
backdrop: "z-50",
|
|
5191
5189
|
header: "flex py-4 px-6 flex-initial text-lg font-semibold",
|
|
5192
5190
|
body: "flex flex-1 flex-col gap-3 px-6 py-2",
|
|
@@ -5254,6 +5252,29 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5254
5252
|
"2xl": { base: "rounded-2xl" },
|
|
5255
5253
|
"3xl": { base: "rounded-3xl" }
|
|
5256
5254
|
},
|
|
5255
|
+
shadow: {
|
|
5256
|
+
none: {
|
|
5257
|
+
base: "shadow-none"
|
|
5258
|
+
},
|
|
5259
|
+
sm: {
|
|
5260
|
+
base: "shadow-sm"
|
|
5261
|
+
},
|
|
5262
|
+
md: {
|
|
5263
|
+
base: "shadow-md"
|
|
5264
|
+
},
|
|
5265
|
+
lg: {
|
|
5266
|
+
base: "shadow-lg"
|
|
5267
|
+
},
|
|
5268
|
+
xl: {
|
|
5269
|
+
base: "shadow-xl"
|
|
5270
|
+
},
|
|
5271
|
+
"2xl": {
|
|
5272
|
+
base: "shadow-2xl"
|
|
5273
|
+
},
|
|
5274
|
+
inner: {
|
|
5275
|
+
base: "shadow-inner"
|
|
5276
|
+
}
|
|
5277
|
+
},
|
|
5257
5278
|
backdrop: {
|
|
5258
5279
|
transparent: {
|
|
5259
5280
|
backdrop: "hidden"
|
|
@@ -5282,6 +5303,7 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5282
5303
|
defaultVariants: {
|
|
5283
5304
|
size: "md",
|
|
5284
5305
|
radius: "lg",
|
|
5306
|
+
shadow: "lg",
|
|
5285
5307
|
backdrop: "opaque",
|
|
5286
5308
|
scrollBehavior: "normal"
|
|
5287
5309
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import "./chunk-PRWEADY4.mjs";
|
|
2
|
+
import {
|
|
3
|
+
table
|
|
4
|
+
} from "./chunk-U54UQOTS.mjs";
|
|
2
5
|
import {
|
|
3
6
|
tabs
|
|
4
7
|
} from "./chunk-RWQ57OVD.mjs";
|
|
@@ -8,6 +11,9 @@ import {
|
|
|
8
11
|
import {
|
|
9
12
|
user
|
|
10
13
|
} from "./chunk-ZFYINWFR.mjs";
|
|
14
|
+
import {
|
|
15
|
+
pagination
|
|
16
|
+
} from "./chunk-K55AW2NU.mjs";
|
|
11
17
|
import {
|
|
12
18
|
popover
|
|
13
19
|
} from "./chunk-YOSP6YO6.mjs";
|
|
@@ -23,7 +29,7 @@ import {
|
|
|
23
29
|
} from "./chunk-P5E3PNHW.mjs";
|
|
24
30
|
import {
|
|
25
31
|
snippet
|
|
26
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-SPRUF3FQ.mjs";
|
|
27
33
|
import {
|
|
28
34
|
spacer
|
|
29
35
|
} from "./chunk-3B4SYPW2.mjs";
|
|
@@ -31,8 +37,11 @@ import {
|
|
|
31
37
|
spinner
|
|
32
38
|
} from "./chunk-HOQUCE4N.mjs";
|
|
33
39
|
import {
|
|
34
|
-
|
|
35
|
-
|
|
40
|
+
dropdown,
|
|
41
|
+
dropdownItem,
|
|
42
|
+
dropdownMenu,
|
|
43
|
+
dropdownSection
|
|
44
|
+
} from "./chunk-4K3TOAY2.mjs";
|
|
36
45
|
import {
|
|
37
46
|
image
|
|
38
47
|
} from "./chunk-R4PNBVFX.mjs";
|
|
@@ -48,13 +57,14 @@ import {
|
|
|
48
57
|
} from "./chunk-YQXYRWJP.mjs";
|
|
49
58
|
import {
|
|
50
59
|
modal
|
|
51
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-EQVBIZB3.mjs";
|
|
52
61
|
import {
|
|
53
62
|
navbar
|
|
54
63
|
} from "./chunk-LWJT5D6G.mjs";
|
|
55
64
|
import {
|
|
56
|
-
|
|
57
|
-
|
|
65
|
+
button,
|
|
66
|
+
buttonGroup
|
|
67
|
+
} from "./chunk-RWCBIS6I.mjs";
|
|
58
68
|
import {
|
|
59
69
|
card
|
|
60
70
|
} from "./chunk-QW2ZGOKD.mjs";
|
|
@@ -77,36 +87,6 @@ import {
|
|
|
77
87
|
import {
|
|
78
88
|
drip
|
|
79
89
|
} from "./chunk-OIVGIOVG.mjs";
|
|
80
|
-
import {
|
|
81
|
-
dropdown,
|
|
82
|
-
dropdownItem,
|
|
83
|
-
dropdownMenu,
|
|
84
|
-
dropdownSection
|
|
85
|
-
} from "./chunk-4K3TOAY2.mjs";
|
|
86
|
-
import {
|
|
87
|
-
nextui
|
|
88
|
-
} from "./chunk-XMV4AU26.mjs";
|
|
89
|
-
import "./chunk-JH2TR6BI.mjs";
|
|
90
|
-
import "./chunk-WQEDQHKX.mjs";
|
|
91
|
-
import {
|
|
92
|
-
colors
|
|
93
|
-
} from "./chunk-PFNGC6IG.mjs";
|
|
94
|
-
import {
|
|
95
|
-
semanticColors
|
|
96
|
-
} from "./chunk-Z5FFO6RH.mjs";
|
|
97
|
-
import "./chunk-M63AFAHO.mjs";
|
|
98
|
-
import {
|
|
99
|
-
commonColors
|
|
100
|
-
} from "./chunk-W4HTBNGS.mjs";
|
|
101
|
-
import "./chunk-YZYGFPNK.mjs";
|
|
102
|
-
import "./chunk-Y4YW5MKL.mjs";
|
|
103
|
-
import "./chunk-KZJBCC2H.mjs";
|
|
104
|
-
import "./chunk-T3GWIVAM.mjs";
|
|
105
|
-
import "./chunk-OR5PUD24.mjs";
|
|
106
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
107
|
-
import "./chunk-L2OL7R23.mjs";
|
|
108
|
-
import "./chunk-37PIXVP4.mjs";
|
|
109
|
-
import "./chunk-DMASP6FA.mjs";
|
|
110
90
|
import {
|
|
111
91
|
accordion,
|
|
112
92
|
accordionItem
|
|
@@ -118,15 +98,14 @@ import {
|
|
|
118
98
|
import {
|
|
119
99
|
badge
|
|
120
100
|
} from "./chunk-NASOHMPB.mjs";
|
|
121
|
-
import {
|
|
122
|
-
button,
|
|
123
|
-
buttonGroup
|
|
124
|
-
} from "./chunk-WUX2XFG4.mjs";
|
|
125
101
|
import "./chunk-CMYR6AOY.mjs";
|
|
102
|
+
import "./chunk-K7LK7NCE.mjs";
|
|
126
103
|
import {
|
|
127
104
|
colorVariants
|
|
128
105
|
} from "./chunk-I4OYRSA7.mjs";
|
|
129
|
-
import
|
|
106
|
+
import {
|
|
107
|
+
nextui
|
|
108
|
+
} from "./chunk-JR6TMRUJ.mjs";
|
|
130
109
|
import {
|
|
131
110
|
absoluteFullClasses,
|
|
132
111
|
baseStyles,
|
|
@@ -134,6 +113,27 @@ import {
|
|
|
134
113
|
ringClasses,
|
|
135
114
|
translateCenterClasses
|
|
136
115
|
} from "./chunk-INZK6TTL.mjs";
|
|
116
|
+
import "./chunk-JH2TR6BI.mjs";
|
|
117
|
+
import "./chunk-WQEDQHKX.mjs";
|
|
118
|
+
import {
|
|
119
|
+
colors
|
|
120
|
+
} from "./chunk-CNGIMNA5.mjs";
|
|
121
|
+
import {
|
|
122
|
+
semanticColors
|
|
123
|
+
} from "./chunk-3YM7ZXUG.mjs";
|
|
124
|
+
import "./chunk-37PIXVP4.mjs";
|
|
125
|
+
import "./chunk-M63AFAHO.mjs";
|
|
126
|
+
import "./chunk-DMASP6FA.mjs";
|
|
127
|
+
import {
|
|
128
|
+
commonColors
|
|
129
|
+
} from "./chunk-CRCBVLUP.mjs";
|
|
130
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
131
|
+
import "./chunk-L2OL7R23.mjs";
|
|
132
|
+
import "./chunk-YZYGFPNK.mjs";
|
|
133
|
+
import "./chunk-Y4YW5MKL.mjs";
|
|
134
|
+
import "./chunk-KZJBCC2H.mjs";
|
|
135
|
+
import "./chunk-T3GWIVAM.mjs";
|
|
136
|
+
import "./chunk-OR5PUD24.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-
|
|
3
|
+
} from "./chunk-JR6TMRUJ.mjs";
|
|
4
|
+
import "./chunk-INZK6TTL.mjs";
|
|
4
5
|
import "./chunk-JH2TR6BI.mjs";
|
|
5
6
|
import "./chunk-WQEDQHKX.mjs";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-CNGIMNA5.mjs";
|
|
8
|
+
import "./chunk-3YM7ZXUG.mjs";
|
|
9
|
+
import "./chunk-37PIXVP4.mjs";
|
|
8
10
|
import "./chunk-M63AFAHO.mjs";
|
|
9
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-DMASP6FA.mjs";
|
|
12
|
+
import "./chunk-CRCBVLUP.mjs";
|
|
13
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
14
|
+
import "./chunk-L2OL7R23.mjs";
|
|
10
15
|
import "./chunk-YZYGFPNK.mjs";
|
|
11
16
|
import "./chunk-Y4YW5MKL.mjs";
|
|
12
17
|
import "./chunk-KZJBCC2H.mjs";
|
|
13
18
|
import "./chunk-T3GWIVAM.mjs";
|
|
14
19
|
import "./chunk-OR5PUD24.mjs";
|
|
15
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
16
|
-
import "./chunk-L2OL7R23.mjs";
|
|
17
|
-
import "./chunk-37PIXVP4.mjs";
|
|
18
|
-
import "./chunk-DMASP6FA.mjs";
|
|
19
|
-
import "./chunk-INZK6TTL.mjs";
|
|
20
20
|
export {
|
|
21
21
|
nextui
|
|
22
22
|
};
|
package/dist/utils/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
pink
|
|
3
|
+
} from "./chunk-DCEG5LGX.mjs";
|
|
4
|
+
import {
|
|
5
|
+
purple
|
|
6
|
+
} from "./chunk-L2OL7R23.mjs";
|
|
1
7
|
import {
|
|
2
8
|
red
|
|
3
9
|
} from "./chunk-YZYGFPNK.mjs";
|
|
@@ -13,12 +19,6 @@ import {
|
|
|
13
19
|
import {
|
|
14
20
|
green
|
|
15
21
|
} from "./chunk-OR5PUD24.mjs";
|
|
16
|
-
import {
|
|
17
|
-
pink
|
|
18
|
-
} from "./chunk-DCEG5LGX.mjs";
|
|
19
|
-
import {
|
|
20
|
-
purple
|
|
21
|
-
} from "./chunk-L2OL7R23.mjs";
|
|
22
22
|
|
|
23
23
|
// src/colors/common.ts
|
|
24
24
|
var commonColors = {
|