@sytechui/theme 2.6.0 → 2.6.2

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 (65) hide show
  1. package/dist/{chunk-AI6SQS6Z.mjs → chunk-22RNS2JQ.mjs} +5758 -5524
  2. package/dist/{chunk-XOVETH7K.mjs → chunk-63TVI5PY.mjs} +10 -2
  3. package/dist/{chunk-LV6ZC7XH.mjs → chunk-LD2JADOO.mjs} +8 -8
  4. package/dist/chunk-T754O54S.mjs +96 -0
  5. package/dist/components/accordion.mjs +11 -10
  6. package/dist/components/alert.d.mts +215 -110
  7. package/dist/components/alert.d.ts +215 -110
  8. package/dist/components/alert.js +65 -380
  9. package/dist/components/alert.mjs +5 -41
  10. package/dist/components/avatar.mjs +11 -10
  11. package/dist/components/badge.mjs +11 -10
  12. package/dist/components/bottom-bar.mjs +11 -10
  13. package/dist/components/breadcrumbs.mjs +11 -10
  14. package/dist/components/button.mjs +11 -10
  15. package/dist/components/calendar.mjs +11 -10
  16. package/dist/components/card.mjs +11 -10
  17. package/dist/components/checkbox.mjs +11 -10
  18. package/dist/components/chip.mjs +11 -10
  19. package/dist/components/code.mjs +11 -10
  20. package/dist/components/divider.d.mts +40 -1
  21. package/dist/components/divider.d.ts +40 -1
  22. package/dist/components/divider.js +12 -3
  23. package/dist/components/divider.mjs +5 -3
  24. package/dist/components/drop-zone.mjs +11 -10
  25. package/dist/components/dropdown.mjs +11 -10
  26. package/dist/components/index.d.mts +3 -2
  27. package/dist/components/index.d.ts +3 -2
  28. package/dist/components/index.js +648 -313
  29. package/dist/components/index.mjs +24 -16
  30. package/dist/components/input-otp.mjs +11 -10
  31. package/dist/components/input.mjs +11 -10
  32. package/dist/components/link.mjs +11 -10
  33. package/dist/components/listbox.mjs +11 -10
  34. package/dist/components/menu.mjs +11 -10
  35. package/dist/components/modal.mjs +11 -10
  36. package/dist/components/navbar.mjs +11 -10
  37. package/dist/components/number-input.mjs +11 -10
  38. package/dist/components/pagination.mjs +11 -10
  39. package/dist/components/popover.mjs +11 -10
  40. package/dist/components/radio.mjs +11 -10
  41. package/dist/components/select.mjs +11 -10
  42. package/dist/components/shimmer-text.d.mts +18 -18
  43. package/dist/components/shimmer-text.d.ts +18 -18
  44. package/dist/components/shimmer-text.js +8 -8
  45. package/dist/components/shimmer-text.mjs +1 -1
  46. package/dist/components/slider.mjs +11 -10
  47. package/dist/components/snippet.mjs +11 -10
  48. package/dist/components/stepper.d.mts +288 -0
  49. package/dist/components/stepper.d.ts +288 -0
  50. package/dist/components/stepper.js +849 -0
  51. package/dist/components/stepper.mjs +54 -0
  52. package/dist/components/table.mjs +11 -10
  53. package/dist/components/tabs.mjs +11 -10
  54. package/dist/components/toast.mjs +11 -10
  55. package/dist/components/toggle.mjs +11 -10
  56. package/dist/components/user.mjs +11 -10
  57. package/dist/index.d.mts +3 -2
  58. package/dist/index.d.ts +3 -2
  59. package/dist/index.js +648 -313
  60. package/dist/index.mjs +27 -19
  61. package/dist/plugin.mjs +2 -2
  62. package/dist/utils/index.mjs +15 -14
  63. package/dist/utils/merge-classes.mjs +11 -10
  64. package/package.json +1 -1
  65. package/dist/{chunk-CBIC7UDL.mjs → chunk-YISEC5JS.mjs} +3 -3
