iryx-ui 0.2.0 → 0.3.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 (164) hide show
  1. package/README.md +180 -20
  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/FormField.vue.d.ts +9 -0
  13. package/dist/components/Icon.vue.d.ts +8 -0
  14. package/dist/components/Label.vue.d.ts +6 -0
  15. package/dist/components/Pagination.vue.d.ts +57 -0
  16. package/dist/components/Progress.vue.d.ts +52 -0
  17. package/dist/components/Separator.vue.d.ts +36 -0
  18. package/dist/components/Skeleton.vue.d.ts +20 -0
  19. package/dist/components/Stat.vue.d.ts +57 -0
  20. package/dist/components/Stepper.vue.d.ts +61 -0
  21. package/dist/components/Tabs.vue.d.ts +63 -0
  22. package/dist/components/Toaster.vue.d.ts +28 -0
  23. package/dist/components/Tooltip.vue.d.ts +49 -0
  24. package/dist/components/index.d.ts +15 -0
  25. package/dist/composables/button-group.d.ts +12 -0
  26. package/dist/composables/confirm.d.ts +36 -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 +19 -0
  32. package/dist/index.js +64 -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/{components → packages/iryx-ui/src/components}/FormField.vue_vue_type_script_setup_true_lang.js +5 -3
  57. package/dist/packages/iryx-ui/src/components/Icon.js +5 -0
  58. package/dist/packages/iryx-ui/src/components/Icon.vue_vue_type_script_setup_true_lang.js +26 -0
  59. package/dist/{components → packages/iryx-ui/src/components}/Label.vue_vue_type_script_setup_true_lang.js +2 -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 +64 -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/dropdown-menu.js +9 -0
  84. package/dist/packages/iryx-ui/src/composables/icon.js +6 -0
  85. package/dist/packages/iryx-ui/src/composables/toast.js +38 -0
  86. package/dist/{theme → packages/iryx-ui/src/theme}/badge.js +3 -3
  87. package/dist/packages/iryx-ui/src/theme/breadcrumb.js +12 -0
  88. package/dist/packages/iryx-ui/src/theme/button-group.js +15 -0
  89. package/dist/packages/iryx-ui/src/theme/button.js +59 -0
  90. package/dist/packages/iryx-ui/src/theme/dialog.js +23 -0
  91. package/dist/packages/iryx-ui/src/theme/dropdown-menu.js +16 -0
  92. package/dist/packages/iryx-ui/src/theme/empty-state.js +34 -0
  93. package/dist/packages/iryx-ui/src/theme/form.js +38 -0
  94. package/dist/{theme → packages/iryx-ui/src/theme}/label.js +10 -1
  95. package/dist/packages/iryx-ui/src/theme/pagination.js +29 -0
  96. package/dist/packages/iryx-ui/src/theme/progress.js +33 -0
  97. package/dist/packages/iryx-ui/src/theme/separator.js +22 -0
  98. package/dist/packages/iryx-ui/src/theme/skeleton.js +13 -0
  99. package/dist/packages/iryx-ui/src/theme/stat.js +30 -0
  100. package/dist/packages/iryx-ui/src/theme/stepper.js +25 -0
  101. package/dist/packages/iryx-ui/src/theme/tabs.js +52 -0
  102. package/dist/packages/iryx-ui/src/theme/toast.js +53 -0
  103. package/dist/packages/iryx-ui/src/theme/tooltip.js +8 -0
  104. package/dist/theme/breadcrumb.d.ts +59 -0
  105. package/dist/theme/button-group.d.ts +29 -0
  106. package/dist/theme/button.d.ts +17 -2
  107. package/dist/theme/dialog.d.ts +74 -0
  108. package/dist/theme/dropdown-menu.d.ts +53 -0
  109. package/dist/theme/empty-state.d.ts +86 -0
  110. package/dist/theme/form.d.ts +62 -35
  111. package/dist/theme/index.d.ts +14 -0
  112. package/dist/theme/label.d.ts +18 -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/theme/form.js +0 -14
  132. /package/dist/{components → packages/iryx-ui/src/components}/Alert.js +0 -0
  133. /package/dist/{components → packages/iryx-ui/src/components}/App.js +0 -0
  134. /package/dist/{components → packages/iryx-ui/src/components}/App.vue_vue_type_script_setup_true_lang.js +0 -0
  135. /package/dist/{components → packages/iryx-ui/src/components}/Badge.js +0 -0
  136. /package/dist/{components → packages/iryx-ui/src/components}/Badge.vue_vue_type_script_setup_true_lang.js +0 -0
  137. /package/dist/{components → packages/iryx-ui/src/components}/Button.js +0 -0
  138. /package/dist/{components → packages/iryx-ui/src/components}/Card.js +0 -0
  139. /package/dist/{components → packages/iryx-ui/src/components}/Card.vue_vue_type_script_setup_true_lang.js +0 -0
  140. /package/dist/{components → packages/iryx-ui/src/components}/Checkbox.js +0 -0
  141. /package/dist/{components → packages/iryx-ui/src/components}/Form.js +0 -0
  142. /package/dist/{components → packages/iryx-ui/src/components}/Form.vue_vue_type_script_setup_true_lang.js +0 -0
  143. /package/dist/{components → packages/iryx-ui/src/components}/FormField.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}/RadioGroup.js +0 -0
  148. /package/dist/{components → packages/iryx-ui/src/components}/RadioGroup.vue_vue_type_script_setup_true_lang.js +0 -0
  149. /package/dist/{components → packages/iryx-ui/src/components}/Select.js +0 -0
  150. /package/dist/{components → packages/iryx-ui/src/components}/Switch.js +0 -0
  151. /package/dist/{components → packages/iryx-ui/src/components}/Switch.vue_vue_type_script_setup_true_lang.js +0 -0
  152. /package/dist/{components → packages/iryx-ui/src/components}/Textarea.js +0 -0
  153. /package/dist/{components → packages/iryx-ui/src/components}/Textarea.vue_vue_type_script_setup_true_lang.js +0 -0
  154. /package/dist/{composables → packages/iryx-ui/src/composables}/form.js +0 -0
  155. /package/dist/{config.js → packages/iryx-ui/src/config.js} +0 -0
  156. /package/dist/{plugin.js → packages/iryx-ui/src/plugin.js} +0 -0
  157. /package/dist/{theme → packages/iryx-ui/src/theme}/alert.js +0 -0
  158. /package/dist/{theme → packages/iryx-ui/src/theme}/card.js +0 -0
  159. /package/dist/{theme → packages/iryx-ui/src/theme}/checkbox.js +0 -0
  160. /package/dist/{theme → packages/iryx-ui/src/theme}/input.js +0 -0
  161. /package/dist/{theme → packages/iryx-ui/src/theme}/presets.js +0 -0
  162. /package/dist/{theme → packages/iryx-ui/src/theme}/radio-group.js +0 -0
  163. /package/dist/{theme → packages/iryx-ui/src/theme}/select.js +0 -0
  164. /package/dist/{theme → packages/iryx-ui/src/theme}/switch.js +0 -0
