@kopexa/theme 14.0.3 → 15.0.0
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-VDMXPFII.mjs → chunk-2T3SPXLF.mjs} +1 -1
- package/dist/{chunk-WSEO3MLK.mjs → chunk-2VWLEU6X.mjs} +1 -1
- package/dist/{chunk-7VZZASRG.mjs → chunk-C3LKWHPD.mjs} +1 -1
- package/dist/{chunk-IX46TOS3.mjs → chunk-DPQAMK3W.mjs} +17 -3
- package/dist/{chunk-SYYY32OX.mjs → chunk-J3BXXWBQ.mjs} +1 -1
- package/dist/{chunk-RQYYDG26.mjs → chunk-OX4Q6RK5.mjs} +1 -1
- package/dist/{chunk-ROZ24JVQ.mjs → chunk-ZZMGL5MA.mjs} +1 -1
- package/dist/components/avatar.js +1 -1
- package/dist/components/avatar.mjs +2 -2
- package/dist/components/button.d.mts +24 -0
- package/dist/components/button.d.ts +24 -0
- package/dist/components/button.js +17 -3
- package/dist/components/button.mjs +2 -2
- package/dist/components/chip.js +1 -1
- package/dist/components/chip.mjs +2 -2
- package/dist/components/code.js +1 -1
- package/dist/components/code.mjs +2 -2
- package/dist/components/index.js +17 -3
- package/dist/components/index.mjs +7 -7
- package/dist/components/skeleton-avatar.js +1 -1
- package/dist/components/skeleton-avatar.mjs +3 -3
- package/dist/components/standard-chip.js +1 -1
- package/dist/components/standard-chip.mjs +3 -3
- package/dist/index.js +17 -3
- package/dist/index.mjs +7 -7
- package/dist/utils/variants.js +1 -1
- package/dist/utils/variants.mjs +1 -1
- package/package.json +3 -3
|
@@ -8,7 +8,7 @@ var solid = {
|
|
|
8
8
|
success: "bg-success text-success-foreground"
|
|
9
9
|
};
|
|
10
10
|
var outline = {
|
|
11
|
-
default: "bg-transparent border border-
|
|
11
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
12
12
|
primary: "bg-transparent border-primary text-primary",
|
|
13
13
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
14
14
|
destructive: "bg-transparent border-destructive text-destructive",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
colorVariants
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-2VWLEU6X.mjs";
|
|
4
4
|
import {
|
|
5
5
|
focusVisibleClasses
|
|
6
6
|
} from "./chunk-6IZPAS4O.mjs";
|
|
@@ -30,7 +30,7 @@ var button = tv({
|
|
|
30
30
|
},
|
|
31
31
|
size: {
|
|
32
32
|
sm: "px-3 min-w-16 h-7 text-xs gap-2 rounded-sm has-[>svg]:px-2.5 [&_svg]:size-3",
|
|
33
|
-
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-
|
|
33
|
+
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-md has-[>svg]:px-3 [&_svg]:size-4",
|
|
34
34
|
lg: "px-6 min-w-24 h-10 text-base gap-3 rounded-lg has-[>svg]:px-4 [&_svg]:size-4"
|
|
35
35
|
},
|
|
36
36
|
color: {
|
|
@@ -53,6 +53,19 @@ var button = tv({
|
|
|
53
53
|
default: "",
|
|
54
54
|
between: "justify-between",
|
|
55
55
|
start: "justify-start"
|
|
56
|
+
},
|
|
57
|
+
placeholder: {
|
|
58
|
+
true: "text-muted-foreground!",
|
|
59
|
+
false: ""
|
|
60
|
+
},
|
|
61
|
+
mode: {
|
|
62
|
+
default: "",
|
|
63
|
+
input: [
|
|
64
|
+
"justify-start font-normal hover:bg-background bg-background text-foreground shadow-xs",
|
|
65
|
+
"[&_svg]:transition-colors [&_svg]:hover:text-foreground data-[state=open]:bg-background",
|
|
66
|
+
...focusVisibleClasses,
|
|
67
|
+
"focus-visible:border-ring focus-visible:outline-hidden focus-visible:ring-[3px] focus-visible:ring-ring/30"
|
|
68
|
+
]
|
|
56
69
|
}
|
|
57
70
|
},
|
|
58
71
|
defaultVariants: {
|
|
@@ -60,7 +73,8 @@ var button = tv({
|
|
|
60
73
|
variant: "solid",
|
|
61
74
|
color: "primary",
|
|
62
75
|
fullWidth: false,
|
|
63
|
-
isIconOnly: false
|
|
76
|
+
isIconOnly: false,
|
|
77
|
+
mode: "default"
|
|
64
78
|
},
|
|
65
79
|
compoundVariants: [
|
|
66
80
|
// primary color
|
|
@@ -48,7 +48,7 @@ var solid = {
|
|
|
48
48
|
success: "bg-success text-success-foreground"
|
|
49
49
|
};
|
|
50
50
|
var outline = {
|
|
51
|
-
default: "bg-transparent border border-
|
|
51
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
52
52
|
primary: "bg-transparent border-primary text-primary",
|
|
53
53
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
54
54
|
destructive: "bg-transparent border-destructive text-destructive",
|
|
@@ -51,6 +51,14 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
51
51
|
between: string;
|
|
52
52
|
start: string;
|
|
53
53
|
};
|
|
54
|
+
placeholder: {
|
|
55
|
+
true: string;
|
|
56
|
+
false: string;
|
|
57
|
+
};
|
|
58
|
+
mode: {
|
|
59
|
+
default: string;
|
|
60
|
+
input: string[];
|
|
61
|
+
};
|
|
54
62
|
}, undefined, string[], {
|
|
55
63
|
variant: {
|
|
56
64
|
solid: string;
|
|
@@ -84,6 +92,14 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
84
92
|
between: string;
|
|
85
93
|
start: string;
|
|
86
94
|
};
|
|
95
|
+
placeholder: {
|
|
96
|
+
true: string;
|
|
97
|
+
false: string;
|
|
98
|
+
};
|
|
99
|
+
mode: {
|
|
100
|
+
default: string;
|
|
101
|
+
input: string[];
|
|
102
|
+
};
|
|
87
103
|
}, undefined, tailwind_variants.TVReturnType<{
|
|
88
104
|
variant: {
|
|
89
105
|
solid: string;
|
|
@@ -117,6 +133,14 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
117
133
|
between: string;
|
|
118
134
|
start: string;
|
|
119
135
|
};
|
|
136
|
+
placeholder: {
|
|
137
|
+
true: string;
|
|
138
|
+
false: string;
|
|
139
|
+
};
|
|
140
|
+
mode: {
|
|
141
|
+
default: string;
|
|
142
|
+
input: string[];
|
|
143
|
+
};
|
|
120
144
|
}, undefined, string[], unknown, unknown, undefined>>;
|
|
121
145
|
type ButtonVariantProps = VariantProps<typeof button>;
|
|
122
146
|
|
|
@@ -51,6 +51,14 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
51
51
|
between: string;
|
|
52
52
|
start: string;
|
|
53
53
|
};
|
|
54
|
+
placeholder: {
|
|
55
|
+
true: string;
|
|
56
|
+
false: string;
|
|
57
|
+
};
|
|
58
|
+
mode: {
|
|
59
|
+
default: string;
|
|
60
|
+
input: string[];
|
|
61
|
+
};
|
|
54
62
|
}, undefined, string[], {
|
|
55
63
|
variant: {
|
|
56
64
|
solid: string;
|
|
@@ -84,6 +92,14 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
84
92
|
between: string;
|
|
85
93
|
start: string;
|
|
86
94
|
};
|
|
95
|
+
placeholder: {
|
|
96
|
+
true: string;
|
|
97
|
+
false: string;
|
|
98
|
+
};
|
|
99
|
+
mode: {
|
|
100
|
+
default: string;
|
|
101
|
+
input: string[];
|
|
102
|
+
};
|
|
87
103
|
}, undefined, tailwind_variants.TVReturnType<{
|
|
88
104
|
variant: {
|
|
89
105
|
solid: string;
|
|
@@ -117,6 +133,14 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
117
133
|
between: string;
|
|
118
134
|
start: string;
|
|
119
135
|
};
|
|
136
|
+
placeholder: {
|
|
137
|
+
true: string;
|
|
138
|
+
false: string;
|
|
139
|
+
};
|
|
140
|
+
mode: {
|
|
141
|
+
default: string;
|
|
142
|
+
input: string[];
|
|
143
|
+
};
|
|
120
144
|
}, undefined, string[], unknown, unknown, undefined>>;
|
|
121
145
|
type ButtonVariantProps = VariantProps<typeof button>;
|
|
122
146
|
|
|
@@ -41,7 +41,7 @@ var solid = {
|
|
|
41
41
|
success: "bg-success text-success-foreground"
|
|
42
42
|
};
|
|
43
43
|
var outline = {
|
|
44
|
-
default: "bg-transparent border border-
|
|
44
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
45
45
|
primary: "bg-transparent border-primary text-primary",
|
|
46
46
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
47
47
|
destructive: "bg-transparent border-destructive text-destructive",
|
|
@@ -106,7 +106,7 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
106
106
|
},
|
|
107
107
|
size: {
|
|
108
108
|
sm: "px-3 min-w-16 h-7 text-xs gap-2 rounded-sm has-[>svg]:px-2.5 [&_svg]:size-3",
|
|
109
|
-
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-
|
|
109
|
+
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-md has-[>svg]:px-3 [&_svg]:size-4",
|
|
110
110
|
lg: "px-6 min-w-24 h-10 text-base gap-3 rounded-lg has-[>svg]:px-4 [&_svg]:size-4"
|
|
111
111
|
},
|
|
112
112
|
color: {
|
|
@@ -129,6 +129,19 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
129
129
|
default: "",
|
|
130
130
|
between: "justify-between",
|
|
131
131
|
start: "justify-start"
|
|
132
|
+
},
|
|
133
|
+
placeholder: {
|
|
134
|
+
true: "text-muted-foreground!",
|
|
135
|
+
false: ""
|
|
136
|
+
},
|
|
137
|
+
mode: {
|
|
138
|
+
default: "",
|
|
139
|
+
input: [
|
|
140
|
+
"justify-start font-normal hover:bg-background bg-background text-foreground shadow-xs",
|
|
141
|
+
"[&_svg]:transition-colors [&_svg]:hover:text-foreground data-[state=open]:bg-background",
|
|
142
|
+
...focusVisibleClasses,
|
|
143
|
+
"focus-visible:border-ring focus-visible:outline-hidden focus-visible:ring-[3px] focus-visible:ring-ring/30"
|
|
144
|
+
]
|
|
132
145
|
}
|
|
133
146
|
},
|
|
134
147
|
defaultVariants: {
|
|
@@ -136,7 +149,8 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
136
149
|
variant: "solid",
|
|
137
150
|
color: "primary",
|
|
138
151
|
fullWidth: false,
|
|
139
|
-
isIconOnly: false
|
|
152
|
+
isIconOnly: false,
|
|
153
|
+
mode: "default"
|
|
140
154
|
},
|
|
141
155
|
compoundVariants: [
|
|
142
156
|
// primary color
|
package/dist/components/chip.js
CHANGED
|
@@ -35,7 +35,7 @@ var solid = {
|
|
|
35
35
|
success: "bg-success text-success-foreground"
|
|
36
36
|
};
|
|
37
37
|
var outline = {
|
|
38
|
-
default: "bg-transparent border border-
|
|
38
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
39
39
|
primary: "bg-transparent border-primary text-primary",
|
|
40
40
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
41
41
|
destructive: "bg-transparent border-destructive text-destructive",
|
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.js
CHANGED
|
@@ -35,7 +35,7 @@ var solid = {
|
|
|
35
35
|
success: "bg-success text-success-foreground"
|
|
36
36
|
};
|
|
37
37
|
var outline = {
|
|
38
|
-
default: "bg-transparent border border-
|
|
38
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
39
39
|
primary: "bg-transparent border-primary text-primary",
|
|
40
40
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
41
41
|
destructive: "bg-transparent border-destructive text-destructive",
|
package/dist/components/code.mjs
CHANGED
package/dist/components/index.js
CHANGED
|
@@ -349,7 +349,7 @@ var solid = {
|
|
|
349
349
|
success: "bg-success text-success-foreground"
|
|
350
350
|
};
|
|
351
351
|
var outline = {
|
|
352
|
-
default: "bg-transparent border border-
|
|
352
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
353
353
|
primary: "bg-transparent border-primary text-primary",
|
|
354
354
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
355
355
|
destructive: "bg-transparent border-destructive text-destructive",
|
|
@@ -660,7 +660,7 @@ var button = (0, import_tailwind_variants8.tv)({
|
|
|
660
660
|
},
|
|
661
661
|
size: {
|
|
662
662
|
sm: "px-3 min-w-16 h-7 text-xs gap-2 rounded-sm has-[>svg]:px-2.5 [&_svg]:size-3",
|
|
663
|
-
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-
|
|
663
|
+
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-md has-[>svg]:px-3 [&_svg]:size-4",
|
|
664
664
|
lg: "px-6 min-w-24 h-10 text-base gap-3 rounded-lg has-[>svg]:px-4 [&_svg]:size-4"
|
|
665
665
|
},
|
|
666
666
|
color: {
|
|
@@ -683,6 +683,19 @@ var button = (0, import_tailwind_variants8.tv)({
|
|
|
683
683
|
default: "",
|
|
684
684
|
between: "justify-between",
|
|
685
685
|
start: "justify-start"
|
|
686
|
+
},
|
|
687
|
+
placeholder: {
|
|
688
|
+
true: "text-muted-foreground!",
|
|
689
|
+
false: ""
|
|
690
|
+
},
|
|
691
|
+
mode: {
|
|
692
|
+
default: "",
|
|
693
|
+
input: [
|
|
694
|
+
"justify-start font-normal hover:bg-background bg-background text-foreground shadow-xs",
|
|
695
|
+
"[&_svg]:transition-colors [&_svg]:hover:text-foreground data-[state=open]:bg-background",
|
|
696
|
+
...focusVisibleClasses,
|
|
697
|
+
"focus-visible:border-ring focus-visible:outline-hidden focus-visible:ring-[3px] focus-visible:ring-ring/30"
|
|
698
|
+
]
|
|
686
699
|
}
|
|
687
700
|
},
|
|
688
701
|
defaultVariants: {
|
|
@@ -690,7 +703,8 @@ var button = (0, import_tailwind_variants8.tv)({
|
|
|
690
703
|
variant: "solid",
|
|
691
704
|
color: "primary",
|
|
692
705
|
fullWidth: false,
|
|
693
|
-
isIconOnly: false
|
|
706
|
+
isIconOnly: false,
|
|
707
|
+
mode: "default"
|
|
694
708
|
},
|
|
695
709
|
compoundVariants: [
|
|
696
710
|
// primary color
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-BYXTAZ4I.mjs";
|
|
2
2
|
import {
|
|
3
3
|
standardChip
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-C3LKWHPD.mjs";
|
|
5
5
|
import {
|
|
6
6
|
switchVariants
|
|
7
7
|
} from "../chunk-WQ446TVH.mjs";
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
} from "../chunk-3CZOBPDH.mjs";
|
|
37
37
|
import {
|
|
38
38
|
skeletonAvatar
|
|
39
|
-
} from "../chunk-
|
|
39
|
+
} from "../chunk-J3BXXWBQ.mjs";
|
|
40
40
|
import {
|
|
41
41
|
skeleton
|
|
42
42
|
} from "../chunk-VNQEJU4P.mjs";
|
|
@@ -153,10 +153,10 @@ import {
|
|
|
153
153
|
} from "../chunk-A4KO7QKC.mjs";
|
|
154
154
|
import {
|
|
155
155
|
chip
|
|
156
|
-
} from "../chunk-
|
|
156
|
+
} from "../chunk-OX4Q6RK5.mjs";
|
|
157
157
|
import {
|
|
158
158
|
code
|
|
159
|
-
} from "../chunk-
|
|
159
|
+
} from "../chunk-ZZMGL5MA.mjs";
|
|
160
160
|
import {
|
|
161
161
|
colorHighlightButton
|
|
162
162
|
} from "../chunk-CPERWXKN.mjs";
|
|
@@ -181,14 +181,14 @@ import {
|
|
|
181
181
|
} from "../chunk-XCLEKBCJ.mjs";
|
|
182
182
|
import {
|
|
183
183
|
avatar
|
|
184
|
-
} from "../chunk-
|
|
184
|
+
} from "../chunk-2T3SPXLF.mjs";
|
|
185
185
|
import {
|
|
186
186
|
blankstate
|
|
187
187
|
} from "../chunk-DICHD74Q.mjs";
|
|
188
188
|
import {
|
|
189
189
|
button
|
|
190
|
-
} from "../chunk-
|
|
191
|
-
import "../chunk-
|
|
190
|
+
} from "../chunk-DPQAMK3W.mjs";
|
|
191
|
+
import "../chunk-2VWLEU6X.mjs";
|
|
192
192
|
import "../chunk-6IZPAS4O.mjs";
|
|
193
193
|
export {
|
|
194
194
|
accordion,
|
|
@@ -51,7 +51,7 @@ var solid = {
|
|
|
51
51
|
success: "bg-success text-success-foreground"
|
|
52
52
|
};
|
|
53
53
|
var outline = {
|
|
54
|
-
default: "bg-transparent border border-
|
|
54
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
55
55
|
primary: "bg-transparent border-primary text-primary",
|
|
56
56
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
57
57
|
destructive: "bg-transparent border-destructive text-destructive",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
skeletonAvatar
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-J3BXXWBQ.mjs";
|
|
4
|
+
import "../chunk-2T3SPXLF.mjs";
|
|
5
|
+
import "../chunk-2VWLEU6X.mjs";
|
|
6
6
|
import "../chunk-6IZPAS4O.mjs";
|
|
7
7
|
export {
|
|
8
8
|
skeletonAvatar
|
|
@@ -38,7 +38,7 @@ var solid = {
|
|
|
38
38
|
success: "bg-success text-success-foreground"
|
|
39
39
|
};
|
|
40
40
|
var outline = {
|
|
41
|
-
default: "bg-transparent border border-
|
|
41
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
42
42
|
primary: "bg-transparent border-primary text-primary",
|
|
43
43
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
44
44
|
destructive: "bg-transparent border-destructive text-destructive",
|
package/dist/index.js
CHANGED
|
@@ -349,7 +349,7 @@ var solid = {
|
|
|
349
349
|
success: "bg-success text-success-foreground"
|
|
350
350
|
};
|
|
351
351
|
var outline = {
|
|
352
|
-
default: "bg-transparent border border-
|
|
352
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
353
353
|
primary: "bg-transparent border-primary text-primary",
|
|
354
354
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
355
355
|
destructive: "bg-transparent border-destructive text-destructive",
|
|
@@ -660,7 +660,7 @@ var button = (0, import_tailwind_variants8.tv)({
|
|
|
660
660
|
},
|
|
661
661
|
size: {
|
|
662
662
|
sm: "px-3 min-w-16 h-7 text-xs gap-2 rounded-sm has-[>svg]:px-2.5 [&_svg]:size-3",
|
|
663
|
-
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-
|
|
663
|
+
md: "px-4 min-w-20 h-8.5 text-sm gap-2 rounded-md has-[>svg]:px-3 [&_svg]:size-4",
|
|
664
664
|
lg: "px-6 min-w-24 h-10 text-base gap-3 rounded-lg has-[>svg]:px-4 [&_svg]:size-4"
|
|
665
665
|
},
|
|
666
666
|
color: {
|
|
@@ -683,6 +683,19 @@ var button = (0, import_tailwind_variants8.tv)({
|
|
|
683
683
|
default: "",
|
|
684
684
|
between: "justify-between",
|
|
685
685
|
start: "justify-start"
|
|
686
|
+
},
|
|
687
|
+
placeholder: {
|
|
688
|
+
true: "text-muted-foreground!",
|
|
689
|
+
false: ""
|
|
690
|
+
},
|
|
691
|
+
mode: {
|
|
692
|
+
default: "",
|
|
693
|
+
input: [
|
|
694
|
+
"justify-start font-normal hover:bg-background bg-background text-foreground shadow-xs",
|
|
695
|
+
"[&_svg]:transition-colors [&_svg]:hover:text-foreground data-[state=open]:bg-background",
|
|
696
|
+
...focusVisibleClasses,
|
|
697
|
+
"focus-visible:border-ring focus-visible:outline-hidden focus-visible:ring-[3px] focus-visible:ring-ring/30"
|
|
698
|
+
]
|
|
686
699
|
}
|
|
687
700
|
},
|
|
688
701
|
defaultVariants: {
|
|
@@ -690,7 +703,8 @@ var button = (0, import_tailwind_variants8.tv)({
|
|
|
690
703
|
variant: "solid",
|
|
691
704
|
color: "primary",
|
|
692
705
|
fullWidth: false,
|
|
693
|
-
isIconOnly: false
|
|
706
|
+
isIconOnly: false,
|
|
707
|
+
mode: "default"
|
|
694
708
|
},
|
|
695
709
|
compoundVariants: [
|
|
696
710
|
// primary color
|
package/dist/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import "./chunk-XSN6P5JL.mjs";
|
|
|
2
2
|
import "./chunk-BYXTAZ4I.mjs";
|
|
3
3
|
import {
|
|
4
4
|
standardChip
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-C3LKWHPD.mjs";
|
|
6
6
|
import {
|
|
7
7
|
switchVariants
|
|
8
8
|
} from "./chunk-WQ446TVH.mjs";
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
} from "./chunk-3CZOBPDH.mjs";
|
|
38
38
|
import {
|
|
39
39
|
skeletonAvatar
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-J3BXXWBQ.mjs";
|
|
41
41
|
import {
|
|
42
42
|
skeleton
|
|
43
43
|
} from "./chunk-VNQEJU4P.mjs";
|
|
@@ -154,10 +154,10 @@ import {
|
|
|
154
154
|
} from "./chunk-A4KO7QKC.mjs";
|
|
155
155
|
import {
|
|
156
156
|
chip
|
|
157
|
-
} from "./chunk-
|
|
157
|
+
} from "./chunk-OX4Q6RK5.mjs";
|
|
158
158
|
import {
|
|
159
159
|
code
|
|
160
|
-
} from "./chunk-
|
|
160
|
+
} from "./chunk-ZZMGL5MA.mjs";
|
|
161
161
|
import {
|
|
162
162
|
colorHighlightButton
|
|
163
163
|
} from "./chunk-CPERWXKN.mjs";
|
|
@@ -182,14 +182,14 @@ import {
|
|
|
182
182
|
} from "./chunk-XCLEKBCJ.mjs";
|
|
183
183
|
import {
|
|
184
184
|
avatar
|
|
185
|
-
} from "./chunk-
|
|
185
|
+
} from "./chunk-2T3SPXLF.mjs";
|
|
186
186
|
import {
|
|
187
187
|
blankstate
|
|
188
188
|
} from "./chunk-DICHD74Q.mjs";
|
|
189
189
|
import {
|
|
190
190
|
button
|
|
191
|
-
} from "./chunk-
|
|
192
|
-
import "./chunk-
|
|
191
|
+
} from "./chunk-DPQAMK3W.mjs";
|
|
192
|
+
import "./chunk-2VWLEU6X.mjs";
|
|
193
193
|
import "./chunk-6IZPAS4O.mjs";
|
|
194
194
|
export {
|
|
195
195
|
accordion,
|
package/dist/utils/variants.js
CHANGED
|
@@ -32,7 +32,7 @@ var solid = {
|
|
|
32
32
|
success: "bg-success text-success-foreground"
|
|
33
33
|
};
|
|
34
34
|
var outline = {
|
|
35
|
-
default: "bg-transparent border border-
|
|
35
|
+
default: "bg-transparent border border-input text-accent-foreground",
|
|
36
36
|
primary: "bg-transparent border-primary text-primary",
|
|
37
37
|
secondary: "bg-transparent border-secondary text-secondary-foreground",
|
|
38
38
|
destructive: "bg-transparent border-destructive text-destructive",
|
package/dist/utils/variants.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "The default theme for Kopexa components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"theme",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"tailwind-merge": "3.3.1",
|
|
65
65
|
"tailwind-variants": "^3.1.1",
|
|
66
66
|
"tw-animate-css": "^1.4.0",
|
|
67
|
-
"@kopexa/shared-utils": "
|
|
67
|
+
"@kopexa/shared-utils": "15.0.0"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"tailwindcss": ">=4.0.0"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@types/color": "^4.2.0",
|
|
74
74
|
"@types/flat": "^5.0.5",
|
|
75
75
|
"clean-package": "2.2.0",
|
|
76
|
-
"tailwindcss": "^4.1.
|
|
76
|
+
"tailwindcss": "^4.1.16"
|
|
77
77
|
},
|
|
78
78
|
"tsup": {
|
|
79
79
|
"clean": true,
|