@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,190 @@
1
+ export declare const modalVariants: 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
+ fullscreen: {
13
+ content: string;
14
+ };
15
+ };
16
+ radius: {
17
+ none: {
18
+ content: string;
19
+ };
20
+ sm: {
21
+ content: string;
22
+ };
23
+ md: {
24
+ content: string;
25
+ };
26
+ lg: {
27
+ content: string;
28
+ };
29
+ full: {
30
+ content: string;
31
+ };
32
+ };
33
+ placement: {
34
+ center: {
35
+ content: string;
36
+ };
37
+ bottom: {
38
+ content: string;
39
+ };
40
+ auto: {
41
+ content: string;
42
+ };
43
+ };
44
+ backdrop: {
45
+ transparent: {
46
+ overlay: string;
47
+ };
48
+ dimmed: {
49
+ overlay: string;
50
+ };
51
+ blur: {
52
+ overlay: string;
53
+ };
54
+ };
55
+ }, {
56
+ overlay: string;
57
+ content: string;
58
+ close: string;
59
+ header: string;
60
+ title: string;
61
+ description: string;
62
+ body: string;
63
+ footer: string;
64
+ }, undefined, {
65
+ size: {
66
+ sm: {
67
+ content: string;
68
+ };
69
+ md: {
70
+ content: string;
71
+ };
72
+ lg: {
73
+ content: string;
74
+ };
75
+ fullscreen: {
76
+ content: string;
77
+ };
78
+ };
79
+ radius: {
80
+ none: {
81
+ content: string;
82
+ };
83
+ sm: {
84
+ content: string;
85
+ };
86
+ md: {
87
+ content: string;
88
+ };
89
+ lg: {
90
+ content: string;
91
+ };
92
+ full: {
93
+ content: string;
94
+ };
95
+ };
96
+ placement: {
97
+ center: {
98
+ content: string;
99
+ };
100
+ bottom: {
101
+ content: string;
102
+ };
103
+ auto: {
104
+ content: string;
105
+ };
106
+ };
107
+ backdrop: {
108
+ transparent: {
109
+ overlay: string;
110
+ };
111
+ dimmed: {
112
+ overlay: string;
113
+ };
114
+ blur: {
115
+ overlay: string;
116
+ };
117
+ };
118
+ }, {
119
+ overlay: string;
120
+ content: string;
121
+ close: string;
122
+ header: string;
123
+ title: string;
124
+ description: string;
125
+ body: string;
126
+ footer: string;
127
+ }, import('tailwind-variants').TVReturnType<{
128
+ size: {
129
+ sm: {
130
+ content: string;
131
+ };
132
+ md: {
133
+ content: string;
134
+ };
135
+ lg: {
136
+ content: string;
137
+ };
138
+ fullscreen: {
139
+ content: string;
140
+ };
141
+ };
142
+ radius: {
143
+ none: {
144
+ content: string;
145
+ };
146
+ sm: {
147
+ content: string;
148
+ };
149
+ md: {
150
+ content: string;
151
+ };
152
+ lg: {
153
+ content: string;
154
+ };
155
+ full: {
156
+ content: string;
157
+ };
158
+ };
159
+ placement: {
160
+ center: {
161
+ content: string;
162
+ };
163
+ bottom: {
164
+ content: string;
165
+ };
166
+ auto: {
167
+ content: string;
168
+ };
169
+ };
170
+ backdrop: {
171
+ transparent: {
172
+ overlay: string;
173
+ };
174
+ dimmed: {
175
+ overlay: string;
176
+ };
177
+ blur: {
178
+ overlay: string;
179
+ };
180
+ };
181
+ }, {
182
+ overlay: string;
183
+ content: string;
184
+ close: string;
185
+ header: string;
186
+ title: string;
187
+ description: string;
188
+ body: string;
189
+ footer: string;
190
+ }, undefined, unknown, unknown, undefined>>;
@@ -0,0 +1 @@
1
+ export { default as Pagination } from './pagination';
@@ -0,0 +1,87 @@
1
+ import { CSSProperties, ExtractPropTypes, Ref } from 'vue';
2
+ import { paginationProps } from './pagination.props';
3
+ type PaginationProps = ExtractPropTypes<typeof paginationProps>;
4
+ /**
5
+ * Composable that handles Pagination component logic.
6
+ * Returns computed classes, page count, indicator state, and indicator updater.
7
+ */
8
+ export declare const usePagination: (props: PaginationProps, listRef?: Ref<HTMLElement | undefined>) => {
9
+ classes: import('vue').ComputedRef<{
10
+ base: (slotProps?: ({
11
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
12
+ size?: "md" | "sm" | "lg" | undefined;
13
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
14
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
15
+ list: (slotProps?: ({
16
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
17
+ size?: "md" | "sm" | "lg" | undefined;
18
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
19
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
20
+ item: (slotProps?: ({
21
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
22
+ size?: "md" | "sm" | "lg" | undefined;
23
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
24
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
25
+ indicator: (slotProps?: ({
26
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
27
+ size?: "md" | "sm" | "lg" | undefined;
28
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
29
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
30
+ ellipsis: (slotProps?: ({
31
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
32
+ size?: "md" | "sm" | "lg" | undefined;
33
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
34
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
35
+ control: (slotProps?: ({
36
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
37
+ size?: "md" | "sm" | "lg" | undefined;
38
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
39
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
40
+ edge: (slotProps?: ({
41
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
42
+ size?: "md" | "sm" | "lg" | undefined;
43
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
44
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
45
+ } & {
46
+ base: (slotProps?: ({
47
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
48
+ size?: "md" | "sm" | "lg" | undefined;
49
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
50
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
51
+ list: (slotProps?: ({
52
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
53
+ size?: "md" | "sm" | "lg" | undefined;
54
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
55
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
56
+ item: (slotProps?: ({
57
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
58
+ size?: "md" | "sm" | "lg" | undefined;
59
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
60
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
61
+ indicator: (slotProps?: ({
62
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
63
+ size?: "md" | "sm" | "lg" | undefined;
64
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
65
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
66
+ ellipsis: (slotProps?: ({
67
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
68
+ size?: "md" | "sm" | "lg" | undefined;
69
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
70
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
71
+ control: (slotProps?: ({
72
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
73
+ size?: "md" | "sm" | "lg" | undefined;
74
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
75
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
76
+ edge: (slotProps?: ({
77
+ color?: "default" | "primary" | "danger" | "success" | "warning" | undefined;
78
+ size?: "md" | "sm" | "lg" | undefined;
79
+ radius?: "md" | "sm" | "lg" | "none" | "full" | undefined;
80
+ } & import('tailwind-variants').ClassProp<import('tailwind-merge').ClassNameValue>) | undefined) => string;
81
+ } & {}>;
82
+ pageCount: import('vue').ComputedRef<number>;
83
+ indicatorCssVars: import('vue').ComputedRef<CSSProperties>;
84
+ hasAppeared: Ref<boolean, boolean>;
85
+ updateIndicator: () => void;
86
+ };
87
+ export {};
@@ -0,0 +1,150 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ modelValue: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ total: {
7
+ type: NumberConstructor;
8
+ required: true;
9
+ };
10
+ perPage: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ siblings: {
15
+ type: NumberConstructor;
16
+ default: number;
17
+ };
18
+ showControls: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ showEdges: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ color: {
27
+ default: "default";
28
+ type: import('vue').PropType<import('../..').Color>;
29
+ };
30
+ size: {
31
+ type: import('vue').PropType<import('../..').Size>;
32
+ default: "md";
33
+ };
34
+ radius: {
35
+ type: import('vue').PropType<import('../..').Radius>;
36
+ default: "md";
37
+ };
38
+ isDisabled: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
43
+ "update:modelValue": (value: number) => any;
44
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
45
+ modelValue: {
46
+ type: NumberConstructor;
47
+ default: number;
48
+ };
49
+ total: {
50
+ type: NumberConstructor;
51
+ required: true;
52
+ };
53
+ perPage: {
54
+ type: NumberConstructor;
55
+ default: number;
56
+ };
57
+ siblings: {
58
+ type: NumberConstructor;
59
+ default: number;
60
+ };
61
+ showControls: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ showEdges: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ color: {
70
+ default: "default";
71
+ type: import('vue').PropType<import('../..').Color>;
72
+ };
73
+ size: {
74
+ type: import('vue').PropType<import('../..').Size>;
75
+ default: "md";
76
+ };
77
+ radius: {
78
+ type: import('vue').PropType<import('../..').Radius>;
79
+ default: "md";
80
+ };
81
+ isDisabled: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
85
+ }>> & Readonly<{
86
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
87
+ }>, {
88
+ color: import('../..').Color;
89
+ size: import('../..').Size;
90
+ radius: import('../..').Radius;
91
+ modelValue: number;
92
+ isDisabled: boolean;
93
+ perPage: number;
94
+ siblings: number;
95
+ showControls: boolean;
96
+ showEdges: boolean;
97
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
98
+ listComponentRef: ({
99
+ $: import('vue').ComponentInternalInstance;
100
+ $data: {};
101
+ $props: {
102
+ readonly asChild?: boolean | undefined;
103
+ readonly as?: (import('reka-ui').AsTag | import('vue').Component) | undefined;
104
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
105
+ $attrs: import('vue').Attrs;
106
+ $refs: {
107
+ [x: string]: unknown;
108
+ };
109
+ $slots: Readonly<{
110
+ [name: string]: import('vue').Slot<any> | undefined;
111
+ }>;
112
+ $root: import('vue').ComponentPublicInstance | null;
113
+ $parent: import('vue').ComponentPublicInstance | null;
114
+ $host: Element | null;
115
+ $emit: (event: string, ...args: any[]) => void;
116
+ $el: any;
117
+ $options: import('vue').ComponentOptionsBase<Readonly<import('reka-ui').PaginationListProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
118
+ beforeCreate?: (() => void) | (() => void)[];
119
+ created?: (() => void) | (() => void)[];
120
+ beforeMount?: (() => void) | (() => void)[];
121
+ mounted?: (() => void) | (() => void)[];
122
+ beforeUpdate?: (() => void) | (() => void)[];
123
+ updated?: (() => void) | (() => void)[];
124
+ activated?: (() => void) | (() => void)[];
125
+ deactivated?: (() => void) | (() => void)[];
126
+ beforeDestroy?: (() => void) | (() => void)[];
127
+ beforeUnmount?: (() => void) | (() => void)[];
128
+ destroyed?: (() => void) | (() => void)[];
129
+ unmounted?: (() => void) | (() => void)[];
130
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
131
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
132
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
133
+ };
134
+ $forceUpdate: () => void;
135
+ $nextTick: typeof import('vue').nextTick;
136
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends ((...args: any) => infer R) ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
137
+ } & Readonly<{}> & Omit<Readonly<import('reka-ui').PaginationListProps> & Readonly<{}>, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
138
+ $slots: {
139
+ default?: (props: {
140
+ items: ({
141
+ type: "ellipsis";
142
+ } | {
143
+ type: "page";
144
+ value: number;
145
+ })[];
146
+ }) => any;
147
+ };
148
+ }) | null;
149
+ }, any>;
150
+ export default _default;
@@ -0,0 +1,42 @@
1
+ export declare const paginationProps: {
2
+ modelValue: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ total: {
7
+ type: NumberConstructor;
8
+ required: true;
9
+ };
10
+ perPage: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ siblings: {
15
+ type: NumberConstructor;
16
+ default: number;
17
+ };
18
+ showControls: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ showEdges: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ color: {
27
+ default: "default";
28
+ type: import('vue').PropType<import('../..').Color>;
29
+ };
30
+ size: {
31
+ type: import('vue').PropType<import('../..').Size>;
32
+ default: "md";
33
+ };
34
+ radius: {
35
+ type: import('vue').PropType<import('../..').Radius>;
36
+ default: "md";
37
+ };
38
+ isDisabled: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ };
@@ -0,0 +1,196 @@
1
+ export declare const paginationVariants: import('tailwind-variants').TVReturnType<{
2
+ color: {
3
+ default: {
4
+ base: string;
5
+ };
6
+ primary: {
7
+ base: string;
8
+ };
9
+ danger: {
10
+ base: string;
11
+ };
12
+ success: {
13
+ base: string;
14
+ };
15
+ warning: {
16
+ base: string;
17
+ };
18
+ };
19
+ size: {
20
+ sm: {
21
+ item: string;
22
+ control: string;
23
+ edge: string;
24
+ };
25
+ md: {
26
+ item: string;
27
+ control: string;
28
+ edge: string;
29
+ };
30
+ lg: {
31
+ item: string;
32
+ control: string;
33
+ edge: string;
34
+ };
35
+ };
36
+ radius: {
37
+ none: {
38
+ item: string;
39
+ indicator: string;
40
+ };
41
+ sm: {
42
+ item: string;
43
+ indicator: string;
44
+ };
45
+ md: {
46
+ item: string;
47
+ indicator: string;
48
+ };
49
+ lg: {
50
+ item: string;
51
+ indicator: string;
52
+ };
53
+ full: {
54
+ item: string;
55
+ indicator: string;
56
+ };
57
+ };
58
+ }, {
59
+ base: string;
60
+ list: string;
61
+ item: string;
62
+ indicator: string;
63
+ ellipsis: string;
64
+ control: string;
65
+ edge: string;
66
+ }, undefined, {
67
+ color: {
68
+ default: {
69
+ base: string;
70
+ };
71
+ primary: {
72
+ base: string;
73
+ };
74
+ danger: {
75
+ base: string;
76
+ };
77
+ success: {
78
+ base: string;
79
+ };
80
+ warning: {
81
+ base: string;
82
+ };
83
+ };
84
+ size: {
85
+ sm: {
86
+ item: string;
87
+ control: string;
88
+ edge: string;
89
+ };
90
+ md: {
91
+ item: string;
92
+ control: string;
93
+ edge: string;
94
+ };
95
+ lg: {
96
+ item: string;
97
+ control: string;
98
+ edge: string;
99
+ };
100
+ };
101
+ radius: {
102
+ none: {
103
+ item: string;
104
+ indicator: string;
105
+ };
106
+ sm: {
107
+ item: string;
108
+ indicator: string;
109
+ };
110
+ md: {
111
+ item: string;
112
+ indicator: string;
113
+ };
114
+ lg: {
115
+ item: string;
116
+ indicator: string;
117
+ };
118
+ full: {
119
+ item: string;
120
+ indicator: string;
121
+ };
122
+ };
123
+ }, {
124
+ base: string;
125
+ list: string;
126
+ item: string;
127
+ indicator: string;
128
+ ellipsis: string;
129
+ control: string;
130
+ edge: string;
131
+ }, import('tailwind-variants').TVReturnType<{
132
+ color: {
133
+ default: {
134
+ base: string;
135
+ };
136
+ primary: {
137
+ base: string;
138
+ };
139
+ danger: {
140
+ base: string;
141
+ };
142
+ success: {
143
+ base: string;
144
+ };
145
+ warning: {
146
+ base: string;
147
+ };
148
+ };
149
+ size: {
150
+ sm: {
151
+ item: string;
152
+ control: string;
153
+ edge: string;
154
+ };
155
+ md: {
156
+ item: string;
157
+ control: string;
158
+ edge: string;
159
+ };
160
+ lg: {
161
+ item: string;
162
+ control: string;
163
+ edge: string;
164
+ };
165
+ };
166
+ radius: {
167
+ none: {
168
+ item: string;
169
+ indicator: string;
170
+ };
171
+ sm: {
172
+ item: string;
173
+ indicator: string;
174
+ };
175
+ md: {
176
+ item: string;
177
+ indicator: string;
178
+ };
179
+ lg: {
180
+ item: string;
181
+ indicator: string;
182
+ };
183
+ full: {
184
+ item: string;
185
+ indicator: string;
186
+ };
187
+ };
188
+ }, {
189
+ base: string;
190
+ list: string;
191
+ item: string;
192
+ indicator: string;
193
+ ellipsis: string;
194
+ control: string;
195
+ edge: string;
196
+ }, undefined, unknown, unknown, undefined>>;
@@ -0,0 +1 @@
1
+ export { default as Popover } from './popover';