sv5ui 0.0.1

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 (144) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +124 -0
  3. package/dist/Alert/Alert.svelte +120 -0
  4. package/dist/Alert/Alert.svelte.d.ts +5 -0
  5. package/dist/Alert/alert.types.d.ts +99 -0
  6. package/dist/Alert/alert.types.js +1 -0
  7. package/dist/Alert/alert.variants.d.ts +213 -0
  8. package/dist/Alert/alert.variants.js +293 -0
  9. package/dist/Alert/index.d.ts +2 -0
  10. package/dist/Alert/index.js +1 -0
  11. package/dist/Avatar/Avatar.svelte +70 -0
  12. package/dist/Avatar/Avatar.svelte.d.ts +6 -0
  13. package/dist/Avatar/avatar.types.d.ts +40 -0
  14. package/dist/Avatar/avatar.types.js +1 -0
  15. package/dist/Avatar/avatar.variants.d.ts +178 -0
  16. package/dist/Avatar/avatar.variants.js +28 -0
  17. package/dist/Avatar/index.d.ts +2 -0
  18. package/dist/Avatar/index.js +1 -0
  19. package/dist/AvatarGroup/AvatarGroup.svelte +66 -0
  20. package/dist/AvatarGroup/AvatarGroup.svelte.d.ts +5 -0
  21. package/dist/AvatarGroup/avatar-group.types.d.ts +34 -0
  22. package/dist/AvatarGroup/avatar-group.types.js +1 -0
  23. package/dist/AvatarGroup/avatar-group.variants.d.ts +173 -0
  24. package/dist/AvatarGroup/avatar-group.variants.js +45 -0
  25. package/dist/AvatarGroup/index.d.ts +2 -0
  26. package/dist/AvatarGroup/index.js +1 -0
  27. package/dist/Badge/Badge.svelte +74 -0
  28. package/dist/Badge/Badge.svelte.d.ts +5 -0
  29. package/dist/Badge/badge.types.d.ts +74 -0
  30. package/dist/Badge/badge.types.js +1 -0
  31. package/dist/Badge/badge.variants.d.ts +303 -0
  32. package/dist/Badge/badge.variants.js +245 -0
  33. package/dist/Badge/index.d.ts +2 -0
  34. package/dist/Badge/index.js +1 -0
  35. package/dist/Button/Button.svelte +103 -0
  36. package/dist/Button/Button.svelte.d.ts +6 -0
  37. package/dist/Button/button.types.d.ts +97 -0
  38. package/dist/Button/button.types.js +1 -0
  39. package/dist/Button/button.variants.d.ts +388 -0
  40. package/dist/Button/button.variants.js +461 -0
  41. package/dist/Button/index.d.ts +2 -0
  42. package/dist/Button/index.js +1 -0
  43. package/dist/Card/Card.svelte +53 -0
  44. package/dist/Card/Card.svelte.d.ts +5 -0
  45. package/dist/Card/card.types.d.ts +32 -0
  46. package/dist/Card/card.types.js +1 -0
  47. package/dist/Card/card.variants.d.ts +108 -0
  48. package/dist/Card/card.variants.js +32 -0
  49. package/dist/Card/index.d.ts +2 -0
  50. package/dist/Card/index.js +1 -0
  51. package/dist/Chip/Chip.svelte +50 -0
  52. package/dist/Chip/Chip.svelte.d.ts +5 -0
  53. package/dist/Chip/chip.types.d.ts +62 -0
  54. package/dist/Chip/chip.types.js +1 -0
  55. package/dist/Chip/chip.variants.d.ts +328 -0
  56. package/dist/Chip/chip.variants.js +58 -0
  57. package/dist/Chip/index.d.ts +2 -0
  58. package/dist/Chip/index.js +1 -0
  59. package/dist/Container/Container.svelte +27 -0
  60. package/dist/Container/Container.svelte.d.ts +5 -0
  61. package/dist/Container/container.types.d.ts +19 -0
  62. package/dist/Container/container.types.js +1 -0
  63. package/dist/Container/container.variants.d.ts +29 -0
  64. package/dist/Container/container.variants.js +9 -0
  65. package/dist/Container/index.d.ts +2 -0
  66. package/dist/Container/index.js +1 -0
  67. package/dist/Empty/Empty.svelte +83 -0
  68. package/dist/Empty/Empty.svelte.d.ts +5 -0
  69. package/dist/Empty/empty.types.d.ts +74 -0
  70. package/dist/Empty/empty.types.js +1 -0
  71. package/dist/Empty/empty.variants.d.ts +288 -0
  72. package/dist/Empty/empty.variants.js +364 -0
  73. package/dist/Empty/index.d.ts +2 -0
  74. package/dist/Empty/index.js +1 -0
  75. package/dist/Icon/Icon.svelte +40 -0
  76. package/dist/Icon/Icon.svelte.d.ts +6 -0
  77. package/dist/Icon/icon.types.d.ts +37 -0
  78. package/dist/Icon/icon.types.js +1 -0
  79. package/dist/Icon/index.d.ts +2 -0
  80. package/dist/Icon/index.js +1 -0
  81. package/dist/Kbd/Kbd.svelte +35 -0
  82. package/dist/Kbd/Kbd.svelte.d.ts +5 -0
  83. package/dist/Kbd/index.d.ts +3 -0
  84. package/dist/Kbd/index.js +2 -0
  85. package/dist/Kbd/kbd.types.d.ts +77 -0
  86. package/dist/Kbd/kbd.types.js +1 -0
  87. package/dist/Kbd/kbd.variants.d.ts +118 -0
  88. package/dist/Kbd/kbd.variants.js +96 -0
  89. package/dist/Kbd/useKbd.svelte.d.ts +29 -0
  90. package/dist/Kbd/useKbd.svelte.js +245 -0
  91. package/dist/Link/Link.svelte +117 -0
  92. package/dist/Link/Link.svelte.d.ts +5 -0
  93. package/dist/Link/index.d.ts +2 -0
  94. package/dist/Link/index.js +1 -0
  95. package/dist/Link/link.types.d.ts +68 -0
  96. package/dist/Link/link.types.js +1 -0
  97. package/dist/Link/link.variants.d.ts +138 -0
  98. package/dist/Link/link.variants.js +145 -0
  99. package/dist/Progress/Progress.svelte +89 -0
  100. package/dist/Progress/Progress.svelte.d.ts +6 -0
  101. package/dist/Progress/index.d.ts +2 -0
  102. package/dist/Progress/index.js +1 -0
  103. package/dist/Progress/progress.types.d.ts +63 -0
  104. package/dist/Progress/progress.types.js +1 -0
  105. package/dist/Progress/progress.variants.d.ts +483 -0
  106. package/dist/Progress/progress.variants.js +190 -0
  107. package/dist/Separator/Separator.svelte +67 -0
  108. package/dist/Separator/Separator.svelte.d.ts +6 -0
  109. package/dist/Separator/index.d.ts +2 -0
  110. package/dist/Separator/index.js +1 -0
  111. package/dist/Separator/separator.types.d.ts +48 -0
  112. package/dist/Separator/separator.types.js +1 -0
  113. package/dist/Separator/separator.variants.d.ts +488 -0
  114. package/dist/Separator/separator.variants.js +104 -0
  115. package/dist/Skeleton/Skeleton.svelte +31 -0
  116. package/dist/Skeleton/Skeleton.svelte.d.ts +5 -0
  117. package/dist/Skeleton/index.d.ts +2 -0
  118. package/dist/Skeleton/index.js +1 -0
  119. package/dist/Skeleton/skeleton.types.d.ts +18 -0
  120. package/dist/Skeleton/skeleton.types.js +1 -0
  121. package/dist/Skeleton/skeleton.variants.d.ts +18 -0
  122. package/dist/Skeleton/skeleton.variants.js +12 -0
  123. package/dist/Timeline/Timeline.svelte +106 -0
  124. package/dist/Timeline/Timeline.svelte.d.ts +5 -0
  125. package/dist/Timeline/index.d.ts +2 -0
  126. package/dist/Timeline/index.js +1 -0
  127. package/dist/Timeline/timeline.types.d.ts +130 -0
  128. package/dist/Timeline/timeline.types.js +1 -0
  129. package/dist/Timeline/timeline.variants.d.ts +413 -0
  130. package/dist/Timeline/timeline.variants.js +121 -0
  131. package/dist/User/User.svelte +94 -0
  132. package/dist/User/User.svelte.d.ts +5 -0
  133. package/dist/User/index.d.ts +2 -0
  134. package/dist/User/index.js +1 -0
  135. package/dist/User/user.types.d.ts +74 -0
  136. package/dist/User/user.types.js +1 -0
  137. package/dist/User/user.variants.d.ts +308 -0
  138. package/dist/User/user.variants.js +73 -0
  139. package/dist/config.d.ts +59 -0
  140. package/dist/config.js +94 -0
  141. package/dist/index.d.ts +19 -0
  142. package/dist/index.js +20 -0
  143. package/dist/theme.css +410 -0
  144. package/package.json +104 -0
