@kopexa/theme 2.0.0 → 2.1.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.
Files changed (45) hide show
  1. package/dist/chunk-2NA54PNL.mjs +43 -0
  2. package/dist/{chunk-7O57EDVS.mjs → chunk-63C4SFQK.mjs} +20 -10
  3. package/dist/{chunk-XAHAVJUM.mjs → chunk-A3F4CV54.mjs} +8 -1
  4. package/dist/chunk-M4TXKRUU.mjs +7 -0
  5. package/dist/chunk-NUEQ5FLX.mjs +50 -0
  6. package/dist/chunk-WQ446TVH.mjs +39 -0
  7. package/dist/components/callout.d.mts +18 -0
  8. package/dist/components/callout.d.ts +18 -0
  9. package/dist/components/callout.js +8 -1
  10. package/dist/components/callout.mjs +1 -1
  11. package/dist/components/card.d.mts +27 -0
  12. package/dist/components/card.d.ts +27 -0
  13. package/dist/components/card.js +20 -10
  14. package/dist/components/card.mjs +1 -1
  15. package/dist/components/control-extension.d.mts +5 -0
  16. package/dist/components/control-extension.d.ts +5 -0
  17. package/dist/components/control-extension.js +31 -0
  18. package/dist/components/control-extension.mjs +6 -0
  19. package/dist/components/editor-basic.d.mts +21 -4
  20. package/dist/components/editor-basic.d.ts +21 -4
  21. package/dist/components/editor-basic.js +21 -5
  22. package/dist/components/editor-basic.mjs +1 -1
  23. package/dist/components/index.d.mts +3 -1
  24. package/dist/components/index.d.ts +3 -1
  25. package/dist/components/index.js +199 -101
  26. package/dist/components/index.mjs +27 -19
  27. package/dist/components/integration-card.d.mts +3 -3
  28. package/dist/components/integration-card.d.ts +3 -3
  29. package/dist/components/switch.d.mts +62 -0
  30. package/dist/components/switch.d.ts +62 -0
  31. package/dist/components/switch.js +63 -0
  32. package/dist/components/switch.mjs +6 -0
  33. package/dist/components/toolbar.d.mts +57 -0
  34. package/dist/components/toolbar.d.ts +57 -0
  35. package/dist/components/toolbar.js +24 -3
  36. package/dist/components/toolbar.mjs +1 -1
  37. package/dist/editor.css +62 -7
  38. package/dist/index.d.mts +3 -1
  39. package/dist/index.d.ts +3 -1
  40. package/dist/index.js +199 -101
  41. package/dist/index.mjs +27 -19
  42. package/package.json +5 -5
  43. package/dist/chunk-BWB7MWRC.mjs +0 -22
  44. package/dist/chunk-GRPMKEI2.mjs +0 -34
  45. /package/dist/{chunk-UWWO4AVU.mjs → chunk-4I5ASWB3.mjs} +0 -0