@@ -0,0 +1,288 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from 'tailwind-variants';
3
+
4
+ declare const stepper: tailwind_variants.TVReturnType<{
5
+ orientation: {
6
+ horizontal: {
7
+ base: string;
8
+ list: string;
9
+ item: string;
10
+ trigger: string;
11
+ content: string;
12
+ separator: string;
13
+ };
14
+ vertical: {
15
+ list: string;
16
+ item: string;
17
+ trigger: string;
18
+ content: string;
19
+ separator: string;
20
+ };
21
+ };
22
+ variant: {
23
+ solid: {};
24
+ bordered: {};
25
+ flat: {};
26
+ dot: {};
27
+ };
28
+ color: {
29
+ default: {};
30
+ primary: {};
31
+ secondary: {};
32
+ success: {};
33
+ warning: {};
34
+ danger: {};
35
+ };
36
+ size: {
37
+ sm: {
38
+ indicator: string;
39
+ title: string;
40
+ description: string;
41
+ };
42
+ md: {
43
+ indicator: string;
44
+ title: string;
45
+ description: string;
46
+ };
47
+ lg: {
48
+ indicator: string;
49
+ title: string;
50
+ description: string;
51
+ };
52
+ };
53
+ radius: {
54
+ none: {
55
+ indicator: string;
56
+ };
57
+ sm: {
58
+ indicator: string;
59
+ };
60
+ md: {
61
+ indicator: string;
62
+ };
63
+ lg: {
64
+ indicator: string;
65
+ };
66
+ full: {
67
+ indicator: string;
68
+ };
69
+ };
70
+ separatorMode: {
71
+ spaced: {};
72
+ connected: {};
73
+ };
74
+ isDisabled: {
75
+ true: {
76
+ base: string;
77
+ };
78
+ };
79
+ disableAnimation: {
80
+ false: {
81
+ indicator: string;
82
+ };
83
+ true: {
84
+ indicator: string;
85
+ };
86
+ };
87
+ }, {
88
+ base: string;
89
+ list: string;
90
+ item: string;
91
+ trigger: string[];
92
+ indicator: string[];
93
+ content: string;
94
+ title: string[];
95
+ description: string;
96
+ separator: string;
97
+ }, undefined, {
98
+ orientation: {
99
+ horizontal: {
100
+ base: string;
101
+ list: string;
102
+ item: string;
103
+ trigger: string;
104
+ content: string;
105
+ separator: string;
106
+ };
107
+ vertical: {
108
+ list: string;
109
+ item: string;
110
+ trigger: string;
111
+ content: string;
112
+ separator: string;
113
+ };
114
+ };
115
+ variant: {
116
+ solid: {};
117
+ bordered: {};
118
+ flat: {};
119
+ dot: {};
120
+ };
121
+ color: {
122
+ default: {};
123
+ primary: {};
124
+ secondary: {};
125
+ success: {};
126
+ warning: {};
127
+ danger: {};
128
+ };
129
+ size: {
130
+ sm: {
131
+ indicator: string;
132
+ title: string;
133
+ description: string;
134
+ };
135
+ md: {
136
+ indicator: string;
137
+ title: string;
138
+ description: string;
139
+ };
140
+ lg: {
141
+ indicator: string;
142
+ title: string;
143
+ description: string;
144
+ };
145
+ };
146
+ radius: {
147
+ none: {
148
+ indicator: string;
149
+ };
150
+ sm: {
151
+ indicator: string;
152
+ };
153
+ md: {
154
+ indicator: string;
155
+ };
156
+ lg: {
157
+ indicator: string;
158
+ };
159
+ full: {
160
+ indicator: string;
161
+ };
162
+ };
163
+ separatorMode: {
164
+ spaced: {};
165
+ connected: {};
166
+ };
167
+ isDisabled: {
168
+ true: {
169
+ base: string;
170
+ };
171
+ };
172
+ disableAnimation: {
173
+ false: {
174
+ indicator: string;
175
+ };
176
+ true: {
177
+ indicator: string;
178
+ };
179
+ };
180
+ }, {
181
+ base: string;
182
+ list: string;
183
+ item: string;
184
+ trigger: string[];
185
+ indicator: string[];
186
+ content: string;
187
+ title: string[];
188
+ description: string;
189
+ separator: string;
190
+ }, tailwind_variants.TVReturnType<{
191
+ orientation: {
192
+ horizontal: {
193
+ base: string;
194
+ list: string;
195
+ item: string;
196
+ trigger: string;
197
+ content: string;
198
+ separator: string;
199
+ };
200
+ vertical: {
201
+ list: string;
202
+ item: string;
203
+ trigger: string;
204
+ content: string;
205
+ separator: string;
206
+ };
207
+ };
208
+ variant: {
209
+ solid: {};
210
+ bordered: {};
211
+ flat: {};
212
+ dot: {};
213
+ };
214
+ color: {
215
+ default: {};
216
+ primary: {};
217
+ secondary: {};
218
+ success: {};
219
+ warning: {};
220
+ danger: {};
221
+ };
222
+ size: {
223
+ sm: {
224
+ indicator: string;
225
+ title: string;
226
+ description: string;
227
+ };
228
+ md: {
229
+ indicator: string;
230
+ title: string;
231
+ description: string;
232
+ };
233
+ lg: {
234
+ indicator: string;
235
+ title: string;
236
+ description: string;
237
+ };
238
+ };
239
+ radius: {
240
+ none: {
241
+ indicator: string;
242
+ };
243
+ sm: {
244
+ indicator: string;
245
+ };
246
+ md: {
247
+ indicator: string;
248
+ };
249
+ lg: {
250
+ indicator: string;
251
+ };
252
+ full: {
253
+ indicator: string;
254
+ };
255
+ };
256
+ separatorMode: {
257
+ spaced: {};
258
+ connected: {};
259
+ };
260
+ isDisabled: {
261
+ true: {
262
+ base: string;
263
+ };
264
+ };
265
+ disableAnimation: {
266
+ false: {
267
+ indicator: string;
268
+ };
269
+ true: {
270
+ indicator: string;
271
+ };
272
+ };
273
+ }, {
274
+ base: string;
275
+ list: string;
276
+ item: string;
277
+ trigger: string[];
278
+ indicator: string[];
279
+ content: string;
280
+ title: string[];
281
+ description: string;
282
+ separator: string;
283
+ }, undefined, unknown, unknown, undefined>>;
284
+ type StepperVariantProps = VariantProps<typeof stepper>;
285
+ type StepperSlots = keyof ReturnType<typeof stepper>;
286
+ type StepperReturnType = ReturnType<typeof stepper>;
287
+
288
+ export { type StepperReturnType, type StepperSlots, type StepperVariantProps, stepper };