@@ -1,30 +1,26 @@
1
1
  export declare const formFieldTheme: import("tailwind-variants").TVReturnType<{
2
- [key: string]: {
3
- [key: string]: import("tailwind-variants").ClassValue | {
4
- root?: import("tailwind-variants").ClassValue;
5
- description?: import("tailwind-variants").ClassValue;
6
- label?: import("tailwind-variants").ClassValue;
7
- header?: import("tailwind-variants").ClassValue;
8
- error?: import("tailwind-variants").ClassValue;
9
- hint?: import("tailwind-variants").ClassValue;
10
- control?: import("tailwind-variants").ClassValue;
11
- help?: import("tailwind-variants").ClassValue;
2
+ indent: {
3
+ none: {};
4
+ sm: {
5
+ header: string;
6
+ description: string;
7
+ error: string;
8
+ help: string;
12
9
  };
13
- };
14
- } | {
15
- [x: string]: {
16
- [x: string]: import("tailwind-variants").ClassValue | {
17
- root?: import("tailwind-variants").ClassValue;
18
- description?: import("tailwind-variants").ClassValue;
19
- label?: import("tailwind-variants").ClassValue;
20
- header?: import("tailwind-variants").ClassValue;
21
- error?: import("tailwind-variants").ClassValue;
22
- hint?: import("tailwind-variants").ClassValue;
23
- control?: import("tailwind-variants").ClassValue;
24
- help?: import("tailwind-variants").ClassValue;
10
+ md: {
11
+ header: string;
12
+ description: string;
13
+ error: string;
14
+ help: string;
15
+ };
16
+ lg: {
17
+ header: string;
18
+ description: string;
19
+ error: string;
20
+ help: string;
25
21
  };
26
22
  };
27
- } | {}, {
23
+ }, {
28
24
  root: string;
29
25
  header: string;
30
26
  label: string;
@@ -34,19 +30,28 @@ export declare const formFieldTheme: import("tailwind-variants").TVReturnType<{
34
30
  error: string;
35
31
  help: string;
36
32
  }, undefined, {
37
- [key: string]: {
38
- [key: string]: import("tailwind-variants").ClassValue | {
39
- root?: import("tailwind-variants").ClassValue;
40
- description?: import("tailwind-variants").ClassValue;
41
- label?: import("tailwind-variants").ClassValue;
42
- header?: import("tailwind-variants").ClassValue;
43
- error?: import("tailwind-variants").ClassValue;
44
- hint?: import("tailwind-variants").ClassValue;
45
- control?: import("tailwind-variants").ClassValue;
46
- help?: import("tailwind-variants").ClassValue;
33
+ indent: {
34
+ none: {};
35
+ sm: {
36
+ header: string;
37
+ description: string;
38
+ error: string;
39
+ help: string;
40
+ };
41
+ md: {
42
+ header: string;
43
+ description: string;
44
+ error: string;
45
+ help: string;
46
+ };
47
+ lg: {
48
+ header: string;
49
+ description: string;
50
+ error: string;
51
+ help: string;
47
52
  };
48
53
  };
49
- } | {}, {
54
+ }, {
50
55
  root: string;
51
56
  header: string;
52
57
  label: string;
@@ -55,7 +60,29 @@ export declare const formFieldTheme: import("tailwind-variants").TVReturnType<{
55
60
  control: string;
56
61
  error: string;
57
62
  help: string;
58
- }, import("tailwind-variants").TVReturnType<unknown, {
63
+ }, import("tailwind-variants").TVReturnType<{
64
+ indent: {
65
+ none: {};
66
+ sm: {
67
+ header: string;
68
+ description: string;
69
+ error: string;
70
+ help: string;
71
+ };
72
+ md: {
73
+ header: string;
74
+ description: string;
75
+ error: string;
76
+ help: string;
77
+ };
78
+ lg: {
79
+ header: string;
80
+ description: string;
81
+ error: string;
82
+ help: string;
83
+ };
84
+ };
85
+ }, {
59
86
  root: string;
60
87
  header: string;
61
88
  label: string;
@@ -1,11 +1,25 @@
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 './pagination';
8
14
  export * from './presets';
15
+ export * from './progress';
9
16
  export * from './radio-group';
10
17
  export * from './select';
18
+ export * from './separator';
19
+ export * from './skeleton';
20
+ export * from './stat';
21
+ export * from './stepper';
11
22
  export * from './switch';
23
+ export * from './tabs';
24
+ export * from './toast';
25
+ export * from './tooltip';
@@ -2,13 +2,31 @@ export declare const labelTheme: import("tailwind-variants").TVReturnType<{
2
2
  required: {
3
3
  true: string;
4
4
  };
5
+ indent: {
6
+ none: string;
7
+ sm: string;
8
+ md: string;
9
+ lg: string;
10
+ };
5
11
  }, undefined, "inline-flex items-center gap-1 text-sm leading-none font-medium text-foreground select-none peer-disabled:cursor-not-allowed peer-disabled:opacity-50", {
6
12
  required: {
7
13
  true: string;
8
14
  };
15
+ indent: {
16
+ none: string;
17
+ sm: string;
18
+ md: string;
19
+ lg: string;
20
+ };
9
21
  }, undefined, import("tailwind-variants").TVReturnType<{
10
22
  required: {
11
23
  true: string;
12
24
  };
25
+ indent: {
26
+ none: string;
27
+ sm: string;
28
+ md: string;
29
+ lg: string;
30
+ };
13
31
  }, undefined, "inline-flex items-center gap-1 text-sm leading-none font-medium text-foreground select-none peer-disabled:cursor-not-allowed peer-disabled:opacity-50", unknown, unknown, undefined>>;
14
32
  export type LabelVariants = Parameters<typeof labelTheme>[0];
@@ -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];
@@ -0,0 +1,110 @@
1
+ export declare const statTheme: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ sm: {
4
+ value: string;
5
+ };
6
+ md: {
7
+ value: string;
8
+ };
9
+ lg: {
10
+ value: string;
11
+ };
12
+ };
13
+ /**
14
+ * Direction of change. `neutral` is used when the delta is zero, so a flat
15
+ * result does not read as either good or bad.
16
+ */
17
+ trend: {
18
+ up: {
19
+ delta: string;
20
+ };
21
+ down: {
22
+ delta: string;
23
+ };
24
+ neutral: {
25
+ delta: string;
26
+ };
27
+ };
28
+ }, {
29
+ root: string;
30
+ /** Small, uppercase and tracked out, so the value carries the weight. */
31
+ label: string;
32
+ value: string;
33
+ delta: string;
34
+ hint: string;
35
+ /** Column, so the delta always sits on its own line under the value. */
36
+ row: string;
37
+ }, undefined, {
38
+ size: {
39
+ sm: {
40
+ value: string;
41
+ };
42
+ md: {
43
+ value: string;
44
+ };
45
+ lg: {
46
+ value: string;
47
+ };
48
+ };
49
+ /**
50
+ * Direction of change. `neutral` is used when the delta is zero, so a flat
51
+ * result does not read as either good or bad.
52
+ */
53
+ trend: {
54
+ up: {
55
+ delta: string;
56
+ };
57
+ down: {
58
+ delta: string;
59
+ };
60
+ neutral: {
61
+ delta: string;
62
+ };
63
+ };
64
+ }, {
65
+ root: string;
66
+ /** Small, uppercase and tracked out, so the value carries the weight. */
67
+ label: string;
68
+ value: string;
69
+ delta: string;
70
+ hint: string;
71
+ /** Column, so the delta always sits on its own line under the value. */
72
+ row: string;
73
+ }, import("tailwind-variants").TVReturnType<{
74
+ size: {
75
+ sm: {
76
+ value: string;
77
+ };
78
+ md: {
79
+ value: string;
80
+ };
81
+ lg: {
82
+ value: string;
83
+ };
84
+ };
85
+ /**
86
+ * Direction of change. `neutral` is used when the delta is zero, so a flat
87
+ * result does not read as either good or bad.
88
+ */
89
+ trend: {
90
+ up: {
91
+ delta: string;
92
+ };
93
+ down: {
94
+ delta: string;
95
+ };
96
+ neutral: {
97
+ delta: string;
98
+ };
99
+ };
100
+ }, {
101
+ root: string;
102
+ /** Small, uppercase and tracked out, so the value carries the weight. */
103
+ label: string;
104
+ value: string;
105
+ delta: string;
106
+ hint: string;
107
+ /** Column, so the delta always sits on its own line under the value. */
108
+ row: string;
109
+ }, undefined, unknown, unknown, undefined>>;
110
+ export type StatSlots = keyof ReturnType<typeof statTheme>;
@@ -0,0 +1,56 @@
1
+ export declare const stepperTheme: import("tailwind-variants").TVReturnType<{
2
+ orientation: {
3
+ horizontal: {};
4
+ vertical: {
5
+ root: string;
6
+ item: string;
7
+ separator: string;
8
+ };
9
+ };
10
+ }, {
11
+ root: string;
12
+ item: string;
13
+ trigger: string;
14
+ indicator: string;
15
+ content: string;
16
+ title: string;
17
+ description: string;
18
+ separator: string;
19
+ }, undefined, {
20
+ orientation: {
21
+ horizontal: {};
22
+ vertical: {
23
+ root: string;
24
+ item: string;
25
+ separator: string;
26
+ };
27
+ };
28
+ }, {
29
+ root: string;
30
+ item: string;
31
+ trigger: string;
32
+ indicator: string;
33
+ content: string;
34
+ title: string;
35
+ description: string;
36
+ separator: string;
37
+ }, import("tailwind-variants").TVReturnType<{
38
+ orientation: {
39
+ horizontal: {};
40
+ vertical: {
41
+ root: string;
42
+ item: string;
43
+ separator: string;
44
+ };
45
+ };
46
+ }, {
47
+ root: string;
48
+ item: string;
49
+ trigger: string;
50
+ indicator: string;
51
+ content: string;
52
+ title: string;
53
+ description: string;
54
+ separator: string;
55
+ }, undefined, unknown, unknown, undefined>>;
56
+ export type StepperSlots = keyof ReturnType<typeof stepperTheme>;