@@ -0,0 +1,43 @@
1
+ // src/components/toolbar.ts
2
+ import { tv } from "tailwind-variants";
3
+ var toolbar = tv({
4
+ slots: {
5
+ root: "flex items-center gap-2.5 p-1",
6
+ button: "shrink-0",
7
+ separator: "bg-border h-6 w-px shrink-0",
8
+ group: "flex items-center gap-1"
9
+ },
10
+ variants: {
11
+ color: {
12
+ default: {
13
+ root: "bg-popover"
14
+ }
15
+ },
16
+ sticky: {
17
+ true: {
18
+ root: "sticky top-0 z-10"
19
+ }
20
+ },
21
+ border: {
22
+ default: "outline-border shadow-xs outline",
23
+ none: ""
24
+ },
25
+ radius: {
26
+ none: {
27
+ root: "rounded-none"
28
+ },
29
+ md: {
30
+ root: "rounded-md"
31
+ }
32
+ }
33
+ },
34
+ defaultVariants: {
35
+ border: "default",
36
+ color: "default",
37
+ radius: "md"
38
+ }
39
+ });
40
+
41
+ export {
42
+ toolbar
43
+ };
@@ -8,22 +8,25 @@ var card = tv({
8
8
  ],
9
9
  header: [
10
10
  "flex",
11
- "p-3",
12
- "z-10",
13
- "w-full",
14
- "justify-start",
15
11
  "items-center",
12
+ "justify-between",
13
+ "flex-wrap",
14
+ "min-h-14",
15
+ "gap-2.5",
16
+ "w-full",
16
17
  "shrink-0",
17
18
  "overflow-inherit",
18
19
  "color-inherit",
19
20
  "subpixel-antialiased"
20
21
  ],
22
+ heading: "space-y-1",
23
+ toolbar: "flex items-center gap-2.5",
21
24
  body: [
25
+ "grow",
22
26
  "relative",
23
27
  "flex",
24
28
  "flex-1",
25
29
  "w-full",
26
- "p-3",
27
30
  "flex-auto",
28
31
  "flex-col",
29
32
  "place-content-inherit",
@@ -52,6 +55,11 @@ var card = tv({
52
55
  },
53
56
  muted: {
54
57
  root: "bg-muted text-muted-foreground"
58
+ },
59
+ accent: {
60
+ root: "bg-muted shadow-xs p-1",
61
+ header: "!border-none",
62
+ body: "bg-card rounded-t-xl [&:last-child]:rounded-b-xl"
55
63
  }
56
64
  },
57
65
  shadow: {
@@ -76,10 +84,12 @@ var card = tv({
76
84
  root: "border-0"
77
85
  },
78
86
  default: {
79
- root: "border border-border"
87
+ root: "border border-border",
88
+ header: "border-b border-border"
80
89
  },
81
90
  emphasized: {
82
- root: "border-2 border-border"
91
+ root: "border-2 border-border",
92
+ header: "border-b border-border"
83
93
  }
84
94
  },
85
95
  radius: {
@@ -160,9 +170,9 @@ var card = tv({
160
170
  footer: "p-2"
161
171
  },
162
172
  md: {
163
- body: "p-3",
164
- header: "p-3",
165
- footer: "p-3"
173
+ body: "p-5",
174
+ header: "px-5",
175
+ footer: "px-5"
166
176
  },
167
177
  lg: {
168
178
  body: "p-4",
@@ -10,6 +10,12 @@ var callout = tv({
10
10
  closeButton: "absolute top-2 right-2 opacity-70 hover:opacity-100 transition-opacity focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
11
11
  },
12
12
  variants: {
13
+ print: {
14
+ true: {},
15
+ false: {
16
+ root: "print:hidden"
17
+ }
18
+ },
13
19
  radius: {
14
20
  none: { root: "rounded-none" },
15
21
  sm: { root: "rounded-sm" },
@@ -63,7 +69,8 @@ var callout = tv({
63
69
  defaultVariants: {
64
70
  variant: "default",
65
71
  radius: "md",
66
- size: "md"
72
+ size: "md",
73
+ print: true
67
74
  }
68
75
  });
69
76
 
@@ -0,0 +1,7 @@
1
+ // src/components/control-extension.ts
2
+ import { tv } from "tailwind-variants";
3
+ var controlExtension = tv({});
4
+
5
+ export {
6
+ controlExtension
7
+ };
@@ -0,0 +1,50 @@
1
+ // src/components/editor-basic.ts
2
+ import { tv } from "tailwind-variants";
3
+ var editorBasic = tv({
4
+ slots: {
5
+ root: [
6
+ "grid grid-rows-[auto,1fr]",
7
+ "h-full min-h-0 w-full min-w-0",
8
+ "content-start isolate"
9
+ ],
10
+ toolbar: [
11
+ "row-start-1 row-end-2",
12
+ "flex items-center gap-0.5",
13
+ "sticky top-0 z-10"
14
+ ],
15
+ wrapper: [
16
+ "row-start-2 row-end-3",
17
+ "min-h-0 min-w-0",
18
+ "overflow-y-auto"
19
+ // "h-[calc(100%-var(--spacing-editor-toolbar))]",
20
+ ],
21
+ content: [
22
+ "w-full min-w-0 h-full min-h-0",
23
+ "[&_.tiptap.ProseMirror]:py-4",
24
+ "[&_.tiptap.ProseMirror]:px-6"
25
+ ],
26
+ toolbarGroup: "flex items-center gap-0.5"
27
+ },
28
+ variants: {
29
+ variant: {
30
+ // rounded toolbar, muted background
31
+ default: {
32
+ wrapper: ["border rounded-md"],
33
+ toolbar: "rounded-md mb-2",
34
+ content: ""
35
+ },
36
+ // document style, eg. document editor, fullpage etc pp
37
+ document: {
38
+ wrapper: "size-full overflow-auto",
39
+ content: "size-full"
40
+ }
41
+ }
42
+ },
43
+ defaultVariants: {
44
+ variant: "default"
45
+ }
46
+ });
47
+
48
+ export {
49
+ editorBasic
50
+ };
@@ -0,0 +1,39 @@
1
+ // src/components/switch.ts
2
+ import { tv } from "tailwind-variants";
3
+ var switchVariants = tv({
4
+ slots: {
5
+ root: [
6
+ "peer data-[checked]:bg-primary data-[unchecked]:bg-input focus-visible:border-ring focus-visible:ring-ring/50 dark:data-[unchecked]:bg-input/80",
7
+ "aria-invalid:border-destructive/60 aria-invalid:ring-destructive/10 dark:aria-invalid:border-destructive dark:aria-invalid:ring-destructive/20",
8
+ "inline-flex shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none focus-visible:ring-[3px]",
9
+ "disabled:cursor-not-allowed disabled:opacity-50"
10
+ ],
11
+ thumb: [
12
+ "bg-background dark:data-[unchecked]:bg-foreground dark:data-[checked]:bg-primary-foreground",
13
+ "pointer-events-none rounded-full ring-0 transition-transform flex items-center justify-center"
14
+ ]
15
+ },
16
+ variants: {
17
+ size: {
18
+ sm: {
19
+ root: "h-4 w-6",
20
+ thumb: "size-3 data-[checked]:translate-x-[calc(100%-2px)] data-[unchecked]:translate-x-0"
21
+ },
22
+ md: {
23
+ root: "h-5 w-8",
24
+ thumb: "size-4 data-[checked]:translate-x-[calc(100%-2px)] data-[unchecked]:translate-x-0"
25
+ },
26
+ lg: {
27
+ root: "h-6 w-10",
28
+ thumb: "size-5 data-[checked]:translate-x-[calc(100%-2px)] data-[unchecked]:translate-x-0"
29
+ }
30
+ }
31
+ },
32
+ defaultVariants: {
33
+ size: "md"
34
+ }
35
+ });
36
+
37
+ export {
38
+ switchVariants
39
+ };
@@ -2,6 +2,12 @@ import * as tailwind_variants from 'tailwind-variants';
2
2
  import { VariantProps } from 'tailwind-variants';
3
3
 
4
4
  declare const callout: tailwind_variants.TVReturnType<{
5
+ print: {
6
+ true: {};
7
+ false: {
8
+ root: string;
9
+ };
10
+ };
5
11
  radius: {
6
12
  none: {
7
13
  root: string;
@@ -67,6 +73,12 @@ declare const callout: tailwind_variants.TVReturnType<{
67
73
  content: string;
68
74
  closeButton: string;
69
75
  }, undefined, {
76
+ print: {
77
+ true: {};
78
+ false: {
79
+ root: string;
80
+ };
81
+ };
70
82
  radius: {
71
83
  none: {
72
84
  root: string;
@@ -132,6 +144,12 @@ declare const callout: tailwind_variants.TVReturnType<{
132
144
  content: string;
133
145
  closeButton: string;
134
146
  }, tailwind_variants.TVReturnType<{
147
+ print: {
148
+ true: {};
149
+ false: {
150
+ root: string;
151
+ };
152
+ };
135
153
  radius: {
136
154
  none: {
137
155
  root: string;
@@ -2,6 +2,12 @@ import * as tailwind_variants from 'tailwind-variants';
2
2
  import { VariantProps } from 'tailwind-variants';
3
3
 
4
4
  declare const callout: tailwind_variants.TVReturnType<{
5
+ print: {
6
+ true: {};
7
+ false: {
8
+ root: string;
9
+ };
10
+ };
5
11
  radius: {
6
12
  none: {
7
13
  root: string;
@@ -67,6 +73,12 @@ declare const callout: tailwind_variants.TVReturnType<{
67
73
  content: string;
68
74
  closeButton: string;
69
75
  }, undefined, {
76
+ print: {
77
+ true: {};
78
+ false: {
79
+ root: string;
80
+ };
81
+ };
70
82
  radius: {
71
83
  none: {
72
84
  root: string;
@@ -132,6 +144,12 @@ declare const callout: tailwind_variants.TVReturnType<{
132
144
  content: string;
133
145
  closeButton: string;
134
146
  }, tailwind_variants.TVReturnType<{
147
+ print: {
148
+ true: {};
149
+ false: {
150
+ root: string;
151
+ };
152
+ };
135
153
  radius: {
136
154
  none: {
137
155
  root: string;
@@ -34,6 +34,12 @@ var callout = (0, import_tailwind_variants.tv)({
34
34
  closeButton: "absolute top-2 right-2 opacity-70 hover:opacity-100 transition-opacity focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
35
35
  },
36
36
  variants: {
37
+ print: {
38
+ true: {},
39
+ false: {
40
+ root: "print:hidden"
41
+ }
42
+ },
37
43
  radius: {
38
44
  none: { root: "rounded-none" },
39
45
  sm: { root: "rounded-sm" },
@@ -87,7 +93,8 @@ var callout = (0, import_tailwind_variants.tv)({
87
93
  defaultVariants: {
88
94
  variant: "default",
89
95
  radius: "md",
90
- size: "md"
96
+ size: "md",
97
+ print: true
91
98
  }
92
99
  });
93
100
  // Annotate the CommonJS export names for ESM import in node:
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  callout
3
- } from "../chunk-XAHAVJUM.mjs";
3
+ } from "../chunk-A3F4CV54.mjs";
4
4
  export {
5
5
  callout
6
6
  };
@@ -9,6 +9,11 @@ declare const card: tailwind_variants.TVReturnType<{
9
9
  muted: {
10
10
  root: string;
11
11
  };
12
+ accent: {
13
+ root: string;
14
+ header: string;
15
+ body: string;
16
+ };
12
17
  };
13
18
  shadow: {
14
19
  none: {
@@ -33,9 +38,11 @@ declare const card: tailwind_variants.TVReturnType<{
33
38
  };
34
39
  default: {
35
40
  root: string;
41
+ header: string;
36
42
  };
37
43
  emphasized: {
38
44
  root: string;
45
+ header: string;
39
46
  };
40
47
  };
41
48
  radius: {
@@ -133,6 +140,8 @@ declare const card: tailwind_variants.TVReturnType<{
133
140
  }, {
134
141
  root: string[];
135
142
  header: string[];
143
+ heading: string;
144
+ toolbar: string;
136
145
  body: string[];
137
146
  footer: string[];
138
147
  }, undefined, {
@@ -143,6 +152,11 @@ declare const card: tailwind_variants.TVReturnType<{
143
152
  muted: {
144
153
  root: string;
145
154
  };
155
+ accent: {
156
+ root: string;
157
+ header: string;
158
+ body: string;
159
+ };
146
160
  };
147
161
  shadow: {
148
162
  none: {
@@ -167,9 +181,11 @@ declare const card: tailwind_variants.TVReturnType<{
167
181
  };
168
182
  default: {
169
183
  root: string;
184
+ header: string;
170
185
  };
171
186
  emphasized: {
172
187
  root: string;
188
+ header: string;
173
189
  };
174
190
  };
175
191
  radius: {
@@ -267,6 +283,8 @@ declare const card: tailwind_variants.TVReturnType<{
267
283
  }, {
268
284
  root: string[];
269
285
  header: string[];
286
+ heading: string;
287
+ toolbar: string;
270
288
  body: string[];
271
289
  footer: string[];
272
290
  }, tailwind_variants.TVReturnType<{
@@ -277,6 +295,11 @@ declare const card: tailwind_variants.TVReturnType<{
277
295
  muted: {
278
296
  root: string;
279
297
  };
298
+ accent: {
299
+ root: string;
300
+ header: string;
301
+ body: string;
302
+ };
280
303
  };
281
304
  shadow: {
282
305
  none: {
@@ -301,9 +324,11 @@ declare const card: tailwind_variants.TVReturnType<{
301
324
  };
302
325
  default: {
303
326
  root: string;
327
+ header: string;
304
328
  };
305
329
  emphasized: {
306
330
  root: string;
331
+ header: string;
307
332
  };
308
333
  };
309
334
  radius: {
@@ -401,6 +426,8 @@ declare const card: tailwind_variants.TVReturnType<{
401
426
  }, {
402
427
  root: string[];
403
428
  header: string[];
429
+ heading: string;
430
+ toolbar: string;
404
431
  body: string[];
405
432
  footer: string[];
406
433
  }, undefined, unknown, unknown, undefined>>;
@@ -9,6 +9,11 @@ declare const card: tailwind_variants.TVReturnType<{
9
9
  muted: {
10
10
  root: string;
11
11
  };
12
+ accent: {
13
+ root: string;
14
+ header: string;
15
+ body: string;
16
+ };
12
17
  };
13
18
  shadow: {
14
19
  none: {
@@ -33,9 +38,11 @@ declare const card: tailwind_variants.TVReturnType<{
33
38
  };
34
39
  default: {
35
40
  root: string;
41
+ header: string;
36
42
  };
37
43
  emphasized: {
38
44
  root: string;
45
+ header: string;
39
46
  };
40
47
  };
41
48
  radius: {
@@ -133,6 +140,8 @@ declare const card: tailwind_variants.TVReturnType<{
133
140
  }, {
134
141
  root: string[];
135
142
  header: string[];
143
+ heading: string;
144
+ toolbar: string;
136
145
  body: string[];
137
146
  footer: string[];
138
147
  }, undefined, {
@@ -143,6 +152,11 @@ declare const card: tailwind_variants.TVReturnType<{
143
152
  muted: {
144
153
  root: string;
145
154
  };
155
+ accent: {
156
+ root: string;
157
+ header: string;
158
+ body: string;
159
+ };
146
160
  };
147
161
  shadow: {
148
162
  none: {
@@ -167,9 +181,11 @@ declare const card: tailwind_variants.TVReturnType<{
167
181
  };
168
182
  default: {
169
183
  root: string;
184
+ header: string;
170
185
  };
171
186
  emphasized: {
172
187
  root: string;
188
+ header: string;
173
189
  };
174
190
  };
175
191
  radius: {
@@ -267,6 +283,8 @@ declare const card: tailwind_variants.TVReturnType<{
267
283
  }, {
268
284
  root: string[];
269
285
  header: string[];
286
+ heading: string;
287
+ toolbar: string;
270
288
  body: string[];
271
289
  footer: string[];
272
290
  }, tailwind_variants.TVReturnType<{
@@ -277,6 +295,11 @@ declare const card: tailwind_variants.TVReturnType<{
277
295
  muted: {
278
296
  root: string;
279
297
  };
298
+ accent: {
299
+ root: string;
300
+ header: string;
301
+ body: string;
302
+ };
280
303
  };
281
304
  shadow: {
282
305
  none: {
@@ -301,9 +324,11 @@ declare const card: tailwind_variants.TVReturnType<{
301
324
  };
302
325
  default: {
303
326
  root: string;
327
+ header: string;
304
328
  };
305
329
  emphasized: {
306
330
  root: string;
331
+ header: string;
307
332
  };
308
333
  };
309
334
  radius: {
@@ -401,6 +426,8 @@ declare const card: tailwind_variants.TVReturnType<{
401
426
  }, {
402
427
  root: string[];
403
428
  header: string[];
429
+ heading: string;
430
+ toolbar: string;
404
431
  body: string[];
405
432
  footer: string[];
406
433
  }, undefined, unknown, unknown, undefined>>;
@@ -32,22 +32,25 @@ var card = (0, import_tailwind_variants.tv)({
32
32
  ],
33
33
  header: [
34
34
  "flex",
35
- "p-3",
36
- "z-10",
37
- "w-full",
38
- "justify-start",
39
35
  "items-center",
36
+ "justify-between",
37
+ "flex-wrap",
38
+ "min-h-14",
39
+ "gap-2.5",
40
+ "w-full",
40
41
  "shrink-0",
41
42
  "overflow-inherit",
42
43
  "color-inherit",
43
44
  "subpixel-antialiased"
44
45
  ],
46
+ heading: "space-y-1",
47
+ toolbar: "flex items-center gap-2.5",
45
48
  body: [
49
+ "grow",
46
50
  "relative",
47
51
  "flex",
48
52
  "flex-1",
49
53
  "w-full",
50
- "p-3",
51
54
  "flex-auto",
52
55
  "flex-col",
53
56
  "place-content-inherit",
@@ -76,6 +79,11 @@ var card = (0, import_tailwind_variants.tv)({
76
79
  },
77
80
  muted: {
78
81
  root: "bg-muted text-muted-foreground"
82
+ },
83
+ accent: {
84
+ root: "bg-muted shadow-xs p-1",
85
+ header: "!border-none",
86
+ body: "bg-card rounded-t-xl [&:last-child]:rounded-b-xl"
79
87
  }
80
88
  },
81
89
  shadow: {
@@ -100,10 +108,12 @@ var card = (0, import_tailwind_variants.tv)({
100
108
  root: "border-0"
101
109
  },
102
110
  default: {
103
- root: "border border-border"
111
+ root: "border border-border",
112
+ header: "border-b border-border"
104
113
  },
105
114
  emphasized: {
106
- root: "border-2 border-border"
115
+ root: "border-2 border-border",
116
+ header: "border-b border-border"
107
117
  }
108
118
  },
109
119
  radius: {
@@ -184,9 +194,9 @@ var card = (0, import_tailwind_variants.tv)({
184
194
  footer: "p-2"
185
195
  },
186
196
  md: {
187
- body: "p-3",
188
- header: "p-3",
189
- footer: "p-3"
197
+ body: "p-5",
198
+ header: "px-5",
199
+ footer: "px-5"
190
200
  },
191
201
  lg: {
192
202
  body: "p-4",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  card
3
- } from "../chunk-7O57EDVS.mjs";
3
+ } from "../chunk-63C4SFQK.mjs";
4
4
  export {
5
5
  card
6
6
  };
@@ -0,0 +1,5 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+
3
+ declare const controlExtension: tailwind_variants.TVReturnType<{} | {} | {}, undefined, undefined, {} | {}, undefined, tailwind_variants.TVReturnType<unknown, undefined, undefined, unknown, unknown, undefined>>;
4
+
5
+ export { controlExtension };
@@ -0,0 +1,5 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+
3
+ declare const controlExtension: tailwind_variants.TVReturnType<{} | {} | {}, undefined, undefined, {} | {}, undefined, tailwind_variants.TVReturnType<unknown, undefined, undefined, unknown, unknown, undefined>>;
4
+
5
+ export { controlExtension };
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/components/control-extension.ts
21
+ var control_extension_exports = {};
22
+ __export(control_extension_exports, {
23
+ controlExtension: () => controlExtension
24
+ });
25
+ module.exports = __toCommonJS(control_extension_exports);
26
+ var import_tailwind_variants = require("tailwind-variants");
27
+ var controlExtension = (0, import_tailwind_variants.tv)({});
28
+ // Annotate the CommonJS export names for ESM import in node:
29
+ 0 && (module.exports = {
30
+ controlExtension
31
+ });
@@ -0,0 +1,6 @@
1
+ import {
2
+ controlExtension
3
+ } from "../chunk-M4TXKRUU.mjs";
4
+ export {
5
+ controlExtension
6
+ };