iryx-ui 0.2.0 → 0.4.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 (166) hide show
  1. package/README.md +200 -19
  2. package/dist/component-names.d.ts +1 -1
  3. package/dist/components/Alert.vue.d.ts +3 -3
  4. package/dist/components/Breadcrumb.vue.d.ts +45 -0
  5. package/dist/components/Button.vue.d.ts +8 -0
  6. package/dist/components/ButtonGroup.vue.d.ts +32 -0
  7. package/dist/components/ConfirmDialog.vue.d.ts +18 -0
  8. package/dist/components/Dialog.vue.d.ts +65 -0
  9. package/dist/components/DropdownMenu.vue.d.ts +49 -0
  10. package/dist/components/DropdownMenuItems.vue.d.ts +24 -0
  11. package/dist/components/EmptyState.vue.d.ts +46 -0
  12. package/dist/components/Icon.vue.d.ts +8 -0
  13. package/dist/components/NumberInput.vue.d.ts +63 -0
  14. package/dist/components/Pagination.vue.d.ts +57 -0
  15. package/dist/components/Progress.vue.d.ts +52 -0
  16. package/dist/components/Separator.vue.d.ts +36 -0
  17. package/dist/components/Skeleton.vue.d.ts +20 -0
  18. package/dist/components/Stat.vue.d.ts +57 -0
  19. package/dist/components/Stepper.vue.d.ts +61 -0
  20. package/dist/components/Tabs.vue.d.ts +63 -0
  21. package/dist/components/Toaster.vue.d.ts +28 -0
  22. package/dist/components/Tooltip.vue.d.ts +49 -0
  23. package/dist/components/index.d.ts +16 -0
  24. package/dist/composables/button-group.d.ts +12 -0
  25. package/dist/composables/confirm.d.ts +36 -0
  26. package/dist/composables/decimal.d.ts +53 -0
  27. package/dist/composables/dropdown-menu.d.ts +22 -0
  28. package/dist/composables/icon.d.ts +10 -0
  29. package/dist/composables/toast.d.ts +42 -0
  30. package/dist/config.d.ts +9 -0
  31. package/dist/index.d.ts +21 -0
  32. package/dist/index.js +67 -31
  33. package/dist/node_modules/.pnpm/@hugeicons_core-free-icons@4.2.3/node_modules/@hugeicons/core-free-icons/dist/esm/index.js +201 -0
  34. package/dist/node_modules/.pnpm/@hugeicons_vue@1.0.7_vue@3.5.35_typescript@6.0.3_/node_modules/@hugeicons/vue/dist/esm/_virtual/_plugin-vue_export-helper.js +8 -0
  35. package/dist/node_modules/.pnpm/@hugeicons_vue@1.0.7_vue@3.5.35_typescript@6.0.3_/node_modules/@hugeicons/vue/dist/esm/components/HugeiconsIcon.vue.js +25 -0
  36. package/dist/node_modules/.pnpm/@hugeicons_vue@1.0.7_vue@3.5.35_typescript@6.0.3_/node_modules/@hugeicons/vue/dist/esm/components/HugeiconsIcon.vue2.js +63 -0
  37. package/dist/nuxt.js +1 -1
  38. package/dist/packages/iryx-ui/src/component-names.js +4 -0
  39. package/dist/packages/iryx-ui/src/components/Alert.vue_vue_type_script_setup_true_lang.js +75 -0
  40. package/dist/packages/iryx-ui/src/components/Breadcrumb.js +5 -0
  41. package/dist/packages/iryx-ui/src/components/Breadcrumb.vue_vue_type_script_setup_true_lang.js +68 -0
  42. package/dist/packages/iryx-ui/src/components/Button.vue_vue_type_script_setup_true_lang.js +59 -0
  43. package/dist/packages/iryx-ui/src/components/ButtonGroup.js +5 -0
  44. package/dist/packages/iryx-ui/src/components/ButtonGroup.vue_vue_type_script_setup_true_lang.js +39 -0
  45. package/dist/packages/iryx-ui/src/components/Checkbox.vue_vue_type_script_setup_true_lang.js +92 -0
  46. package/dist/packages/iryx-ui/src/components/ConfirmDialog.js +5 -0
  47. package/dist/packages/iryx-ui/src/components/ConfirmDialog.vue_vue_type_script_setup_true_lang.js +63 -0
  48. package/dist/packages/iryx-ui/src/components/Dialog.js +5 -0
  49. package/dist/packages/iryx-ui/src/components/Dialog.vue_vue_type_script_setup_true_lang.js +99 -0
  50. package/dist/packages/iryx-ui/src/components/DropdownMenu.js +5 -0
  51. package/dist/packages/iryx-ui/src/components/DropdownMenu.vue_vue_type_script_setup_true_lang.js +67 -0
  52. package/dist/packages/iryx-ui/src/components/DropdownMenuItems.js +5 -0
  53. package/dist/packages/iryx-ui/src/components/DropdownMenuItems.vue_vue_type_script_setup_true_lang.js +92 -0
  54. package/dist/packages/iryx-ui/src/components/EmptyState.js +5 -0
  55. package/dist/packages/iryx-ui/src/components/EmptyState.vue_vue_type_script_setup_true_lang.js +55 -0
  56. package/dist/packages/iryx-ui/src/components/Icon.js +5 -0
  57. package/dist/packages/iryx-ui/src/components/Icon.vue_vue_type_script_setup_true_lang.js +26 -0
  58. package/dist/packages/iryx-ui/src/components/NumberInput.js +5 -0
  59. package/dist/packages/iryx-ui/src/components/NumberInput.vue_vue_type_script_setup_true_lang.js +136 -0
  60. package/dist/packages/iryx-ui/src/components/Pagination.js +5 -0
  61. package/dist/packages/iryx-ui/src/components/Pagination.vue_vue_type_script_setup_true_lang.js +94 -0
  62. package/dist/packages/iryx-ui/src/components/Progress.js +5 -0
  63. package/dist/packages/iryx-ui/src/components/Progress.vue_vue_type_script_setup_true_lang.js +65 -0
  64. package/dist/packages/iryx-ui/src/components/Select.vue_vue_type_script_setup_true_lang.js +85 -0
  65. package/dist/packages/iryx-ui/src/components/Separator.js +5 -0
  66. package/dist/packages/iryx-ui/src/components/Separator.vue_vue_type_script_setup_true_lang.js +56 -0
  67. package/dist/packages/iryx-ui/src/components/Skeleton.js +5 -0
  68. package/dist/packages/iryx-ui/src/components/Skeleton.vue_vue_type_script_setup_true_lang.js +48 -0
  69. package/dist/packages/iryx-ui/src/components/Stat.js +5 -0
  70. package/dist/packages/iryx-ui/src/components/Stat.vue_vue_type_script_setup_true_lang.js +63 -0
  71. package/dist/packages/iryx-ui/src/components/Stepper.js +5 -0
  72. package/dist/packages/iryx-ui/src/components/Stepper.vue_vue_type_script_setup_true_lang.js +89 -0
  73. package/dist/packages/iryx-ui/src/components/Tabs.js +5 -0
  74. package/dist/packages/iryx-ui/src/components/Tabs.vue_vue_type_script_setup_true_lang.js +78 -0
  75. package/dist/packages/iryx-ui/src/components/Toaster.js +5 -0
  76. package/dist/packages/iryx-ui/src/components/Toaster.vue_vue_type_script_setup_true_lang.js +115 -0
  77. package/dist/packages/iryx-ui/src/components/Tooltip.js +5 -0
  78. package/dist/packages/iryx-ui/src/components/Tooltip.vue_vue_type_script_setup_true_lang.js +70 -0
  79. package/dist/packages/iryx-ui/src/components/index.js +66 -0
  80. package/dist/{composables → packages/iryx-ui/src/composables}/appearance.js +11 -7
  81. package/dist/packages/iryx-ui/src/composables/button-group.js +8 -0
  82. package/dist/packages/iryx-ui/src/composables/confirm.js +25 -0
  83. package/dist/packages/iryx-ui/src/composables/decimal.js +79 -0
  84. package/dist/packages/iryx-ui/src/composables/dropdown-menu.js +9 -0
  85. package/dist/packages/iryx-ui/src/composables/icon.js +6 -0
  86. package/dist/packages/iryx-ui/src/composables/toast.js +38 -0
  87. package/dist/{theme → packages/iryx-ui/src/theme}/badge.js +3 -3
  88. package/dist/packages/iryx-ui/src/theme/breadcrumb.js +12 -0
  89. package/dist/packages/iryx-ui/src/theme/button-group.js +15 -0
  90. package/dist/packages/iryx-ui/src/theme/button.js +59 -0
  91. package/dist/packages/iryx-ui/src/theme/dialog.js +23 -0
  92. package/dist/packages/iryx-ui/src/theme/dropdown-menu.js +16 -0
  93. package/dist/packages/iryx-ui/src/theme/empty-state.js +34 -0
  94. package/dist/{theme → packages/iryx-ui/src/theme}/form.js +1 -1
  95. package/dist/packages/iryx-ui/src/theme/number-input.js +49 -0
  96. package/dist/packages/iryx-ui/src/theme/pagination.js +29 -0
  97. package/dist/packages/iryx-ui/src/theme/progress.js +33 -0
  98. package/dist/packages/iryx-ui/src/theme/separator.js +22 -0
  99. package/dist/packages/iryx-ui/src/theme/skeleton.js +13 -0
  100. package/dist/packages/iryx-ui/src/theme/stat.js +30 -0
  101. package/dist/packages/iryx-ui/src/theme/stepper.js +25 -0
  102. package/dist/packages/iryx-ui/src/theme/tabs.js +52 -0
  103. package/dist/packages/iryx-ui/src/theme/toast.js +53 -0
  104. package/dist/packages/iryx-ui/src/theme/tooltip.js +8 -0
  105. package/dist/theme/breadcrumb.d.ts +59 -0
  106. package/dist/theme/button-group.d.ts +29 -0
  107. package/dist/theme/button.d.ts +17 -2
  108. package/dist/theme/dialog.d.ts +74 -0
  109. package/dist/theme/dropdown-menu.d.ts +53 -0
  110. package/dist/theme/empty-state.d.ts +86 -0
  111. package/dist/theme/index.d.ts +15 -0
  112. package/dist/theme/number-input.d.ts +92 -0
  113. package/dist/theme/pagination.d.ts +71 -0
  114. package/dist/theme/progress.d.ts +143 -0
  115. package/dist/theme/separator.d.ts +50 -0
  116. package/dist/theme/skeleton.d.ts +23 -0
  117. package/dist/theme/stat.d.ts +110 -0
  118. package/dist/theme/stepper.d.ts +56 -0
  119. package/dist/theme/tabs.d.ts +104 -0
  120. package/dist/theme/toast.d.ts +176 -0
  121. package/dist/theme/tooltip.d.ts +32 -0
  122. package/package.json +4 -3
  123. package/theme.css +55 -0
  124. package/dist/component-names.js +0 -19
  125. package/dist/components/Alert.vue_vue_type_script_setup_true_lang.js +0 -74
  126. package/dist/components/Button.vue_vue_type_script_setup_true_lang.js +0 -54
  127. package/dist/components/Checkbox.vue_vue_type_script_setup_true_lang.js +0 -79
  128. package/dist/components/Select.vue_vue_type_script_setup_true_lang.js +0 -84
  129. package/dist/components/index.js +0 -34
  130. package/dist/theme/button.js +0 -27
  131. /package/dist/{components → packages/iryx-ui/src/components}/Alert.js +0 -0
  132. /package/dist/{components → packages/iryx-ui/src/components}/App.js +0 -0
  133. /package/dist/{components → packages/iryx-ui/src/components}/App.vue_vue_type_script_setup_true_lang.js +0 -0
  134. /package/dist/{components → packages/iryx-ui/src/components}/Badge.js +0 -0
  135. /package/dist/{components → packages/iryx-ui/src/components}/Badge.vue_vue_type_script_setup_true_lang.js +0 -0
  136. /package/dist/{components → packages/iryx-ui/src/components}/Button.js +0 -0
  137. /package/dist/{components → packages/iryx-ui/src/components}/Card.js +0 -0
  138. /package/dist/{components → packages/iryx-ui/src/components}/Card.vue_vue_type_script_setup_true_lang.js +0 -0
  139. /package/dist/{components → packages/iryx-ui/src/components}/Checkbox.js +0 -0
  140. /package/dist/{components → packages/iryx-ui/src/components}/Form.js +0 -0
  141. /package/dist/{components → packages/iryx-ui/src/components}/Form.vue_vue_type_script_setup_true_lang.js +0 -0
  142. /package/dist/{components → packages/iryx-ui/src/components}/FormField.js +0 -0
  143. /package/dist/{components → packages/iryx-ui/src/components}/FormField.vue_vue_type_script_setup_true_lang.js +0 -0
  144. /package/dist/{components → packages/iryx-ui/src/components}/Input.js +0 -0
  145. /package/dist/{components → packages/iryx-ui/src/components}/Input.vue_vue_type_script_setup_true_lang.js +0 -0
  146. /package/dist/{components → packages/iryx-ui/src/components}/Label.js +0 -0
  147. /package/dist/{components → packages/iryx-ui/src/components}/Label.vue_vue_type_script_setup_true_lang.js +0 -0
  148. /package/dist/{components → packages/iryx-ui/src/components}/RadioGroup.js +0 -0
  149. /package/dist/{components → packages/iryx-ui/src/components}/RadioGroup.vue_vue_type_script_setup_true_lang.js +0 -0
  150. /package/dist/{components → packages/iryx-ui/src/components}/Select.js +0 -0
  151. /package/dist/{components → packages/iryx-ui/src/components}/Switch.js +0 -0
  152. /package/dist/{components → packages/iryx-ui/src/components}/Switch.vue_vue_type_script_setup_true_lang.js +0 -0
  153. /package/dist/{components → packages/iryx-ui/src/components}/Textarea.js +0 -0
  154. /package/dist/{components → packages/iryx-ui/src/components}/Textarea.vue_vue_type_script_setup_true_lang.js +0 -0
  155. /package/dist/{composables → packages/iryx-ui/src/composables}/form.js +0 -0
  156. /package/dist/{config.js → packages/iryx-ui/src/config.js} +0 -0
  157. /package/dist/{plugin.js → packages/iryx-ui/src/plugin.js} +0 -0
  158. /package/dist/{theme → packages/iryx-ui/src/theme}/alert.js +0 -0
  159. /package/dist/{theme → packages/iryx-ui/src/theme}/card.js +0 -0
  160. /package/dist/{theme → packages/iryx-ui/src/theme}/checkbox.js +0 -0
  161. /package/dist/{theme → packages/iryx-ui/src/theme}/input.js +0 -0
  162. /package/dist/{theme → packages/iryx-ui/src/theme}/label.js +0 -0
  163. /package/dist/{theme → packages/iryx-ui/src/theme}/presets.js +0 -0
  164. /package/dist/{theme → packages/iryx-ui/src/theme}/radio-group.js +0 -0
  165. /package/dist/{theme → packages/iryx-ui/src/theme}/select.js +0 -0
  166. /package/dist/{theme → packages/iryx-ui/src/theme}/switch.js +0 -0