@@ -0,0 +1,483 @@
1
+ import { type VariantProps } from 'tailwind-variants';
2
+ export declare const progressVariants: import("tailwind-variants").TVReturnType<{
3
+ animation: {
4
+ carousel: string;
5
+ 'carousel-inverse': string;
6
+ swing: string;
7
+ elastic: string;
8
+ };
9
+ color: {
10
+ primary: {
11
+ indicator: string;
12
+ };
13
+ secondary: {
14
+ indicator: string;
15
+ };
16
+ tertiary: {
17
+ indicator: string;
18
+ };
19
+ success: {
20
+ indicator: string;
21
+ };
22
+ warning: {
23
+ indicator: string;
24
+ };
25
+ error: {
26
+ indicator: string;
27
+ };
28
+ info: {
29
+ indicator: string;
30
+ };
31
+ surface: {
32
+ indicator: string;
33
+ };
34
+ };
35
+ size: {
36
+ '2xs': {
37
+ status: string;
38
+ steps: string;
39
+ };
40
+ xs: {
41
+ status: string;
42
+ steps: string;
43
+ };
44
+ sm: {
45
+ status: string;
46
+ steps: string;
47
+ };
48
+ md: {
49
+ status: string;
50
+ steps: string;
51
+ };
52
+ lg: {
53
+ status: string;
54
+ steps: string;
55
+ };
56
+ xl: {
57
+ status: string;
58
+ steps: string;
59
+ };
60
+ '2xl': {
61
+ status: string;
62
+ steps: string;
63
+ };
64
+ };
65
+ step: {
66
+ active: {
67
+ steps: string;
68
+ };
69
+ first: string;
70
+ other: {
71
+ steps: string;
72
+ };
73
+ last: string;
74
+ };
75
+ orientation: {
76
+ horizontal: {
77
+ root: string;
78
+ base: string;
79
+ };
80
+ vertical: {
81
+ root: string;
82
+ base: string;
83
+ };
84
+ };
85
+ inverted: {
86
+ true: {
87
+ root: string;
88
+ status: string;
89
+ };
90
+ };
91
+ }, {
92
+ root: string;
93
+ base: string;
94
+ indicator: string;
95
+ status: string;
96
+ steps: string;
97
+ }, undefined, {
98
+ animation: {
99
+ carousel: string;
100
+ 'carousel-inverse': string;
101
+ swing: string;
102
+ elastic: string;
103
+ };
104
+ color: {
105
+ primary: {
106
+ indicator: string;
107
+ };
108
+ secondary: {
109
+ indicator: string;
110
+ };
111
+ tertiary: {
112
+ indicator: string;
113
+ };
114
+ success: {
115
+ indicator: string;
116
+ };
117
+ warning: {
118
+ indicator: string;
119
+ };
120
+ error: {
121
+ indicator: string;
122
+ };
123
+ info: {
124
+ indicator: string;
125
+ };
126
+ surface: {
127
+ indicator: string;
128
+ };
129
+ };
130
+ size: {
131
+ '2xs': {
132
+ status: string;
133
+ steps: string;
134
+ };
135
+ xs: {
136
+ status: string;
137
+ steps: string;
138
+ };
139
+ sm: {
140
+ status: string;
141
+ steps: string;
142
+ };
143
+ md: {
144
+ status: string;
145
+ steps: string;
146
+ };
147
+ lg: {
148
+ status: string;
149
+ steps: string;
150
+ };
151
+ xl: {
152
+ status: string;
153
+ steps: string;
154
+ };
155
+ '2xl': {
156
+ status: string;
157
+ steps: string;
158
+ };
159
+ };
160
+ step: {
161
+ active: {
162
+ steps: string;
163
+ };
164
+ first: string;
165
+ other: {
166
+ steps: string;
167
+ };
168
+ last: string;
169
+ };
170
+ orientation: {
171
+ horizontal: {
172
+ root: string;
173
+ base: string;
174
+ };
175
+ vertical: {
176
+ root: string;
177
+ base: string;
178
+ };
179
+ };
180
+ inverted: {
181
+ true: {
182
+ root: string;
183
+ status: string;
184
+ };
185
+ };
186
+ }, {
187
+ root: string;
188
+ base: string;
189
+ indicator: string;
190
+ status: string;
191
+ steps: string;
192
+ }, import("tailwind-variants").TVReturnType<{
193
+ animation: {
194
+ carousel: string;
195
+ 'carousel-inverse': string;
196
+ swing: string;
197
+ elastic: string;
198
+ };
199
+ color: {
200
+ primary: {
201
+ indicator: string;
202
+ };
203
+ secondary: {
204
+ indicator: string;
205
+ };
206
+ tertiary: {
207
+ indicator: string;
208
+ };
209
+ success: {
210
+ indicator: string;
211
+ };
212
+ warning: {
213
+ indicator: string;
214
+ };
215
+ error: {
216
+ indicator: string;
217
+ };
218
+ info: {
219
+ indicator: string;
220
+ };
221
+ surface: {
222
+ indicator: string;
223
+ };
224
+ };
225
+ size: {
226
+ '2xs': {
227
+ status: string;
228
+ steps: string;
229
+ };
230
+ xs: {
231
+ status: string;
232
+ steps: string;
233
+ };
234
+ sm: {
235
+ status: string;
236
+ steps: string;
237
+ };
238
+ md: {
239
+ status: string;
240
+ steps: string;
241
+ };
242
+ lg: {
243
+ status: string;
244
+ steps: string;
245
+ };
246
+ xl: {
247
+ status: string;
248
+ steps: string;
249
+ };
250
+ '2xl': {
251
+ status: string;
252
+ steps: string;
253
+ };
254
+ };
255
+ step: {
256
+ active: {
257
+ steps: string;
258
+ };
259
+ first: string;
260
+ other: {
261
+ steps: string;
262
+ };
263
+ last: string;
264
+ };
265
+ orientation: {
266
+ horizontal: {
267
+ root: string;
268
+ base: string;
269
+ };
270
+ vertical: {
271
+ root: string;
272
+ base: string;
273
+ };
274
+ };
275
+ inverted: {
276
+ true: {
277
+ root: string;
278
+ status: string;
279
+ };
280
+ };
281
+ }, {
282
+ root: string;
283
+ base: string;
284
+ indicator: string;
285
+ status: string;
286
+ steps: string;
287
+ }, undefined, unknown, unknown, undefined>>;
288
+ export type ProgressVariantProps = VariantProps<typeof progressVariants>;
289
+ export type ProgressSlots = keyof ReturnType<typeof progressVariants>;
290
+ export declare const progressDefaults: {
291
+ defaultVariants: import("tailwind-variants").TVDefaultVariants<{
292
+ animation: {
293
+ carousel: string;
294
+ 'carousel-inverse': string;
295
+ swing: string;
296
+ elastic: string;
297
+ };
298
+ color: {
299
+ primary: {
300
+ indicator: string;
301
+ };
302
+ secondary: {
303
+ indicator: string;
304
+ };
305
+ tertiary: {
306
+ indicator: string;
307
+ };
308
+ success: {
309
+ indicator: string;
310
+ };
311
+ warning: {
312
+ indicator: string;
313
+ };
314
+ error: {
315
+ indicator: string;
316
+ };
317
+ info: {
318
+ indicator: string;
319
+ };
320
+ surface: {
321
+ indicator: string;
322
+ };
323
+ };
324
+ size: {
325
+ '2xs': {
326
+ status: string;
327
+ steps: string;
328
+ };
329
+ xs: {
330
+ status: string;
331
+ steps: string;
332
+ };
333
+ sm: {
334
+ status: string;
335
+ steps: string;
336
+ };
337
+ md: {
338
+ status: string;
339
+ steps: string;
340
+ };
341
+ lg: {
342
+ status: string;
343
+ steps: string;
344
+ };
345
+ xl: {
346
+ status: string;
347
+ steps: string;
348
+ };
349
+ '2xl': {
350
+ status: string;
351
+ steps: string;
352
+ };
353
+ };
354
+ step: {
355
+ active: {
356
+ steps: string;
357
+ };
358
+ first: string;
359
+ other: {
360
+ steps: string;
361
+ };
362
+ last: string;
363
+ };
364
+ orientation: {
365
+ horizontal: {
366
+ root: string;
367
+ base: string;
368
+ };
369
+ vertical: {
370
+ root: string;
371
+ base: string;
372
+ };
373
+ };
374
+ inverted: {
375
+ true: {
376
+ root: string;
377
+ status: string;
378
+ };
379
+ };
380
+ }, {
381
+ root: string;
382
+ base: string;
383
+ indicator: string;
384
+ status: string;
385
+ steps: string;
386
+ }, {
387
+ animation: {
388
+ carousel: string;
389
+ 'carousel-inverse': string;
390
+ swing: string;
391
+ elastic: string;
392
+ };
393
+ color: {
394
+ primary: {
395
+ indicator: string;
396
+ };
397
+ secondary: {
398
+ indicator: string;
399
+ };
400
+ tertiary: {
401
+ indicator: string;
402
+ };
403
+ success: {
404
+ indicator: string;
405
+ };
406
+ warning: {
407
+ indicator: string;
408
+ };
409
+ error: {
410
+ indicator: string;
411
+ };
412
+ info: {
413
+ indicator: string;
414
+ };
415
+ surface: {
416
+ indicator: string;
417
+ };
418
+ };
419
+ size: {
420
+ '2xs': {
421
+ status: string;
422
+ steps: string;
423
+ };
424
+ xs: {
425
+ status: string;
426
+ steps: string;
427
+ };
428
+ sm: {
429
+ status: string;
430
+ steps: string;
431
+ };
432
+ md: {
433
+ status: string;
434
+ steps: string;
435
+ };
436
+ lg: {
437
+ status: string;
438
+ steps: string;
439
+ };
440
+ xl: {
441
+ status: string;
442
+ steps: string;
443
+ };
444
+ '2xl': {
445
+ status: string;
446
+ steps: string;
447
+ };
448
+ };
449
+ step: {
450
+ active: {
451
+ steps: string;
452
+ };
453
+ first: string;
454
+ other: {
455
+ steps: string;
456
+ };
457
+ last: string;
458
+ };
459
+ orientation: {
460
+ horizontal: {
461
+ root: string;
462
+ base: string;
463
+ };
464
+ vertical: {
465
+ root: string;
466
+ base: string;
467
+ };
468
+ };
469
+ inverted: {
470
+ true: {
471
+ root: string;
472
+ status: string;
473
+ };
474
+ };
475
+ }, {
476
+ root: string;
477
+ base: string;
478
+ indicator: string;
479
+ status: string;
480
+ steps: string;
481
+ }>;
482
+ slots: Partial<Record<ProgressSlots, string>>;
483
+ };
@@ -0,0 +1,190 @@
1
+ import { tv } from 'tailwind-variants';
2
+ export const progressVariants = tv({
3
+ slots: {
4
+ root: 'gap-2',
5
+ base: 'relative overflow-hidden rounded-full bg-surface-container-highest',
6
+ indicator: 'rounded-full size-full transition-transform duration-200 ease-out',
7
+ status: 'text-end transition-[width] duration-200 text-on-surface-variant',
8
+ steps: 'flex justify-between'
9
+ },
10
+ variants: {
11
+ animation: {
12
+ carousel: '',
13
+ 'carousel-inverse': '',
14
+ swing: '',
15
+ elastic: ''
16
+ },
17
+ color: {
18
+ primary: {
19
+ indicator: 'bg-primary'
20
+ },
21
+ secondary: {
22
+ indicator: 'bg-secondary'
23
+ },
24
+ tertiary: {
25
+ indicator: 'bg-tertiary'
26
+ },
27
+ success: {
28
+ indicator: 'bg-success'
29
+ },
30
+ warning: {
31
+ indicator: 'bg-warning'
32
+ },
33
+ error: {
34
+ indicator: 'bg-error'
35
+ },
36
+ info: {
37
+ indicator: 'bg-info'
38
+ },
39
+ surface: {
40
+ indicator: 'bg-on-surface'
41
+ }
42
+ },
43
+ size: {
44
+ '2xs': {
45
+ status: 'text-xs',
46
+ steps: 'text-xs'
47
+ },
48
+ xs: {
49
+ status: 'text-xs',
50
+ steps: 'text-xs'
51
+ },
52
+ sm: {
53
+ status: 'text-sm',
54
+ steps: 'text-sm'
55
+ },
56
+ md: {
57
+ status: 'text-sm',
58
+ steps: 'text-sm'
59
+ },
60
+ lg: {
61
+ status: 'text-sm',
62
+ steps: 'text-sm'
63
+ },
64
+ xl: {
65
+ status: 'text-base',
66
+ steps: 'text-base'
67
+ },
68
+ '2xl': {
69
+ status: 'text-base',
70
+ steps: 'text-base'
71
+ }
72
+ },
73
+ step: {
74
+ active: {
75
+ steps: 'text-on-surface'
76
+ },
77
+ first: '',
78
+ other: {
79
+ steps: 'text-on-surface-variant'
80
+ },
81
+ last: ''
82
+ },
83
+ orientation: {
84
+ horizontal: {
85
+ root: 'flex flex-col',
86
+ base: 'w-full'
87
+ },
88
+ vertical: {
89
+ root: 'flex flex-row-reverse h-full',
90
+ base: 'h-full'
91
+ }
92
+ },
93
+ inverted: {
94
+ true: {
95
+ root: 'flex-col-reverse',
96
+ status: 'text-start'
97
+ }
98
+ }
99
+ },
100
+ compoundVariants: [
101
+ { orientation: 'horizontal', size: '2xs', class: { base: 'h-px' } },
102
+ { orientation: 'horizontal', size: 'xs', class: { base: 'h-0.5' } },
103
+ { orientation: 'horizontal', size: 'sm', class: { base: 'h-1' } },
104
+ { orientation: 'horizontal', size: 'md', class: { base: 'h-2' } },
105
+ { orientation: 'horizontal', size: 'lg', class: { base: 'h-3' } },
106
+ { orientation: 'horizontal', size: 'xl', class: { base: 'h-4' } },
107
+ { orientation: 'horizontal', size: '2xl', class: { base: 'h-5' } },
108
+ { orientation: 'vertical', size: '2xs', class: { base: 'w-px' } },
109
+ { orientation: 'vertical', size: 'xs', class: { base: 'w-0.5' } },
110
+ { orientation: 'vertical', size: 'sm', class: { base: 'w-1' } },
111
+ { orientation: 'vertical', size: 'md', class: { base: 'w-2' } },
112
+ { orientation: 'vertical', size: 'lg', class: { base: 'w-3' } },
113
+ { orientation: 'vertical', size: 'xl', class: { base: 'w-4' } },
114
+ { orientation: 'vertical', size: '2xl', class: { base: 'w-5' } },
115
+ {
116
+ orientation: 'horizontal',
117
+ animation: 'carousel',
118
+ class: {
119
+ indicator: 'data-[state=indeterminate]:animate-[carousel_2s_ease-in-out_infinite] data-[state=indeterminate]:rtl:animate-[carousel-rtl_2s_ease-in-out_infinite]'
120
+ }
121
+ }, {
122
+ orientation: 'vertical',
123
+ animation: 'carousel',
124
+ class: {
125
+ indicator: 'data-[state=indeterminate]:animate-[carousel-vertical_2s_ease-in-out_infinite]'
126
+ }
127
+ }, {
128
+ orientation: 'horizontal',
129
+ animation: 'carousel-inverse',
130
+ class: {
131
+ indicator: 'data-[state=indeterminate]:animate-[carousel-inverse_2s_ease-in-out_infinite] data-[state=indeterminate]:rtl:animate-[carousel-inverse-rtl_2s_ease-in-out_infinite]'
132
+ }
133
+ }, {
134
+ orientation: 'vertical',
135
+ animation: 'carousel-inverse',
136
+ class: {
137
+ indicator: 'data-[state=indeterminate]:animate-[carousel-inverse-vertical_2s_ease-in-out_infinite]'
138
+ }
139
+ }, {
140
+ orientation: 'horizontal',
141
+ animation: 'swing',
142
+ class: {
143
+ indicator: 'data-[state=indeterminate]:animate-[swing_2s_ease-in-out_infinite]'
144
+ }
145
+ }, {
146
+ orientation: 'vertical',
147
+ animation: 'swing',
148
+ class: {
149
+ indicator: 'data-[state=indeterminate]:animate-[swing-vertical_2s_ease-in-out_infinite]'
150
+ }
151
+ }, {
152
+ orientation: 'horizontal',
153
+ animation: 'elastic',
154
+ class: {
155
+ indicator: 'data-[state=indeterminate]:animate-[elastic_2s_ease-in-out_infinite]'
156
+ }
157
+ }, {
158
+ orientation: 'vertical',
159
+ animation: 'elastic',
160
+ class: {
161
+ indicator: 'data-[state=indeterminate]:animate-[elastic-vertical_2s_ease-in-out_infinite]'
162
+ }
163
+ },
164
+ {
165
+ inverted: true,
166
+ orientation: 'horizontal',
167
+ class: {
168
+ step: 'text-start',
169
+ status: 'flex-row-reverse'
170
+ }
171
+ }, {
172
+ inverted: true,
173
+ orientation: 'vertical',
174
+ class: {
175
+ steps: 'items-start',
176
+ status: 'flex-col-reverse'
177
+ }
178
+ }
179
+ ],
180
+ defaultVariants: {
181
+ animation: 'carousel',
182
+ color: 'primary',
183
+ size: 'md',
184
+ orientation: 'horizontal'
185
+ }
186
+ });
187
+ export const progressDefaults = {
188
+ defaultVariants: progressVariants.defaultVariants,
189
+ slots: {}
190
+ };