@jasmine-ui/vue 0.6.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 (177) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +77 -0
  3. package/dist/components/accordion/accordion.composable.d.ts +85 -0
  4. package/dist/components/accordion/accordion.d.ts +112 -0
  5. package/dist/components/accordion/accordion.props.d.ts +44 -0
  6. package/dist/components/accordion/accordion.style.d.ts +202 -0
  7. package/dist/components/accordion/index.d.ts +1 -0
  8. package/dist/components/alert/alert.composable.d.ts +87 -0
  9. package/dist/components/alert/alert.d.ts +89 -0
  10. package/dist/components/alert/alert.props.d.ts +30 -0
  11. package/dist/components/alert/alert.style.d.ts +154 -0
  12. package/dist/components/alert/index.d.ts +1 -0
  13. package/dist/components/avatar/avatar.composable.d.ts +79 -0
  14. package/dist/components/avatar/avatar.d.ts +111 -0
  15. package/dist/components/avatar/avatar.props.d.ts +50 -0
  16. package/dist/components/avatar/avatar.style.d.ts +158 -0
  17. package/dist/components/avatar/index.d.ts +1 -0
  18. package/dist/components/badge/badge.composable.d.ts +58 -0
  19. package/dist/components/badge/badge.d.ts +85 -0
  20. package/dist/components/badge/badge.props.d.ts +35 -0
  21. package/dist/components/badge/badge.style.d.ts +146 -0
  22. package/dist/components/badge/index.d.ts +1 -0
  23. package/dist/components/button/button.composable.d.ts +14 -0
  24. package/dist/components/button/button.d.ts +96 -0
  25. package/dist/components/button/button.props.d.ts +36 -0
  26. package/dist/components/button/button.style.d.ts +88 -0
  27. package/dist/components/button/index.d.ts +1 -0
  28. package/dist/components/checkbox/checkbox.composable.d.ts +56 -0
  29. package/dist/components/checkbox/checkbox.d.ts +54 -0
  30. package/dist/components/checkbox/checkbox.props.d.ts +22 -0
  31. package/dist/components/checkbox/checkbox.style.d.ts +106 -0
  32. package/dist/components/checkbox/index.d.ts +1 -0
  33. package/dist/components/chip/chip.composable.d.ts +51 -0
  34. package/dist/components/chip/chip.d.ts +96 -0
  35. package/dist/components/chip/chip.props.d.ts +35 -0
  36. package/dist/components/chip/chip.style.d.ts +184 -0
  37. package/dist/components/chip/index.d.ts +1 -0
  38. package/dist/components/code-block/code-block.composable.d.ts +16 -0
  39. package/dist/components/code-block/code-block.d.ts +105 -0
  40. package/dist/components/code-block/code-block.props.d.ts +51 -0
  41. package/dist/components/code-block/code-block.style.d.ts +113 -0
  42. package/dist/components/code-block/index.d.ts +1 -0
  43. package/dist/components/combobox/combobox.composable.d.ts +136 -0
  44. package/dist/components/combobox/combobox.d.ts +127 -0
  45. package/dist/components/combobox/combobox.props.d.ts +52 -0
  46. package/dist/components/combobox/combobox.style.d.ts +202 -0
  47. package/dist/components/combobox/index.d.ts +1 -0
  48. package/dist/components/divider/divider.composable.d.ts +13 -0
  49. package/dist/components/divider/divider.d.ts +47 -0
  50. package/dist/components/divider/divider.props.d.ts +15 -0
  51. package/dist/components/divider/divider.style.d.ts +43 -0
  52. package/dist/components/divider/index.d.ts +1 -0
  53. package/dist/components/drawer/drawer.composable.d.ts +82 -0
  54. package/dist/components/drawer/drawer.d.ts +256 -0
  55. package/dist/components/drawer/drawer.props.d.ts +34 -0
  56. package/dist/components/drawer/drawer.style.d.ts +97 -0
  57. package/dist/components/drawer/index.d.ts +1 -0
  58. package/dist/components/dropdown/dropdown.d.ts +102 -0
  59. package/dist/components/dropdown/dropdown.props.d.ts +36 -0
  60. package/dist/components/dropdown/index.d.ts +1 -0
  61. package/dist/components/input/index.d.ts +1 -0
  62. package/dist/components/input/input.composable.d.ts +164 -0
  63. package/dist/components/input/input.d.ts +213 -0
  64. package/dist/components/input/input.props.d.ts +83 -0
  65. package/dist/components/input/input.style.d.ts +187 -0
  66. package/dist/components/kbd/index.d.ts +1 -0
  67. package/dist/components/kbd/kbd.composable.d.ts +40 -0
  68. package/dist/components/kbd/kbd.d.ts +46 -0
  69. package/dist/components/kbd/kbd.props.d.ts +20 -0
  70. package/dist/components/kbd/kbd.style.d.ts +59 -0
  71. package/dist/components/list/index.d.ts +3 -0
  72. package/dist/components/list/list.composable.d.ts +40 -0
  73. package/dist/components/list/list.d.ts +148 -0
  74. package/dist/components/list/list.props.d.ts +40 -0
  75. package/dist/components/list/list.style.d.ts +52 -0
  76. package/dist/components/list-item/index.d.ts +1 -0
  77. package/dist/components/list-item/list-item.composable.d.ts +91 -0
  78. package/dist/components/list-item/list-item.d.ts +115 -0
  79. package/dist/components/list-item/list-item.props.d.ts +43 -0
  80. package/dist/components/list-item/list-item.style.d.ts +139 -0
  81. package/dist/components/modal/index.d.ts +1 -0
  82. package/dist/components/modal/modal.composable.d.ts +114 -0
  83. package/dist/components/modal/modal.d.ts +274 -0
  84. package/dist/components/modal/modal.props.d.ts +44 -0
  85. package/dist/components/modal/modal.style.d.ts +190 -0
  86. package/dist/components/pagination/index.d.ts +1 -0
  87. package/dist/components/pagination/pagination.composable.d.ts +87 -0
  88. package/dist/components/pagination/pagination.d.ts +150 -0
  89. package/dist/components/pagination/pagination.props.d.ts +42 -0
  90. package/dist/components/pagination/pagination.style.d.ts +196 -0
  91. package/dist/components/popover/index.d.ts +1 -0
  92. package/dist/components/popover/popover.composable.d.ts +42 -0
  93. package/dist/components/popover/popover.d.ts +142 -0
  94. package/dist/components/popover/popover.props.d.ts +51 -0
  95. package/dist/components/popover/popover.style.d.ts +28 -0
  96. package/dist/components/popover-list/index.d.ts +1 -0
  97. package/dist/components/popover-list/popover-list.d.ts +158 -0
  98. package/dist/components/popover-list/popover-list.props.d.ts +73 -0
  99. package/dist/components/radio-group/index.d.ts +2 -0
  100. package/dist/components/radio-group/radio-group.composable.d.ts +13 -0
  101. package/dist/components/radio-group/radio-group.d.ts +80 -0
  102. package/dist/components/radio-group/radio-group.props.d.ts +28 -0
  103. package/dist/components/radio-group/radio-group.style.d.ts +16 -0
  104. package/dist/components/radio-group/radio.composable.d.ts +45 -0
  105. package/dist/components/radio-group/radio.d.ts +64 -0
  106. package/dist/components/radio-group/radio.props.d.ts +23 -0
  107. package/dist/components/radio-group/radio.style.d.ts +103 -0
  108. package/dist/components/select/index.d.ts +1 -0
  109. package/dist/components/select/select.composable.d.ts +115 -0
  110. package/dist/components/select/select.d.ts +123 -0
  111. package/dist/components/select/select.props.d.ts +52 -0
  112. package/dist/components/select/select.style.d.ts +199 -0
  113. package/dist/components/spinner/index.d.ts +1 -0
  114. package/dist/components/spinner/spinner.composable.d.ts +29 -0
  115. package/dist/components/spinner/spinner.d.ts +23 -0
  116. package/dist/components/spinner/spinner.props.d.ts +12 -0
  117. package/dist/components/spinner/spinner.style.d.ts +97 -0
  118. package/dist/components/switch/index.d.ts +1 -0
  119. package/dist/components/switch/switch.composable.d.ts +76 -0
  120. package/dist/components/switch/switch.d.ts +100 -0
  121. package/dist/components/switch/switch.props.d.ts +37 -0
  122. package/dist/components/switch/switch.style.d.ts +196 -0
  123. package/dist/components/table/index.d.ts +1 -0
  124. package/dist/components/table/table.composable.d.ts +162 -0
  125. package/dist/components/table/table.d.ts +162 -0
  126. package/dist/components/table/table.props.d.ts +56 -0
  127. package/dist/components/table/table.style.d.ts +193 -0
  128. package/dist/components/tabs/index.d.ts +1 -0
  129. package/dist/components/tabs/tabs.composable.d.ts +93 -0
  130. package/dist/components/tabs/tabs.d.ts +121 -0
  131. package/dist/components/tabs/tabs.props.d.ts +48 -0
  132. package/dist/components/tabs/tabs.style.d.ts +253 -0
  133. package/dist/components/text/index.d.ts +1 -0
  134. package/dist/components/text/text.composable.d.ts +12 -0
  135. package/dist/components/text/text.d.ts +56 -0
  136. package/dist/components/text/text.props.d.ts +19 -0
  137. package/dist/components/text/text.style.d.ts +83 -0
  138. package/dist/components/textarea/index.d.ts +1 -0
  139. package/dist/components/textarea/textarea.composable.d.ts +149 -0
  140. package/dist/components/textarea/textarea.d.ts +250 -0
  141. package/dist/components/textarea/textarea.props.d.ts +99 -0
  142. package/dist/components/textarea/textarea.style.d.ts +184 -0
  143. package/dist/components/toast/index.d.ts +2 -0
  144. package/dist/components/toast/toast-provider.d.ts +47 -0
  145. package/dist/components/toast/toast.composable.d.ts +16 -0
  146. package/dist/components/toast/toast.props.d.ts +14 -0
  147. package/dist/components/toast/toast.provider.d.ts +48 -0
  148. package/dist/components/toast/toast.style.d.ts +76 -0
  149. package/dist/components/tooltip/index.d.ts +1 -0
  150. package/dist/components/tooltip/tooltip.composable.d.ts +85 -0
  151. package/dist/components/tooltip/tooltip.d.ts +119 -0
  152. package/dist/components/tooltip/tooltip.props.d.ts +53 -0
  153. package/dist/components/tooltip/tooltip.style.d.ts +32 -0
  154. package/dist/composables/dismiss-shake.composable.d.ts +13 -0
  155. package/dist/css-BRq03xhW.js +3 -0
  156. package/dist/css-BT3ulMUY.js +2 -0
  157. package/dist/html-CJhGHSsv.js +2 -0
  158. package/dist/html-DM_Fd1As.js +10 -0
  159. package/dist/index.d.ts +29 -0
  160. package/dist/jasmine-ui.css +3 -0
  161. package/dist/jasmine-ui.js +11858 -0
  162. package/dist/javascript-CkfBz3il.js +3 -0
  163. package/dist/javascript-CwUFKmKO.js +2 -0
  164. package/dist/json-BPXqV38U.js +3 -0
  165. package/dist/json-DHmMgjNi.js +2 -0
  166. package/dist/jsonc-DVpPCz25.js +3 -0
  167. package/dist/jsx-CHO6wZNT.js +3 -0
  168. package/dist/main.d.ts +1 -0
  169. package/dist/rust-qf9jV5qU.js +3 -0
  170. package/dist/styles/shiki-theme.d.ts +11 -0
  171. package/dist/types/common.d.ts +89 -0
  172. package/dist/types/shared-props.d.ts +142 -0
  173. package/dist/typescript-Cil9iWXl.js +3 -0
  174. package/dist/typescript-CoNvJdtl.js +2 -0
  175. package/dist/utils/shiki.d.ts +12 -0
  176. package/dist/vue-Bgv7yiBd.js +21 -0
  177. package/package.json +133 -0