@@ -0,0 +1,74 @@
1
+ export declare const dialogTheme: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ sm: {
4
+ content: string;
5
+ };
6
+ md: {
7
+ content: string;
8
+ };
9
+ lg: {
10
+ content: string;
11
+ };
12
+ xl: {
13
+ content: string;
14
+ };
15
+ };
16
+ }, {
17
+ overlay: string;
18
+ content: string;
19
+ header: string;
20
+ title: string;
21
+ description: string;
22
+ body: string;
23
+ footer: string;
24
+ close: string;
25
+ }, undefined, {
26
+ size: {
27
+ sm: {
28
+ content: string;
29
+ };
30
+ md: {
31
+ content: string;
32
+ };
33
+ lg: {
34
+ content: string;
35
+ };
36
+ xl: {
37
+ content: string;
38
+ };
39
+ };
40
+ }, {
41
+ overlay: string;
42
+ content: string;
43
+ header: string;
44
+ title: string;
45
+ description: string;
46
+ body: string;
47
+ footer: string;
48
+ close: string;
49
+ }, import("tailwind-variants").TVReturnType<{
50
+ size: {
51
+ sm: {
52
+ content: string;
53
+ };
54
+ md: {
55
+ content: string;
56
+ };
57
+ lg: {
58
+ content: string;
59
+ };
60
+ xl: {
61
+ content: string;
62
+ };
63
+ };
64
+ }, {
65
+ overlay: string;
66
+ content: string;
67
+ header: string;
68
+ title: string;
69
+ description: string;
70
+ body: string;
71
+ footer: string;
72
+ close: string;
73
+ }, undefined, unknown, unknown, undefined>>;
74
+ export type DialogSlots = keyof ReturnType<typeof dialogTheme>;
@@ -0,0 +1,53 @@
1
+ export declare const dropdownMenuTheme: import("tailwind-variants").TVReturnType<{
2
+ /** Destructive items read in the danger colour, including when highlighted. */
3
+ danger: {
4
+ true: {
5
+ item: string;
6
+ };
7
+ };
8
+ }, {
9
+ content: string;
10
+ item: string;
11
+ label: string;
12
+ separator: string;
13
+ /** Same chrome as an item, plus a trailing chevron and an open state. */
14
+ subTrigger: string;
15
+ subContent: string;
16
+ /** Pushes the submenu chevron to the trailing edge. */
17
+ subTriggerIcon: string;
18
+ }, undefined, {
19
+ /** Destructive items read in the danger colour, including when highlighted. */
20
+ danger: {
21
+ true: {
22
+ item: string;
23
+ };
24
+ };
25
+ }, {
26
+ content: string;
27
+ item: string;
28
+ label: string;
29
+ separator: string;
30
+ /** Same chrome as an item, plus a trailing chevron and an open state. */
31
+ subTrigger: string;
32
+ subContent: string;
33
+ /** Pushes the submenu chevron to the trailing edge. */
34
+ subTriggerIcon: string;
35
+ }, import("tailwind-variants").TVReturnType<{
36
+ /** Destructive items read in the danger colour, including when highlighted. */
37
+ danger: {
38
+ true: {
39
+ item: string;
40
+ };
41
+ };
42
+ }, {
43
+ content: string;
44
+ item: string;
45
+ label: string;
46
+ separator: string;
47
+ /** Same chrome as an item, plus a trailing chevron and an open state. */
48
+ subTrigger: string;
49
+ subContent: string;
50
+ /** Pushes the submenu chevron to the trailing edge. */
51
+ subTriggerIcon: string;
52
+ }, undefined, unknown, unknown, undefined>>;
53
+ export type DropdownMenuSlots = keyof ReturnType<typeof dropdownMenuTheme>;
@@ -0,0 +1,86 @@
1
+ export declare const emptyStateTheme: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ sm: {
4
+ root: string;
5
+ icon: string;
6
+ title: string;
7
+ actions: string;
8
+ };
9
+ md: {
10
+ root: string;
11
+ icon: string;
12
+ title: string;
13
+ actions: string;
14
+ };
15
+ lg: {
16
+ root: string;
17
+ icon: string;
18
+ title: string;
19
+ actions: string;
20
+ };
21
+ };
22
+ }, {
23
+ root: string;
24
+ icon: string;
25
+ title: string;
26
+ description: string;
27
+ /** Only rendered when the actions slot is used. */
28
+ actions: string;
29
+ }, undefined, {
30
+ size: {
31
+ sm: {
32
+ root: string;
33
+ icon: string;
34
+ title: string;
35
+ actions: string;
36
+ };
37
+ md: {
38
+ root: string;
39
+ icon: string;
40
+ title: string;
41
+ actions: string;
42
+ };
43
+ lg: {
44
+ root: string;
45
+ icon: string;
46
+ title: string;
47
+ actions: string;
48
+ };
49
+ };
50
+ }, {
51
+ root: string;
52
+ icon: string;
53
+ title: string;
54
+ description: string;
55
+ /** Only rendered when the actions slot is used. */
56
+ actions: string;
57
+ }, import("tailwind-variants").TVReturnType<{
58
+ size: {
59
+ sm: {
60
+ root: string;
61
+ icon: string;
62
+ title: string;
63
+ actions: string;
64
+ };
65
+ md: {
66
+ root: string;
67
+ icon: string;
68
+ title: string;
69
+ actions: string;
70
+ };
71
+ lg: {
72
+ root: string;
73
+ icon: string;
74
+ title: string;
75
+ actions: string;
76
+ };
77
+ };
78
+ }, {
79
+ root: string;
80
+ icon: string;
81
+ title: string;
82
+ description: string;
83
+ /** Only rendered when the actions slot is used. */
84
+ actions: string;
85
+ }, undefined, unknown, unknown, undefined>>;
86
+ export type EmptyStateSlots = keyof ReturnType<typeof emptyStateTheme>;
@@ -1,11 +1,26 @@
1
1
  export * from './alert';
