@revotech-group/revotech-ui-kit 0.2.0 → 0.2.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.
- package/LICENSE +20 -20
- package/README.md +30 -30
- package/dist/library.css +10598 -5481
- package/dist/rtg-ui-kit.js +8189 -8673
- package/dist/rtg-ui-kit.umd.cjs +654 -804
- package/dist/src/assets/icons/anchor.icon.d.ts +3 -0
- package/dist/src/assets/icons/app-window.icon.d.ts +3 -0
- package/dist/src/assets/icons/arrow-right.icon.d.ts +3 -0
- package/dist/src/assets/icons/arrow-up-right.icon.d.ts +3 -0
- package/dist/src/assets/icons/arrow-up.icon.d.ts +3 -0
- package/dist/src/assets/icons/asterisk.icon.d.ts +3 -0
- package/dist/src/assets/icons/badge-alert.icon.d.ts +3 -0
- package/dist/src/assets/icons/badge-check.icon.d.ts +3 -0
- package/dist/src/assets/icons/badge-info.icon.d.ts +3 -0
- package/dist/src/assets/icons/badge-x.icon.d.ts +3 -0
- package/dist/src/assets/icons/captions.icon.d.ts +3 -0
- package/dist/src/assets/icons/check.icon.d.ts +3 -0
- package/dist/src/assets/icons/circle-alert.icon.d.ts +3 -0
- package/dist/src/assets/icons/circle-check.icon.d.ts +3 -1
- package/dist/src/assets/icons/circle-fading-arrow-up.icon.d.ts +3 -0
- package/dist/src/assets/icons/code.icon.d.ts +3 -0
- package/dist/src/assets/icons/external-link.icon.d.ts +3 -0
- package/dist/src/assets/icons/git-branch-minus.icon.d.ts +3 -0
- package/dist/src/assets/icons/git-branch-plus.icon.d.ts +3 -0
- package/dist/src/assets/icons/house.icon.d.ts +3 -0
- package/dist/src/assets/icons/index.d.ts +41 -14
- package/dist/src/assets/icons/info.icon.d.ts +3 -0
- package/dist/src/assets/icons/loader-circle.icon.d.ts +3 -0
- package/dist/src/assets/icons/mail-warning.icon.d.ts +3 -0
- package/dist/src/assets/icons/minus.icon.d.ts +3 -1
- package/dist/src/assets/icons/plus.icon.d.ts +1 -1
- package/dist/src/assets/icons/rabbit.icon.d.ts +3 -0
- package/dist/src/assets/icons/refresh-cw.icon.d.ts +3 -0
- package/dist/src/assets/icons/search.icon.d.ts +3 -1
- package/dist/src/assets/icons/settings.icon.d.ts +3 -0
- package/dist/src/assets/icons/shopping-bag.icon.d.ts +3 -0
- package/dist/src/assets/icons/wand.icon.d.ts +3 -0
- package/dist/src/components/ui/alert/_alert-action.d.ts +22 -0
- package/dist/src/components/ui/alert/_alert-description.d.ts +22 -0
- package/dist/src/components/ui/alert/_alert-title.d.ts +21 -0
- package/dist/src/components/ui/alert/_alert.d.ts +26 -0
- package/dist/src/components/ui/alert/alert.d.ts +11 -19
- package/dist/src/components/ui/alert/alert.defs.d.ts +4 -0
- package/dist/src/components/ui/alert/alert.stories.d.ts +10 -6
- package/dist/src/components/ui/avatar/_avatar-badge.d.ts +22 -0
- package/dist/src/components/ui/avatar/_avatar-fallback.d.ts +22 -0
- package/dist/src/components/ui/avatar/_avatar-group-count.d.ts +22 -0
- package/dist/src/components/ui/avatar/_avatar-group.d.ts +22 -0
- package/dist/src/components/ui/avatar/_avatar-image.d.ts +29 -0
- package/dist/src/components/ui/avatar/_avatar.d.ts +66 -0
- package/dist/src/components/ui/avatar/avatar.d.ts +14 -13
- package/dist/src/components/ui/avatar/avatar.defs.d.ts +8 -0
- package/dist/src/components/ui/avatar/avatar.stories.d.ts +13 -4
- package/dist/src/components/ui/button/_button.d.ts +63 -0
- package/dist/src/components/ui/button/button.d.ts +9 -20
- package/dist/src/components/ui/button/button.defs.d.ts +14 -0
- package/dist/src/components/ui/button/button.stories.d.ts +9 -1
- package/dist/src/components/ui/button/button.style.d.ts +1 -1
- package/dist/src/components/ui/card/_card-action.d.ts +22 -0
- package/dist/src/components/ui/card/_card-content.d.ts +21 -0
- package/dist/src/components/ui/card/_card-description.d.ts +22 -0
- package/dist/src/components/ui/card/_card-footer.d.ts +27 -0
- package/dist/src/components/ui/card/_card-header.d.ts +27 -0
- package/dist/src/components/ui/card/_card-title.d.ts +21 -0
- package/dist/src/components/ui/card/_card.d.ts +26 -0
- package/dist/src/components/ui/card/card.d.ts +14 -18
- package/dist/src/components/ui/card/card.defs.d.ts +10 -0
- package/dist/src/components/ui/card/card.stories.d.ts +9 -3
- package/dist/src/components/ui/checkbox/_checkbox.d.ts +66 -0
- package/dist/src/components/ui/checkbox/checkbox.d.ts +5 -13
- package/dist/src/components/ui/checkbox/checkbox.defs.d.ts +11 -0
- package/dist/src/components/ui/checkbox/checkbox.stories.d.ts +8 -7
- package/dist/src/components/ui/index.d.ts +1 -1
- package/dist/src/components/ui/input/_input.d.ts +164 -0
- package/dist/src/components/ui/input/input.d.ts +7 -29
- package/dist/src/components/ui/input/input.defs.d.ts +28 -0
- package/dist/src/components/ui/input/input.stories.d.ts +16 -6
- package/dist/src/components/ui/input-otp/_input-otp-group.d.ts +26 -0
- package/dist/src/components/ui/input-otp/_input-otp-separator.d.ts +16 -0
- package/dist/src/components/ui/input-otp/_input-otp-slot.d.ts +35 -0
- package/dist/src/components/ui/input-otp/_input-otp.d.ts +213 -0
- package/dist/src/components/ui/input-otp/input-otp.d.ts +12 -28
- package/dist/src/components/ui/input-otp/input-otp.defs.d.ts +28 -0
- package/dist/src/components/ui/input-otp/input-otp.stories.d.ts +10 -7
- package/dist/src/components/ui/label/_label.d.ts +27 -0
- package/dist/src/components/ui/label/label.d.ts +5 -7
- package/dist/src/components/ui/label/label.defs.d.ts +3 -0
- package/dist/src/components/ui/label/label.stories.d.ts +10 -5
- package/dist/src/components/ui/pagination/pagination-link.d.ts +2 -2
- package/dist/src/components/ui/pagination/pagination.styles.d.ts +1 -1
- package/dist/src/components/ui/sample-demo/sample-demo.d.ts +1 -1
- package/dist/src/components/ui/sample-demo/sample.style.d.ts +1 -1
- package/dist/src/components/ui/separator/_separator.d.ts +22 -0
- package/dist/src/components/ui/separator/separator.d.ts +5 -10
- package/dist/src/components/ui/separator/separator.defs.d.ts +4 -9
- package/dist/src/components/ui/separator/separator.stories.d.ts +3 -1
- package/dist/src/components/ui/tabs/_tabs-content.d.ts +30 -0
- package/dist/src/components/ui/tabs/_tabs-list.d.ts +30 -0
- package/dist/src/components/ui/tabs/_tabs-trigger.d.ts +47 -0
- package/dist/src/components/ui/tabs/_tabs.d.ts +99 -0
- package/dist/src/components/ui/tabs/tabs.d.ts +18 -0
- package/dist/src/components/ui/tabs/tabs.defs.d.ts +22 -0
- package/dist/src/components/ui/tabs/tabs.helpers.d.ts +24 -0
- package/dist/src/components/ui/tabs/tabs.stories.d.ts +13 -0
- package/dist/src/{components/ui/input/countryOptions.d.ts → helpers/country-codes.d.ts} +1 -1
- package/dist/src/helpers/index.d.ts +3 -2
- package/dist/src/tokens/tailwind/border-radius.d.ts +0 -9
- package/dist/src/tokens/tailwind/border-width.d.ts +0 -4
- package/dist/src/tokens/tailwind/box-shadow.d.ts +0 -6
- package/dist/src/tokens/tailwind/color.d.ts +0 -78
- package/dist/src/tokens/tailwind/font-size.d.ts +1 -37
- package/dist/src/tokens/tailwind/font-weight.d.ts +0 -8
- package/dist/src/tokens/tailwind/index.d.ts +1 -202
- package/dist/src/tokens/tailwind/opacity.d.ts +0 -5
- package/dist/src/tokens/tailwind/ring-offset-width.d.ts +0 -1
- package/dist/src/tokens/tailwind/ring-width.d.ts +0 -5
- package/dist/src/tokens/tailwind/spacing.d.ts +0 -45
- package/package.json +136 -135
- package/dist/src/components/ui/alert/alert.styles.d.ts +0 -10
- package/dist/src/components/ui/alert/alert.types.d.ts +0 -1
- package/dist/src/components/ui/alert/helpers.d.ts +0 -10
- package/dist/src/components/ui/avatar/avatar-fallback.d.ts +0 -15
- package/dist/src/components/ui/avatar/avatar-image.d.ts +0 -17
- package/dist/src/components/ui/avatar/avatar.style.d.ts +0 -4
- package/dist/src/components/ui/button/button.type.d.ts +0 -3
- package/dist/src/components/ui/card/card-content.d.ts +0 -11
- package/dist/src/components/ui/card/card-description.d.ts +0 -11
- package/dist/src/components/ui/card/card-footer.d.ts +0 -11
- package/dist/src/components/ui/card/card-header.d.ts +0 -11
- package/dist/src/components/ui/card/card-title.d.ts +0 -11
- package/dist/src/components/ui/card/card.styles.d.ts +0 -4
- package/dist/src/components/ui/checkbox/checkbox.style.d.ts +0 -4
- package/dist/src/components/ui/checkbox/checkbox.type.d.ts +0 -21
- package/dist/src/components/ui/input/input.styles.d.ts +0 -7
- package/dist/src/components/ui/input/input.type.d.ts +0 -21
- package/dist/src/components/ui/input-otp/input-otp-group.d.ts +0 -18
- package/dist/src/components/ui/input-otp/input-otp-separator.d.ts +0 -12
- package/dist/src/components/ui/input-otp/input-otp-slot.d.ts +0 -26
- package/dist/src/components/ui/input-otp/input-otp.styles.d.ts +0 -10
- package/dist/src/components/ui/label/label.style.d.ts +0 -1
- package/dist/src/components/ui/separator/separator.styles.d.ts +0 -5
- package/dist/src/components/ui/tabs/tab-contents.d.ts +0 -24
- package/dist/src/components/ui/tabs/tab-list.d.ts +0 -25
- package/dist/src/components/ui/tabs/tab-trigger.d.ts +0 -26
- package/dist/src/components/ui/tabs/tab.d.ts +0 -27
- package/dist/src/components/ui/tabs/tab.stories.d.ts +0 -16
- package/dist/src/components/ui/tabs/tabs.style.d.ts +0 -12
- package/dist/src/tokens/tailwind/grid-template-columns.d.ts +0 -4
|
@@ -16,13 +16,10 @@ export declare const tailwindTokenMap: {
|
|
|
16
16
|
'combo-box-item-radius': string;
|
|
17
17
|
'carousel-button-radius': string;
|
|
18
18
|
'textarea-radius': string;
|
|
19
|
-
'tab-list-radius': string;
|
|
20
|
-
'tab-trigger-radius': string;
|
|
21
19
|
'toast-viewport-item-radius': string;
|
|
22
20
|
'toast-action-radius': string;
|
|
23
21
|
'toggle-group-item-radius': string;
|
|
24
22
|
'toggle-radius': string;
|
|
25
|
-
'input-radius': string;
|
|
26
23
|
'scrollarea-radius': string;
|
|
27
24
|
'switch-radius': string;
|
|
28
25
|
'switch-thumb-radius': string;
|
|
@@ -39,7 +36,6 @@ export declare const tailwindTokenMap: {
|
|
|
39
36
|
'menubar-item-radius': string;
|
|
40
37
|
'menubar-checkbox-item-radius': string;
|
|
41
38
|
'menubar-radio-item-radius': string;
|
|
42
|
-
'input-otp-slot-radius': string;
|
|
43
39
|
'hover-card-content-radius': string;
|
|
44
40
|
'dropdown-menu-content-radius': string;
|
|
45
41
|
'dropdown-menu-item-radius': string;
|
|
@@ -56,15 +52,10 @@ export declare const tailwindTokenMap: {
|
|
|
56
52
|
'command-radius': string;
|
|
57
53
|
'command-input-radius': string;
|
|
58
54
|
'command-item-radius': string;
|
|
59
|
-
'checkbox-radius': string;
|
|
60
|
-
'card-radius': string;
|
|
61
55
|
'calendar-weekday-radius': string;
|
|
62
56
|
'calendar-day-radius': string;
|
|
63
57
|
'button-radius': string;
|
|
64
58
|
'badge-radius': string;
|
|
65
|
-
'avatar-radius': string;
|
|
66
|
-
'avatar-fallback-radius': string;
|
|
67
|
-
'alert-radius': string;
|
|
68
59
|
'accordion-trigger-radius': string;
|
|
69
60
|
};
|
|
70
61
|
borderWidth: {
|
|
@@ -81,21 +72,17 @@ export declare const tailwindTokenMap: {
|
|
|
81
72
|
'popover-content-width-border': string;
|
|
82
73
|
'menubar-width-border': string;
|
|
83
74
|
'menubar-content-width-border': string;
|
|
84
|
-
'input-otp-slot-width-border': string;
|
|
85
75
|
'hover-card-content-width-border': string;
|
|
86
76
|
'dropdown-menu-content-width-border': string;
|
|
87
77
|
'drawer-content-width-border': string;
|
|
88
78
|
'dialog-content-width-border': string;
|
|
89
79
|
'context-menu-content-width-border': string;
|
|
90
80
|
'command-input-wrapper-width-border': string;
|
|
91
|
-
'checkbox-width-border': string;
|
|
92
|
-
'card-width-border': string;
|
|
93
81
|
'calendar-day-width-border-focus': string;
|
|
94
82
|
'button-width-border-focus': string;
|
|
95
83
|
'button-width-border-invalid': string;
|
|
96
84
|
'button-outline-width-border': string;
|
|
97
85
|
'badge-width-border': string;
|
|
98
|
-
'alert-width-border': string;
|
|
99
86
|
'accordion-item-width-border': string;
|
|
100
87
|
'accordion-trigger-width-border-focus': string;
|
|
101
88
|
};
|
|
@@ -103,7 +90,6 @@ export declare const tailwindTokenMap: {
|
|
|
103
90
|
'navigation-menu-item-shadow-focus': string;
|
|
104
91
|
'navigation-menu-content-container-shadow': string;
|
|
105
92
|
'combo-box-group-shadow': string;
|
|
106
|
-
'tab-trigger-shadow-active': string;
|
|
107
93
|
'toast-viewport-item-shadow': string;
|
|
108
94
|
'switch-shadow': string;
|
|
109
95
|
'select-trigger-shadow': string;
|
|
@@ -112,15 +98,10 @@ export declare const tailwindTokenMap: {
|
|
|
112
98
|
'popover-content-shadow': string;
|
|
113
99
|
'menubar-shadow': string;
|
|
114
100
|
'menubar-content-shadow': string;
|
|
115
|
-
'input-otp-slot-shadow': string;
|
|
116
|
-
'input-shadow': string;
|
|
117
101
|
'hover-card-content-shadow': string;
|
|
118
102
|
'dropdown-menu-content-shadow': string;
|
|
119
103
|
'dialog-content-shadow': string;
|
|
120
104
|
'context-menu-content-shadow': string;
|
|
121
|
-
'checkbox-shadow': string;
|
|
122
|
-
'card-shadow': string;
|
|
123
|
-
'button-outline-shadow': string;
|
|
124
105
|
};
|
|
125
106
|
color: {
|
|
126
107
|
'navigation-menu-item-color-bg': string;
|
|
@@ -160,11 +141,6 @@ export declare const tailwindTokenMap: {
|
|
|
160
141
|
'textarea-color-text': string;
|
|
161
142
|
'textarea-color-ring-focus': string;
|
|
162
143
|
'textarea-color-text-placeholder': string;
|
|
163
|
-
'tab-list-color-bg': string;
|
|
164
|
-
'tab-list-color-text': string;
|
|
165
|
-
'tab-trigger-color-bg-active': string;
|
|
166
|
-
'tab-trigger-color-text-active': string;
|
|
167
|
-
'tab-trigger-color-ring-focus': string;
|
|
168
144
|
'toast-viewport-default-color-bg': string;
|
|
169
145
|
'toast-viewport-default-color-text': string;
|
|
170
146
|
'toast-viewport-destructive-color-bg': string;
|
|
@@ -195,14 +171,6 @@ export declare const tailwindTokenMap: {
|
|
|
195
171
|
'toggle-outline-color-bg-hover': string;
|
|
196
172
|
'toggle-outline-color-text-hover': string;
|
|
197
173
|
'toggle-outline-color-border': string;
|
|
198
|
-
'input-color-bg': string;
|
|
199
|
-
'input-color-border': string;
|
|
200
|
-
'input-color-border-focus': string;
|
|
201
|
-
'input-color-text': string;
|
|
202
|
-
'input-color-text-placeholder': string;
|
|
203
|
-
'input-color-ring-focus': string;
|
|
204
|
-
'input-icon-color-text': string;
|
|
205
|
-
'input-icon-color-text-hover': string;
|
|
206
174
|
'scrollarea-color-bg': string;
|
|
207
175
|
'scrollarea-color-border': string;
|
|
208
176
|
'switch-color-border': string;
|
|
@@ -213,7 +181,6 @@ export declare const tailwindTokenMap: {
|
|
|
213
181
|
'switch-thumb-color-bg-checked': string;
|
|
214
182
|
'switch-thumb-color-bg-unchecked': string;
|
|
215
183
|
'skeleton-color-bg': string;
|
|
216
|
-
'separator-color-bg': string;
|
|
217
184
|
'select-trigger-color-bg': string;
|
|
218
185
|
'select-trigger-color-border': string;
|
|
219
186
|
'select-trigger-color-bg-hover': string;
|
|
@@ -263,13 +230,6 @@ export declare const tailwindTokenMap: {
|
|
|
263
230
|
'menubar-radio-item-color-bg-active': string;
|
|
264
231
|
'menubar-separator-color-bg': string;
|
|
265
232
|
'menubar-shortcut-color-text': string;
|
|
266
|
-
'input-otp-slot-color-bg': string;
|
|
267
|
-
'input-otp-slot-color-border': string;
|
|
268
|
-
'input-otp-slot-color-border-focus': string;
|
|
269
|
-
'input-otp-slot-color-border-invalid': string;
|
|
270
|
-
'input-otp-slot-color-ring-focus': string;
|
|
271
|
-
'input-otp-slot-color-ring-invalid': string;
|
|
272
|
-
'input-otp-separator-color-text': string;
|
|
273
233
|
'hover-card-content-color-text': string;
|
|
274
234
|
'hover-card-content-color-bg': string;
|
|
275
235
|
'hover-card-content-color-border': string;
|
|
@@ -330,19 +290,6 @@ export declare const tailwindTokenMap: {
|
|
|
330
290
|
'command-item-color-text-selected': string;
|
|
331
291
|
'command-item-icon-color-text': string;
|
|
332
292
|
'command-shortcut-color-text': string;
|
|
333
|
-
'checkbox-color-border': string;
|
|
334
|
-
'checkbox-color-bg': string;
|
|
335
|
-
'checkbox-color-border-checked': string;
|
|
336
|
-
'checkbox-color-bg-checked': string;
|
|
337
|
-
'checkbox-color-text-checked': string;
|
|
338
|
-
'checkbox-color-border-focus': string;
|
|
339
|
-
'checkbox-color-ring-focus': string;
|
|
340
|
-
'checkbox-color-border-invalid': string;
|
|
341
|
-
'checkbox-color-ring-invalid': string;
|
|
342
|
-
'card-color-bg': string;
|
|
343
|
-
'card-color-text': string;
|
|
344
|
-
'card-color-border': string;
|
|
345
|
-
'card-description-color-text': string;
|
|
346
293
|
'calendar-color-bg': string;
|
|
347
294
|
'calendar-weekday-color-text': string;
|
|
348
295
|
'calendar-day-today-color-bg': string;
|
|
@@ -373,12 +320,10 @@ export declare const tailwindTokenMap: {
|
|
|
373
320
|
'button-secondary-color-bg-hover': string;
|
|
374
321
|
'button-secondary-color-ring-focus': string;
|
|
375
322
|
'button-outline-color-bg': string;
|
|
376
|
-
'button-outline-color-text': string;
|
|
377
323
|
'button-outline-color-border': string;
|
|
378
324
|
'button-outline-color-bg-hover': string;
|
|
379
325
|
'button-outline-color-text-hover': string;
|
|
380
326
|
'button-outline-color-ring-focus': string;
|
|
381
|
-
'button-ghost-color-text': string;
|
|
382
327
|
'button-ghost-color-bg-hover': string;
|
|
383
328
|
'button-ghost-color-text-hover': string;
|
|
384
329
|
'button-ghost-color-ring-focus': string;
|
|
@@ -414,48 +359,6 @@ export declare const tailwindTokenMap: {
|
|
|
414
359
|
'badge-destructive-color-text': string;
|
|
415
360
|
'badge-destructive-color-bg-hover': string;
|
|
416
361
|
'badge-destructive-color-ring-focus': string;
|
|
417
|
-
'avatar-fallback-color-bg': string;
|
|
418
|
-
'avatar-fallback-color-text': string;
|
|
419
|
-
'alert-default-color-bg': string;
|
|
420
|
-
'alert-default-color-border': string;
|
|
421
|
-
'alert-default-icon-color-text': string;
|
|
422
|
-
'alert-brand-color-bg': string;
|
|
423
|
-
'alert-brand-color-border': string;
|
|
424
|
-
'alert-brand-icon-color-text': string;
|
|
425
|
-
'alert-destructive-color-bg': string;
|
|
426
|
-
'alert-destructive-color-border': string;
|
|
427
|
-
'alert-destructive-icon-color-text': string;
|
|
428
|
-
'alert-warning-color-bg': string;
|
|
429
|
-
'alert-warning-color-border': string;
|
|
430
|
-
'alert-warning-icon-color-text': string;
|
|
431
|
-
'alert-success-color-bg': string;
|
|
432
|
-
'alert-success-color-border': string;
|
|
433
|
-
'alert-success-icon-color-text': string;
|
|
434
|
-
'alert-info-color-bg': string;
|
|
435
|
-
'alert-info-color-border': string;
|
|
436
|
-
'alert-info-icon-color-text': string;
|
|
437
|
-
'alert-brand-tonal-color-bg': string;
|
|
438
|
-
'alert-brand-tonal-color-border': string;
|
|
439
|
-
'alert-destructive-tonal-color-bg': string;
|
|
440
|
-
'alert-destructive-tonal-color-border': string;
|
|
441
|
-
'alert-warning-tonal-color-bg': string;
|
|
442
|
-
'alert-warning-tonal-color-border': string;
|
|
443
|
-
'alert-success-tonal-color-bg': string;
|
|
444
|
-
'alert-success-tonal-color-border': string;
|
|
445
|
-
'alert-info-tonal-color-bg': string;
|
|
446
|
-
'alert-info-tonal-color-border': string;
|
|
447
|
-
'alert-title-default-color-text': string;
|
|
448
|
-
'alert-title-brand-color-text': string;
|
|
449
|
-
'alert-title-destructive-color-text': string;
|
|
450
|
-
'alert-title-warning-color-text': string;
|
|
451
|
-
'alert-title-success-color-text': string;
|
|
452
|
-
'alert-title-info-color-text': string;
|
|
453
|
-
'alert-description-default-color-text': string;
|
|
454
|
-
'alert-description-brand-color-text': string;
|
|
455
|
-
'alert-description-destructive-color-text': string;
|
|
456
|
-
'alert-description-warning-color-text': string;
|
|
457
|
-
'alert-description-success-color-text': string;
|
|
458
|
-
'alert-description-info-color-text': string;
|
|
459
362
|
'accordion-item-color-border': string;
|
|
460
363
|
'accordion-trigger-color-border-focus': string;
|
|
461
364
|
'accordion-trigger-color-ring-focus': string;
|
|
@@ -486,10 +389,6 @@ export declare const tailwindTokenMap: {
|
|
|
486
389
|
lineHeight: string;
|
|
487
390
|
letterSpacing: string;
|
|
488
391
|
})[];
|
|
489
|
-
'tab-trigger-font': (string | {
|
|
490
|
-
lineHeight: string;
|
|
491
|
-
letterSpacing: string;
|
|
492
|
-
})[];
|
|
493
392
|
'toast-title-font': (string | {
|
|
494
393
|
lineHeight: string;
|
|
495
394
|
letterSpacing: string;
|
|
@@ -513,10 +412,6 @@ export declare const tailwindTokenMap: {
|
|
|
513
412
|
'select-trigger-font': string[];
|
|
514
413
|
'select-label-font': string[];
|
|
515
414
|
'select-item-font': string[];
|
|
516
|
-
'input-font': (string | {
|
|
517
|
-
lineHeight: string;
|
|
518
|
-
letterSpacing: string;
|
|
519
|
-
})[];
|
|
520
415
|
'menubar-trigger-font': string[];
|
|
521
416
|
'menubar-item-font': string[];
|
|
522
417
|
'menubar-checkbox-item-font': string[];
|
|
@@ -526,11 +421,6 @@ export declare const tailwindTokenMap: {
|
|
|
526
421
|
lineHeight: string;
|
|
527
422
|
letterSpacing: string;
|
|
528
423
|
})[];
|
|
529
|
-
'label-font': (string | {
|
|
530
|
-
lineHeight: string;
|
|
531
|
-
letterSpacing: string;
|
|
532
|
-
})[];
|
|
533
|
-
'input-otp-slot-font': string[];
|
|
534
424
|
'dropdown-menu-item-font': string[];
|
|
535
425
|
'dropdown-menu-checkbox-item-font': string[];
|
|
536
426
|
'dropdown-menu-radio-item-font': string[];
|
|
@@ -559,39 +449,16 @@ export declare const tailwindTokenMap: {
|
|
|
559
449
|
lineHeight: string;
|
|
560
450
|
letterSpacing: string;
|
|
561
451
|
})[];
|
|
562
|
-
'card-title-font': (string | {
|
|
563
|
-
lineHeight: string;
|
|
564
|
-
letterSpacing: string;
|
|
565
|
-
})[];
|
|
566
|
-
'card-description-font': (string | {
|
|
567
|
-
lineHeight: string;
|
|
568
|
-
letterSpacing: string;
|
|
569
|
-
})[];
|
|
570
452
|
'calendar-caption-label-font': string[];
|
|
571
453
|
'calendar-weekday-font': string[];
|
|
572
454
|
'calendar-day-button-font': string[];
|
|
573
455
|
'calendar-day-button-span-font': string[];
|
|
574
|
-
'button-font-size':
|
|
575
|
-
lineHeight: string;
|
|
576
|
-
letterSpacing: string;
|
|
577
|
-
})[];
|
|
456
|
+
'button-font-size': string[];
|
|
578
457
|
'breadcrumb-list-font': string[];
|
|
579
458
|
'badge-font-size': (string | {
|
|
580
459
|
lineHeight: string;
|
|
581
460
|
letterSpacing: string;
|
|
582
461
|
})[];
|
|
583
|
-
'avatar-fallback-font-size': (string | {
|
|
584
|
-
letterSpacing: string;
|
|
585
|
-
lineHeight: string;
|
|
586
|
-
})[];
|
|
587
|
-
'alert-title-font-size': (string | {
|
|
588
|
-
letterSpacing: string;
|
|
589
|
-
lineHeight: string;
|
|
590
|
-
})[];
|
|
591
|
-
'alert-description-font-size': (string | {
|
|
592
|
-
letterSpacing: string;
|
|
593
|
-
lineHeight: string;
|
|
594
|
-
})[];
|
|
595
462
|
'accordion-trigger-font': string[];
|
|
596
463
|
'accordion-content-font': string[];
|
|
597
464
|
};
|
|
@@ -599,15 +466,12 @@ export declare const tailwindTokenMap: {
|
|
|
599
466
|
'form-label-font-weight': string;
|
|
600
467
|
'table-head-cell-font-weight': string;
|
|
601
468
|
'table-footer-font-weight': string;
|
|
602
|
-
'tab-trigger-font-weight': string;
|
|
603
469
|
'toast-title-font-weight': string;
|
|
604
470
|
'toast-action-font-weight': string;
|
|
605
471
|
'toggle-group-item-font-weight': string;
|
|
606
472
|
'toggle-font-weight': string;
|
|
607
473
|
'menubar-trigger-font-weight': string;
|
|
608
474
|
'menubar-label-font-weight': string;
|
|
609
|
-
'label-font-weight': string;
|
|
610
|
-
'input-otp-slot-font-weight': string;
|
|
611
475
|
'dropdown-menu-label-font-weight': string;
|
|
612
476
|
'drawer-title-font-weight': string;
|
|
613
477
|
'drawer-description-font-weight': string;
|
|
@@ -616,8 +480,6 @@ export declare const tailwindTokenMap: {
|
|
|
616
480
|
'date-picker-trigger-button-font-weight': string;
|
|
617
481
|
'context-menu-label-font-weight': string;
|
|
618
482
|
'command-heading-font-weight': string;
|
|
619
|
-
'card-title-font-weight': string;
|
|
620
|
-
'card-description-font-weight': string;
|
|
621
483
|
'calendar-caption-label-font-weight': string;
|
|
622
484
|
'calendar-weekday-font-weight': string;
|
|
623
485
|
'calendar-day-button-font-weight': string;
|
|
@@ -625,16 +487,9 @@ export declare const tailwindTokenMap: {
|
|
|
625
487
|
'breadcrumb-list-font-weight': string;
|
|
626
488
|
'breadcrumb-page-font-weight': string;
|
|
627
489
|
'badge-font-weight': string;
|
|
628
|
-
'avatar-fallback-font-weight': string;
|
|
629
|
-
'alert-title-font-weight': string;
|
|
630
|
-
'alert-description-font-weight': string;
|
|
631
490
|
'accordion-trigger-font-weight': string;
|
|
632
491
|
'accordion-content-font-weight': string;
|
|
633
492
|
};
|
|
634
|
-
gridTemplateColumns: {
|
|
635
|
-
'alert-grid-cols': string;
|
|
636
|
-
'alert-grid-cols-has-icon': string;
|
|
637
|
-
};
|
|
638
493
|
keyframes: {
|
|
639
494
|
'toast-animate-in': {
|
|
640
495
|
from: {
|
|
@@ -681,7 +536,6 @@ export declare const tailwindTokenMap: {
|
|
|
681
536
|
'form-label-opacity-peer-disabled': string;
|
|
682
537
|
'carousel-button-opacity-disabled': string;
|
|
683
538
|
'textarea-opacity-disabled': string;
|
|
684
|
-
'tab-trigger-opacity-disabled': string;
|
|
685
539
|
'toast-description-opacity': string;
|
|
686
540
|
'toast-action-opacity-disabled': string;
|
|
687
541
|
'toggle-group-item-opacity-disabled': string;
|
|
@@ -691,12 +545,9 @@ export declare const tailwindTokenMap: {
|
|
|
691
545
|
'select-trigger-icon-opacity': string;
|
|
692
546
|
'select-item-opacity-disabled': string;
|
|
693
547
|
'radio-group-item-opacity-disabled': string;
|
|
694
|
-
'input-opacity-disabled': string;
|
|
695
548
|
'menubar-item-opacity-disabled': string;
|
|
696
549
|
'menubar-checkbox-item-opacity-disabled': string;
|
|
697
550
|
'menubar-radio-item-opacity-disabled': string;
|
|
698
|
-
'label-opacity-disabled': string;
|
|
699
|
-
'input-otp-opacity-disabled': string;
|
|
700
551
|
'dropdown-menu-item-opacity-disabled': string;
|
|
701
552
|
'dropdown-menu-checkbox-item-opacity-disabled': string;
|
|
702
553
|
'dropdown-menu-radio-item-opacity-disabled': string;
|
|
@@ -708,7 +559,6 @@ export declare const tailwindTokenMap: {
|
|
|
708
559
|
'command-input-opacity-disabled': string;
|
|
709
560
|
'command-input-icon-opacity': string;
|
|
710
561
|
'command-item-opacity-disabled': string;
|
|
711
|
-
'checkbox-opacity-disabled': string;
|
|
712
562
|
'calendar-button-previous-opacity-disabled': string;
|
|
713
563
|
'calendar-button-next-opacity-disabled': string;
|
|
714
564
|
'calendar-day-button-opacity-disabled': string;
|
|
@@ -718,7 +568,6 @@ export declare const tailwindTokenMap: {
|
|
|
718
568
|
ringOffsetWidth: {
|
|
719
569
|
'combo-box-trigger-width-ring-offset-focus': string;
|
|
720
570
|
'textarea-width-ring-offset-focus': string;
|
|
721
|
-
'tab-trigger-width-ring-offset-focus': string;
|
|
722
571
|
'toggle-group-item-width-ring-offset-focus': string;
|
|
723
572
|
'toggle-width-ring-offset-focus': string;
|
|
724
573
|
'dialog-close-width-ring-offset': string;
|
|
@@ -726,7 +575,6 @@ export declare const tailwindTokenMap: {
|
|
|
726
575
|
ringWidth: {
|
|
727
576
|
'combo-box-trigger-width-ring-focus': string;
|
|
728
577
|
'textarea-width-ring-focus': string;
|
|
729
|
-
'tab-trigger-width-ring-focus': string;
|
|
730
578
|
'toast-action-width-ring-focus': string;
|
|
731
579
|
'toggle-group-item-width-ring-focus': string;
|
|
732
580
|
'toggle-width-ring-focus': string;
|
|
@@ -735,11 +583,7 @@ export declare const tailwindTokenMap: {
|
|
|
735
583
|
'select-trigger-width-ring-invalid': string;
|
|
736
584
|
'radio-group-item-width-ring-focus': string;
|
|
737
585
|
'radio-group-item-width-ring-invalid': string;
|
|
738
|
-
'input-otp-slot-width-ring-focus': string;
|
|
739
|
-
'input-width-ring-focus': string;
|
|
740
586
|
'dialog-close-width-ring-focus': string;
|
|
741
|
-
'checkbox-width-ring-focus': string;
|
|
742
|
-
'checkbox-width-ring-invalid': string;
|
|
743
587
|
'badge-width-ring-focus': string;
|
|
744
588
|
'badge-width-ring-invalid': string;
|
|
745
589
|
'calendar-day-width-ring-focus': string;
|
|
@@ -822,15 +666,6 @@ export declare const tailwindTokenMap: {
|
|
|
822
666
|
'textarea-space-py': string;
|
|
823
667
|
'textarea-space-px': string;
|
|
824
668
|
'textarea-space-w': string;
|
|
825
|
-
'tab-list-space-px': string;
|
|
826
|
-
'tab-list-space-py': string;
|
|
827
|
-
'tab-trigger-space-px': string;
|
|
828
|
-
'tab-trigger-space-py': string;
|
|
829
|
-
'tab-list-horizontal-space-h': string;
|
|
830
|
-
'tab-list-horizontal-space-w': string;
|
|
831
|
-
'tab-list-vertical-space-h': string;
|
|
832
|
-
'tab-list-vertical-space-w': string;
|
|
833
|
-
'tab-trigger-space-w': string;
|
|
834
669
|
'toast-action-space-h': string;
|
|
835
670
|
'toast-action-space-right': string;
|
|
836
671
|
'toast-action-space-px': string;
|
|
@@ -856,19 +691,9 @@ export declare const tailwindTokenMap: {
|
|
|
856
691
|
'toggle-space-px-sm': string;
|
|
857
692
|
'toggle-space-px-md': string;
|
|
858
693
|
'toggle-space-px-lg': string;
|
|
859
|
-
'input-space-w': string;
|
|
860
|
-
'input-space-h': string;
|
|
861
|
-
'input-space-px': string;
|
|
862
|
-
'input-space-py': string;
|
|
863
|
-
'input-space-ring-focus': string;
|
|
864
|
-
'input-tel-space-w': string;
|
|
865
694
|
'switch-space-w': string;
|
|
866
695
|
'switch-space-h': string;
|
|
867
696
|
'switch-thumb-space-size': string;
|
|
868
|
-
'separator-horizontal-space-w': string;
|
|
869
|
-
'separator-horizontal-space-h': string;
|
|
870
|
-
'separator-vertical-space-w': string;
|
|
871
|
-
'separator-vertical-space-h': string;
|
|
872
697
|
'select-value-space-gap': string;
|
|
873
698
|
'select-trigger-space-gap': string;
|
|
874
699
|
'select-trigger-space-px': string;
|
|
@@ -931,10 +756,6 @@ export declare const tailwindTokenMap: {
|
|
|
931
756
|
'menubar-separator-space-mx': string;
|
|
932
757
|
'menubar-separator-space-my': string;
|
|
933
758
|
'menubar-separator-space-h': string;
|
|
934
|
-
'label-space-gap': string;
|
|
935
|
-
'input-otp-space-gap': string;
|
|
936
|
-
'input-otp-slot-space-size': string;
|
|
937
|
-
'input-otp-separator-space-size': string;
|
|
938
759
|
'hover-card-content-space-p': string;
|
|
939
760
|
'hover-card-content-space-w': string;
|
|
940
761
|
'dropdown-menu-content-space-p': string;
|
|
@@ -1022,16 +843,6 @@ export declare const tailwindTokenMap: {
|
|
|
1022
843
|
'command-item-space-px': string;
|
|
1023
844
|
'command-item-space-py': string;
|
|
1024
845
|
'command-item-icon-space-size': string;
|
|
1025
|
-
'checkbox-space-size': string;
|
|
1026
|
-
'checkbox-icon-space-size': string;
|
|
1027
|
-
'card-space-gap': string;
|
|
1028
|
-
'card-space-py': string;
|
|
1029
|
-
'card-header-space-gap': string;
|
|
1030
|
-
'card-header-space-px': string;
|
|
1031
|
-
'card-header-space-pb-has-border-b': string;
|
|
1032
|
-
'card-content-space-px': string;
|
|
1033
|
-
'card-footer-space-px': string;
|
|
1034
|
-
'card-footer-space-pt-has-border-t': string;
|
|
1035
846
|
'calendar-space-p': string;
|
|
1036
847
|
'calendar-months-space-gap': string;
|
|
1037
848
|
'calendar-nav-space-gap': string;
|
|
@@ -1071,18 +882,6 @@ export declare const tailwindTokenMap: {
|
|
|
1071
882
|
'badge-space-w': string;
|
|
1072
883
|
'badge-icon-space-size': string;
|
|
1073
884
|
'badge-space-gap': string;
|
|
1074
|
-
'avatar-space-size': string;
|
|
1075
|
-
'avatar-image-space-size': string;
|
|
1076
|
-
'avatar-fallback-space-size': string;
|
|
1077
|
-
'alert-space-w': string;
|
|
1078
|
-
'alert-space-px': string;
|
|
1079
|
-
'alert-space-py': string;
|
|
1080
|
-
'alert-space-gap-x-has-icon': string;
|
|
1081
|
-
'alert-space-gap-y': string;
|
|
1082
|
-
'alert-icon-space-size': string;
|
|
1083
|
-
'alert-icon-space-translate-y': string;
|
|
1084
|
-
'alert-title-space-min-h': string;
|
|
1085
|
-
'alert-description-space-gap': string;
|
|
1086
885
|
'accordion-trigger-space-gap': string;
|
|
1087
886
|
'accordion-trigger-space-py': string;
|
|
1088
887
|
'accordion-trigger-space-w': string;
|
|
@@ -3,7 +3,6 @@ export declare const opacity: {
|
|
|
3
3
|
'form-label-opacity-peer-disabled': string;
|
|
4
4
|
'carousel-button-opacity-disabled': string;
|
|
5
5
|
'textarea-opacity-disabled': string;
|
|
6
|
-
'tab-trigger-opacity-disabled': string;
|
|
7
6
|
'toast-description-opacity': string;
|
|
8
7
|
'toast-action-opacity-disabled': string;
|
|
9
8
|
'toggle-group-item-opacity-disabled': string;
|
|
@@ -13,12 +12,9 @@ export declare const opacity: {
|
|
|
13
12
|
'select-trigger-icon-opacity': string;
|
|
14
13
|
'select-item-opacity-disabled': string;
|
|
15
14
|
'radio-group-item-opacity-disabled': string;
|
|
16
|
-
'input-opacity-disabled': string;
|
|
17
15
|
'menubar-item-opacity-disabled': string;
|
|
18
16
|
'menubar-checkbox-item-opacity-disabled': string;
|
|
19
17
|
'menubar-radio-item-opacity-disabled': string;
|
|
20
|
-
'label-opacity-disabled': string;
|
|
21
|
-
'input-otp-opacity-disabled': string;
|
|
22
18
|
'dropdown-menu-item-opacity-disabled': string;
|
|
23
19
|
'dropdown-menu-checkbox-item-opacity-disabled': string;
|
|
24
20
|
'dropdown-menu-radio-item-opacity-disabled': string;
|
|
@@ -30,7 +26,6 @@ export declare const opacity: {
|
|
|
30
26
|
'command-input-opacity-disabled': string;
|
|
31
27
|
'command-input-icon-opacity': string;
|
|
32
28
|
'command-item-opacity-disabled': string;
|
|
33
|
-
'checkbox-opacity-disabled': string;
|
|
34
29
|
'calendar-button-previous-opacity-disabled': string;
|
|
35
30
|
'calendar-button-next-opacity-disabled': string;
|
|
36
31
|
'calendar-day-button-opacity-disabled': string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare const ringOffsetWidth: {
|
|
2
2
|
'combo-box-trigger-width-ring-offset-focus': string;
|
|
3
3
|
'textarea-width-ring-offset-focus': string;
|
|
4
|
-
'tab-trigger-width-ring-offset-focus': string;
|
|
5
4
|
'toggle-group-item-width-ring-offset-focus': string;
|
|
6
5
|
'toggle-width-ring-offset-focus': string;
|
|
7
6
|
'dialog-close-width-ring-offset': string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare const ringWidth: {
|
|
2
2
|
'combo-box-trigger-width-ring-focus': string;
|
|
3
3
|
'textarea-width-ring-focus': string;
|
|
4
|
-
'tab-trigger-width-ring-focus': string;
|
|
5
4
|
'toast-action-width-ring-focus': string;
|
|
6
5
|
'toggle-group-item-width-ring-focus': string;
|
|
7
6
|
'toggle-width-ring-focus': string;
|
|
@@ -10,11 +9,7 @@ export declare const ringWidth: {
|
|
|
10
9
|
'select-trigger-width-ring-invalid': string;
|
|
11
10
|
'radio-group-item-width-ring-focus': string;
|
|
12
11
|
'radio-group-item-width-ring-invalid': string;
|
|
13
|
-
'input-otp-slot-width-ring-focus': string;
|
|
14
|
-
'input-width-ring-focus': string;
|
|
15
12
|
'dialog-close-width-ring-focus': string;
|
|
16
|
-
'checkbox-width-ring-focus': string;
|
|
17
|
-
'checkbox-width-ring-invalid': string;
|
|
18
13
|
'badge-width-ring-focus': string;
|
|
19
14
|
'badge-width-ring-invalid': string;
|
|
20
15
|
'calendar-day-width-ring-focus': string;
|
|
@@ -73,15 +73,6 @@ export declare const spacing: {
|
|
|
73
73
|
'textarea-space-py': string;
|
|
74
74
|
'textarea-space-px': string;
|
|
75
75
|
'textarea-space-w': string;
|
|
76
|
-
'tab-list-space-px': string;
|
|
77
|
-
'tab-list-space-py': string;
|
|
78
|
-
'tab-trigger-space-px': string;
|
|
79
|
-
'tab-trigger-space-py': string;
|
|
80
|
-
'tab-list-horizontal-space-h': string;
|
|
81
|
-
'tab-list-horizontal-space-w': string;
|
|
82
|
-
'tab-list-vertical-space-h': string;
|
|
83
|
-
'tab-list-vertical-space-w': string;
|
|
84
|
-
'tab-trigger-space-w': string;
|
|
85
76
|
'toast-action-space-h': string;
|
|
86
77
|
'toast-action-space-right': string;
|
|
87
78
|
'toast-action-space-px': string;
|
|
@@ -107,19 +98,9 @@ export declare const spacing: {
|
|
|
107
98
|
'toggle-space-px-sm': string;
|
|
108
99
|
'toggle-space-px-md': string;
|
|
109
100
|
'toggle-space-px-lg': string;
|
|
110
|
-
'input-space-w': string;
|
|
111
|
-
'input-space-h': string;
|
|
112
|
-
'input-space-px': string;
|
|
113
|
-
'input-space-py': string;
|
|
114
|
-
'input-space-ring-focus': string;
|
|
115
|
-
'input-tel-space-w': string;
|
|
116
101
|
'switch-space-w': string;
|
|
117
102
|
'switch-space-h': string;
|
|
118
103
|
'switch-thumb-space-size': string;
|
|
119
|
-
'separator-horizontal-space-w': string;
|
|
120
|
-
'separator-horizontal-space-h': string;
|
|
121
|
-
'separator-vertical-space-w': string;
|
|
122
|
-
'separator-vertical-space-h': string;
|
|
123
104
|
'select-value-space-gap': string;
|
|
124
105
|
'select-trigger-space-gap': string;
|
|
125
106
|
'select-trigger-space-px': string;
|
|
@@ -182,10 +163,6 @@ export declare const spacing: {
|
|
|
182
163
|
'menubar-separator-space-mx': string;
|
|
183
164
|
'menubar-separator-space-my': string;
|
|
184
165
|
'menubar-separator-space-h': string;
|
|
185
|
-
'label-space-gap': string;
|
|
186
|
-
'input-otp-space-gap': string;
|
|
187
|
-
'input-otp-slot-space-size': string;
|
|
188
|
-
'input-otp-separator-space-size': string;
|
|
189
166
|
'hover-card-content-space-p': string;
|
|
190
167
|
'hover-card-content-space-w': string;
|
|
191
168
|
'dropdown-menu-content-space-p': string;
|
|
@@ -273,16 +250,6 @@ export declare const spacing: {
|
|
|
273
250
|
'command-item-space-px': string;
|
|
274
251
|
'command-item-space-py': string;
|
|
275
252
|
'command-item-icon-space-size': string;
|
|
276
|
-
'checkbox-space-size': string;
|
|
277
|
-
'checkbox-icon-space-size': string;
|
|
278
|
-
'card-space-gap': string;
|
|
279
|
-
'card-space-py': string;
|
|
280
|
-
'card-header-space-gap': string;
|
|
281
|
-
'card-header-space-px': string;
|
|
282
|
-
'card-header-space-pb-has-border-b': string;
|
|
283
|
-
'card-content-space-px': string;
|
|
284
|
-
'card-footer-space-px': string;
|
|
285
|
-
'card-footer-space-pt-has-border-t': string;
|
|
286
253
|
'calendar-space-p': string;
|
|
287
254
|
'calendar-months-space-gap': string;
|
|
288
255
|
'calendar-nav-space-gap': string;
|
|
@@ -322,18 +289,6 @@ export declare const spacing: {
|
|
|
322
289
|
'badge-space-w': string;
|
|
323
290
|
'badge-icon-space-size': string;
|
|
324
291
|
'badge-space-gap': string;
|
|
325
|
-
'avatar-space-size': string;
|
|
326
|
-
'avatar-image-space-size': string;
|
|
327
|
-
'avatar-fallback-space-size': string;
|
|
328
|
-
'alert-space-w': string;
|
|
329
|
-
'alert-space-px': string;
|
|
330
|
-
'alert-space-py': string;
|
|
331
|
-
'alert-space-gap-x-has-icon': string;
|
|
332
|
-
'alert-space-gap-y': string;
|
|
333
|
-
'alert-icon-space-size': string;
|
|
334
|
-
'alert-icon-space-translate-y': string;
|
|
335
|
-
'alert-title-space-min-h': string;
|
|
336
|
-
'alert-description-space-gap': string;
|
|
337
292
|
'accordion-trigger-space-gap': string;
|
|
338
293
|
'accordion-trigger-space-py': string;
|
|
339
294
|
'accordion-trigger-space-w': string;
|