@kopexa/theme 1.4.2 → 1.4.4

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 (56) hide show
  1. package/dist/{chunk-HQ27V5V4.mjs → chunk-2C5EQ4P3.mjs} +4 -0
  2. package/dist/chunk-32L6KXLV.mjs +324 -0
  3. package/dist/{chunk-IL3JFLE2.mjs → chunk-4UDOCFU5.mjs} +7 -0
  4. package/dist/chunk-67PPUTSS.mjs +53 -0
  5. package/dist/chunk-JWF5ABNP.mjs +56 -0
  6. package/dist/{chunk-5FI7W32M.mjs → chunk-KE2E5LGH.mjs} +2 -11
  7. package/dist/chunk-PQSL3W26.mjs +96 -0
  8. package/dist/chunk-XSN6P5JL.mjs +0 -0
  9. package/dist/components/button.js +24 -11
  10. package/dist/components/button.mjs +3 -3
  11. package/dist/components/calendar.d.mts +124 -0
  12. package/dist/components/calendar.d.ts +124 -0
  13. package/dist/components/calendar.js +80 -0
  14. package/dist/components/calendar.mjs +6 -0
  15. package/dist/components/chip.d.mts +356 -0
  16. package/dist/components/chip.d.ts +356 -0
  17. package/dist/components/chip.js +396 -0
  18. package/dist/components/chip.mjs +7 -0
  19. package/dist/components/dropdown-menu.d.mts +9 -9
  20. package/dist/components/dropdown-menu.d.ts +9 -9
  21. package/dist/components/index.d.mts +3 -0
  22. package/dist/components/index.d.ts +3 -0
  23. package/dist/components/index.js +516 -27
  24. package/dist/components/index.mjs +22 -8
  25. package/dist/components/input.d.mts +177 -0
  26. package/dist/components/input.d.ts +177 -0
  27. package/dist/components/input.js +124 -0
  28. package/dist/components/input.mjs +9 -0
  29. package/dist/components/spinner.d.mts +21 -0
  30. package/dist/components/spinner.d.ts +21 -0
  31. package/dist/components/spinner.js +7 -0
  32. package/dist/components/spinner.mjs +1 -1
  33. package/dist/index.css +98 -19
  34. package/dist/index.d.mts +4 -0
  35. package/dist/index.d.ts +4 -0
  36. package/dist/index.js +516 -27
  37. package/dist/index.mjs +23 -8
  38. package/dist/utils/classes.d.mts +2 -1
  39. package/dist/utils/classes.d.ts +2 -1
  40. package/dist/utils/classes.js +7 -2
  41. package/dist/utils/classes.mjs +5 -3
  42. package/dist/utils/index.d.mts +2 -0
  43. package/dist/utils/index.d.ts +2 -0
  44. package/dist/utils/index.js +18 -0
  45. package/dist/utils/index.mjs +1 -0
  46. package/dist/utils/types.d.mts +10 -0
  47. package/dist/utils/types.d.ts +10 -0
  48. package/dist/utils/types.js +18 -0
  49. package/dist/utils/types.mjs +0 -0
  50. package/dist/utils/variants.d.mts +20 -0
  51. package/dist/utils/variants.d.ts +20 -0
  52. package/dist/utils/variants.js +24 -2
  53. package/dist/utils/variants.mjs +1 -1
  54. package/package.json +2 -2
  55. package/dist/chunk-U6ONJKJY.mjs +0 -31
  56. /package/dist/{chunk-KIDK6JOG.mjs → chunk-N2UQGV46.mjs} +0 -0
