sprintify-ui 0.0.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 (176) hide show
  1. package/README.md +188 -0
  2. package/dist/types/src/components/BaseAlert.vue.d.ts +51 -0
  3. package/dist/types/src/components/BaseAutocomplete.vue.d.ts +268 -0
  4. package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +273 -0
  5. package/dist/types/src/components/BaseAvatar.vue.d.ts +126 -0
  6. package/dist/types/src/components/BaseBadge.vue.d.ts +94 -0
  7. package/dist/types/src/components/BaseBelongsTo.vue.d.ts +268 -0
  8. package/dist/types/src/components/BaseBoolean.vue.d.ts +64 -0
  9. package/dist/types/src/components/BaseBreadcrumbs.vue.d.ts +66 -0
  10. package/dist/types/src/components/BaseButton.vue.d.ts +23 -0
  11. package/dist/types/src/components/BaseCard.vue.d.ts +74 -0
  12. package/dist/types/src/components/BaseCardRow.vue.d.ts +16 -0
  13. package/dist/types/src/components/BaseClipboard.vue.d.ts +74 -0
  14. package/dist/types/src/components/BaseContainer.vue.d.ts +34 -0
  15. package/dist/types/src/components/BaseCounter.vue.d.ts +125 -0
  16. package/dist/types/src/components/BaseDataIterator.vue.d.ts +345 -0
  17. package/dist/types/src/components/BaseDataTable.vue.d.ts +657 -0
  18. package/dist/types/src/components/BaseDataTableToggleColumns.vue.d.ts +1281 -0
  19. package/dist/types/src/components/BaseDatePicker.vue.d.ts +190 -0
  20. package/dist/types/src/components/BaseDateSelect.vue.d.ts +171 -0
  21. package/dist/types/src/components/BaseDescriptionList.vue.d.ts +48 -0
  22. package/dist/types/src/components/BaseDescriptionListItem.vue.d.ts +49 -0
  23. package/dist/types/src/components/BaseDialog.vue.d.ts +160 -0
  24. package/dist/types/src/components/BaseFilePicker.vue.d.ts +44 -0
  25. package/dist/types/src/components/BaseFileUploader.vue.d.ts +220 -0
  26. package/dist/types/src/components/BaseInput.vue.d.ts +209 -0
  27. package/dist/types/src/components/BaseInputLabel.vue.d.ts +31 -0
  28. package/dist/types/src/components/BaseLoadingCover.vue.d.ts +166 -0
  29. package/dist/types/src/components/BaseLoadingPage.vue.d.ts +2 -0
  30. package/dist/types/src/components/BaseMediaLibrary.vue.d.ts +269 -0
  31. package/dist/types/src/components/BaseMediaLibraryItem.vue.d.ts +75 -0
  32. package/dist/types/src/components/BaseMenu.vue.d.ts +117 -0
  33. package/dist/types/src/components/BaseMenuItem.vue.d.ts +147 -0
  34. package/dist/types/src/components/BaseModalCenter.vue.d.ts +141 -0
  35. package/dist/types/src/components/BaseModalSide.vue.d.ts +141 -0
  36. package/dist/types/src/components/BaseNavbar.vue.d.ts +79 -0
  37. package/dist/types/src/components/BaseNavbarItem.vue.d.ts +80 -0
  38. package/dist/types/src/components/BaseNavbarItemContent.vue.d.ts +127 -0
  39. package/dist/types/src/components/BasePagination.vue.d.ts +25 -0
  40. package/dist/types/src/components/BasePaginationSimple.vue.d.ts +25 -0
  41. package/dist/types/src/components/BasePanel.vue.d.ts +31 -0
  42. package/dist/types/src/components/BasePassword.vue.d.ts +66 -0
  43. package/dist/types/src/components/BaseProcessRing.vue.d.ts +36 -0
  44. package/dist/types/src/components/BaseReadMore.vue.d.ts +74 -0
  45. package/dist/types/src/components/BaseSelect.vue.d.ts +55 -0
  46. package/dist/types/src/components/BaseSideNavigation.vue.d.ts +48 -0
  47. package/dist/types/src/components/BaseSideNavigationItem.vue.d.ts +92 -0
  48. package/dist/types/src/components/BaseSkeleton.vue.d.ts +93 -0
  49. package/dist/types/src/components/BaseSpinner.vue.d.ts +2 -0
  50. package/dist/types/src/components/BaseSwitch.vue.d.ts +39 -0
  51. package/dist/types/src/components/BaseSystemAlert.vue.d.ts +141 -0
  52. package/dist/types/src/components/BaseTabItem.vue.d.ts +70 -0
  53. package/dist/types/src/components/BaseTable.vue.d.ts +467 -0
  54. package/dist/types/src/components/BaseTableColumn.vue.d.ts +164 -0
  55. package/dist/types/src/components/BaseTabs.vue.d.ts +48 -0
  56. package/dist/types/src/components/BaseTagAutocomplete.vue.d.ts +274 -0
  57. package/dist/types/src/components/BaseTagAutocompleteFetch.vue.d.ts +251 -0
  58. package/dist/types/src/components/BaseTextarea.vue.d.ts +228 -0
  59. package/dist/types/src/components/BaseTextareaAutoresize.vue.d.ts +44 -0
  60. package/dist/types/src/components/BaseTitle.vue.d.ts +45 -0
  61. package/dist/types/src/components/BaseWordCount.vue.d.ts +31 -0
  62. package/dist/types/src/components/SlotComponent.d.ts +43 -0
  63. package/dist/types/src/components/index.d.ts +2 -0
  64. package/dist/types/src/composables/breakpoints.d.ts +12 -0
  65. package/dist/types/src/composables/modal.d.ts +6 -0
  66. package/dist/types/src/constants/MyConstants.d.ts +1 -0
  67. package/dist/types/src/constants/index.d.ts +2 -0
  68. package/dist/types/src/index.d.ts +253 -0
  69. package/dist/types/src/types/Media.d.ts +8 -0
  70. package/dist/types/src/types/UploadedFile.d.ts +9 -0
  71. package/dist/types/src/types/User.d.ts +6 -0
  72. package/dist/types/src/types/types.d.ts +88 -0
  73. package/dist/types/src/utils/fileSizeFormat.d.ts +1 -0
  74. package/dist/types/src/utils/index.d.ts +4 -0
  75. package/dist/types/src/utils/scrollPreventer.d.ts +4 -0
  76. package/dist/types/src/utils/toHumanList.d.ts +1 -0
  77. package/package.json +99 -0
  78. package/src/assets/button.css +80 -0
  79. package/src/assets/form.css +15 -0
  80. package/src/assets/main.css +3 -0
  81. package/src/assets/pikaday.css +134 -0
  82. package/src/assets/tailwind.css +5 -0
  83. package/src/components/BaseAlert.stories.js +52 -0
  84. package/src/components/BaseAlert.vue +152 -0
  85. package/src/components/BaseAutocomplete.stories.js +127 -0
  86. package/src/components/BaseAutocomplete.vue +376 -0
  87. package/src/components/BaseAutocompleteFetch.stories.js +121 -0
  88. package/src/components/BaseAutocompleteFetch.vue +185 -0
  89. package/src/components/BaseAvatar.stories.js +39 -0
  90. package/src/components/BaseAvatar.vue +92 -0
  91. package/src/components/BaseBadge.stories.js +61 -0
  92. package/src/components/BaseBadge.vue +70 -0
  93. package/src/components/BaseBelongsTo.stories.js +130 -0
  94. package/src/components/BaseBelongsTo.vue +122 -0
  95. package/src/components/BaseBoolean.stories.js +35 -0
  96. package/src/components/BaseBoolean.vue +29 -0
  97. package/src/components/BaseBreadcrumbs.stories.js +45 -0
  98. package/src/components/BaseBreadcrumbs.vue +78 -0
  99. package/src/components/BaseButton.stories.js +80 -0
  100. package/src/components/BaseButton.vue +39 -0
  101. package/src/components/BaseCard.stories.js +61 -0
  102. package/src/components/BaseCard.vue +49 -0
  103. package/src/components/BaseCardRow.vue +34 -0
  104. package/src/components/BaseClipboard.stories.js +31 -0
  105. package/src/components/BaseClipboard.vue +96 -0
  106. package/src/components/BaseContainer.stories.js +34 -0
  107. package/src/components/BaseContainer.vue +50 -0
  108. package/src/components/BaseCounter.stories.js +32 -0
  109. package/src/components/BaseCounter.vue +72 -0
  110. package/src/components/BaseDataIterator.stories.js +90 -0
  111. package/src/components/BaseDataIterator.vue +658 -0
  112. package/src/components/BaseDataTable.stories.js +95 -0
  113. package/src/components/BaseDataTable.vue +489 -0
  114. package/src/components/BaseDataTableToggleColumns.vue +69 -0
  115. package/src/components/BaseDatePicker.stories.js +53 -0
  116. package/src/components/BaseDatePicker.vue +166 -0
  117. package/src/components/BaseDateSelect.vue +192 -0
  118. package/src/components/BaseDescriptionList.vue +11 -0
  119. package/src/components/BaseDescriptionListItem.vue +12 -0
  120. package/src/components/BaseDialog.vue +104 -0
  121. package/src/components/BaseFilePicker.vue +101 -0
  122. package/src/components/BaseFileUploader.vue +166 -0
  123. package/src/components/BaseInput.vue +82 -0
  124. package/src/components/BaseInputLabel.vue +26 -0
  125. package/src/components/BaseLoadingCover.vue +84 -0
  126. package/src/components/BaseLoadingPage.vue +19 -0
  127. package/src/components/BaseMediaLibrary.vue +281 -0
  128. package/src/components/BaseMediaLibraryItem.vue +92 -0
  129. package/src/components/BaseMenu.vue +114 -0
  130. package/src/components/BaseMenuItem.vue +93 -0
  131. package/src/components/BaseModalCenter.vue +107 -0
  132. package/src/components/BaseModalSide.vue +112 -0
  133. package/src/components/BaseNavbar.vue +72 -0
  134. package/src/components/BaseNavbarItem.vue +72 -0
  135. package/src/components/BaseNavbarItemContent.vue +57 -0
  136. package/src/components/BasePagination.vue +82 -0
  137. package/src/components/BasePaginationSimple.vue +60 -0
  138. package/src/components/BasePanel.vue +39 -0
  139. package/src/components/BasePassword.vue +73 -0
  140. package/src/components/BaseProcessRing.vue +56 -0
  141. package/src/components/BaseReadMore.vue +72 -0
  142. package/src/components/BaseSelect.vue +59 -0
  143. package/src/components/BaseSideNavigation.vue +7 -0
  144. package/src/components/BaseSideNavigationItem.vue +42 -0
  145. package/src/components/BaseSkeleton.vue +24 -0
  146. package/src/components/BaseSpinner.vue +47 -0
  147. package/src/components/BaseSwitch.vue +87 -0
  148. package/src/components/BaseSystemAlert.vue +86 -0
  149. package/src/components/BaseTabItem.vue +30 -0
  150. package/src/components/BaseTable.vue +781 -0
  151. package/src/components/BaseTableColumn.vue +109 -0
  152. package/src/components/BaseTabs.vue +12 -0
  153. package/src/components/BaseTagAutocomplete.vue +385 -0
  154. package/src/components/BaseTagAutocompleteFetch.vue +154 -0
  155. package/src/components/BaseTextarea.vue +73 -0
  156. package/src/components/BaseTextareaAutoresize.vue +117 -0
  157. package/src/components/BaseTitle.vue +80 -0
  158. package/src/components/BaseWordCount.vue +36 -0
  159. package/src/components/SlotComponent.ts +37 -0
  160. package/src/components/index.ts +5 -0
  161. package/src/composables/breakpoints.ts +6 -0
  162. package/src/composables/modal.ts +77 -0
  163. package/src/constants/MyConstants.ts +1 -0
  164. package/src/constants/index.ts +5 -0
  165. package/src/env.d.ts +15 -0
  166. package/src/index.ts +70 -0
  167. package/src/lang/en.json +56 -0
  168. package/src/lang/fr.json +56 -0
  169. package/src/types/Media.ts +9 -0
  170. package/src/types/UploadedFile.ts +10 -0
  171. package/src/types/User.ts +7 -0
  172. package/src/types/types.ts +112 -0
  173. package/src/utils/fileSizeFormat.ts +15 -0
  174. package/src/utils/index.ts +5 -0
  175. package/src/utils/scrollPreventer.ts +21 -0
  176. package/src/utils/toHumanList.ts +20 -0
