@kopexa/theme 17.26.9 → 17.27.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-5LVKFTZS.mjs → chunk-3UQ6COYP.mjs} +1 -1
- package/dist/{chunk-OTETLRUE.mjs → chunk-7G7WYWLT.mjs} +35 -3
- package/dist/{chunk-D5FKEY7B.mjs → chunk-MMGNN4CZ.mjs} +3 -3
- package/dist/{chunk-7T563RF7.mjs → chunk-MUMBGMSH.mjs} +10 -1
- package/dist/{chunk-VQ2OAHGP.mjs → chunk-OAG7ADA5.mjs} +1 -1
- package/dist/{chunk-7Q2RNHL5.mjs → chunk-QO6TNSFW.mjs} +1 -1
- package/dist/{chunk-XQZL7LCP.mjs → chunk-UTKOKSES.mjs} +1 -1
- package/dist/components/avatar.js +10 -1
- package/dist/components/avatar.mjs +2 -2
- package/dist/components/button.d.mts +3 -0
- package/dist/components/button.d.ts +3 -0
- package/dist/components/button.js +42 -1
- package/dist/components/button.mjs +2 -2
- package/dist/components/chip.js +10 -1
- package/dist/components/chip.mjs +2 -2
- package/dist/components/code.js +10 -1
- package/dist/components/code.mjs +2 -2
- package/dist/components/index.js +42 -1
- package/dist/components/index.mjs +92 -92
- package/dist/components/skeleton-avatar.js +10 -1
- package/dist/components/skeleton-avatar.mjs +3 -3
- package/dist/components/standard-chip.js +10 -1
- package/dist/components/standard-chip.mjs +3 -3
- package/dist/index.js +42 -1
- package/dist/index.mjs +93 -93
- package/dist/utils/variants.d.mts +8 -0
- package/dist/utils/variants.d.ts +8 -0
- package/dist/utils/variants.js +10 -1
- package/dist/utils/variants.mjs +1 -1
- package/package.json +2 -2
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
colorVariants
|
|
3
|
-
} from "./chunk-7T563RF7.mjs";
|
|
4
1
|
import {
|
|
5
2
|
focusVisibleClasses
|
|
6
3
|
} from "./chunk-6IZPAS4O.mjs";
|
|
4
|
+
import {
|
|
5
|
+
colorVariants
|
|
6
|
+
} from "./chunk-MUMBGMSH.mjs";
|
|
7
7
|
|
|
8
8
|
// src/components/button.ts
|
|
9
9
|
import { tv } from "tailwind-variants";
|
|
@@ -26,6 +26,7 @@ var button = tv({
|
|
|
26
26
|
solid: "shadow-xs",
|
|
27
27
|
ghost: "data-[active-state=on]:bg-primary/10",
|
|
28
28
|
outline: "border-1 bg-transparent",
|
|
29
|
+
dashed: "border border-dashed bg-transparent hover:opacity-100",
|
|
29
30
|
link: ""
|
|
30
31
|
},
|
|
31
32
|
size: {
|
|
@@ -170,6 +171,37 @@ var button = tv({
|
|
|
170
171
|
color: "default",
|
|
171
172
|
class: colorVariants.outline.default
|
|
172
173
|
},
|
|
174
|
+
// dashed color
|
|
175
|
+
{
|
|
176
|
+
variant: "dashed",
|
|
177
|
+
color: "primary",
|
|
178
|
+
class: colorVariants.dashed.primary
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
variant: "dashed",
|
|
182
|
+
color: "secondary",
|
|
183
|
+
class: colorVariants.dashed.secondary
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
variant: "dashed",
|
|
187
|
+
color: "destructive",
|
|
188
|
+
class: colorVariants.dashed.destructive
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
variant: "dashed",
|
|
192
|
+
color: "warning",
|
|
193
|
+
class: colorVariants.dashed.warning
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
variant: "dashed",
|
|
197
|
+
color: "success",
|
|
198
|
+
class: colorVariants.dashed.success
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
variant: "dashed",
|
|
202
|
+
color: "default",
|
|
203
|
+
class: colorVariants.dashed.default
|
|
204
|
+
},
|
|
173
205
|
// icon
|
|
174
206
|
{
|
|
175
207
|
isIconOnly: true,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
colorVariants
|
|
3
|
-
} from "./chunk-7T563RF7.mjs";
|
|
4
1
|
import {
|
|
5
2
|
focusVisibleClasses,
|
|
6
3
|
translateCenterClasses
|
|
7
4
|
} from "./chunk-6IZPAS4O.mjs";
|
|
5
|
+
import {
|
|
6
|
+
colorVariants
|
|
7
|
+
} from "./chunk-MUMBGMSH.mjs";
|
|
8
8
|
|
|
9
9
|
// src/components/avatar.ts
|
|
10
10
|
import { tv } from "tailwind-variants";
|
|
@@ -41,12 +41,21 @@ var ghost = {
|
|
|
41
41
|
success: "bg-transparent text-success",
|
|
42
42
|
default: "bg-transparent text-accent-foreground"
|
|
43
43
|
};
|
|
44
|
+
var dashed = {
|
|
45
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
46
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
47
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
48
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
49
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
50
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
51
|
+
};
|
|
44
52
|
var colorVariants = {
|
|
45
53
|
solid,
|
|
46
54
|
ghost,
|
|
47
55
|
outline,
|
|
48
56
|
flat,
|
|
49
|
-
faded
|
|
57
|
+
faded,
|
|
58
|
+
dashed
|
|
50
59
|
};
|
|
51
60
|
|
|
52
61
|
export {
|
|
@@ -81,12 +81,21 @@ var ghost = {
|
|
|
81
81
|
success: "bg-transparent text-success",
|
|
82
82
|
default: "bg-transparent text-accent-foreground"
|
|
83
83
|
};
|
|
84
|
+
var dashed = {
|
|
85
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
86
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
87
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
88
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
89
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
90
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
91
|
+
};
|
|
84
92
|
var colorVariants = {
|
|
85
93
|
solid,
|
|
86
94
|
ghost,
|
|
87
95
|
outline,
|
|
88
96
|
flat,
|
|
89
|
-
faded
|
|
97
|
+
faded,
|
|
98
|
+
dashed
|
|
90
99
|
};
|
|
91
100
|
|
|
92
101
|
// src/components/avatar.ts
|
|
@@ -23,6 +23,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
23
23
|
solid: string;
|
|
24
24
|
ghost: string;
|
|
25
25
|
outline: string;
|
|
26
|
+
dashed: string;
|
|
26
27
|
link: string;
|
|
27
28
|
};
|
|
28
29
|
size: {
|
|
@@ -64,6 +65,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
64
65
|
solid: string;
|
|
65
66
|
ghost: string;
|
|
66
67
|
outline: string;
|
|
68
|
+
dashed: string;
|
|
67
69
|
link: string;
|
|
68
70
|
};
|
|
69
71
|
size: {
|
|
@@ -105,6 +107,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
105
107
|
solid: string;
|
|
106
108
|
ghost: string;
|
|
107
109
|
outline: string;
|
|
110
|
+
dashed: string;
|
|
108
111
|
link: string;
|
|
109
112
|
};
|
|
110
113
|
size: {
|
|
@@ -23,6 +23,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
23
23
|
solid: string;
|
|
24
24
|
ghost: string;
|
|
25
25
|
outline: string;
|
|
26
|
+
dashed: string;
|
|
26
27
|
link: string;
|
|
27
28
|
};
|
|
28
29
|
size: {
|
|
@@ -64,6 +65,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
64
65
|
solid: string;
|
|
65
66
|
ghost: string;
|
|
66
67
|
outline: string;
|
|
68
|
+
dashed: string;
|
|
67
69
|
link: string;
|
|
68
70
|
};
|
|
69
71
|
size: {
|
|
@@ -105,6 +107,7 @@ declare const button: tailwind_variants.TVReturnType<{
|
|
|
105
107
|
solid: string;
|
|
106
108
|
ghost: string;
|
|
107
109
|
outline: string;
|
|
110
|
+
dashed: string;
|
|
108
111
|
link: string;
|
|
109
112
|
};
|
|
110
113
|
size: {
|
|
@@ -74,12 +74,21 @@ var ghost = {
|
|
|
74
74
|
success: "bg-transparent text-success",
|
|
75
75
|
default: "bg-transparent text-accent-foreground"
|
|
76
76
|
};
|
|
77
|
+
var dashed = {
|
|
78
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
79
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
80
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
81
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
82
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
83
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
84
|
+
};
|
|
77
85
|
var colorVariants = {
|
|
78
86
|
solid,
|
|
79
87
|
ghost,
|
|
80
88
|
outline,
|
|
81
89
|
flat,
|
|
82
|
-
faded
|
|
90
|
+
faded,
|
|
91
|
+
dashed
|
|
83
92
|
};
|
|
84
93
|
|
|
85
94
|
// src/components/button.ts
|
|
@@ -102,6 +111,7 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
102
111
|
solid: "shadow-xs",
|
|
103
112
|
ghost: "data-[active-state=on]:bg-primary/10",
|
|
104
113
|
outline: "border-1 bg-transparent",
|
|
114
|
+
dashed: "border border-dashed bg-transparent hover:opacity-100",
|
|
105
115
|
link: ""
|
|
106
116
|
},
|
|
107
117
|
size: {
|
|
@@ -246,6 +256,37 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
246
256
|
color: "default",
|
|
247
257
|
class: colorVariants.outline.default
|
|
248
258
|
},
|
|
259
|
+
// dashed color
|
|
260
|
+
{
|
|
261
|
+
variant: "dashed",
|
|
262
|
+
color: "primary",
|
|
263
|
+
class: colorVariants.dashed.primary
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
variant: "dashed",
|
|
267
|
+
color: "secondary",
|
|
268
|
+
class: colorVariants.dashed.secondary
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
variant: "dashed",
|
|
272
|
+
color: "destructive",
|
|
273
|
+
class: colorVariants.dashed.destructive
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
variant: "dashed",
|
|
277
|
+
color: "warning",
|
|
278
|
+
class: colorVariants.dashed.warning
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
variant: "dashed",
|
|
282
|
+
color: "success",
|
|
283
|
+
class: colorVariants.dashed.success
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
variant: "dashed",
|
|
287
|
+
color: "default",
|
|
288
|
+
class: colorVariants.dashed.default
|
|
289
|
+
},
|
|
249
290
|
// icon
|
|
250
291
|
{
|
|
251
292
|
isIconOnly: true,
|
package/dist/components/chip.js
CHANGED
|
@@ -68,12 +68,21 @@ var ghost = {
|
|
|
68
68
|
success: "bg-transparent text-success",
|
|
69
69
|
default: "bg-transparent text-accent-foreground"
|
|
70
70
|
};
|
|
71
|
+
var dashed = {
|
|
72
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
73
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
74
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
75
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
76
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
77
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
78
|
+
};
|
|
71
79
|
var colorVariants = {
|
|
72
80
|
solid,
|
|
73
81
|
ghost,
|
|
74
82
|
outline,
|
|
75
83
|
flat,
|
|
76
|
-
faded
|
|
84
|
+
faded,
|
|
85
|
+
dashed
|
|
77
86
|
};
|
|
78
87
|
|
|
79
88
|
// src/components/chip.ts
|
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.js
CHANGED
|
@@ -68,12 +68,21 @@ var ghost = {
|
|
|
68
68
|
success: "bg-transparent text-success",
|
|
69
69
|
default: "bg-transparent text-accent-foreground"
|
|
70
70
|
};
|
|
71
|
+
var dashed = {
|
|
72
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
73
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
74
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
75
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
76
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
77
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
78
|
+
};
|
|
71
79
|
var colorVariants = {
|
|
72
80
|
solid,
|
|
73
81
|
ghost,
|
|
74
82
|
outline,
|
|
75
83
|
flat,
|
|
76
|
-
faded
|
|
84
|
+
faded,
|
|
85
|
+
dashed
|
|
77
86
|
};
|
|
78
87
|
|
|
79
88
|
// src/components/code.ts
|
package/dist/components/code.mjs
CHANGED
package/dist/components/index.js
CHANGED
|
@@ -459,12 +459,21 @@ var ghost = {
|
|
|
459
459
|
success: "bg-transparent text-success",
|
|
460
460
|
default: "bg-transparent text-accent-foreground"
|
|
461
461
|
};
|
|
462
|
+
var dashed = {
|
|
463
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
464
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
465
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
466
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
467
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
468
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
469
|
+
};
|
|
462
470
|
var colorVariants = {
|
|
463
471
|
solid,
|
|
464
472
|
ghost,
|
|
465
473
|
outline,
|
|
466
474
|
flat,
|
|
467
|
-
faded
|
|
475
|
+
faded,
|
|
476
|
+
dashed
|
|
468
477
|
};
|
|
469
478
|
|
|
470
479
|
// src/components/avatar.ts
|
|
@@ -756,6 +765,7 @@ var button = (0, import_tailwind_variants10.tv)({
|
|
|
756
765
|
solid: "shadow-xs",
|
|
757
766
|
ghost: "data-[active-state=on]:bg-primary/10",
|
|
758
767
|
outline: "border-1 bg-transparent",
|
|
768
|
+
dashed: "border border-dashed bg-transparent hover:opacity-100",
|
|
759
769
|
link: ""
|
|
760
770
|
},
|
|
761
771
|
size: {
|
|
@@ -900,6 +910,37 @@ var button = (0, import_tailwind_variants10.tv)({
|
|
|
900
910
|
color: "default",
|
|
901
911
|
class: colorVariants.outline.default
|
|
902
912
|
},
|
|
913
|
+
// dashed color
|
|
914
|
+
{
|
|
915
|
+
variant: "dashed",
|
|
916
|
+
color: "primary",
|
|
917
|
+
class: colorVariants.dashed.primary
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
variant: "dashed",
|
|
921
|
+
color: "secondary",
|
|
922
|
+
class: colorVariants.dashed.secondary
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
variant: "dashed",
|
|
926
|
+
color: "destructive",
|
|
927
|
+
class: colorVariants.dashed.destructive
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
variant: "dashed",
|
|
931
|
+
color: "warning",
|
|
932
|
+
class: colorVariants.dashed.warning
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
variant: "dashed",
|
|
936
|
+
color: "success",
|
|
937
|
+
class: colorVariants.dashed.success
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
variant: "dashed",
|
|
941
|
+
color: "default",
|
|
942
|
+
class: colorVariants.dashed.default
|
|
943
|
+
},
|
|
903
944
|
// icon
|
|
904
945
|
{
|
|
905
946
|
isIconOnly: true,
|
|
@@ -1,16 +1,4 @@
|
|
|
1
1
|
import "../chunk-EWID76V7.mjs";
|
|
2
|
-
import {
|
|
3
|
-
table
|
|
4
|
-
} from "../chunk-YC2FQDBV.mjs";
|
|
5
|
-
import {
|
|
6
|
-
tabs
|
|
7
|
-
} from "../chunk-I6M4S2KZ.mjs";
|
|
8
|
-
import {
|
|
9
|
-
textarea
|
|
10
|
-
} from "../chunk-ARLLAC5V.mjs";
|
|
11
|
-
import {
|
|
12
|
-
toc
|
|
13
|
-
} from "../chunk-ODC3GJTR.mjs";
|
|
14
2
|
import {
|
|
15
3
|
toggleRow
|
|
16
4
|
} from "../chunk-F7MJHRZX.mjs";
|
|
@@ -23,21 +11,9 @@ import {
|
|
|
23
11
|
import {
|
|
24
12
|
variableNode
|
|
25
13
|
} from "../chunk-EKOZ2ZVU.mjs";
|
|
26
|
-
import {
|
|
27
|
-
skeleton
|
|
28
|
-
} from "../chunk-VNQEJU4P.mjs";
|
|
29
|
-
import {
|
|
30
|
-
slashDropdownMenu
|
|
31
|
-
} from "../chunk-U4BRPFG2.mjs";
|
|
32
|
-
import {
|
|
33
|
-
spinner
|
|
34
|
-
} from "../chunk-4UDOCFU5.mjs";
|
|
35
|
-
import {
|
|
36
|
-
splitPageLayout
|
|
37
|
-
} from "../chunk-B5JVXVSG.mjs";
|
|
38
14
|
import {
|
|
39
15
|
standardChip
|
|
40
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-UTKOKSES.mjs";
|
|
41
17
|
import {
|
|
42
18
|
stat
|
|
43
19
|
} from "../chunk-RTWYV4TJ.mjs";
|
|
@@ -48,17 +24,17 @@ import {
|
|
|
48
24
|
tabNav
|
|
49
25
|
} from "../chunk-ZLM6Z3W2.mjs";
|
|
50
26
|
import {
|
|
51
|
-
|
|
52
|
-
} from "../chunk-
|
|
27
|
+
table
|
|
28
|
+
} from "../chunk-YC2FQDBV.mjs";
|
|
53
29
|
import {
|
|
54
|
-
|
|
55
|
-
} from "../chunk-
|
|
30
|
+
tabs
|
|
31
|
+
} from "../chunk-I6M4S2KZ.mjs";
|
|
56
32
|
import {
|
|
57
|
-
|
|
58
|
-
} from "../chunk-
|
|
33
|
+
textarea
|
|
34
|
+
} from "../chunk-ARLLAC5V.mjs";
|
|
59
35
|
import {
|
|
60
|
-
|
|
61
|
-
} from "../chunk-
|
|
36
|
+
toc
|
|
37
|
+
} from "../chunk-ODC3GJTR.mjs";
|
|
62
38
|
import {
|
|
63
39
|
select
|
|
64
40
|
} from "../chunk-KPVLNOO5.mjs";
|
|
@@ -72,19 +48,19 @@ import {
|
|
|
72
48
|
} from "../chunk-2Z4QAY6O.mjs";
|
|
73
49
|
import {
|
|
74
50
|
skeletonAvatar
|
|
75
|
-
} from "../chunk-
|
|
51
|
+
} from "../chunk-QO6TNSFW.mjs";
|
|
76
52
|
import {
|
|
77
|
-
|
|
78
|
-
} from "../chunk-
|
|
53
|
+
skeleton
|
|
54
|
+
} from "../chunk-VNQEJU4P.mjs";
|
|
79
55
|
import {
|
|
80
|
-
|
|
81
|
-
} from "../chunk-
|
|
56
|
+
slashDropdownMenu
|
|
57
|
+
} from "../chunk-U4BRPFG2.mjs";
|
|
82
58
|
import {
|
|
83
|
-
|
|
84
|
-
} from "../chunk-
|
|
59
|
+
spinner
|
|
60
|
+
} from "../chunk-4UDOCFU5.mjs";
|
|
85
61
|
import {
|
|
86
|
-
|
|
87
|
-
} from "../chunk-
|
|
62
|
+
splitPageLayout
|
|
63
|
+
} from "../chunk-B5JVXVSG.mjs";
|
|
88
64
|
import {
|
|
89
65
|
promptInput
|
|
90
66
|
} from "../chunk-UCVBVFHQ.mjs";
|
|
@@ -98,14 +74,17 @@ import {
|
|
|
98
74
|
riskBadge
|
|
99
75
|
} from "../chunk-V2J5XG34.mjs";
|
|
100
76
|
import {
|
|
101
|
-
|
|
102
|
-
} from "../chunk-
|
|
77
|
+
riskIndicator
|
|
78
|
+
} from "../chunk-CZMZHA7U.mjs";
|
|
103
79
|
import {
|
|
104
|
-
|
|
105
|
-
} from "../chunk-
|
|
80
|
+
riskRating
|
|
81
|
+
} from "../chunk-CNYKIUVC.mjs";
|
|
106
82
|
import {
|
|
107
|
-
|
|
108
|
-
} from "../chunk-
|
|
83
|
+
scrollArea
|
|
84
|
+
} from "../chunk-SPQE7K66.mjs";
|
|
85
|
+
import {
|
|
86
|
+
sectionRow
|
|
87
|
+
} from "../chunk-CC225WUG.mjs";
|
|
109
88
|
import {
|
|
110
89
|
kbd
|
|
111
90
|
} from "../chunk-BETLBSSF.mjs";
|
|
@@ -119,17 +98,17 @@ import {
|
|
|
119
98
|
message
|
|
120
99
|
} from "../chunk-PHVYOUMA.mjs";
|
|
121
100
|
import {
|
|
122
|
-
|
|
123
|
-
} from "../chunk-
|
|
101
|
+
pageHeader
|
|
102
|
+
} from "../chunk-HAVJ6EQ6.mjs";
|
|
124
103
|
import {
|
|
125
|
-
|
|
126
|
-
} from "../chunk-
|
|
104
|
+
pageLayout
|
|
105
|
+
} from "../chunk-OULAICSC.mjs";
|
|
127
106
|
import {
|
|
128
|
-
|
|
129
|
-
} from "../chunk-
|
|
107
|
+
popover
|
|
108
|
+
} from "../chunk-TQVRNEIH.mjs";
|
|
130
109
|
import {
|
|
131
|
-
|
|
132
|
-
} from "../chunk-
|
|
110
|
+
previewCard
|
|
111
|
+
} from "../chunk-GWRIERN6.mjs";
|
|
133
112
|
import {
|
|
134
113
|
imageCrop
|
|
135
114
|
} from "../chunk-GMFZLUU4.mjs";
|
|
@@ -140,17 +119,14 @@ import {
|
|
|
140
119
|
impactCard
|
|
141
120
|
} from "../chunk-EJSDSK3G.mjs";
|
|
142
121
|
import {
|
|
143
|
-
|
|
144
|
-
} from "../chunk-
|
|
145
|
-
import {
|
|
146
|
-
dialog
|
|
147
|
-
} from "../chunk-OJDCD74N.mjs";
|
|
122
|
+
inputGroup
|
|
123
|
+
} from "../chunk-HWEYNK3O.mjs";
|
|
148
124
|
import {
|
|
149
|
-
|
|
150
|
-
} from "../chunk-
|
|
125
|
+
inputWrapper
|
|
126
|
+
} from "../chunk-VSVGOX3P.mjs";
|
|
151
127
|
import {
|
|
152
|
-
|
|
153
|
-
} from "../chunk-
|
|
128
|
+
integrationCard
|
|
129
|
+
} from "../chunk-QOW6FLZ6.mjs";
|
|
154
130
|
import {
|
|
155
131
|
editorBasic
|
|
156
132
|
} from "../chunk-SE7BA67Y.mjs";
|
|
@@ -165,17 +141,17 @@ import {
|
|
|
165
141
|
avatarUpload
|
|
166
142
|
} from "../chunk-QGL2OK4B.mjs";
|
|
167
143
|
import {
|
|
168
|
-
|
|
169
|
-
} from "../chunk-
|
|
144
|
+
filter
|
|
145
|
+
} from "../chunk-GT463S76.mjs";
|
|
170
146
|
import {
|
|
171
|
-
|
|
172
|
-
} from "../chunk-
|
|
147
|
+
frameworkRow
|
|
148
|
+
} from "../chunk-TPFAZH22.mjs";
|
|
173
149
|
import {
|
|
174
|
-
|
|
175
|
-
} from "../chunk-
|
|
150
|
+
heading
|
|
151
|
+
} from "../chunk-NWKBPO37.mjs";
|
|
176
152
|
import {
|
|
177
|
-
|
|
178
|
-
} from "../chunk-
|
|
153
|
+
hoverCard
|
|
154
|
+
} from "../chunk-UTCVHVWF.mjs";
|
|
179
155
|
import {
|
|
180
156
|
controlExtension
|
|
181
157
|
} from "../chunk-M4TXKRUU.mjs";
|
|
@@ -189,17 +165,17 @@ import {
|
|
|
189
165
|
dataTable
|
|
190
166
|
} from "../chunk-GNYTZGE5.mjs";
|
|
191
167
|
import {
|
|
192
|
-
|
|
193
|
-
} from "../chunk-
|
|
168
|
+
drawer
|
|
169
|
+
} from "../chunk-7V3NMVQH.mjs";
|
|
194
170
|
import {
|
|
195
|
-
|
|
196
|
-
} from "../chunk-
|
|
171
|
+
dialog
|
|
172
|
+
} from "../chunk-OJDCD74N.mjs";
|
|
197
173
|
import {
|
|
198
|
-
|
|
199
|
-
} from "../chunk-
|
|
174
|
+
dropdownMenu
|
|
175
|
+
} from "../chunk-BWUVMOSV.mjs";
|
|
200
176
|
import {
|
|
201
|
-
|
|
202
|
-
} from "../chunk-
|
|
177
|
+
editableText
|
|
178
|
+
} from "../chunk-GZJAA5RZ.mjs";
|
|
203
179
|
import {
|
|
204
180
|
card
|
|
205
181
|
} from "../chunk-5YHTCPJL.mjs";
|
|
@@ -208,19 +184,22 @@ import {
|
|
|
208
184
|
} from "../chunk-ZUKWFD2M.mjs";
|
|
209
185
|
import {
|
|
210
186
|
chip
|
|
211
|
-
} from "../chunk-
|
|
187
|
+
} from "../chunk-3UQ6COYP.mjs";
|
|
212
188
|
import {
|
|
213
189
|
code
|
|
214
|
-
} from "../chunk-
|
|
190
|
+
} from "../chunk-OAG7ADA5.mjs";
|
|
215
191
|
import {
|
|
216
|
-
|
|
217
|
-
} from "../chunk-
|
|
192
|
+
colorHighlightButton
|
|
193
|
+
} from "../chunk-CPERWXKN.mjs";
|
|
218
194
|
import {
|
|
219
|
-
|
|
220
|
-
} from "../chunk-
|
|
195
|
+
combobox
|
|
196
|
+
} from "../chunk-3T7EOMXR.mjs";
|
|
221
197
|
import {
|
|
222
|
-
|
|
223
|
-
} from "../chunk-
|
|
198
|
+
command
|
|
199
|
+
} from "../chunk-YPHFKGNI.mjs";
|
|
200
|
+
import {
|
|
201
|
+
complianceBadge
|
|
202
|
+
} from "../chunk-RZ45NVOH.mjs";
|
|
224
203
|
import {
|
|
225
204
|
autocomplete
|
|
226
205
|
} from "../chunk-OHZBQRA4.mjs";
|
|
@@ -233,12 +212,33 @@ import {
|
|
|
233
212
|
} from "../chunk-XCLEKBCJ.mjs";
|
|
234
213
|
import {
|
|
235
214
|
avatar
|
|
236
|
-
} from "../chunk-
|
|
237
|
-
import "../chunk-7T563RF7.mjs";
|
|
238
|
-
import "../chunk-6IZPAS4O.mjs";
|
|
215
|
+
} from "../chunk-MMGNN4CZ.mjs";
|
|
239
216
|
import {
|
|
240
217
|
blankstate
|
|
241
218
|
} from "../chunk-DICHD74Q.mjs";
|
|
219
|
+
import {
|
|
220
|
+
breadcrumb
|
|
221
|
+
} from "../chunk-W6TZSSAU.mjs";
|
|
222
|
+
import {
|
|
223
|
+
button
|
|
224
|
+
} from "../chunk-7G7WYWLT.mjs";
|
|
225
|
+
import {
|
|
226
|
+
calendar
|
|
227
|
+
} from "../chunk-JWF5ABNP.mjs";
|
|
228
|
+
import {
|
|
229
|
+
callout
|
|
230
|
+
} from "../chunk-A3F4CV54.mjs";
|
|
231
|
+
import "../chunk-6IZPAS4O.mjs";
|
|
232
|
+
import "../chunk-MUMBGMSH.mjs";
|
|
233
|
+
import {
|
|
234
|
+
accordion
|
|
235
|
+
} from "../chunk-AEWKHJEI.mjs";
|
|
236
|
+
import {
|
|
237
|
+
alertDialog
|
|
238
|
+
} from "../chunk-XGUDXC5P.mjs";
|
|
239
|
+
import {
|
|
240
|
+
auditInfo
|
|
241
|
+
} from "../chunk-CPAF7VNM.mjs";
|
|
242
242
|
export {
|
|
243
243
|
accordion,
|
|
244
244
|
alertDialog,
|
|
@@ -84,12 +84,21 @@ var ghost = {
|
|
|
84
84
|
success: "bg-transparent text-success",
|
|
85
85
|
default: "bg-transparent text-accent-foreground"
|
|
86
86
|
};
|
|
87
|
+
var dashed = {
|
|
88
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
89
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
90
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
91
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
92
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
93
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
94
|
+
};
|
|
87
95
|
var colorVariants = {
|
|
88
96
|
solid,
|
|
89
97
|
ghost,
|
|
90
98
|
outline,
|
|
91
99
|
flat,
|
|
92
|
-
faded
|
|
100
|
+
faded,
|
|
101
|
+
dashed
|
|
93
102
|
};
|
|
94
103
|
|
|
95
104
|
// src/components/avatar.ts
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
skeletonAvatar
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-7T563RF7.mjs";
|
|
3
|
+
} from "../chunk-QO6TNSFW.mjs";
|
|
4
|
+
import "../chunk-MMGNN4CZ.mjs";
|
|
6
5
|
import "../chunk-6IZPAS4O.mjs";
|
|
6
|
+
import "../chunk-MUMBGMSH.mjs";
|
|
7
7
|
export {
|
|
8
8
|
skeletonAvatar
|
|
9
9
|
};
|
|
@@ -71,12 +71,21 @@ var ghost = {
|
|
|
71
71
|
success: "bg-transparent text-success",
|
|
72
72
|
default: "bg-transparent text-accent-foreground"
|
|
73
73
|
};
|
|
74
|
+
var dashed = {
|
|
75
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
76
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
77
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
78
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
79
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
80
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
81
|
+
};
|
|
74
82
|
var colorVariants = {
|
|
75
83
|
solid,
|
|
76
84
|
ghost,
|
|
77
85
|
outline,
|
|
78
86
|
flat,
|
|
79
|
-
faded
|
|
87
|
+
faded,
|
|
88
|
+
dashed
|
|
80
89
|
};
|
|
81
90
|
|
|
82
91
|
// src/components/chip.ts
|
package/dist/index.js
CHANGED
|
@@ -459,12 +459,21 @@ var ghost = {
|
|
|
459
459
|
success: "bg-transparent text-success",
|
|
460
460
|
default: "bg-transparent text-accent-foreground"
|
|
461
461
|
};
|
|
462
|
+
var dashed = {
|
|
463
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
464
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
465
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
466
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
467
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
468
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
469
|
+
};
|
|
462
470
|
var colorVariants = {
|
|
463
471
|
solid,
|
|
464
472
|
ghost,
|
|
465
473
|
outline,
|
|
466
474
|
flat,
|
|
467
|
-
faded
|
|
475
|
+
faded,
|
|
476
|
+
dashed
|
|
468
477
|
};
|
|
469
478
|
|
|
470
479
|
// src/components/avatar.ts
|
|
@@ -756,6 +765,7 @@ var button = (0, import_tailwind_variants10.tv)({
|
|
|
756
765
|
solid: "shadow-xs",
|
|
757
766
|
ghost: "data-[active-state=on]:bg-primary/10",
|
|
758
767
|
outline: "border-1 bg-transparent",
|
|
768
|
+
dashed: "border border-dashed bg-transparent hover:opacity-100",
|
|
759
769
|
link: ""
|
|
760
770
|
},
|
|
761
771
|
size: {
|
|
@@ -900,6 +910,37 @@ var button = (0, import_tailwind_variants10.tv)({
|
|
|
900
910
|
color: "default",
|
|
901
911
|
class: colorVariants.outline.default
|
|
902
912
|
},
|
|
913
|
+
// dashed color
|
|
914
|
+
{
|
|
915
|
+
variant: "dashed",
|
|
916
|
+
color: "primary",
|
|
917
|
+
class: colorVariants.dashed.primary
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
variant: "dashed",
|
|
921
|
+
color: "secondary",
|
|
922
|
+
class: colorVariants.dashed.secondary
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
variant: "dashed",
|
|
926
|
+
color: "destructive",
|
|
927
|
+
class: colorVariants.dashed.destructive
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
variant: "dashed",
|
|
931
|
+
color: "warning",
|
|
932
|
+
class: colorVariants.dashed.warning
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
variant: "dashed",
|
|
936
|
+
color: "success",
|
|
937
|
+
class: colorVariants.dashed.success
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
variant: "dashed",
|
|
941
|
+
color: "default",
|
|
942
|
+
class: colorVariants.dashed.default
|
|
943
|
+
},
|
|
903
944
|
// icon
|
|
904
945
|
{
|
|
905
946
|
isIconOnly: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import "./chunk-XSN6P5JL.mjs";
|
|
2
1
|
import "./chunk-EWID76V7.mjs";
|
|
3
|
-
import {
|
|
4
|
-
table
|
|
5
|
-
} from "./chunk-YC2FQDBV.mjs";
|
|
6
|
-
import {
|
|
7
|
-
tabs
|
|
8
|
-
} from "./chunk-I6M4S2KZ.mjs";
|
|
9
|
-
import {
|
|
10
|
-
textarea
|
|
11
|
-
} from "./chunk-ARLLAC5V.mjs";
|
|
12
|
-
import {
|
|
13
|
-
toc
|
|
14
|
-
} from "./chunk-ODC3GJTR.mjs";
|
|
15
2
|
import {
|
|
16
3
|
toggleRow
|
|
17
4
|
} from "./chunk-F7MJHRZX.mjs";
|
|
@@ -24,21 +11,9 @@ import {
|
|
|
24
11
|
import {
|
|
25
12
|
variableNode
|
|
26
13
|
} from "./chunk-EKOZ2ZVU.mjs";
|
|
27
|
-
import {
|
|
28
|
-
skeleton
|
|
29
|
-
} from "./chunk-VNQEJU4P.mjs";
|
|
30
|
-
import {
|
|
31
|
-
slashDropdownMenu
|
|
32
|
-
} from "./chunk-U4BRPFG2.mjs";
|
|
33
|
-
import {
|
|
34
|
-
spinner
|
|
35
|
-
} from "./chunk-4UDOCFU5.mjs";
|
|
36
|
-
import {
|
|
37
|
-
splitPageLayout
|
|
38
|
-
} from "./chunk-B5JVXVSG.mjs";
|
|
39
14
|
import {
|
|
40
15
|
standardChip
|
|
41
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-UTKOKSES.mjs";
|
|
42
17
|
import {
|
|
43
18
|
stat
|
|
44
19
|
} from "./chunk-RTWYV4TJ.mjs";
|
|
@@ -49,17 +24,17 @@ import {
|
|
|
49
24
|
tabNav
|
|
50
25
|
} from "./chunk-ZLM6Z3W2.mjs";
|
|
51
26
|
import {
|
|
52
|
-
|
|
53
|
-
} from "./chunk-
|
|
27
|
+
table
|
|
28
|
+
} from "./chunk-YC2FQDBV.mjs";
|
|
54
29
|
import {
|
|
55
|
-
|
|
56
|
-
} from "./chunk-
|
|
30
|
+
tabs
|
|
31
|
+
} from "./chunk-I6M4S2KZ.mjs";
|
|
57
32
|
import {
|
|
58
|
-
|
|
59
|
-
} from "./chunk-
|
|
33
|
+
textarea
|
|
34
|
+
} from "./chunk-ARLLAC5V.mjs";
|
|
60
35
|
import {
|
|
61
|
-
|
|
62
|
-
} from "./chunk-
|
|
36
|
+
toc
|
|
37
|
+
} from "./chunk-ODC3GJTR.mjs";
|
|
63
38
|
import {
|
|
64
39
|
select
|
|
65
40
|
} from "./chunk-KPVLNOO5.mjs";
|
|
@@ -73,19 +48,19 @@ import {
|
|
|
73
48
|
} from "./chunk-2Z4QAY6O.mjs";
|
|
74
49
|
import {
|
|
75
50
|
skeletonAvatar
|
|
76
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-QO6TNSFW.mjs";
|
|
77
52
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
53
|
+
skeleton
|
|
54
|
+
} from "./chunk-VNQEJU4P.mjs";
|
|
80
55
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
56
|
+
slashDropdownMenu
|
|
57
|
+
} from "./chunk-U4BRPFG2.mjs";
|
|
83
58
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
59
|
+
spinner
|
|
60
|
+
} from "./chunk-4UDOCFU5.mjs";
|
|
86
61
|
import {
|
|
87
|
-
|
|
88
|
-
} from "./chunk-
|
|
62
|
+
splitPageLayout
|
|
63
|
+
} from "./chunk-B5JVXVSG.mjs";
|
|
89
64
|
import {
|
|
90
65
|
promptInput
|
|
91
66
|
} from "./chunk-UCVBVFHQ.mjs";
|
|
@@ -99,14 +74,17 @@ import {
|
|
|
99
74
|
riskBadge
|
|
100
75
|
} from "./chunk-V2J5XG34.mjs";
|
|
101
76
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
77
|
+
riskIndicator
|
|
78
|
+
} from "./chunk-CZMZHA7U.mjs";
|
|
104
79
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
80
|
+
riskRating
|
|
81
|
+
} from "./chunk-CNYKIUVC.mjs";
|
|
107
82
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
83
|
+
scrollArea
|
|
84
|
+
} from "./chunk-SPQE7K66.mjs";
|
|
85
|
+
import {
|
|
86
|
+
sectionRow
|
|
87
|
+
} from "./chunk-CC225WUG.mjs";
|
|
110
88
|
import {
|
|
111
89
|
kbd
|
|
112
90
|
} from "./chunk-BETLBSSF.mjs";
|
|
@@ -120,17 +98,17 @@ import {
|
|
|
120
98
|
message
|
|
121
99
|
} from "./chunk-PHVYOUMA.mjs";
|
|
122
100
|
import {
|
|
123
|
-
|
|
124
|
-
} from "./chunk-
|
|
101
|
+
pageHeader
|
|
102
|
+
} from "./chunk-HAVJ6EQ6.mjs";
|
|
125
103
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
104
|
+
pageLayout
|
|
105
|
+
} from "./chunk-OULAICSC.mjs";
|
|
128
106
|
import {
|
|
129
|
-
|
|
130
|
-
} from "./chunk-
|
|
107
|
+
popover
|
|
108
|
+
} from "./chunk-TQVRNEIH.mjs";
|
|
131
109
|
import {
|
|
132
|
-
|
|
133
|
-
} from "./chunk-
|
|
110
|
+
previewCard
|
|
111
|
+
} from "./chunk-GWRIERN6.mjs";
|
|
134
112
|
import {
|
|
135
113
|
imageCrop
|
|
136
114
|
} from "./chunk-GMFZLUU4.mjs";
|
|
@@ -141,17 +119,14 @@ import {
|
|
|
141
119
|
impactCard
|
|
142
120
|
} from "./chunk-EJSDSK3G.mjs";
|
|
143
121
|
import {
|
|
144
|
-
|
|
145
|
-
} from "./chunk-
|
|
146
|
-
import {
|
|
147
|
-
dialog
|
|
148
|
-
} from "./chunk-OJDCD74N.mjs";
|
|
122
|
+
inputGroup
|
|
123
|
+
} from "./chunk-HWEYNK3O.mjs";
|
|
149
124
|
import {
|
|
150
|
-
|
|
151
|
-
} from "./chunk-
|
|
125
|
+
inputWrapper
|
|
126
|
+
} from "./chunk-VSVGOX3P.mjs";
|
|
152
127
|
import {
|
|
153
|
-
|
|
154
|
-
} from "./chunk-
|
|
128
|
+
integrationCard
|
|
129
|
+
} from "./chunk-QOW6FLZ6.mjs";
|
|
155
130
|
import {
|
|
156
131
|
editorBasic
|
|
157
132
|
} from "./chunk-SE7BA67Y.mjs";
|
|
@@ -166,17 +141,17 @@ import {
|
|
|
166
141
|
avatarUpload
|
|
167
142
|
} from "./chunk-QGL2OK4B.mjs";
|
|
168
143
|
import {
|
|
169
|
-
|
|
170
|
-
} from "./chunk-
|
|
144
|
+
filter
|
|
145
|
+
} from "./chunk-GT463S76.mjs";
|
|
171
146
|
import {
|
|
172
|
-
|
|
173
|
-
} from "./chunk-
|
|
147
|
+
frameworkRow
|
|
148
|
+
} from "./chunk-TPFAZH22.mjs";
|
|
174
149
|
import {
|
|
175
|
-
|
|
176
|
-
} from "./chunk-
|
|
150
|
+
heading
|
|
151
|
+
} from "./chunk-NWKBPO37.mjs";
|
|
177
152
|
import {
|
|
178
|
-
|
|
179
|
-
} from "./chunk-
|
|
153
|
+
hoverCard
|
|
154
|
+
} from "./chunk-UTCVHVWF.mjs";
|
|
180
155
|
import {
|
|
181
156
|
controlExtension
|
|
182
157
|
} from "./chunk-M4TXKRUU.mjs";
|
|
@@ -190,17 +165,17 @@ import {
|
|
|
190
165
|
dataTable
|
|
191
166
|
} from "./chunk-GNYTZGE5.mjs";
|
|
192
167
|
import {
|
|
193
|
-
|
|
194
|
-
} from "./chunk-
|
|
168
|
+
drawer
|
|
169
|
+
} from "./chunk-7V3NMVQH.mjs";
|
|
195
170
|
import {
|
|
196
|
-
|
|
197
|
-
} from "./chunk-
|
|
171
|
+
dialog
|
|
172
|
+
} from "./chunk-OJDCD74N.mjs";
|
|
198
173
|
import {
|
|
199
|
-
|
|
200
|
-
} from "./chunk-
|
|
174
|
+
dropdownMenu
|
|
175
|
+
} from "./chunk-BWUVMOSV.mjs";
|
|
201
176
|
import {
|
|
202
|
-
|
|
203
|
-
} from "./chunk-
|
|
177
|
+
editableText
|
|
178
|
+
} from "./chunk-GZJAA5RZ.mjs";
|
|
204
179
|
import {
|
|
205
180
|
card
|
|
206
181
|
} from "./chunk-5YHTCPJL.mjs";
|
|
@@ -209,19 +184,22 @@ import {
|
|
|
209
184
|
} from "./chunk-ZUKWFD2M.mjs";
|
|
210
185
|
import {
|
|
211
186
|
chip
|
|
212
|
-
} from "./chunk-
|
|
187
|
+
} from "./chunk-3UQ6COYP.mjs";
|
|
213
188
|
import {
|
|
214
189
|
code
|
|
215
|
-
} from "./chunk-
|
|
190
|
+
} from "./chunk-OAG7ADA5.mjs";
|
|
216
191
|
import {
|
|
217
|
-
|
|
218
|
-
} from "./chunk-
|
|
192
|
+
colorHighlightButton
|
|
193
|
+
} from "./chunk-CPERWXKN.mjs";
|
|
219
194
|
import {
|
|
220
|
-
|
|
221
|
-
} from "./chunk-
|
|
195
|
+
combobox
|
|
196
|
+
} from "./chunk-3T7EOMXR.mjs";
|
|
222
197
|
import {
|
|
223
|
-
|
|
224
|
-
} from "./chunk-
|
|
198
|
+
command
|
|
199
|
+
} from "./chunk-YPHFKGNI.mjs";
|
|
200
|
+
import {
|
|
201
|
+
complianceBadge
|
|
202
|
+
} from "./chunk-RZ45NVOH.mjs";
|
|
225
203
|
import {
|
|
226
204
|
autocomplete
|
|
227
205
|
} from "./chunk-OHZBQRA4.mjs";
|
|
@@ -234,12 +212,34 @@ import {
|
|
|
234
212
|
} from "./chunk-XCLEKBCJ.mjs";
|
|
235
213
|
import {
|
|
236
214
|
avatar
|
|
237
|
-
} from "./chunk-
|
|
238
|
-
import "./chunk-7T563RF7.mjs";
|
|
239
|
-
import "./chunk-6IZPAS4O.mjs";
|
|
215
|
+
} from "./chunk-MMGNN4CZ.mjs";
|
|
240
216
|
import {
|
|
241
217
|
blankstate
|
|
242
218
|
} from "./chunk-DICHD74Q.mjs";
|
|
219
|
+
import {
|
|
220
|
+
breadcrumb
|
|
221
|
+
} from "./chunk-W6TZSSAU.mjs";
|
|
222
|
+
import {
|
|
223
|
+
button
|
|
224
|
+
} from "./chunk-7G7WYWLT.mjs";
|
|
225
|
+
import {
|
|
226
|
+
calendar
|
|
227
|
+
} from "./chunk-JWF5ABNP.mjs";
|
|
228
|
+
import {
|
|
229
|
+
callout
|
|
230
|
+
} from "./chunk-A3F4CV54.mjs";
|
|
231
|
+
import "./chunk-6IZPAS4O.mjs";
|
|
232
|
+
import "./chunk-XSN6P5JL.mjs";
|
|
233
|
+
import "./chunk-MUMBGMSH.mjs";
|
|
234
|
+
import {
|
|
235
|
+
accordion
|
|
236
|
+
} from "./chunk-AEWKHJEI.mjs";
|
|
237
|
+
import {
|
|
238
|
+
alertDialog
|
|
239
|
+
} from "./chunk-XGUDXC5P.mjs";
|
|
240
|
+
import {
|
|
241
|
+
auditInfo
|
|
242
|
+
} from "./chunk-CPAF7VNM.mjs";
|
|
243
243
|
export {
|
|
244
244
|
accordion,
|
|
245
245
|
alertDialog,
|
|
@@ -41,6 +41,14 @@ declare const colorVariants: {
|
|
|
41
41
|
destructive: string;
|
|
42
42
|
foreground: string;
|
|
43
43
|
};
|
|
44
|
+
dashed: {
|
|
45
|
+
default: string;
|
|
46
|
+
primary: string;
|
|
47
|
+
secondary: string;
|
|
48
|
+
destructive: string;
|
|
49
|
+
warning: string;
|
|
50
|
+
success: string;
|
|
51
|
+
};
|
|
44
52
|
};
|
|
45
53
|
|
|
46
54
|
export { colorVariants };
|
package/dist/utils/variants.d.ts
CHANGED
|
@@ -41,6 +41,14 @@ declare const colorVariants: {
|
|
|
41
41
|
destructive: string;
|
|
42
42
|
foreground: string;
|
|
43
43
|
};
|
|
44
|
+
dashed: {
|
|
45
|
+
default: string;
|
|
46
|
+
primary: string;
|
|
47
|
+
secondary: string;
|
|
48
|
+
destructive: string;
|
|
49
|
+
warning: string;
|
|
50
|
+
success: string;
|
|
51
|
+
};
|
|
44
52
|
};
|
|
45
53
|
|
|
46
54
|
export { colorVariants };
|
package/dist/utils/variants.js
CHANGED
|
@@ -65,12 +65,21 @@ var ghost = {
|
|
|
65
65
|
success: "bg-transparent text-success",
|
|
66
66
|
default: "bg-transparent text-accent-foreground"
|
|
67
67
|
};
|
|
68
|
+
var dashed = {
|
|
69
|
+
default: "border-muted-foreground/30 text-muted-foreground hover:border-foreground hover:text-foreground hover:bg-accent/50",
|
|
70
|
+
primary: "border-primary/30 text-primary hover:border-primary hover:bg-primary/5",
|
|
71
|
+
secondary: "border-secondary/30 text-secondary hover:border-secondary hover:bg-secondary/5",
|
|
72
|
+
destructive: "border-destructive/30 text-destructive hover:border-destructive hover:bg-destructive/5",
|
|
73
|
+
warning: "border-warning/30 text-warning hover:border-warning hover:bg-warning/5",
|
|
74
|
+
success: "border-success/30 text-success hover:border-success hover:bg-success/5"
|
|
75
|
+
};
|
|
68
76
|
var colorVariants = {
|
|
69
77
|
solid,
|
|
70
78
|
ghost,
|
|
71
79
|
outline,
|
|
72
80
|
flat,
|
|
73
|
-
faded
|
|
81
|
+
faded,
|
|
82
|
+
dashed
|
|
74
83
|
};
|
|
75
84
|
// Annotate the CommonJS export names for ESM import in node:
|
|
76
85
|
0 && (module.exports = {
|
package/dist/utils/variants.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/theme",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.27.0",
|
|
4
4
|
"description": "The default theme for Kopexa components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"theme",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"tailwind-merge": "^3.5.0",
|
|
67
67
|
"tailwind-variants": "^3.2.2",
|
|
68
68
|
"tw-animate-css": "^1.4.0",
|
|
69
|
-
"@kopexa/shared-utils": "17.0.
|
|
69
|
+
"@kopexa/shared-utils": "17.0.74"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"tailwindcss": ">=4.0.0"
|