@@ -0,0 +1,356 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from 'tailwind-variants';
3
+
4
+ declare const chip: tailwind_variants.TVReturnType<{
5
+ variant: {
6
+ solid: {};
7
+ bordered: {
8
+ root: string;
9
+ };
10
+ faded: {
11
+ root: string;
12
+ };
13
+ flat: {};
14
+ };
15
+ color: {
16
+ default: {
17
+ status: string;
18
+ };
19
+ primary: {
20
+ status: string;
21
+ };
22
+ secondary: {
23
+ status: string;
24
+ };
25
+ success: {
26
+ status: string;
27
+ };
28
+ destructive: {
29
+ status: string;
30
+ };
31
+ warning: {
32
+ status: string;
33
+ };
34
+ };
35
+ indicatorColor: {
36
+ default: {
37
+ indicatorDot: string;
38
+ };
39
+ primary: {
40
+ indicatorDot: string;
41
+ };
42
+ secondary: {
43
+ indicatorDot: string;
44
+ };
45
+ success: {
46
+ indicatorDot: string;
47
+ };
48
+ warning: {
49
+ indicatorDot: string;
50
+ };
51
+ destructive: {
52
+ indicatorDot: string;
53
+ };
54
+ info: {
55
+ indicatorDot: string;
56
+ };
57
+ };
58
+ indicator: {
59
+ true: {};
60
+ false: {};
61
+ };
62
+ indicatorVariant: {
63
+ pulse: {};
64
+ };
65
+ size: {
66
+ sm: {
67
+ root: string;
68
+ status: string;
69
+ content: string;
70
+ closeButton: string[];
71
+ };
72
+ md: {
73
+ root: string;
74
+ status: string;
75
+ content: string;
76
+ closeButton: string[];
77
+ };
78
+ lg: {
79
+ root: string;
80
+ status: string;
81
+ content: string;
82
+ closeButton: string[];
83
+ };
84
+ };
85
+ isCloseable: {
86
+ true: {};
87
+ false: {};
88
+ };
89
+ radius: {
90
+ none: {
91
+ root: string;
92
+ };
93
+ sm: {
94
+ root: string;
95
+ };
96
+ md: {
97
+ root: string;
98
+ };
99
+ lg: {
100
+ root: string;
101
+ };
102
+ full: {
103
+ root: string;
104
+ };
105
+ };
106
+ disabled: {
107
+ true: {
108
+ root: string;
109
+ };
110
+ false: {};
111
+ };
112
+ }, {
113
+ root: string[];
114
+ content: string;
115
+ indicator: string;
116
+ indicatorPulse: string;
117
+ indicatorDot: string;
118
+ status: string;
119
+ closeButton: string[];
120
+ }, undefined, {
121
+ variant: {
122
+ solid: {};
123
+ bordered: {
124
+ root: string;
125
+ };
126
+ faded: {
127
+ root: string;
128
+ };
129
+ flat: {};
130
+ };
131
+ color: {
132
+ default: {
133
+ status: string;
134
+ };
135
+ primary: {
136
+ status: string;
137
+ };
138
+ secondary: {
139
+ status: string;
140
+ };
141
+ success: {
142
+ status: string;
143
+ };
144
+ destructive: {
145
+ status: string;
146
+ };
147
+ warning: {
148
+ status: string;
149
+ };
150
+ };
151
+ indicatorColor: {
152
+ default: {
153
+ indicatorDot: string;
154
+ };
155
+ primary: {
156
+ indicatorDot: string;
157
+ };
158
+ secondary: {
159
+ indicatorDot: string;
160
+ };
161
+ success: {
162
+ indicatorDot: string;
163
+ };
164
+ warning: {
165
+ indicatorDot: string;
166
+ };
167
+ destructive: {
168
+ indicatorDot: string;
169
+ };
170
+ info: {
171
+ indicatorDot: string;
172
+ };
173
+ };
174
+ indicator: {
175
+ true: {};
176
+ false: {};
177
+ };
178
+ indicatorVariant: {
179
+ pulse: {};
180
+ };
181
+ size: {
182
+ sm: {
183
+ root: string;
184
+ status: string;
185
+ content: string;
186
+ closeButton: string[];
187
+ };
188
+ md: {
189
+ root: string;
190
+ status: string;
191
+ content: string;
192
+ closeButton: string[];
193
+ };
194
+ lg: {
195
+ root: string;
196
+ status: string;
197
+ content: string;
198
+ closeButton: string[];
199
+ };
200
+ };
201
+ isCloseable: {
202
+ true: {};
203
+ false: {};
204
+ };
205
+ radius: {
206
+ none: {
207
+ root: string;
208
+ };
209
+ sm: {
210
+ root: string;
211
+ };
212
+ md: {
213
+ root: string;
214
+ };
215
+ lg: {
216
+ root: string;
217
+ };
218
+ full: {
219
+ root: string;
220
+ };
221
+ };
222
+ disabled: {
223
+ true: {
224
+ root: string;
225
+ };
226
+ false: {};
227
+ };
228
+ }, {
229
+ root: string[];
230
+ content: string;
231
+ indicator: string;
232
+ indicatorPulse: string;
233
+ indicatorDot: string;
234
+ status: string;
235
+ closeButton: string[];
236
+ }, tailwind_variants.TVReturnType<{
237
+ variant: {
238
+ solid: {};
239
+ bordered: {
240
+ root: string;
241
+ };
242
+ faded: {
243
+ root: string;
244
+ };
245
+ flat: {};
246
+ };
247
+ color: {
248
+ default: {
249
+ status: string;
250
+ };
251
+ primary: {
252
+ status: string;
253
+ };
254
+ secondary: {
255
+ status: string;
256
+ };
257
+ success: {
258
+ status: string;
259
+ };
260
+ destructive: {
261
+ status: string;
262
+ };
263
+ warning: {
264
+ status: string;
265
+ };
266
+ };
267
+ indicatorColor: {
268
+ default: {
269
+ indicatorDot: string;
270
+ };
271
+ primary: {
272
+ indicatorDot: string;
273
+ };
274
+ secondary: {
275
+ indicatorDot: string;
276
+ };
277
+ success: {
278
+ indicatorDot: string;
279
+ };
280
+ warning: {
281
+ indicatorDot: string;
282
+ };
283
+ destructive: {
284
+ indicatorDot: string;
285
+ };
286
+ info: {
287
+ indicatorDot: string;
288
+ };
289
+ };
290
+ indicator: {
291
+ true: {};
292
+ false: {};
293
+ };
294
+ indicatorVariant: {
295
+ pulse: {};
296
+ };
297
+ size: {
298
+ sm: {
299
+ root: string;
300
+ status: string;
301
+ content: string;
302
+ closeButton: string[];
303
+ };
304
+ md: {
305
+ root: string;
306
+ status: string;
307
+ content: string;
308
+ closeButton: string[];
309
+ };
310
+ lg: {
311
+ root: string;
312
+ status: string;
313
+ content: string;
314
+ closeButton: string[];
315
+ };
316
+ };
317
+ isCloseable: {
318
+ true: {};
319
+ false: {};
320
+ };
321
+ radius: {
322
+ none: {
323
+ root: string;
324
+ };
325
+ sm: {
326
+ root: string;
327
+ };
328
+ md: {
329
+ root: string;
330
+ };
331
+ lg: {
332
+ root: string;
333
+ };
334
+ full: {
335
+ root: string;
336
+ };
337
+ };
338
+ disabled: {
339
+ true: {
340
+ root: string;
341
+ };
342
+ false: {};
343
+ };
344
+ }, {
345
+ root: string[];
346
+ content: string;
347
+ indicator: string;
348
+ indicatorPulse: string;
349
+ indicatorDot: string;
350
+ status: string;
351
+ closeButton: string[];
352
+ }, undefined, unknown, unknown, undefined>>;
353
+ type ChipVariantProps = VariantProps<typeof chip>;
354
+ type ChipSlots = keyof ReturnType<typeof chip>;
355
+
356
+ export { type ChipSlots, type ChipVariantProps, chip };