@@ -0,0 +1,273 @@
1
+ import { PropType } from 'vue';
2
+ import { Option, Selection } from '@/types/types';
3
+ import { RouteLocationRaw } from 'vue-router';
4
+ declare const _default: {
5
+ new (...args: any[]): {
6
+ $: import("vue").ComponentInternalInstance;
7
+ $data: {};
8
+ $props: Partial<{
9
+ required: boolean;
10
+ inputClass: string;
11
+ placeholder: string;
12
+ disabled: boolean;
13
+ createNewUrl: RouteLocationRaw;
14
+ queryKey: string;
15
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16
+ modelValue: {
17
+ required: true;
18
+ type: PropType<Selection>;
19
+ };
20
+ url: {
21
+ required: true;
22
+ type: StringConstructor;
23
+ };
24
+ labelKey: {
25
+ required: true;
26
+ type: StringConstructor;
27
+ };
28
+ valueKey: {
29
+ required: true;
30
+ type: StringConstructor;
31
+ };
32
+ inputClass: {
33
+ default: undefined;
34
+ type: StringConstructor;
35
+ };
36
+ placeholder: {
37
+ default: undefined;
38
+ type: StringConstructor;
39
+ };
40
+ required: {
41
+ default: boolean;
42
+ type: BooleanConstructor;
43
+ };
44
+ disabled: {
45
+ default: boolean;
46
+ type: BooleanConstructor;
47
+ };
48
+ createNewUrl: {
49
+ default: string;
50
+ type: PropType<RouteLocationRaw>;
51
+ };
52
+ queryKey: {
53
+ default: string;
54
+ type: StringConstructor;
55
+ };
56
+ }>> & {
57
+ onFocus?: ((...args: any[]) => any) | undefined;
58
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
59
+ onTyping?: ((...args: any[]) => any) | undefined;
60
+ onScrollBottom?: ((...args: any[]) => any) | undefined;
61
+ onClear?: ((...args: any[]) => any) | undefined;
62
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "inputClass" | "placeholder" | "disabled" | "createNewUrl" | "queryKey">;
63
+ $attrs: {
64
+ [x: string]: unknown;
65
+ };
66
+ $refs: {
67
+ [x: string]: unknown;
68
+ };
69
+ $slots: Readonly<{
70
+ [name: string]: import("vue").Slot | undefined;
71
+ }>;
72
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
73
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
74
+ $emit: (event: "update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear", ...args: any[]) => void;
75
+ $el: any;
76
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
77
+ modelValue: {
78
+ required: true;
79
+ type: PropType<Selection>;
80
+ };
81
+ url: {
82
+ required: true;
83
+ type: StringConstructor;
84
+ };
85
+ labelKey: {
86
+ required: true;
87
+ type: StringConstructor;
88
+ };
89
+ valueKey: {
90
+ required: true;
91
+ type: StringConstructor;
92
+ };
93
+ inputClass: {
94
+ default: undefined;
95
+ type: StringConstructor;
96
+ };
97
+ placeholder: {
98
+ default: undefined;
99
+ type: StringConstructor;
100
+ };
101
+ required: {
102
+ default: boolean;
103
+ type: BooleanConstructor;
104
+ };
105
+ disabled: {
106
+ default: boolean;
107
+ type: BooleanConstructor;
108
+ };
109
+ createNewUrl: {
110
+ default: string;
111
+ type: PropType<RouteLocationRaw>;
112
+ };
113
+ queryKey: {
114
+ default: string;
115
+ type: StringConstructor;
116
+ };
117
+ }>> & {
118
+ onFocus?: ((...args: any[]) => any) | undefined;
119
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
120
+ onTyping?: ((...args: any[]) => any) | undefined;
121
+ onScrollBottom?: ((...args: any[]) => any) | undefined;
122
+ onClear?: ((...args: any[]) => any) | undefined;
123
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear")[], string, {
124
+ required: boolean;
125
+ inputClass: string;
126
+ placeholder: string;
127
+ disabled: boolean;
128
+ createNewUrl: RouteLocationRaw;
129
+ queryKey: string;
130
+ }, {}, string> & {
131
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
132
+ created?: ((() => void) | (() => void)[]) | undefined;
133
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
134
+ mounted?: ((() => void) | (() => void)[]) | undefined;
135
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
136
+ updated?: ((() => void) | (() => void)[]) | undefined;
137
+ activated?: ((() => void) | (() => void)[]) | undefined;
138
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
139
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
140
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
141
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
142
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
143
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
144
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
145
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
146
+ };
147
+ $forceUpdate: () => void;
148
+ $nextTick: typeof import("vue").nextTick;
149
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
150
+ } & Readonly<import("vue").ExtractPropTypes<{
151
+ modelValue: {
152
+ required: true;
153
+ type: PropType<Selection>;
154
+ };
155
+ url: {
156
+ required: true;
157
+ type: StringConstructor;
158
+ };
159
+ labelKey: {
160
+ required: true;
161
+ type: StringConstructor;
162
+ };
163
+ valueKey: {
164
+ required: true;
165
+ type: StringConstructor;
166
+ };
167
+ inputClass: {
168
+ default: undefined;
169
+ type: StringConstructor;
170
+ };
171
+ placeholder: {
172
+ default: undefined;
173
+ type: StringConstructor;
174
+ };
175
+ required: {
176
+ default: boolean;
177
+ type: BooleanConstructor;
178
+ };
179
+ disabled: {
180
+ default: boolean;
181
+ type: BooleanConstructor;
182
+ };
183
+ createNewUrl: {
184
+ default: string;
185
+ type: PropType<RouteLocationRaw>;
186
+ };
187
+ queryKey: {
188
+ default: string;
189
+ type: StringConstructor;
190
+ };
191
+ }>> & {
192
+ onFocus?: ((...args: any[]) => any) | undefined;
193
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
194
+ onTyping?: ((...args: any[]) => any) | undefined;
195
+ onScrollBottom?: ((...args: any[]) => any) | undefined;
196
+ onClear?: ((...args: any[]) => any) | undefined;
197
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
198
+ __isFragment?: undefined;
199
+ __isTeleport?: undefined;
200
+ __isSuspense?: undefined;
201
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
202
+ modelValue: {
203
+ required: true;
204
+ type: PropType<Selection>;
205
+ };
206
+ url: {
207
+ required: true;
208
+ type: StringConstructor;
209
+ };
210
+ labelKey: {
211
+ required: true;
212
+ type: StringConstructor;
213
+ };
214
+ valueKey: {
215
+ required: true;
216
+ type: StringConstructor;
217
+ };
218
+ inputClass: {
219
+ default: undefined;
220
+ type: StringConstructor;
221
+ };
222
+ placeholder: {
223
+ default: undefined;
224
+ type: StringConstructor;
225
+ };
226
+ required: {
227
+ default: boolean;
228
+ type: BooleanConstructor;
229
+ };
230
+ disabled: {
231
+ default: boolean;
232
+ type: BooleanConstructor;
233
+ };
234
+ createNewUrl: {
235
+ default: string;
236
+ type: PropType<RouteLocationRaw>;
237
+ };
238
+ queryKey: {
239
+ default: string;
240
+ type: StringConstructor;
241
+ };
242
+ }>> & {
243
+ onFocus?: ((...args: any[]) => any) | undefined;
244
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
245
+ onTyping?: ((...args: any[]) => any) | undefined;
246
+ onScrollBottom?: ((...args: any[]) => any) | undefined;
247
+ onClear?: ((...args: any[]) => any) | undefined;
248
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear")[], "update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear", {
249
+ required: boolean;
250
+ inputClass: string;
251
+ placeholder: string;
252
+ disabled: boolean;
253
+ createNewUrl: RouteLocationRaw;
254
+ queryKey: string;
255
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
256
+ $slots: {
257
+ option: (_: {
258
+ option: Option;
259
+ selected: boolean | null;
260
+ active: boolean;
261
+ }) => any;
262
+ footer: (_: {
263
+ options: import("@/types/types").NormalizedOption[];
264
+ dontLooseFocus: (event: Event, next?: (() => void) | null) => void;
265
+ } & {
266
+ keywords: string;
267
+ }) => any;
268
+ empty: (_: {
269
+ firstSearch: boolean;
270
+ }) => any;
271
+ };
272
+ });
273
+ export default _default;
@@ -0,0 +1,126 @@
1
+ import { PropType } from 'vue';
2
+ import { User } from '@/types/User';
3
+ declare const _default: {
4
+ new (...args: any[]): {
5
+ $: import("vue").ComponentInternalInstance;
6
+ $data: {};
7
+ $props: Partial<{
8
+ size: string;
9
+ showDetails: boolean;
10
+ detailsPosition: "left" | "right";
11
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12
+ user: {
13
+ required: true;
14
+ type: PropType<User>;
15
+ };
16
+ size: {
17
+ default: string;
18
+ type: StringConstructor;
19
+ };
20
+ showDetails: {
21
+ default: boolean;
22
+ type: BooleanConstructor;
23
+ };
24
+ detailsPosition: {
25
+ default: string;
26
+ type: PropType<"left" | "right">;
27
+ };
28
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "showDetails" | "detailsPosition">;
29
+ $attrs: {
30
+ [x: string]: unknown;
31
+ };
32
+ $refs: {
33
+ [x: string]: unknown;
34
+ };
35
+ $slots: Readonly<{
36
+ [name: string]: import("vue").Slot | undefined;
37
+ }>;
38
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
39
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
40
+ $emit: (event: string, ...args: any[]) => void;
41
+ $el: any;
42
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
43
+ user: {
44
+ required: true;
45
+ type: PropType<User>;
46
+ };
47
+ size: {
48
+ default: string;
49
+ type: StringConstructor;
50
+ };
51
+ showDetails: {
52
+ default: boolean;
53
+ type: BooleanConstructor;
54
+ };
55
+ detailsPosition: {
56
+ default: string;
57
+ type: PropType<"left" | "right">;
58
+ };
59
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
60
+ size: string;
61
+ showDetails: boolean;
62
+ detailsPosition: "left" | "right";
63
+ }, {}, string> & {
64
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
65
+ created?: ((() => void) | (() => void)[]) | undefined;
66
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
67
+ mounted?: ((() => void) | (() => void)[]) | undefined;
68
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
69
+ updated?: ((() => void) | (() => void)[]) | undefined;
70
+ activated?: ((() => void) | (() => void)[]) | undefined;
71
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
72
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
73
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
74
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
75
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
76
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
77
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
78
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
79
+ };
80
+ $forceUpdate: () => void;
81
+ $nextTick: typeof import("vue").nextTick;
82
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
83
+ } & Readonly<import("vue").ExtractPropTypes<{
84
+ user: {
85
+ required: true;
86
+ type: PropType<User>;
87
+ };
88
+ size: {
89
+ default: string;
90
+ type: StringConstructor;
91
+ };
92
+ showDetails: {
93
+ default: boolean;
94
+ type: BooleanConstructor;
95
+ };
96
+ detailsPosition: {
97
+ default: string;
98
+ type: PropType<"left" | "right">;
99
+ };
100
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
101
+ __isFragment?: undefined;
102
+ __isTeleport?: undefined;
103
+ __isSuspense?: undefined;
104
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
105
+ user: {
106
+ required: true;
107
+ type: PropType<User>;
108
+ };
109
+ size: {
110
+ default: string;
111
+ type: StringConstructor;
112
+ };
113
+ showDetails: {
114
+ default: boolean;
115
+ type: BooleanConstructor;
116
+ };
117
+ detailsPosition: {
118
+ default: string;
119
+ type: PropType<"left" | "right">;
120
+ };
121
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
122
+ size: string;
123
+ showDetails: boolean;
124
+ detailsPosition: "left" | "right";
125
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
126
+ export default _default;
@@ -0,0 +1,94 @@
1
+ import { PropType } from 'vue';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ color: "gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink";
8
+ size: "base" | "lg";
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ color: {
11
+ default: string;
12
+ type: PropType<"gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink">;
13
+ };
14
+ size: {
15
+ default: string;
16
+ type: PropType<"base" | "lg">;
17
+ };
18
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "size">;
19
+ $attrs: {
20
+ [x: string]: unknown;
21
+ };
22
+ $refs: {
23
+ [x: string]: unknown;
24
+ };
25
+ $slots: Readonly<{
26
+ [name: string]: import("vue").Slot | undefined;
27
+ }>;
28
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
29
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
30
+ $emit: (event: string, ...args: any[]) => void;
31
+ $el: any;
32
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
33
+ color: {
34
+ default: string;
35
+ type: PropType<"gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink">;
36
+ };
37
+ size: {
38
+ default: string;
39
+ type: PropType<"base" | "lg">;
40
+ };
41
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
42
+ color: "gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink";
43
+ size: "base" | "lg";
44
+ }, {}, string> & {
45
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
46
+ created?: ((() => void) | (() => void)[]) | undefined;
47
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
48
+ mounted?: ((() => void) | (() => void)[]) | undefined;
49
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
50
+ updated?: ((() => void) | (() => void)[]) | undefined;
51
+ activated?: ((() => void) | (() => void)[]) | undefined;
52
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
53
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
54
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
55
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
56
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
57
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
58
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
59
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
60
+ };
61
+ $forceUpdate: () => void;
62
+ $nextTick: typeof import("vue").nextTick;
63
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
64
+ } & Readonly<import("vue").ExtractPropTypes<{
65
+ color: {
66
+ default: string;
67
+ type: PropType<"gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink">;
68
+ };
69
+ size: {
70
+ default: string;
71
+ type: PropType<"base" | "lg">;
72
+ };
73
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
74
+ __isFragment?: undefined;
75
+ __isTeleport?: undefined;
76
+ __isSuspense?: undefined;
77
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
78
+ color: {
79
+ default: string;
80
+ type: PropType<"gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink">;
81
+ };
82
+ size: {
83
+ default: string;
84
+ type: PropType<"base" | "lg">;
85
+ };
86
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
87
+ color: "gray" | "red" | "yellow" | "green" | "blue" | "indigo" | "purple" | "pink";
88
+ size: "base" | "lg";
89
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
90
+ $slots: {
91
+ default: (_: {}) => any;
92
+ };
93
+ });
94
+ export default _default;