2
2
  export * from './badge';
3
+ export * from './breadcrumb';
3
4
  export * from './button';
5
+ export * from './button-group';
4
6
  export * from './card';
5
7
  export * from './checkbox';
8
+ export * from './dialog';
9
+ export * from './dropdown-menu';
10
+ export * from './empty-state';
6
11
  export * from './input';
7
12
  export * from './label';
13
+ export * from './number-input';
14
+ export * from './pagination';
8
15
  export * from './presets';
16
+ export * from './progress';
9
17
  export * from './radio-group';
10
18
  export * from './select';
19
+ export * from './separator';
20
+ export * from './skeleton';
21
+ export * from './stat';
22
+ export * from './stepper';
11
23
  export * from './switch';
24
+ export * from './tabs';
25
+ export * from './toast';
26
+ export * from './tooltip';
@@ -0,0 +1,92 @@
1
+ export declare const numberInputTheme: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ sm: {
4
+ input: string;
5
+ stepper: string;
6
+ };
7
+ md: {
8
+ input: string;
9
+ stepper: string;
10
+ };
11
+ lg: {
12
+ input: string;
13
+ stepper: string;
14
+ };
15
+ };
16
+ invalid: {
17
+ true: {
18
+ input: string;
19
+ };
20
+ };
21
+ /** Leaves room for the stepper so long values can't slide under it. */
22
+ withStepper: {
23
+ true: {};
24
+ };
25
+ }, {
26
+ root: string;
27
+ input: string;
28
+ /** Stacked +/- controls pinned inside the trailing edge of the field. */
29
+ stepper: string;
30
+ step: string;
31
+ }, undefined, {
32
+ size: {
33
+ sm: {
34
+ input: string;
35
+ stepper: string;
36
+ };
37
+ md: {
38
+ input: string;
39
+ stepper: string;
40
+ };
41
+ lg: {
42
+ input: string;
43
+ stepper: string;
44
+ };
45
+ };
46
+ invalid: {
47
+ true: {
48
+ input: string;
49
+ };
50
+ };
51
+ /** Leaves room for the stepper so long values can't slide under it. */
52
+ withStepper: {
53
+ true: {};
54
+ };
55
+ }, {
56
+ root: string;
57
+ input: string;
58
+ /** Stacked +/- controls pinned inside the trailing edge of the field. */
59
+ stepper: string;
60
+ step: string;
61
+ }, import("tailwind-variants").TVReturnType<{
62
+ size: {
63
+ sm: {
64
+ input: string;
65
+ stepper: string;
66
+ };
67
+ md: {
68
+ input: string;
69
+ stepper: string;
70
+ };
71
+ lg: {
72
+ input: string;
73
+ stepper: string;
74
+ };
75
+ };
76
+ invalid: {
77
+ true: {
78
+ input: string;
79
+ };
80
+ };
81
+ /** Leaves room for the stepper so long values can't slide under it. */
82
+ withStepper: {
83
+ true: {};
84
+ };
85
+ }, {
86
+ root: string;
87
+ input: string;
88
+ /** Stacked +/- controls pinned inside the trailing edge of the field. */
89
+ stepper: string;
90
+ step: string;
91
+ }, undefined, unknown, unknown, undefined>>;
92
+ export type NumberInputSlots = keyof ReturnType<typeof numberInputTheme>;
@@ -0,0 +1,71 @@
1
+ export declare const paginationTheme: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ sm: {
4
+ item: string;
5
+ ellipsis: string;
6
+ };
7
+ md: {
8
+ item: string;
9
+ ellipsis: string;
10
+ };
11
+ lg: {
12
+ item: string;
13
+ ellipsis: string;
14
+ };
15
+ };
16
+ }, {
17
+ root: string;
18
+ list: string;
19
+ item: string;
20
+ /** The page the user is on. */
21
+ active: string;
22
+ inactive: string;
23
+ ellipsis: string;
24
+ }, undefined, {
25
+ size: {
26
+ sm: {
27
+ item: string;
28
+ ellipsis: string;
29
+ };
30
+ md: {
31
+ item: string;
32
+ ellipsis: string;
33
+ };
34
+ lg: {
35
+ item: string;
36
+ ellipsis: string;
37
+ };
38
+ };
39
+ }, {
40
+ root: string;
41
+ list: string;
42
+ item: string;
43
+ /** The page the user is on. */
44
+ active: string;
45
+ inactive: string;
46
+ ellipsis: string;
47
+ }, import("tailwind-variants").TVReturnType<{
48
+ size: {
49
+ sm: {
50
+ item: string;
51
+ ellipsis: string;
52
+ };
53
+ md: {
54
+ item: string;
55
+ ellipsis: string;
56
+ };
57
+ lg: {
58
+ item: string;
59
+ ellipsis: string;
60
+ };
61
+ };
62
+ }, {
63
+ root: string;
64
+ list: string;
65
+ item: string;
66
+ /** The page the user is on. */
67
+ active: string;
68
+ inactive: string;
69
+ ellipsis: string;
70
+ }, undefined, unknown, unknown, undefined>>;
71
+ export type PaginationSlots = keyof ReturnType<typeof paginationTheme>;
@@ -0,0 +1,143 @@
1
+ export declare const progressTheme: import("tailwind-variants").TVReturnType<{
2
+ variant: {
3
+ primary: {
4
+ indicator: string;
5
+ };
6
+ success: {
7
+ indicator: string;
8
+ };
9
+ warning: {
10
+ indicator: string;
11
+ };
12
+ danger: {
13
+ indicator: string;
14
+ };
15
+ info: {
16
+ indicator: string;
17
+ };
18
+ };
19
+ size: {
20
+ sm: {
21
+ track: string;
22
+ };
23
+ md: {
24
+ track: string;
25
+ };
26
+ lg: {
27
+ track: string;
28
+ };
29
+ };
30
+ /**
31
+ * Unknown duration: the indicator slides back and forth instead of
32
+ * tracking a value. `animate-progress-indeterminate` is defined in
33
+ * theme.css so consumers get it without extra config.
34
+ */
35
+ indeterminate: {
36
+ true: {
37
+ indicator: string;
38
+ };
39
+ };
40
+ }, {
41
+ root: string;
42
+ /** Only rendered when a label or value text is shown. */
43
+ header: string;
44
+ label: string;
45
+ value: string;
46
+ track: string;
47
+ indicator: string;
48
+ }, undefined, {
49
+ variant: {
50
+ primary: {
51
+ indicator: string;
52
+ };
53
+ success: {
54
+ indicator: string;
55
+ };
56
+ warning: {
57
+ indicator: string;
58
+ };
59
+ danger: {
60
+ indicator: string;
61
+ };
62
+ info: {
63
+ indicator: string;
64
+ };
65
+ };
66
+ size: {
67
+ sm: {
68
+ track: string;
69
+ };
70
+ md: {
71
+ track: string;
72
+ };
73
+ lg: {
74
+ track: string;
75
+ };
76
+ };
77
+ /**
78
+ * Unknown duration: the indicator slides back and forth instead of
79
+ * tracking a value. `animate-progress-indeterminate` is defined in
80
+ * theme.css so consumers get it without extra config.
81
+ */
82
+ indeterminate: {
83
+ true: {
84
+ indicator: string;
85
+ };
86
+ };
87
+ }, {
88
+ root: string;
89
+ /** Only rendered when a label or value text is shown. */
90
+ header: string;
91
+ label: string;
92
+ value: string;
93
+ track: string;
94
+ indicator: string;
95
+ }, import("tailwind-variants").TVReturnType<{
96
+ variant: {
97
+ primary: {
98
+ indicator: string;
99
+ };
100
+ success: {
101
+ indicator: string;
102
+ };
103
+ warning: {
104
+ indicator: string;
105
+ };
106
+ danger: {
107
+ indicator: string;
108
+ };
109
+ info: {
110
+ indicator: string;
111
+ };
112
+ };
113
+ size: {
114
+ sm: {
115
+ track: string;
116
+ };
117
+ md: {
118
+ track: string;
119
+ };
120
+ lg: {
121
+ track: string;
122
+ };
123
+ };
124
+ /**
125
+ * Unknown duration: the indicator slides back and forth instead of
126
+ * tracking a value. `animate-progress-indeterminate` is defined in
127
+ * theme.css so consumers get it without extra config.
128
+ */
129
+ indeterminate: {
130
+ true: {
131
+ indicator: string;
132
+ };
133
+ };
134
+ }, {
135
+ root: string;
136
+ /** Only rendered when a label or value text is shown. */
137
+ header: string;
138
+ label: string;
139
+ value: string;
140
+ track: string;
141
+ indicator: string;
142
+ }, undefined, unknown, unknown, undefined>>;
143
+ export type ProgressSlots = keyof ReturnType<typeof progressTheme>;
@@ -0,0 +1,50 @@
1
+ export declare const separatorTheme: import("tailwind-variants").TVReturnType<{
2
+ orientation: {
3
+ horizontal: {
4
+ root: string;
5
+ line: string;
6
+ };
7
+ vertical: {
8
+ root: string;
9
+ line: string;
10
+ };
11
+ };
12
+ }, {
13
+ root: string;
14
+ line: string;
15
+ /** Only rendered when a label is provided. */
16
+ label: string;
17
+ }, undefined, {
18
+ orientation: {
19
+ horizontal: {
20
+ root: string;
21
+ line: string;
22
+ };
23
+ vertical: {
24
+ root: string;
25
+ line: string;
26
+ };
27
+ };
28
+ }, {
29
+ root: string;
30
+ line: string;
31
+ /** Only rendered when a label is provided. */
32
+ label: string;
33
+ }, import("tailwind-variants").TVReturnType<{
34
+ orientation: {
35
+ horizontal: {
36
+ root: string;
37
+ line: string;
38
+ };
39
+ vertical: {
40
+ root: string;
41
+ line: string;
42
+ };
43
+ };
44
+ }, {
45
+ root: string;
46
+ line: string;
47
+ /** Only rendered when a label is provided. */
48
+ label: string;
49
+ }, undefined, unknown, unknown, undefined>>;
50
+ export type SeparatorSlots = keyof ReturnType<typeof separatorTheme>;
@@ -0,0 +1,23 @@
1
+ export declare const skeletonTheme: import("tailwind-variants").TVReturnType<{
2
+ /** `text` sizes itself to the current line height so it sits in copy. */
3
+ variant: {
4
+ text: string;
5
+ rect: string;
6
+ circle: string;
7
+ };
8
+ }, undefined, "animate-pulse bg-muted", {
9
+ /** `text` sizes itself to the current line height so it sits in copy. */
10
+ variant: {
11
+ text: string;
12
+ rect: string;
13
+ circle: string;
14
+ };
15
+ }, undefined, import("tailwind-variants").TVReturnType<{
16
+ /** `text` sizes itself to the current line height so it sits in copy. */
17
+ variant: {
18
+ text: string;
19
+ rect: string;
20
+ circle: string;
21
+ };
22
+ }, undefined, "animate-pulse bg-muted", unknown, unknown, undefined>>;
23
+ export type SkeletonVariants = Parameters<typeof skeletonTheme>[0];