@nextui-org/theme 0.0.0-dev-v2-20230618174149 → 0.0.0-dev-v2-20230619132750
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-NASOHMPB.mjs → chunk-4G25OMVV.mjs} +1 -1
- package/dist/{chunk-MWWMIOTS.mjs → chunk-6PIJZSOY.mjs} +1 -1
- package/dist/{chunk-TO7LQPC3.mjs → chunk-AJLEZSRF.mjs} +1 -1
- package/dist/{chunk-27PQQNKZ.mjs → chunk-BH4BMASL.mjs} +1 -1
- package/dist/{chunk-SPRUF3FQ.mjs → chunk-DWC7GT4K.mjs} +1 -1
- package/dist/{chunk-I4OYRSA7.mjs → chunk-FPFQCKUP.mjs} +6 -6
- package/dist/{chunk-K55AW2NU.mjs → chunk-ITXIAXJ5.mjs} +1 -1
- package/dist/{chunk-RWQ57OVD.mjs → chunk-NVCWXYAR.mjs} +1 -1
- package/dist/{chunk-YOSP6YO6.mjs → chunk-O32L4YWJ.mjs} +1 -1
- package/dist/{chunk-RWCBIS6I.mjs → chunk-QU6QFAKV.mjs} +7 -7
- package/dist/{chunk-EQVBIZB3.mjs → chunk-UHOIXUPW.mjs} +2 -1
- package/dist/components/avatar.js +6 -6
- package/dist/components/avatar.mjs +2 -2
- package/dist/components/badge.js +6 -6
- package/dist/components/badge.mjs +2 -2
- package/dist/components/button.js +12 -12
- package/dist/components/button.mjs +2 -2
- package/dist/components/chip.js +6 -6
- package/dist/components/chip.mjs +2 -2
- package/dist/components/code.js +6 -6
- package/dist/components/code.mjs +2 -2
- package/dist/components/index.js +14 -13
- package/dist/components/index.mjs +41 -41
- package/dist/components/modal.js +2 -1
- package/dist/components/modal.mjs +1 -1
- package/dist/components/pagination.js +6 -6
- package/dist/components/pagination.mjs +2 -2
- package/dist/components/popover.js +6 -6
- package/dist/components/popover.mjs +2 -2
- package/dist/components/snippet.js +6 -6
- package/dist/components/snippet.mjs +2 -2
- package/dist/components/tabs.js +6 -6
- package/dist/components/tabs.mjs +2 -2
- package/dist/index.js +14 -13
- package/dist/index.mjs +42 -42
- package/dist/utils/index.js +6 -6
- package/dist/utils/index.mjs +1 -1
- package/dist/utils/variants.js +6 -6
- package/dist/utils/variants.mjs +1 -1
- package/package.json +1 -1
|
@@ -27,12 +27,12 @@ var bordered = {
|
|
|
27
27
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
28
28
|
};
|
|
29
29
|
var flat = {
|
|
30
|
-
default: "bg-default
|
|
31
|
-
primary: "bg-primary
|
|
32
|
-
secondary: "bg-secondary
|
|
33
|
-
success: "bg-success
|
|
34
|
-
warning: "bg-warning
|
|
35
|
-
danger: "bg-danger
|
|
30
|
+
default: "bg-default/20 text-default-foreground",
|
|
31
|
+
primary: "bg-primary/20 text-primary",
|
|
32
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
33
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
34
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
35
|
+
danger: "bg-danger/20 text-danger",
|
|
36
36
|
foreground: "bg-foreground/10 text-foreground"
|
|
37
37
|
};
|
|
38
38
|
var faded = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
colorVariants
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FPFQCKUP.mjs";
|
|
4
4
|
|
|
5
5
|
// src/components/button.ts
|
|
6
6
|
import { tv } from "tailwind-variants";
|
|
@@ -250,32 +250,32 @@ var button = tv({
|
|
|
250
250
|
{
|
|
251
251
|
variant: "light",
|
|
252
252
|
color: "default",
|
|
253
|
-
class: [colorVariants.light.default, "data-[hover=true]:bg-default
|
|
253
|
+
class: [colorVariants.light.default, "data-[hover=true]:bg-default/20"]
|
|
254
254
|
},
|
|
255
255
|
{
|
|
256
256
|
variant: "light",
|
|
257
257
|
color: "primary",
|
|
258
|
-
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary
|
|
258
|
+
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary/20"]
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
variant: "light",
|
|
262
262
|
color: "secondary",
|
|
263
|
-
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary
|
|
263
|
+
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary/20"]
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
variant: "light",
|
|
267
267
|
color: "success",
|
|
268
|
-
class: [colorVariants.light.success, "data-[hover=true]:bg-success
|
|
268
|
+
class: [colorVariants.light.success, "data-[hover=true]:bg-success/20"]
|
|
269
269
|
},
|
|
270
270
|
{
|
|
271
271
|
variant: "light",
|
|
272
272
|
color: "warning",
|
|
273
|
-
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning
|
|
273
|
+
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning/20"]
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
variant: "light",
|
|
277
277
|
color: "danger",
|
|
278
|
-
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger
|
|
278
|
+
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger/20"]
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
variant: "ghost",
|
|
@@ -26,6 +26,7 @@ var modal = tv({
|
|
|
26
26
|
"dark:bg-content1",
|
|
27
27
|
"border border-default-100",
|
|
28
28
|
"outline-none",
|
|
29
|
+
"mx-6",
|
|
29
30
|
"my-16"
|
|
30
31
|
],
|
|
31
32
|
backdrop: "z-50",
|
|
@@ -82,7 +83,7 @@ var modal = tv({
|
|
|
82
83
|
base: "max-w-5xl"
|
|
83
84
|
},
|
|
84
85
|
full: {
|
|
85
|
-
base: "my-0 max-w-full h-[100dvh] !rounded-none"
|
|
86
|
+
base: "my-0 mx-0 max-w-full h-[100dvh] !rounded-none"
|
|
86
87
|
}
|
|
87
88
|
},
|
|
88
89
|
radius: {
|
|
@@ -64,12 +64,12 @@ var bordered = {
|
|
|
64
64
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
65
65
|
};
|
|
66
66
|
var flat = {
|
|
67
|
-
default: "bg-default
|
|
68
|
-
primary: "bg-primary
|
|
69
|
-
secondary: "bg-secondary
|
|
70
|
-
success: "bg-success
|
|
71
|
-
warning: "bg-warning
|
|
72
|
-
danger: "bg-danger
|
|
67
|
+
default: "bg-default/20 text-default-foreground",
|
|
68
|
+
primary: "bg-primary/20 text-primary",
|
|
69
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
70
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
71
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
72
|
+
danger: "bg-danger/20 text-danger",
|
|
73
73
|
foreground: "bg-foreground/10 text-foreground"
|
|
74
74
|
};
|
|
75
75
|
var faded = {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
avatar,
|
|
3
3
|
avatarGroup
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-6PIJZSOY.mjs";
|
|
5
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
8
8
|
import "../chunk-INZK6TTL.mjs";
|
|
9
9
|
export {
|
|
10
10
|
avatar,
|
package/dist/components/badge.js
CHANGED
|
@@ -54,12 +54,12 @@ var bordered = {
|
|
|
54
54
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
55
55
|
};
|
|
56
56
|
var flat = {
|
|
57
|
-
default: "bg-default
|
|
58
|
-
primary: "bg-primary
|
|
59
|
-
secondary: "bg-secondary
|
|
60
|
-
success: "bg-success
|
|
61
|
-
warning: "bg-warning
|
|
62
|
-
danger: "bg-danger
|
|
57
|
+
default: "bg-default/20 text-default-foreground",
|
|
58
|
+
primary: "bg-primary/20 text-primary",
|
|
59
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
60
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
61
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
62
|
+
danger: "bg-danger/20 text-danger",
|
|
63
63
|
foreground: "bg-foreground/10 text-foreground"
|
|
64
64
|
};
|
|
65
65
|
var faded = {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
badge
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-4G25OMVV.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
badge
|
|
@@ -55,12 +55,12 @@ var bordered = {
|
|
|
55
55
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
56
56
|
};
|
|
57
57
|
var flat = {
|
|
58
|
-
default: "bg-default
|
|
59
|
-
primary: "bg-primary
|
|
60
|
-
secondary: "bg-secondary
|
|
61
|
-
success: "bg-success
|
|
62
|
-
warning: "bg-warning
|
|
63
|
-
danger: "bg-danger
|
|
58
|
+
default: "bg-default/20 text-default-foreground",
|
|
59
|
+
primary: "bg-primary/20 text-primary",
|
|
60
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
61
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
62
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
63
|
+
danger: "bg-danger/20 text-danger",
|
|
64
64
|
foreground: "bg-foreground/10 text-foreground"
|
|
65
65
|
};
|
|
66
66
|
var faded = {
|
|
@@ -347,32 +347,32 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
347
347
|
{
|
|
348
348
|
variant: "light",
|
|
349
349
|
color: "default",
|
|
350
|
-
class: [colorVariants.light.default, "data-[hover=true]:bg-default
|
|
350
|
+
class: [colorVariants.light.default, "data-[hover=true]:bg-default/20"]
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
variant: "light",
|
|
354
354
|
color: "primary",
|
|
355
|
-
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary
|
|
355
|
+
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary/20"]
|
|
356
356
|
},
|
|
357
357
|
{
|
|
358
358
|
variant: "light",
|
|
359
359
|
color: "secondary",
|
|
360
|
-
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary
|
|
360
|
+
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary/20"]
|
|
361
361
|
},
|
|
362
362
|
{
|
|
363
363
|
variant: "light",
|
|
364
364
|
color: "success",
|
|
365
|
-
class: [colorVariants.light.success, "data-[hover=true]:bg-success
|
|
365
|
+
class: [colorVariants.light.success, "data-[hover=true]:bg-success/20"]
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
variant: "light",
|
|
369
369
|
color: "warning",
|
|
370
|
-
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning
|
|
370
|
+
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning/20"]
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
variant: "light",
|
|
374
374
|
color: "danger",
|
|
375
|
-
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger
|
|
375
|
+
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger/20"]
|
|
376
376
|
},
|
|
377
377
|
{
|
|
378
378
|
variant: "ghost",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
button,
|
|
3
3
|
buttonGroup
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-QU6QFAKV.mjs";
|
|
5
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
8
8
|
import "../chunk-INZK6TTL.mjs";
|
|
9
9
|
export {
|
|
10
10
|
button,
|
package/dist/components/chip.js
CHANGED
|
@@ -64,12 +64,12 @@ var bordered = {
|
|
|
64
64
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
65
65
|
};
|
|
66
66
|
var flat = {
|
|
67
|
-
default: "bg-default
|
|
68
|
-
primary: "bg-primary
|
|
69
|
-
secondary: "bg-secondary
|
|
70
|
-
success: "bg-success
|
|
71
|
-
warning: "bg-warning
|
|
72
|
-
danger: "bg-danger
|
|
67
|
+
default: "bg-default/20 text-default-foreground",
|
|
68
|
+
primary: "bg-primary/20 text-primary",
|
|
69
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
70
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
71
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
72
|
+
danger: "bg-danger/20 text-danger",
|
|
73
73
|
foreground: "bg-foreground/10 text-foreground"
|
|
74
74
|
};
|
|
75
75
|
var faded = {
|
package/dist/components/chip.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
chip
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-AJLEZSRF.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
chip
|
package/dist/components/code.js
CHANGED
|
@@ -54,12 +54,12 @@ var bordered = {
|
|
|
54
54
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
55
55
|
};
|
|
56
56
|
var flat = {
|
|
57
|
-
default: "bg-default
|
|
58
|
-
primary: "bg-primary
|
|
59
|
-
secondary: "bg-secondary
|
|
60
|
-
success: "bg-success
|
|
61
|
-
warning: "bg-warning
|
|
62
|
-
danger: "bg-danger
|
|
57
|
+
default: "bg-default/20 text-default-foreground",
|
|
58
|
+
primary: "bg-primary/20 text-primary",
|
|
59
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
60
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
61
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
62
|
+
danger: "bg-danger/20 text-danger",
|
|
63
63
|
foreground: "bg-foreground/10 text-foreground"
|
|
64
64
|
};
|
|
65
65
|
var faded = {
|
package/dist/components/code.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
code
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-BH4BMASL.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
code
|
package/dist/components/index.js
CHANGED
|
@@ -111,12 +111,12 @@ var bordered = {
|
|
|
111
111
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
112
112
|
};
|
|
113
113
|
var flat = {
|
|
114
|
-
default: "bg-default
|
|
115
|
-
primary: "bg-primary
|
|
116
|
-
secondary: "bg-secondary
|
|
117
|
-
success: "bg-success
|
|
118
|
-
warning: "bg-warning
|
|
119
|
-
danger: "bg-danger
|
|
114
|
+
default: "bg-default/20 text-default-foreground",
|
|
115
|
+
primary: "bg-primary/20 text-primary",
|
|
116
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
117
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
118
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
119
|
+
danger: "bg-danger/20 text-danger",
|
|
120
120
|
foreground: "bg-foreground/10 text-foreground"
|
|
121
121
|
};
|
|
122
122
|
var faded = {
|
|
@@ -917,32 +917,32 @@ var button = (0, import_tailwind_variants5.tv)({
|
|
|
917
917
|
{
|
|
918
918
|
variant: "light",
|
|
919
919
|
color: "default",
|
|
920
|
-
class: [colorVariants.light.default, "data-[hover=true]:bg-default
|
|
920
|
+
class: [colorVariants.light.default, "data-[hover=true]:bg-default/20"]
|
|
921
921
|
},
|
|
922
922
|
{
|
|
923
923
|
variant: "light",
|
|
924
924
|
color: "primary",
|
|
925
|
-
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary
|
|
925
|
+
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary/20"]
|
|
926
926
|
},
|
|
927
927
|
{
|
|
928
928
|
variant: "light",
|
|
929
929
|
color: "secondary",
|
|
930
|
-
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary
|
|
930
|
+
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary/20"]
|
|
931
931
|
},
|
|
932
932
|
{
|
|
933
933
|
variant: "light",
|
|
934
934
|
color: "success",
|
|
935
|
-
class: [colorVariants.light.success, "data-[hover=true]:bg-success
|
|
935
|
+
class: [colorVariants.light.success, "data-[hover=true]:bg-success/20"]
|
|
936
936
|
},
|
|
937
937
|
{
|
|
938
938
|
variant: "light",
|
|
939
939
|
color: "warning",
|
|
940
|
-
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning
|
|
940
|
+
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning/20"]
|
|
941
941
|
},
|
|
942
942
|
{
|
|
943
943
|
variant: "light",
|
|
944
944
|
color: "danger",
|
|
945
|
-
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger
|
|
945
|
+
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger/20"]
|
|
946
946
|
},
|
|
947
947
|
{
|
|
948
948
|
variant: "ghost",
|
|
@@ -5151,6 +5151,7 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5151
5151
|
"dark:bg-content1",
|
|
5152
5152
|
"border border-default-100",
|
|
5153
5153
|
"outline-none",
|
|
5154
|
+
"mx-6",
|
|
5154
5155
|
"my-16"
|
|
5155
5156
|
],
|
|
5156
5157
|
backdrop: "z-50",
|
|
@@ -5207,7 +5208,7 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5207
5208
|
base: "max-w-5xl"
|
|
5208
5209
|
},
|
|
5209
5210
|
full: {
|
|
5210
|
-
base: "my-0 max-w-full h-[100dvh] !rounded-none"
|
|
5211
|
+
base: "my-0 mx-0 max-w-full h-[100dvh] !rounded-none"
|
|
5211
5212
|
}
|
|
5212
5213
|
},
|
|
5213
5214
|
radius: {
|
|
@@ -1,22 +1,41 @@
|
|
|
1
1
|
import "../chunk-PRWEADY4.mjs";
|
|
2
|
+
import {
|
|
3
|
+
snippet
|
|
4
|
+
} from "../chunk-DWC7GT4K.mjs";
|
|
5
|
+
import {
|
|
6
|
+
spacer
|
|
7
|
+
} from "../chunk-3B4SYPW2.mjs";
|
|
8
|
+
import {
|
|
9
|
+
spinner
|
|
10
|
+
} from "../chunk-HOQUCE4N.mjs";
|
|
2
11
|
import {
|
|
3
12
|
table
|
|
4
13
|
} from "../chunk-U54UQOTS.mjs";
|
|
5
14
|
import {
|
|
6
15
|
tabs
|
|
7
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-NVCWXYAR.mjs";
|
|
8
17
|
import {
|
|
9
18
|
toggle
|
|
10
19
|
} from "../chunk-42RVICJN.mjs";
|
|
11
20
|
import {
|
|
12
21
|
user
|
|
13
22
|
} from "../chunk-ZFYINWFR.mjs";
|
|
23
|
+
import {
|
|
24
|
+
link,
|
|
25
|
+
linkAnchorClasses
|
|
26
|
+
} from "../chunk-YQXYRWJP.mjs";
|
|
27
|
+
import {
|
|
28
|
+
modal
|
|
29
|
+
} from "../chunk-UHOIXUPW.mjs";
|
|
30
|
+
import {
|
|
31
|
+
navbar
|
|
32
|
+
} from "../chunk-LWJT5D6G.mjs";
|
|
14
33
|
import {
|
|
15
34
|
pagination
|
|
16
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-ITXIAXJ5.mjs";
|
|
17
36
|
import {
|
|
18
37
|
popover
|
|
19
|
-
} from "../chunk-
|
|
38
|
+
} from "../chunk-O32L4YWJ.mjs";
|
|
20
39
|
import {
|
|
21
40
|
progress
|
|
22
41
|
} from "../chunk-BHHIVMOY.mjs";
|
|
@@ -28,14 +47,14 @@ import {
|
|
|
28
47
|
skeleton
|
|
29
48
|
} from "../chunk-P5E3PNHW.mjs";
|
|
30
49
|
import {
|
|
31
|
-
|
|
32
|
-
} from "../chunk-
|
|
50
|
+
code
|
|
51
|
+
} from "../chunk-BH4BMASL.mjs";
|
|
33
52
|
import {
|
|
34
|
-
|
|
35
|
-
} from "../chunk-
|
|
53
|
+
divider
|
|
54
|
+
} from "../chunk-2ENRZMQI.mjs";
|
|
36
55
|
import {
|
|
37
|
-
|
|
38
|
-
} from "../chunk-
|
|
56
|
+
drip
|
|
57
|
+
} from "../chunk-OIVGIOVG.mjs";
|
|
39
58
|
import {
|
|
40
59
|
dropdown,
|
|
41
60
|
dropdownItem,
|
|
@@ -52,19 +71,20 @@ import {
|
|
|
52
71
|
kbd
|
|
53
72
|
} from "../chunk-GBPOVFEX.mjs";
|
|
54
73
|
import {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
} from "../chunk-
|
|
74
|
+
accordion,
|
|
75
|
+
accordionItem
|
|
76
|
+
} from "../chunk-HNRHIJNK.mjs";
|
|
58
77
|
import {
|
|
59
|
-
|
|
60
|
-
|
|
78
|
+
avatar,
|
|
79
|
+
avatarGroup
|
|
80
|
+
} from "../chunk-6PIJZSOY.mjs";
|
|
61
81
|
import {
|
|
62
|
-
|
|
63
|
-
} from "../chunk-
|
|
82
|
+
badge
|
|
83
|
+
} from "../chunk-4G25OMVV.mjs";
|
|
64
84
|
import {
|
|
65
85
|
button,
|
|
66
86
|
buttonGroup
|
|
67
|
-
} from "../chunk-
|
|
87
|
+
} from "../chunk-QU6QFAKV.mjs";
|
|
68
88
|
import {
|
|
69
89
|
card
|
|
70
90
|
} from "../chunk-QW2ZGOKD.mjs";
|
|
@@ -74,33 +94,13 @@ import {
|
|
|
74
94
|
} from "../chunk-G34JOIZ3.mjs";
|
|
75
95
|
import {
|
|
76
96
|
chip
|
|
77
|
-
} from "../chunk-
|
|
97
|
+
} from "../chunk-AJLEZSRF.mjs";
|
|
98
|
+
import "../chunk-CMYR6AOY.mjs";
|
|
99
|
+
import "../chunk-K7LK7NCE.mjs";
|
|
100
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
78
101
|
import {
|
|
79
102
|
circularProgress
|
|
80
103
|
} from "../chunk-UPBFQDTD.mjs";
|
|
81
|
-
import {
|
|
82
|
-
code
|
|
83
|
-
} from "../chunk-27PQQNKZ.mjs";
|
|
84
|
-
import {
|
|
85
|
-
divider
|
|
86
|
-
} from "../chunk-2ENRZMQI.mjs";
|
|
87
|
-
import {
|
|
88
|
-
drip
|
|
89
|
-
} from "../chunk-OIVGIOVG.mjs";
|
|
90
|
-
import {
|
|
91
|
-
accordion,
|
|
92
|
-
accordionItem
|
|
93
|
-
} from "../chunk-HNRHIJNK.mjs";
|
|
94
|
-
import {
|
|
95
|
-
avatar,
|
|
96
|
-
avatarGroup
|
|
97
|
-
} from "../chunk-MWWMIOTS.mjs";
|
|
98
|
-
import {
|
|
99
|
-
badge
|
|
100
|
-
} from "../chunk-NASOHMPB.mjs";
|
|
101
|
-
import "../chunk-CMYR6AOY.mjs";
|
|
102
|
-
import "../chunk-K7LK7NCE.mjs";
|
|
103
|
-
import "../chunk-I4OYRSA7.mjs";
|
|
104
104
|
import "../chunk-INZK6TTL.mjs";
|
|
105
105
|
export {
|
|
106
106
|
accordion,
|
package/dist/components/modal.js
CHANGED
|
@@ -50,6 +50,7 @@ var modal = (0, import_tailwind_variants.tv)({
|
|
|
50
50
|
"dark:bg-content1",
|
|
51
51
|
"border border-default-100",
|
|
52
52
|
"outline-none",
|
|
53
|
+
"mx-6",
|
|
53
54
|
"my-16"
|
|
54
55
|
],
|
|
55
56
|
backdrop: "z-50",
|
|
@@ -106,7 +107,7 @@ var modal = (0, import_tailwind_variants.tv)({
|
|
|
106
107
|
base: "max-w-5xl"
|
|
107
108
|
},
|
|
108
109
|
full: {
|
|
109
|
-
base: "my-0 max-w-full h-[100dvh] !rounded-none"
|
|
110
|
+
base: "my-0 mx-0 max-w-full h-[100dvh] !rounded-none"
|
|
110
111
|
}
|
|
111
112
|
},
|
|
112
113
|
radius: {
|
|
@@ -54,12 +54,12 @@ var bordered = {
|
|
|
54
54
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
55
55
|
};
|
|
56
56
|
var flat = {
|
|
57
|
-
default: "bg-default
|
|
58
|
-
primary: "bg-primary
|
|
59
|
-
secondary: "bg-secondary
|
|
60
|
-
success: "bg-success
|
|
61
|
-
warning: "bg-warning
|
|
62
|
-
danger: "bg-danger
|
|
57
|
+
default: "bg-default/20 text-default-foreground",
|
|
58
|
+
primary: "bg-primary/20 text-primary",
|
|
59
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
60
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
61
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
62
|
+
danger: "bg-danger/20 text-danger",
|
|
63
63
|
foreground: "bg-foreground/10 text-foreground"
|
|
64
64
|
};
|
|
65
65
|
var faded = {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
pagination
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-ITXIAXJ5.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
pagination
|
|
@@ -54,12 +54,12 @@ var bordered = {
|
|
|
54
54
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
55
55
|
};
|
|
56
56
|
var flat = {
|
|
57
|
-
default: "bg-default
|
|
58
|
-
primary: "bg-primary
|
|
59
|
-
secondary: "bg-secondary
|
|
60
|
-
success: "bg-success
|
|
61
|
-
warning: "bg-warning
|
|
62
|
-
danger: "bg-danger
|
|
57
|
+
default: "bg-default/20 text-default-foreground",
|
|
58
|
+
primary: "bg-primary/20 text-primary",
|
|
59
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
60
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
61
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
62
|
+
danger: "bg-danger/20 text-danger",
|
|
63
63
|
foreground: "bg-foreground/10 text-foreground"
|
|
64
64
|
};
|
|
65
65
|
var faded = {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
popover
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-O32L4YWJ.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
popover
|
|
@@ -54,12 +54,12 @@ var bordered = {
|
|
|
54
54
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
55
55
|
};
|
|
56
56
|
var flat = {
|
|
57
|
-
default: "bg-default
|
|
58
|
-
primary: "bg-primary
|
|
59
|
-
secondary: "bg-secondary
|
|
60
|
-
success: "bg-success
|
|
61
|
-
warning: "bg-warning
|
|
62
|
-
danger: "bg-danger
|
|
57
|
+
default: "bg-default/20 text-default-foreground",
|
|
58
|
+
primary: "bg-primary/20 text-primary",
|
|
59
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
60
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
61
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
62
|
+
danger: "bg-danger/20 text-danger",
|
|
63
63
|
foreground: "bg-foreground/10 text-foreground"
|
|
64
64
|
};
|
|
65
65
|
var faded = {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
snippet
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-DWC7GT4K.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
snippet
|
package/dist/components/tabs.js
CHANGED
|
@@ -54,12 +54,12 @@ var bordered = {
|
|
|
54
54
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
55
55
|
};
|
|
56
56
|
var flat = {
|
|
57
|
-
default: "bg-default
|
|
58
|
-
primary: "bg-primary
|
|
59
|
-
secondary: "bg-secondary
|
|
60
|
-
success: "bg-success
|
|
61
|
-
warning: "bg-warning
|
|
62
|
-
danger: "bg-danger
|
|
57
|
+
default: "bg-default/20 text-default-foreground",
|
|
58
|
+
primary: "bg-primary/20 text-primary",
|
|
59
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
60
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
61
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
62
|
+
danger: "bg-danger/20 text-danger",
|
|
63
63
|
foreground: "bg-foreground/10 text-foreground"
|
|
64
64
|
};
|
|
65
65
|
var faded = {
|
package/dist/components/tabs.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
tabs
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-NVCWXYAR.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-FPFQCKUP.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
tabs
|
package/dist/index.js
CHANGED
|
@@ -143,12 +143,12 @@ var bordered = {
|
|
|
143
143
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
144
144
|
};
|
|
145
145
|
var flat = {
|
|
146
|
-
default: "bg-default
|
|
147
|
-
primary: "bg-primary
|
|
148
|
-
secondary: "bg-secondary
|
|
149
|
-
success: "bg-success
|
|
150
|
-
warning: "bg-warning
|
|
151
|
-
danger: "bg-danger
|
|
146
|
+
default: "bg-default/20 text-default-foreground",
|
|
147
|
+
primary: "bg-primary/20 text-primary",
|
|
148
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
149
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
150
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
151
|
+
danger: "bg-danger/20 text-danger",
|
|
152
152
|
foreground: "bg-foreground/10 text-foreground"
|
|
153
153
|
};
|
|
154
154
|
var faded = {
|
|
@@ -949,32 +949,32 @@ var button = (0, import_tailwind_variants5.tv)({
|
|
|
949
949
|
{
|
|
950
950
|
variant: "light",
|
|
951
951
|
color: "default",
|
|
952
|
-
class: [colorVariants.light.default, "data-[hover=true]:bg-default
|
|
952
|
+
class: [colorVariants.light.default, "data-[hover=true]:bg-default/20"]
|
|
953
953
|
},
|
|
954
954
|
{
|
|
955
955
|
variant: "light",
|
|
956
956
|
color: "primary",
|
|
957
|
-
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary
|
|
957
|
+
class: [colorVariants.light.primary, "data-[hover=true]:bg-primary/20"]
|
|
958
958
|
},
|
|
959
959
|
{
|
|
960
960
|
variant: "light",
|
|
961
961
|
color: "secondary",
|
|
962
|
-
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary
|
|
962
|
+
class: [colorVariants.light.secondary, "data-[hover=true]:bg-secondary/20"]
|
|
963
963
|
},
|
|
964
964
|
{
|
|
965
965
|
variant: "light",
|
|
966
966
|
color: "success",
|
|
967
|
-
class: [colorVariants.light.success, "data-[hover=true]:bg-success
|
|
967
|
+
class: [colorVariants.light.success, "data-[hover=true]:bg-success/20"]
|
|
968
968
|
},
|
|
969
969
|
{
|
|
970
970
|
variant: "light",
|
|
971
971
|
color: "warning",
|
|
972
|
-
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning
|
|
972
|
+
class: [colorVariants.light.warning, "data-[hover=true]:bg-warning/20"]
|
|
973
973
|
},
|
|
974
974
|
{
|
|
975
975
|
variant: "light",
|
|
976
976
|
color: "danger",
|
|
977
|
-
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger
|
|
977
|
+
class: [colorVariants.light.danger, "data-[hover=true]:bg-danger/20"]
|
|
978
978
|
},
|
|
979
979
|
{
|
|
980
980
|
variant: "ghost",
|
|
@@ -5183,6 +5183,7 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5183
5183
|
"dark:bg-content1",
|
|
5184
5184
|
"border border-default-100",
|
|
5185
5185
|
"outline-none",
|
|
5186
|
+
"mx-6",
|
|
5186
5187
|
"my-16"
|
|
5187
5188
|
],
|
|
5188
5189
|
backdrop: "z-50",
|
|
@@ -5239,7 +5240,7 @@ var modal = (0, import_tailwind_variants23.tv)({
|
|
|
5239
5240
|
base: "max-w-5xl"
|
|
5240
5241
|
},
|
|
5241
5242
|
full: {
|
|
5242
|
-
base: "my-0 max-w-full h-[100dvh] !rounded-none"
|
|
5243
|
+
base: "my-0 mx-0 max-w-full h-[100dvh] !rounded-none"
|
|
5243
5244
|
}
|
|
5244
5245
|
},
|
|
5245
5246
|
radius: {
|
package/dist/index.mjs
CHANGED
|
@@ -1,22 +1,41 @@
|
|
|
1
1
|
import "./chunk-PRWEADY4.mjs";
|
|
2
|
+
import {
|
|
3
|
+
snippet
|
|
4
|
+
} from "./chunk-DWC7GT4K.mjs";
|
|
5
|
+
import {
|
|
6
|
+
spacer
|
|
7
|
+
} from "./chunk-3B4SYPW2.mjs";
|
|
8
|
+
import {
|
|
9
|
+
spinner
|
|
10
|
+
} from "./chunk-HOQUCE4N.mjs";
|
|
2
11
|
import {
|
|
3
12
|
table
|
|
4
13
|
} from "./chunk-U54UQOTS.mjs";
|
|
5
14
|
import {
|
|
6
15
|
tabs
|
|
7
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-NVCWXYAR.mjs";
|
|
8
17
|
import {
|
|
9
18
|
toggle
|
|
10
19
|
} from "./chunk-42RVICJN.mjs";
|
|
11
20
|
import {
|
|
12
21
|
user
|
|
13
22
|
} from "./chunk-ZFYINWFR.mjs";
|
|
23
|
+
import {
|
|
24
|
+
link,
|
|
25
|
+
linkAnchorClasses
|
|
26
|
+
} from "./chunk-YQXYRWJP.mjs";
|
|
27
|
+
import {
|
|
28
|
+
modal
|
|
29
|
+
} from "./chunk-UHOIXUPW.mjs";
|
|
30
|
+
import {
|
|
31
|
+
navbar
|
|
32
|
+
} from "./chunk-LWJT5D6G.mjs";
|
|
14
33
|
import {
|
|
15
34
|
pagination
|
|
16
|
-
} from "./chunk-
|
|
35
|
+
} from "./chunk-ITXIAXJ5.mjs";
|
|
17
36
|
import {
|
|
18
37
|
popover
|
|
19
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-O32L4YWJ.mjs";
|
|
20
39
|
import {
|
|
21
40
|
progress
|
|
22
41
|
} from "./chunk-BHHIVMOY.mjs";
|
|
@@ -28,14 +47,14 @@ import {
|
|
|
28
47
|
skeleton
|
|
29
48
|
} from "./chunk-P5E3PNHW.mjs";
|
|
30
49
|
import {
|
|
31
|
-
|
|
32
|
-
} from "./chunk-
|
|
50
|
+
code
|
|
51
|
+
} from "./chunk-BH4BMASL.mjs";
|
|
33
52
|
import {
|
|
34
|
-
|
|
35
|
-
} from "./chunk-
|
|
53
|
+
divider
|
|
54
|
+
} from "./chunk-2ENRZMQI.mjs";
|
|
36
55
|
import {
|
|
37
|
-
|
|
38
|
-
} from "./chunk-
|
|
56
|
+
drip
|
|
57
|
+
} from "./chunk-OIVGIOVG.mjs";
|
|
39
58
|
import {
|
|
40
59
|
dropdown,
|
|
41
60
|
dropdownItem,
|
|
@@ -52,19 +71,20 @@ import {
|
|
|
52
71
|
kbd
|
|
53
72
|
} from "./chunk-GBPOVFEX.mjs";
|
|
54
73
|
import {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
} from "./chunk-
|
|
74
|
+
accordion,
|
|
75
|
+
accordionItem
|
|
76
|
+
} from "./chunk-HNRHIJNK.mjs";
|
|
58
77
|
import {
|
|
59
|
-
|
|
60
|
-
|
|
78
|
+
avatar,
|
|
79
|
+
avatarGroup
|
|
80
|
+
} from "./chunk-6PIJZSOY.mjs";
|
|
61
81
|
import {
|
|
62
|
-
|
|
63
|
-
} from "./chunk-
|
|
82
|
+
badge
|
|
83
|
+
} from "./chunk-4G25OMVV.mjs";
|
|
64
84
|
import {
|
|
65
85
|
button,
|
|
66
86
|
buttonGroup
|
|
67
|
-
} from "./chunk-
|
|
87
|
+
} from "./chunk-QU6QFAKV.mjs";
|
|
68
88
|
import {
|
|
69
89
|
card
|
|
70
90
|
} from "./chunk-QW2ZGOKD.mjs";
|
|
@@ -74,35 +94,15 @@ import {
|
|
|
74
94
|
} from "./chunk-G34JOIZ3.mjs";
|
|
75
95
|
import {
|
|
76
96
|
chip
|
|
77
|
-
} from "./chunk-
|
|
78
|
-
import {
|
|
79
|
-
circularProgress
|
|
80
|
-
} from "./chunk-UPBFQDTD.mjs";
|
|
81
|
-
import {
|
|
82
|
-
code
|
|
83
|
-
} from "./chunk-27PQQNKZ.mjs";
|
|
84
|
-
import {
|
|
85
|
-
divider
|
|
86
|
-
} from "./chunk-2ENRZMQI.mjs";
|
|
87
|
-
import {
|
|
88
|
-
drip
|
|
89
|
-
} from "./chunk-OIVGIOVG.mjs";
|
|
90
|
-
import {
|
|
91
|
-
accordion,
|
|
92
|
-
accordionItem
|
|
93
|
-
} from "./chunk-HNRHIJNK.mjs";
|
|
94
|
-
import {
|
|
95
|
-
avatar,
|
|
96
|
-
avatarGroup
|
|
97
|
-
} from "./chunk-MWWMIOTS.mjs";
|
|
98
|
-
import {
|
|
99
|
-
badge
|
|
100
|
-
} from "./chunk-NASOHMPB.mjs";
|
|
97
|
+
} from "./chunk-AJLEZSRF.mjs";
|
|
101
98
|
import "./chunk-CMYR6AOY.mjs";
|
|
102
99
|
import "./chunk-K7LK7NCE.mjs";
|
|
103
100
|
import {
|
|
104
101
|
colorVariants
|
|
105
|
-
} from "./chunk-
|
|
102
|
+
} from "./chunk-FPFQCKUP.mjs";
|
|
103
|
+
import {
|
|
104
|
+
circularProgress
|
|
105
|
+
} from "./chunk-UPBFQDTD.mjs";
|
|
106
106
|
import {
|
|
107
107
|
nextui
|
|
108
108
|
} from "./chunk-JR6TMRUJ.mjs";
|
package/dist/utils/index.js
CHANGED
|
@@ -89,12 +89,12 @@ var bordered = {
|
|
|
89
89
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
90
90
|
};
|
|
91
91
|
var flat = {
|
|
92
|
-
default: "bg-default
|
|
93
|
-
primary: "bg-primary
|
|
94
|
-
secondary: "bg-secondary
|
|
95
|
-
success: "bg-success
|
|
96
|
-
warning: "bg-warning
|
|
97
|
-
danger: "bg-danger
|
|
92
|
+
default: "bg-default/20 text-default-foreground",
|
|
93
|
+
primary: "bg-primary/20 text-primary",
|
|
94
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
95
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
96
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
97
|
+
danger: "bg-danger/20 text-danger",
|
|
98
98
|
foreground: "bg-foreground/10 text-foreground"
|
|
99
99
|
};
|
|
100
100
|
var faded = {
|
package/dist/utils/index.mjs
CHANGED
package/dist/utils/variants.js
CHANGED
|
@@ -51,12 +51,12 @@ var bordered = {
|
|
|
51
51
|
foreground: "bg-transparent border-foreground text-foreground"
|
|
52
52
|
};
|
|
53
53
|
var flat = {
|
|
54
|
-
default: "bg-default
|
|
55
|
-
primary: "bg-primary
|
|
56
|
-
secondary: "bg-secondary
|
|
57
|
-
success: "bg-success
|
|
58
|
-
warning: "bg-warning
|
|
59
|
-
danger: "bg-danger
|
|
54
|
+
default: "bg-default/20 text-default-foreground",
|
|
55
|
+
primary: "bg-primary/20 text-primary",
|
|
56
|
+
secondary: "bg-secondary/20 text-secondary",
|
|
57
|
+
success: "bg-success/20 text-success-600 dark:text-success",
|
|
58
|
+
warning: "bg-warning/20 text-warning-600 dark:text-warning",
|
|
59
|
+
danger: "bg-danger/20 text-danger",
|
|
60
60
|
foreground: "bg-foreground/10 text-foreground"
|
|
61
61
|
};
|
|
62
62
|
var faded = {
|
package/dist/utils/variants.mjs
CHANGED