@@ -0,0 +1,193 @@
1
+ export declare const tableVariants: import('tailwind-variants').TVReturnType<{
2
+ variant: {
3
+ flat: {
4
+ base: string;
5
+ };
6
+ bordered: {
7
+ base: string;
8
+ };
9
+ striped: {
10
+ base: string;
11
+ };
12
+ };
13
+ color: {
14
+ default: {
15
+ base: string;
16
+ };
17
+ primary: {
18
+ base: string;
19
+ };
20
+ danger: {
21
+ base: string;
22
+ };
23
+ success: {
24
+ base: string;
25
+ };
26
+ warning: {
27
+ base: string;
28
+ };
29
+ };
30
+ size: {
31
+ sm: {
32
+ headerCell: string;
33
+ cell: string;
34
+ };
35
+ md: {
36
+ headerCell: string;
37
+ cell: string;
38
+ };
39
+ lg: {
40
+ headerCell: string;
41
+ cell: string;
42
+ };
43
+ };
44
+ selectionMode: {
45
+ none: {};
46
+ single: {
47
+ base: string;
48
+ };
49
+ multiple: {
50
+ base: string;
51
+ };
52
+ };
53
+ }, {
54
+ base: string;
55
+ wrapper: string;
56
+ thead: string;
57
+ headerRow: string;
58
+ headerCell: string;
59
+ tbody: string;
60
+ row: string;
61
+ cell: string;
62
+ sortIcon: string;
63
+ loadingOverlay: string;
64
+ emptyState: string;
65
+ }, undefined, {
66
+ variant: {
67
+ flat: {
68
+ base: string;
69
+ };
70
+ bordered: {
71
+ base: string;
72
+ };
73
+ striped: {
74
+ base: string;
75
+ };
76
+ };
77
+ color: {
78
+ default: {
79
+ base: string;
80
+ };
81
+ primary: {
82
+ base: string;
83
+ };
84
+ danger: {
85
+ base: string;
86
+ };
87
+ success: {
88
+ base: string;
89
+ };
90
+ warning: {
91
+ base: string;
92
+ };
93
+ };
94
+ size: {
95
+ sm: {
96
+ headerCell: string;
97
+ cell: string;
98
+ };
99
+ md: {
100
+ headerCell: string;
101
+ cell: string;
102
+ };
103
+ lg: {
104
+ headerCell: string;
105
+ cell: string;
106
+ };
107
+ };
108
+ selectionMode: {
109
+ none: {};
110
+ single: {
111
+ base: string;
112
+ };
113
+ multiple: {
114
+ base: string;
115
+ };
116
+ };
117
+ }, {
118
+ base: string;
119
+ wrapper: string;
120
+ thead: string;
121
+ headerRow: string;
122
+ headerCell: string;
123
+ tbody: string;
124
+ row: string;
125
+ cell: string;
126
+ sortIcon: string;
127
+ loadingOverlay: string;
128
+ emptyState: string;
129
+ }, import('tailwind-variants').TVReturnType<{
130
+ variant: {
131
+ flat: {
132
+ base: string;
133
+ };
134
+ bordered: {
135
+ base: string;
136
+ };
137
+ striped: {
138
+ base: string;
139
+ };
140
+ };
141
+ color: {
142
+ default: {
143
+ base: string;
144
+ };
145
+ primary: {
146
+ base: string;
147
+ };
148
+ danger: {
149
+ base: string;
150
+ };
151
+ success: {
152
+ base: string;
153
+ };
154
+ warning: {
155
+ base: string;
156
+ };
157
+ };
158
+ size: {
159
+ sm: {
160
+ headerCell: string;
161
+ cell: string;
162
+ };
163
+ md: {
164
+ headerCell: string;
165
+ cell: string;
166
+ };
167
+ lg: {
168
+ headerCell: string;
169
+ cell: string;
170
+ };
171
+ };
172
+ selectionMode: {
173
+ none: {};
174
+ single: {
175
+ base: string;
176
+ };
177
+ multiple: {
178
+ base: string;
179
+ };
180
+ };
181
+ }, {
182
+ base: string;
183
+ wrapper: string;
184
+ thead: string;
185
+ headerRow: string;
186
+ headerCell: string;
187
+ tbody: string;
188
+ row: string;
189
+ cell: string;
190
+ sortIcon: string;
191
+ loadingOverlay: string;
192
+ emptyState: string;
193
+ }, undefined, unknown, unknown, undefined>>;
@@ -0,0 +1 @@
1
+ export { default as Tabs } from './tabs';
@@ -0,0 +1,93 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ import { tabsProps } from './tabs.props';
3
+ type TabsProps = ExtractPropTypes<typeof tabsProps>;
4
+ /**
5
+ * Composable that handles Tabs component logic.
6
+ * Generates TV classes from variant props.
7
+ */
8
+ export declare const useTabs: (props: TabsProps) => {
9
+ classes: import('vue').ComputedRef<{
10
+ base: (slotProps?: ({
11
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
12
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
13
+ size?: "md" | "sm" | "lg" | undefined;
14
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
15
+ orientation?: "vertical" | "horizontal" | undefined;
16
+ fullWidth?: boolean | undefined;
17
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
18
+ list: (slotProps?: ({
19
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
20
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
21
+ size?: "md" | "sm" | "lg" | undefined;
22
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
23
+ orientation?: "vertical" | "horizontal" | undefined;
24
+ fullWidth?: boolean | undefined;
25
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
26
+ trigger: (slotProps?: ({
27
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
28
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
29
+ size?: "md" | "sm" | "lg" | undefined;
30
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
31
+ orientation?: "vertical" | "horizontal" | undefined;
32
+ fullWidth?: boolean | undefined;
33
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
34
+ indicator: (slotProps?: ({
35
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
36
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
37
+ size?: "md" | "sm" | "lg" | undefined;
38
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
39
+ orientation?: "vertical" | "horizontal" | undefined;
40
+ fullWidth?: boolean | undefined;
41
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
42
+ content: (slotProps?: ({
43
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
44
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
45
+ size?: "md" | "sm" | "lg" | undefined;
46
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
47
+ orientation?: "vertical" | "horizontal" | undefined;
48
+ fullWidth?: boolean | undefined;
49
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
50
+ } & {
51
+ base: (slotProps?: ({
52
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
53
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
54
+ size?: "md" | "sm" | "lg" | undefined;
55
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
56
+ orientation?: "vertical" | "horizontal" | undefined;
57
+ fullWidth?: boolean | undefined;
58
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
59
+ list: (slotProps?: ({
60
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
61
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
62
+ size?: "md" | "sm" | "lg" | undefined;
63
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
64
+ orientation?: "vertical" | "horizontal" | undefined;
65
+ fullWidth?: boolean | undefined;
66
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
67
+ trigger: (slotProps?: ({
68
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
69
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
70
+ size?: "md" | "sm" | "lg" | undefined;
71
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
72
+ orientation?: "vertical" | "horizontal" | undefined;
73
+ fullWidth?: boolean | undefined;
74
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
75
+ indicator: (slotProps?: ({
76
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
77
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
78
+ size?: "md" | "sm" | "lg" | undefined;
79
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
80
+ orientation?: "vertical" | "horizontal" | undefined;
81
+ fullWidth?: boolean | undefined;
82
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
83
+ content: (slotProps?: ({
84
+ variant?: "bordered" | "solid" | "light" | "underlined" | undefined;
85
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
86
+ size?: "md" | "sm" | "lg" | undefined;
87
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
88
+ orientation?: "vertical" | "horizontal" | undefined;
89
+ fullWidth?: boolean | undefined;
90
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
91
+ } & {}>;
92
+ };
93
+ export {};
@@ -0,0 +1,121 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: Partial<Record<string, (_: {}) => any>>;
4
+ refs: {};
5
+ rootEl: any;
6
+ };
7
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
8
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
9
+ items: {
10
+ type: import('vue').PropType<import('../..').TabItem[]>;
11
+ default: () => never[];
12
+ };
13
+ modelValue: {
14
+ type: import('vue').PropType<string | number | undefined>;
15
+ default: undefined;
16
+ };
17
+ defaultValue: {
18
+ type: import('vue').PropType<string | number | undefined>;
19
+ default: undefined;
20
+ };
21
+ variant: {
22
+ type: import('vue').PropType<import('../..').TabVariant>;
23
+ default: "solid";
24
+ };
25
+ color: {
26
+ default: "primary";
27
+ type: import('vue').PropType<import('../..').Color>;
28
+ };
29
+ size: {
30
+ type: import('vue').PropType<import('../..').Size>;
31
+ default: "md";
32
+ };
33
+ radius: {
34
+ type: import('vue').PropType<import('../..').Radius>;
35
+ default: "md";
36
+ };
37
+ isDisabled: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ fullWidth: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ destroyOnHide: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ orientation: {
50
+ default: "horizontal";
51
+ type: import('vue').PropType<import('../..').Orientation>;
52
+ };
53
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
54
+ "update:modelValue": (value: string | number) => any;
55
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
56
+ items: {
57
+ type: import('vue').PropType<import('../..').TabItem[]>;
58
+ default: () => never[];
59
+ };
60
+ modelValue: {
61
+ type: import('vue').PropType<string | number | undefined>;
62
+ default: undefined;
63
+ };
64
+ defaultValue: {
65
+ type: import('vue').PropType<string | number | undefined>;
66
+ default: undefined;
67
+ };
68
+ variant: {
69
+ type: import('vue').PropType<import('../..').TabVariant>;
70
+ default: "solid";
71
+ };
72
+ color: {
73
+ default: "primary";
74
+ type: import('vue').PropType<import('../..').Color>;
75
+ };
76
+ size: {
77
+ type: import('vue').PropType<import('../..').Size>;
78
+ default: "md";
79
+ };
80
+ radius: {
81
+ type: import('vue').PropType<import('../..').Radius>;
82
+ default: "md";
83
+ };
84
+ isDisabled: {
85
+ type: BooleanConstructor;
86
+ default: boolean;
87
+ };
88
+ fullWidth: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
92
+ destroyOnHide: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ orientation: {
97
+ default: "horizontal";
98
+ type: import('vue').PropType<import('../..').Orientation>;
99
+ };
100
+ }>> & Readonly<{
101
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
102
+ }>, {
103
+ variant: import('../..').TabVariant;
104
+ color: import('../..').Color;
105
+ size: import('../..').Size;
106
+ radius: import('../..').Radius;
107
+ items: import('../..').TabItem[];
108
+ modelValue: string | number | undefined;
109
+ defaultValue: string | number | undefined;
110
+ isDisabled: boolean;
111
+ orientation: import('../..').Orientation;
112
+ fullWidth: boolean;
113
+ destroyOnHide: boolean;
114
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
115
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
116
+ export default _default;
117
+ type __VLS_WithTemplateSlots<T, S> = T & {
118
+ new (): {
119
+ $slots: S;
120
+ };
121
+ };
@@ -0,0 +1,48 @@
1
+ import { PropType } from 'vue';
2
+ import { TabItem } from '../../types/common';
3
+ export declare const tabsProps: {
4
+ items: {
5
+ type: PropType<TabItem[]>;
6
+ default: () => never[];
7
+ };
8
+ modelValue: {
9
+ type: PropType<string | number | undefined>;
10
+ default: undefined;
11
+ };
12
+ defaultValue: {
13
+ type: PropType<string | number | undefined>;
14
+ default: undefined;
15
+ };
16
+ variant: {
17
+ type: PropType<import('../../types/common').TabVariant>;
18
+ default: "solid";
19
+ };
20
+ color: {
21
+ default: "primary";
22
+ type: PropType<import('../../types/common').Color>;
23
+ };
24
+ size: {
25
+ type: PropType<import('../../types/common').Size>;
26
+ default: "md";
27
+ };
28
+ radius: {
29
+ type: PropType<import('../../types/common').Radius>;
30
+ default: "md";
31
+ };
32
+ isDisabled: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ fullWidth: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ destroyOnHide: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ orientation: {
45
+ default: "horizontal";
46
+ type: PropType<import('../../types/common').Orientation>;
47
+ };
48
+ };
@@ -0,0 +1,253 @@
1
+ export declare const tabsVariants: import('tailwind-variants').TVReturnType<{
2
+ variant: {
3
+ solid: {
4
+ list: string;
5
+ };
6
+ bordered: {
7
+ list: string;
8
+ };
9
+ light: {
10
+ list: string;
11
+ };
12
+ underlined: {
13
+ list: string;
14
+ };
15
+ };
16
+ color: {
17
+ default: {
18
+ list: string;
19
+ };
20
+ primary: {
21
+ list: string;
22
+ };
23
+ danger: {
24
+ list: string;
25
+ };
26
+ success: {
27
+ list: string;
28
+ };
29
+ warning: {
30
+ list: string;
31
+ };
32
+ };
33
+ size: {
34
+ sm: {
35
+ list: string;
36
+ trigger: string;
37
+ };
38
+ md: {
39
+ list: string;
40
+ trigger: string;
41
+ };
42
+ lg: {
43
+ list: string;
44
+ trigger: string;
45
+ };
46
+ };
47
+ radius: {
48
+ none: {
49
+ list: string;
50
+ };
51
+ sm: {
52
+ list: string;
53
+ };
54
+ md: {
55
+ list: string;
56
+ };
57
+ lg: {
58
+ list: string;
59
+ };
60
+ full: {
61
+ list: string;
62
+ };
63
+ };
64
+ fullWidth: {
65
+ true: {
66
+ base: string;
67
+ list: string;
68
+ trigger: string;
69
+ };
70
+ false: {};
71
+ };
72
+ orientation: {
73
+ horizontal: {};
74
+ vertical: {
75
+ base: string;
76
+ list: string;
77
+ };
78
+ };
79
+ }, {
80
+ base: string;
81
+ list: string;
82
+ trigger: string;
83
+ indicator: string;
84
+ content: string;
85
+ }, undefined, {
86
+ variant: {
87
+ solid: {
88
+ list: string;
89
+ };
90
+ bordered: {
91
+ list: string;
92
+ };
93
+ light: {
94
+ list: string;
95
+ };
96
+ underlined: {
97
+ list: string;
98
+ };
99
+ };
100
+ color: {
101
+ default: {
102
+ list: string;
103
+ };
104
+ primary: {
105
+ list: string;
106
+ };
107
+ danger: {
108
+ list: string;
109
+ };
110
+ success: {
111
+ list: string;
112
+ };
113
+ warning: {
114
+ list: string;
115
+ };
116
+ };
117
+ size: {
118
+ sm: {
119
+ list: string;
120
+ trigger: string;
121
+ };
122
+ md: {
123
+ list: string;
124
+ trigger: string;
125
+ };
126
+ lg: {
127
+ list: string;
128
+ trigger: string;
129
+ };
130
+ };
131
+ radius: {
132
+ none: {
133
+ list: string;
134
+ };
135
+ sm: {
136
+ list: string;
137
+ };
138
+ md: {
139
+ list: string;
140
+ };
141
+ lg: {
142
+ list: string;
143
+ };
144
+ full: {
145
+ list: string;
146
+ };
147
+ };
148
+ fullWidth: {
149
+ true: {
150
+ base: string;
151
+ list: string;
152
+ trigger: string;
153
+ };
154
+ false: {};
155
+ };
156
+ orientation: {
157
+ horizontal: {};
158
+ vertical: {
159
+ base: string;
160
+ list: string;
161
+ };
162
+ };
163
+ }, {
164
+ base: string;
165
+ list: string;
166
+ trigger: string;
167
+ indicator: string;
168
+ content: string;
169
+ }, import('tailwind-variants').TVReturnType<{
170
+ variant: {
171
+ solid: {
172
+ list: string;
173
+ };
174
+ bordered: {
175
+ list: string;
176
+ };
177
+ light: {
178
+ list: string;
179
+ };
180
+ underlined: {
181
+ list: string;
182
+ };
183
+ };
184
+ color: {
185
+ default: {
186
+ list: string;
187
+ };
188
+ primary: {
189
+ list: string;
190
+ };
191
+ danger: {
192
+ list: string;
193
+ };
194
+ success: {
195
+ list: string;
196
+ };
197
+ warning: {
198
+ list: string;
199
+ };
200
+ };
201
+ size: {
202
+ sm: {
203
+ list: string;
204
+ trigger: string;
205
+ };
206
+ md: {
207
+ list: string;
208
+ trigger: string;
209
+ };
210
+ lg: {
211
+ list: string;
212
+ trigger: string;
213
+ };
214
+ };
215
+ radius: {
216
+ none: {
217
+ list: string;
218
+ };
219
+ sm: {
220
+ list: string;
221
+ };
222
+ md: {
223
+ list: string;
224
+ };
225
+ lg: {
226
+ list: string;
227
+ };
228
+ full: {
229
+ list: string;
230
+ };
231
+ };
232
+ fullWidth: {
233
+ true: {
234
+ base: string;
235
+ list: string;
236
+ trigger: string;
237
+ };
238
+ false: {};
239
+ };
240
+ orientation: {
241
+ horizontal: {};
242
+ vertical: {
243
+ base: string;
244
+ list: string;
245
+ };
246
+ };
247
+ }, {
248
+ base: string;
249
+ list: string;
250
+ trigger: string;
251
+ indicator: string;
252
+ content: string;
253
+ }, undefined, unknown, unknown, undefined>>;