eco-vue-js 0.9.4 → 0.9.6

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 (45) hide show
  1. package/dist/components/Button/WButtonGroup.vue.js +3 -1
  2. package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts +139 -3
  3. package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts.map +1 -1
  4. package/dist/components/FieldWrapper/WFieldWrapper.vue.d.ts.map +1 -1
  5. package/dist/components/FieldWrapper/WFieldWrapper.vue.js +7 -4
  6. package/dist/components/FieldWrapper/types.d.ts +2 -0
  7. package/dist/components/FieldWrapper/types.d.ts.map +1 -1
  8. package/dist/components/Form/WFormValidator.vue.d.ts +1 -1
  9. package/dist/components/Form/WFormValidator.vue.d.ts.map +1 -1
  10. package/dist/components/Form/WFormValidator.vue.js +4 -2
  11. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.d.ts +2 -2
  12. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.js +3 -1
  13. package/dist/components/FormAsync/WFormAsyncInput.vue.js +3 -1
  14. package/dist/components/FormAsync/WFormAsyncSelect.vue.js +2 -0
  15. package/dist/components/FormAsync/WFormAsyncSelectInfiniteSingle.vue.js +2 -0
  16. package/dist/components/FormAsync/WFormAsyncSelectSingle.vue.js +2 -0
  17. package/dist/components/FormAsync/WFormAsyncSelectStringified.vue.js +2 -0
  18. package/dist/components/HeaderBar/WHeaderBar.vue.d.ts +4 -1
  19. package/dist/components/HeaderBar/WHeaderBar.vue.d.ts.map +1 -1
  20. package/dist/components/Input/WInput.vue.js +4 -2
  21. package/dist/components/Input/WInputAsync.vue.js +3 -1
  22. package/dist/components/Input/WInputDate.vue.d.ts +12 -2
  23. package/dist/components/Input/WInputDate.vue.d.ts.map +1 -1
  24. package/dist/components/Input/WInputDate.vue.js +2 -0
  25. package/dist/components/Input/WInputOptions.vue.d.ts +1 -1
  26. package/dist/components/Input/WInputOptions.vue.js +2 -0
  27. package/dist/components/Input/WInputSuggest.vue.js +2 -0
  28. package/dist/components/List/WList.vue.d.ts +1 -0
  29. package/dist/components/List/WList.vue.d.ts.map +1 -1
  30. package/dist/components/List/WList.vue.js +3 -2
  31. package/dist/components/Modal/WModalStepper.vue.d.ts +800 -2
  32. package/dist/components/Modal/WModalStepper.vue.d.ts.map +1 -1
  33. package/dist/components/Select/WSelect.vue.js +2 -0
  34. package/dist/components/Select/WSelectAsync.vue.js +2 -0
  35. package/dist/components/Select/WSelectAsyncSingle.vue.d.ts +4 -4
  36. package/dist/components/Select/WSelectAsyncSingle.vue.js +2 -0
  37. package/dist/components/Select/WSelectSingle.vue.d.ts +4 -4
  38. package/dist/components/Select/WSelectSingle.vue.js +2 -0
  39. package/dist/components/Select/WSelectStringified.vue.d.ts +4 -4
  40. package/dist/components/Select/WSelectStringified.vue.js +2 -0
  41. package/dist/components/Tabs/WTabs.vue.d.ts +267 -3
  42. package/dist/components/Tabs/WTabs.vue.d.ts.map +1 -1
  43. package/dist/components/Tabs/WTabsStepper.vue.d.ts +628 -2
  44. package/dist/components/Tabs/WTabsStepper.vue.d.ts.map +1 -1
  45. package/package.json +11 -11
@@ -4,7 +4,406 @@ declare function __VLS_template(): {
4
4
  default?(_: {}): any;
5
5
  };
6
6
  refs: {
7
- tabsStepper: any;
7
+ tabsStepper: ({
8
+ $: import('vue').ComponentInternalInstance;
9
+ $data: {};
10
+ $props: {
11
+ readonly customSlots?: import('vue').VNode[] | undefined;
12
+ readonly lessTransitions?: boolean | undefined;
13
+ readonly initTab?: number | undefined;
14
+ readonly disableMinHeight?: boolean | undefined;
15
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
16
+ readonly "onUpdate:first"?: ((value: boolean) => any) | undefined;
17
+ readonly "onUpdate:last"?: ((value: boolean) => any) | undefined;
18
+ readonly "onUpdate:current"?: ((value: string) => any) | undefined;
19
+ readonly "onUpdate:current-index"?: ((value: number) => any) | undefined;
20
+ readonly "onUpdate:current-title"?: ((value: string) => any) | undefined;
21
+ readonly "onUpdate:progress"?: ((value: number) => any) | undefined;
22
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
23
+ $attrs: {
24
+ [x: string]: unknown;
25
+ };
26
+ $refs: {
27
+ [x: string]: unknown;
28
+ } & {
29
+ tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
30
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
31
+ "onUpdate:current"?: ((value: string) => any) | undefined;
32
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
33
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
34
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
35
+ }>, {
36
+ updateCurrent: (value: string) => void;
37
+ updateIndex: (value: number) => void;
38
+ next: () => void;
39
+ previous: () => void;
40
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
41
+ invalidate: (index: number, payload: {
42
+ [x: string]: string | string[] | undefined;
43
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
44
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
45
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
46
+ "update:has-changes": (value: boolean) => any;
47
+ "update:current": (value: string) => any;
48
+ "update:current-index": (value: number) => any;
49
+ "update:current-title": (value: string) => any;
50
+ "update:tabs-length": (value: number) => any;
51
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
52
+ buttonContainer: HTMLDivElement;
53
+ button: (({
54
+ $: import('vue').ComponentInternalInstance;
55
+ $data: {};
56
+ $props: {
57
+ readonly active: boolean;
58
+ readonly index: number;
59
+ readonly hasError: boolean;
60
+ readonly hasChanges: boolean;
61
+ readonly title: string;
62
+ readonly icon: SVGComponent | undefined;
63
+ readonly side?: boolean | undefined;
64
+ readonly onClick?: ((value: MouseEvent) => any) | undefined;
65
+ readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
66
+ readonly "onUpdate:scroll-position"?: ((value: {
67
+ left: number;
68
+ } | {
69
+ top: number;
70
+ }) => any) | undefined;
71
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
72
+ $attrs: {
73
+ [x: string]: unknown;
74
+ };
75
+ $refs: {
76
+ [x: string]: unknown;
77
+ } & {
78
+ button: HTMLButtonElement;
79
+ };
80
+ $slots: Readonly<{
81
+ [name: string]: import('vue').Slot<any> | undefined;
82
+ }>;
83
+ $root: import('vue').ComponentPublicInstance | null;
84
+ $parent: import('vue').ComponentPublicInstance | null;
85
+ $host: Element | null;
86
+ $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
87
+ left: number;
88
+ } | {
89
+ top: number;
90
+ }) => void);
91
+ $el: any;
92
+ $options: import('vue').ComponentOptionsBase<Readonly<{
93
+ active: boolean;
94
+ index: number;
95
+ hasError: boolean;
96
+ hasChanges: boolean;
97
+ title: string;
98
+ icon: SVGComponent | undefined;
99
+ side?: boolean;
100
+ }> & Readonly<{
101
+ onClick?: ((value: MouseEvent) => any) | undefined;
102
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
103
+ "onUpdate:scroll-position"?: ((value: {
104
+ left: number;
105
+ } | {
106
+ top: number;
107
+ }) => any) | undefined;
108
+ }>, {
109
+ update: () => void;
110
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
111
+ click: (value: MouseEvent) => any;
112
+ "update:indicator-style": (value: import('vue').CSSProperties) => any;
113
+ "update:scroll-position": (value: {
114
+ left: number;
115
+ } | {
116
+ top: number;
117
+ }) => any;
118
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
119
+ beforeCreate?: (() => void) | (() => void)[];
120
+ created?: (() => void) | (() => void)[];
121
+ beforeMount?: (() => void) | (() => void)[];
122
+ mounted?: (() => void) | (() => void)[];
123
+ beforeUpdate?: (() => void) | (() => void)[];
124
+ updated?: (() => void) | (() => void)[];
125
+ activated?: (() => void) | (() => void)[];
126
+ deactivated?: (() => void) | (() => void)[];
127
+ beforeDestroy?: (() => void) | (() => void)[];
128
+ beforeUnmount?: (() => void) | (() => void)[];
129
+ destroyed?: (() => void) | (() => void)[];
130
+ unmounted?: (() => void) | (() => void)[];
131
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
132
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
133
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
134
+ };
135
+ $forceUpdate: () => void;
136
+ $nextTick: typeof import('vue').nextTick;
137
+ $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;
138
+ } & Readonly<{}> & Omit<Readonly<{
139
+ active: boolean;
140
+ index: number;
141
+ hasError: boolean;
142
+ hasChanges: boolean;
143
+ title: string;
144
+ icon: SVGComponent | undefined;
145
+ side?: boolean;
146
+ }> & Readonly<{
147
+ onClick?: ((value: MouseEvent) => any) | undefined;
148
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
149
+ "onUpdate:scroll-position"?: ((value: {
150
+ left: number;
151
+ } | {
152
+ top: number;
153
+ }) => any) | undefined;
154
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
155
+ update: () => void;
156
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
157
+ $slots: {
158
+ title?(_: {}): any;
159
+ suffix?(_: {}): any;
160
+ right?(_: {}): any;
161
+ };
162
+ }) | null)[];
163
+ tabItem: (({
164
+ $: import('vue').ComponentInternalInstance;
165
+ $data: {};
166
+ $props: {
167
+ readonly active: boolean;
168
+ readonly removable: boolean;
169
+ readonly "onUpdate:height"?: ((value: number) => any) | undefined;
170
+ readonly "onUpdate:active"?: (() => any) | undefined;
171
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
172
+ $attrs: {
173
+ [x: string]: unknown;
174
+ };
175
+ $refs: {
176
+ [x: string]: unknown;
177
+ } & {
178
+ element: HTMLDivElement;
179
+ };
180
+ $slots: Readonly<{
181
+ [name: string]: import('vue').Slot<any> | undefined;
182
+ }>;
183
+ $root: import('vue').ComponentPublicInstance | null;
184
+ $parent: import('vue').ComponentPublicInstance | null;
185
+ $host: Element | null;
186
+ $emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
187
+ $el: any;
188
+ $options: import('vue').ComponentOptionsBase<Readonly<{
189
+ active: boolean;
190
+ removable: boolean;
191
+ }> & Readonly<{
192
+ "onUpdate:height"?: ((value: number) => any) | undefined;
193
+ "onUpdate:active"?: (() => any) | undefined;
194
+ }>, {
195
+ emitHeight: () => void;
196
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
197
+ "update:height": (value: number) => any;
198
+ "update:active": () => any;
199
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
200
+ beforeCreate?: (() => void) | (() => void)[];
201
+ created?: (() => void) | (() => void)[];
202
+ beforeMount?: (() => void) | (() => void)[];
203
+ mounted?: (() => void) | (() => void)[];
204
+ beforeUpdate?: (() => void) | (() => void)[];
205
+ updated?: (() => void) | (() => void)[];
206
+ activated?: (() => void) | (() => void)[];
207
+ deactivated?: (() => void) | (() => void)[];
208
+ beforeDestroy?: (() => void) | (() => void)[];
209
+ beforeUnmount?: (() => void) | (() => void)[];
210
+ destroyed?: (() => void) | (() => void)[];
211
+ unmounted?: (() => void) | (() => void)[];
212
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
213
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
214
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
215
+ };
216
+ $forceUpdate: () => void;
217
+ $nextTick: typeof import('vue').nextTick;
218
+ $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;
219
+ } & Readonly<{}> & Omit<Readonly<{
220
+ active: boolean;
221
+ removable: boolean;
222
+ }> & Readonly<{
223
+ "onUpdate:height"?: ((value: number) => any) | undefined;
224
+ "onUpdate:active"?: (() => any) | undefined;
225
+ }>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
226
+ emitHeight: () => void;
227
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
228
+ $slots: {
229
+ default?(_: {}): any;
230
+ };
231
+ }) | null)[];
232
+ form: (({
233
+ $: import('vue').ComponentInternalInstance;
234
+ $data: {};
235
+ $props: {
236
+ readonly name?: string | undefined;
237
+ readonly title?: string | undefined;
238
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
239
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
240
+ readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
241
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
242
+ $attrs: {
243
+ [x: string]: unknown;
244
+ };
245
+ $refs: {
246
+ [x: string]: unknown;
247
+ };
248
+ $slots: Readonly<{
249
+ [name: string]: import('vue').Slot<any> | undefined;
250
+ }>;
251
+ $root: import('vue').ComponentPublicInstance | null;
252
+ $parent: import('vue').ComponentPublicInstance | null;
253
+ $host: Element | null;
254
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
255
+ $el: any;
256
+ $options: import('vue').ComponentOptionsBase<Readonly<{
257
+ name?: string;
258
+ title?: string;
259
+ }> & Readonly<{
260
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
261
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
262
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
263
+ }>, {
264
+ isValid: import('vue').ComputedRef<boolean>;
265
+ hasChanges: import('vue').ComputedRef<boolean>;
266
+ hasValue: import('vue').ComputedRef<boolean | null>;
267
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
268
+ invalidate: (payload: {
269
+ [x: string]: string | string[] | undefined;
270
+ }) => void;
271
+ initModel: () => void;
272
+ errorMessage: import('vue').ComputedRef<string>;
273
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
274
+ "update:has-changes": (value: boolean) => any;
275
+ "update:is-valid": (value: boolean | undefined) => any;
276
+ "update:has-value": (value: boolean | null) => any;
277
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
278
+ beforeCreate?: (() => void) | (() => void)[];
279
+ created?: (() => void) | (() => void)[];
280
+ beforeMount?: (() => void) | (() => void)[];
281
+ mounted?: (() => void) | (() => void)[];
282
+ beforeUpdate?: (() => void) | (() => void)[];
283
+ updated?: (() => void) | (() => void)[];
284
+ activated?: (() => void) | (() => void)[];
285
+ deactivated?: (() => void) | (() => void)[];
286
+ beforeDestroy?: (() => void) | (() => void)[];
287
+ beforeUnmount?: (() => void) | (() => void)[];
288
+ destroyed?: (() => void) | (() => void)[];
289
+ unmounted?: (() => void) | (() => void)[];
290
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
291
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
292
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
293
+ };
294
+ $forceUpdate: () => void;
295
+ $nextTick: typeof import('vue').nextTick;
296
+ $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;
297
+ } & Readonly<{}> & Omit<Readonly<{
298
+ name?: string;
299
+ title?: string;
300
+ }> & Readonly<{
301
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
302
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
303
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
304
+ }>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
305
+ isValid: import('vue').ComputedRef<boolean>;
306
+ hasChanges: import('vue').ComputedRef<boolean>;
307
+ hasValue: import('vue').ComputedRef<boolean | null>;
308
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
309
+ invalidate: (payload: {
310
+ [x: string]: string | string[] | undefined;
311
+ }) => void;
312
+ initModel: () => void;
313
+ errorMessage: import('vue').ComputedRef<string>;
314
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
315
+ $slots: {
316
+ default?(_: {}): any;
317
+ };
318
+ }) | null)[];
319
+ }, any, import('vue').ComponentProvideOptions, {
320
+ P: {};
321
+ B: {};
322
+ D: {};
323
+ C: {};
324
+ M: {};
325
+ Defaults: {};
326
+ }, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
327
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
328
+ "onUpdate:current"?: ((value: string) => any) | undefined;
329
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
330
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
331
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
332
+ }>, {
333
+ updateCurrent: (value: string) => void;
334
+ updateIndex: (value: number) => void;
335
+ next: () => void;
336
+ previous: () => void;
337
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
338
+ invalidate: (index: number, payload: {
339
+ [x: string]: string | string[] | undefined;
340
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
341
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
342
+ }, {}, {}, {}, {}> | null;
343
+ };
344
+ $slots: Readonly<{
345
+ [name: string]: import('vue').Slot<any> | undefined;
346
+ }>;
347
+ $root: import('vue').ComponentPublicInstance | null;
348
+ $parent: import('vue').ComponentPublicInstance | null;
349
+ $host: Element | null;
350
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:first", value: boolean) => void) & ((event: "update:last", value: boolean) => void) & ((event: "update:current", value: string) => void) & ((event: "update:current-index", value: number) => void) & ((event: "update:current-title", value: string) => void) & ((event: "update:progress", value: number) => void);
351
+ $el: any;
352
+ $options: import('vue').ComponentOptionsBase<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
353
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
354
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
355
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
356
+ "onUpdate:current"?: ((value: string) => any) | undefined;
357
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
358
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
359
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
360
+ }>, {
361
+ next: () => void;
362
+ previous: () => void;
363
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
364
+ "update:has-changes": (value: boolean) => any;
365
+ "update:first": (value: boolean) => any;
366
+ "update:last": (value: boolean) => any;
367
+ "update:current": (value: string) => any;
368
+ "update:current-index": (value: number) => any;
369
+ "update:current-title": (value: string) => any;
370
+ "update:progress": (value: number) => any;
371
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
372
+ beforeCreate?: (() => void) | (() => void)[];
373
+ created?: (() => void) | (() => void)[];
374
+ beforeMount?: (() => void) | (() => void)[];
375
+ mounted?: (() => void) | (() => void)[];
376
+ beforeUpdate?: (() => void) | (() => void)[];
377
+ updated?: (() => void) | (() => void)[];
378
+ activated?: (() => void) | (() => void)[];
379
+ deactivated?: (() => void) | (() => void)[];
380
+ beforeDestroy?: (() => void) | (() => void)[];
381
+ beforeUnmount?: (() => void) | (() => void)[];
382
+ destroyed?: (() => void) | (() => void)[];
383
+ unmounted?: (() => void) | (() => void)[];
384
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
385
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
386
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
387
+ };
388
+ $forceUpdate: () => void;
389
+ $nextTick: typeof import('vue').nextTick;
390
+ $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;
391
+ } & Readonly<{}> & Omit<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
392
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
393
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
394
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
395
+ "onUpdate:current"?: ((value: string) => any) | undefined;
396
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
397
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
398
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
399
+ }>, "previous" | "next"> & import('vue').ShallowUnwrapRef<{
400
+ next: () => void;
401
+ previous: () => void;
402
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
403
+ $slots: {
404
+ default?(_: {}): any;
405
+ };
406
+ }) | null;
8
407
  };
9
408
  attrs: Partial<{}>;
10
409
  };
@@ -29,7 +428,406 @@ declare const __VLS_component: import('vue').DefineComponent<{
29
428
  "onClose:modal"?: (() => any) | undefined;
30
429
  "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
31
430
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
32
- tabsStepper: any;
431
+ tabsStepper: ({
432
+ $: import('vue').ComponentInternalInstance;
433
+ $data: {};
434
+ $props: {
435
+ readonly customSlots?: import('vue').VNode[] | undefined;
436
+ readonly lessTransitions?: boolean | undefined;
437
+ readonly initTab?: number | undefined;
438
+ readonly disableMinHeight?: boolean | undefined;
439
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
440
+ readonly "onUpdate:first"?: ((value: boolean) => any) | undefined;
441
+ readonly "onUpdate:last"?: ((value: boolean) => any) | undefined;
442
+ readonly "onUpdate:current"?: ((value: string) => any) | undefined;
443
+ readonly "onUpdate:current-index"?: ((value: number) => any) | undefined;
444
+ readonly "onUpdate:current-title"?: ((value: string) => any) | undefined;
445
+ readonly "onUpdate:progress"?: ((value: number) => any) | undefined;
446
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
447
+ $attrs: {
448
+ [x: string]: unknown;
449
+ };
450
+ $refs: {
451
+ [x: string]: unknown;
452
+ } & {
453
+ tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
454
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
455
+ "onUpdate:current"?: ((value: string) => any) | undefined;
456
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
457
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
458
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
459
+ }>, {
460
+ updateCurrent: (value: string) => void;
461
+ updateIndex: (value: number) => void;
462
+ next: () => void;
463
+ previous: () => void;
464
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
465
+ invalidate: (index: number, payload: {
466
+ [x: string]: string | string[] | undefined;
467
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
468
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
469
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
470
+ "update:has-changes": (value: boolean) => any;
471
+ "update:current": (value: string) => any;
472
+ "update:current-index": (value: number) => any;
473
+ "update:current-title": (value: string) => any;
474
+ "update:tabs-length": (value: number) => any;
475
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
476
+ buttonContainer: HTMLDivElement;
477
+ button: (({
478
+ $: import('vue').ComponentInternalInstance;
479
+ $data: {};
480
+ $props: {
481
+ readonly active: boolean;
482
+ readonly index: number;
483
+ readonly hasError: boolean;
484
+ readonly hasChanges: boolean;
485
+ readonly title: string;
486
+ readonly icon: SVGComponent | undefined;
487
+ readonly side?: boolean | undefined;
488
+ readonly onClick?: ((value: MouseEvent) => any) | undefined;
489
+ readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
490
+ readonly "onUpdate:scroll-position"?: ((value: {
491
+ left: number;
492
+ } | {
493
+ top: number;
494
+ }) => any) | undefined;
495
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
496
+ $attrs: {
497
+ [x: string]: unknown;
498
+ };
499
+ $refs: {
500
+ [x: string]: unknown;
501
+ } & {
502
+ button: HTMLButtonElement;
503
+ };
504
+ $slots: Readonly<{
505
+ [name: string]: import('vue').Slot<any> | undefined;
506
+ }>;
507
+ $root: import('vue').ComponentPublicInstance | null;
508
+ $parent: import('vue').ComponentPublicInstance | null;
509
+ $host: Element | null;
510
+ $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
511
+ left: number;
512
+ } | {
513
+ top: number;
514
+ }) => void);
515
+ $el: any;
516
+ $options: import('vue').ComponentOptionsBase<Readonly<{
517
+ active: boolean;
518
+ index: number;
519
+ hasError: boolean;
520
+ hasChanges: boolean;
521
+ title: string;
522
+ icon: SVGComponent | undefined;
523
+ side?: boolean;
524
+ }> & Readonly<{
525
+ onClick?: ((value: MouseEvent) => any) | undefined;
526
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
527
+ "onUpdate:scroll-position"?: ((value: {
528
+ left: number;
529
+ } | {
530
+ top: number;
531
+ }) => any) | undefined;
532
+ }>, {
533
+ update: () => void;
534
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
535
+ click: (value: MouseEvent) => any;
536
+ "update:indicator-style": (value: import('vue').CSSProperties) => any;
537
+ "update:scroll-position": (value: {
538
+ left: number;
539
+ } | {
540
+ top: number;
541
+ }) => any;
542
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
543
+ beforeCreate?: (() => void) | (() => void)[];
544
+ created?: (() => void) | (() => void)[];
545
+ beforeMount?: (() => void) | (() => void)[];
546
+ mounted?: (() => void) | (() => void)[];
547
+ beforeUpdate?: (() => void) | (() => void)[];
548
+ updated?: (() => void) | (() => void)[];
549
+ activated?: (() => void) | (() => void)[];
550
+ deactivated?: (() => void) | (() => void)[];
551
+ beforeDestroy?: (() => void) | (() => void)[];
552
+ beforeUnmount?: (() => void) | (() => void)[];
553
+ destroyed?: (() => void) | (() => void)[];
554
+ unmounted?: (() => void) | (() => void)[];
555
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
556
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
557
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
558
+ };
559
+ $forceUpdate: () => void;
560
+ $nextTick: typeof import('vue').nextTick;
561
+ $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;
562
+ } & Readonly<{}> & Omit<Readonly<{
563
+ active: boolean;
564
+ index: number;
565
+ hasError: boolean;
566
+ hasChanges: boolean;
567
+ title: string;
568
+ icon: SVGComponent | undefined;
569
+ side?: boolean;
570
+ }> & Readonly<{
571
+ onClick?: ((value: MouseEvent) => any) | undefined;
572
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
573
+ "onUpdate:scroll-position"?: ((value: {
574
+ left: number;
575
+ } | {
576
+ top: number;
577
+ }) => any) | undefined;
578
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
579
+ update: () => void;
580
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
581
+ $slots: {
582
+ title?(_: {}): any;
583
+ suffix?(_: {}): any;
584
+ right?(_: {}): any;
585
+ };
586
+ }) | null)[];
587
+ tabItem: (({
588
+ $: import('vue').ComponentInternalInstance;
589
+ $data: {};
590
+ $props: {
591
+ readonly active: boolean;
592
+ readonly removable: boolean;
593
+ readonly "onUpdate:height"?: ((value: number) => any) | undefined;
594
+ readonly "onUpdate:active"?: (() => any) | undefined;
595
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
596
+ $attrs: {
597
+ [x: string]: unknown;
598
+ };
599
+ $refs: {
600
+ [x: string]: unknown;
601
+ } & {
602
+ element: HTMLDivElement;
603
+ };
604
+ $slots: Readonly<{
605
+ [name: string]: import('vue').Slot<any> | undefined;
606
+ }>;
607
+ $root: import('vue').ComponentPublicInstance | null;
608
+ $parent: import('vue').ComponentPublicInstance | null;
609
+ $host: Element | null;
610
+ $emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
611
+ $el: any;
612
+ $options: import('vue').ComponentOptionsBase<Readonly<{
613
+ active: boolean;
614
+ removable: boolean;
615
+ }> & Readonly<{
616
+ "onUpdate:height"?: ((value: number) => any) | undefined;
617
+ "onUpdate:active"?: (() => any) | undefined;
618
+ }>, {
619
+ emitHeight: () => void;
620
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
621
+ "update:height": (value: number) => any;
622
+ "update:active": () => any;
623
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
624
+ beforeCreate?: (() => void) | (() => void)[];
625
+ created?: (() => void) | (() => void)[];
626
+ beforeMount?: (() => void) | (() => void)[];
627
+ mounted?: (() => void) | (() => void)[];
628
+ beforeUpdate?: (() => void) | (() => void)[];
629
+ updated?: (() => void) | (() => void)[];
630
+ activated?: (() => void) | (() => void)[];
631
+ deactivated?: (() => void) | (() => void)[];
632
+ beforeDestroy?: (() => void) | (() => void)[];
633
+ beforeUnmount?: (() => void) | (() => void)[];
634
+ destroyed?: (() => void) | (() => void)[];
635
+ unmounted?: (() => void) | (() => void)[];
636
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
637
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
638
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
639
+ };
640
+ $forceUpdate: () => void;
641
+ $nextTick: typeof import('vue').nextTick;
642
+ $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;
643
+ } & Readonly<{}> & Omit<Readonly<{
644
+ active: boolean;
645
+ removable: boolean;
646
+ }> & Readonly<{
647
+ "onUpdate:height"?: ((value: number) => any) | undefined;
648
+ "onUpdate:active"?: (() => any) | undefined;
649
+ }>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
650
+ emitHeight: () => void;
651
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
652
+ $slots: {
653
+ default?(_: {}): any;
654
+ };
655
+ }) | null)[];
656
+ form: (({
657
+ $: import('vue').ComponentInternalInstance;
658
+ $data: {};
659
+ $props: {
660
+ readonly name?: string | undefined;
661
+ readonly title?: string | undefined;
662
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
663
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
664
+ readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
665
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
666
+ $attrs: {
667
+ [x: string]: unknown;
668
+ };
669
+ $refs: {
670
+ [x: string]: unknown;
671
+ };
672
+ $slots: Readonly<{
673
+ [name: string]: import('vue').Slot<any> | undefined;
674
+ }>;
675
+ $root: import('vue').ComponentPublicInstance | null;
676
+ $parent: import('vue').ComponentPublicInstance | null;
677
+ $host: Element | null;
678
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
679
+ $el: any;
680
+ $options: import('vue').ComponentOptionsBase<Readonly<{
681
+ name?: string;
682
+ title?: string;
683
+ }> & Readonly<{
684
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
685
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
686
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
687
+ }>, {
688
+ isValid: import('vue').ComputedRef<boolean>;
689
+ hasChanges: import('vue').ComputedRef<boolean>;
690
+ hasValue: import('vue').ComputedRef<boolean | null>;
691
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
692
+ invalidate: (payload: {
693
+ [x: string]: string | string[] | undefined;
694
+ }) => void;
695
+ initModel: () => void;
696
+ errorMessage: import('vue').ComputedRef<string>;
697
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
698
+ "update:has-changes": (value: boolean) => any;
699
+ "update:is-valid": (value: boolean | undefined) => any;
700
+ "update:has-value": (value: boolean | null) => any;
701
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
702
+ beforeCreate?: (() => void) | (() => void)[];
703
+ created?: (() => void) | (() => void)[];
704
+ beforeMount?: (() => void) | (() => void)[];
705
+ mounted?: (() => void) | (() => void)[];
706
+ beforeUpdate?: (() => void) | (() => void)[];
707
+ updated?: (() => void) | (() => void)[];
708
+ activated?: (() => void) | (() => void)[];
709
+ deactivated?: (() => void) | (() => void)[];
710
+ beforeDestroy?: (() => void) | (() => void)[];
711
+ beforeUnmount?: (() => void) | (() => void)[];
712
+ destroyed?: (() => void) | (() => void)[];
713
+ unmounted?: (() => void) | (() => void)[];
714
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
715
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
716
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
717
+ };
718
+ $forceUpdate: () => void;
719
+ $nextTick: typeof import('vue').nextTick;
720
+ $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;
721
+ } & Readonly<{}> & Omit<Readonly<{
722
+ name?: string;
723
+ title?: string;
724
+ }> & Readonly<{
725
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
726
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
727
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
728
+ }>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
729
+ isValid: import('vue').ComputedRef<boolean>;
730
+ hasChanges: import('vue').ComputedRef<boolean>;
731
+ hasValue: import('vue').ComputedRef<boolean | null>;
732
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
733
+ invalidate: (payload: {
734
+ [x: string]: string | string[] | undefined;
735
+ }) => void;
736
+ initModel: () => void;
737
+ errorMessage: import('vue').ComputedRef<string>;
738
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
739
+ $slots: {
740
+ default?(_: {}): any;
741
+ };
742
+ }) | null)[];
743
+ }, any, import('vue').ComponentProvideOptions, {
744
+ P: {};
745
+ B: {};
746
+ D: {};
747
+ C: {};
748
+ M: {};
749
+ Defaults: {};
750
+ }, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
751
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
752
+ "onUpdate:current"?: ((value: string) => any) | undefined;
753
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
754
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
755
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
756
+ }>, {
757
+ updateCurrent: (value: string) => void;
758
+ updateIndex: (value: number) => void;
759
+ next: () => void;
760
+ previous: () => void;
761
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
762
+ invalidate: (index: number, payload: {
763
+ [x: string]: string | string[] | undefined;
764
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
765
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
766
+ }, {}, {}, {}, {}> | null;
767
+ };
768
+ $slots: Readonly<{
769
+ [name: string]: import('vue').Slot<any> | undefined;
770
+ }>;
771
+ $root: import('vue').ComponentPublicInstance | null;
772
+ $parent: import('vue').ComponentPublicInstance | null;
773
+ $host: Element | null;
774
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:first", value: boolean) => void) & ((event: "update:last", value: boolean) => void) & ((event: "update:current", value: string) => void) & ((event: "update:current-index", value: number) => void) & ((event: "update:current-title", value: string) => void) & ((event: "update:progress", value: number) => void);
775
+ $el: any;
776
+ $options: import('vue').ComponentOptionsBase<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
777
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
778
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
779
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
780
+ "onUpdate:current"?: ((value: string) => any) | undefined;
781
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
782
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
783
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
784
+ }>, {
785
+ next: () => void;
786
+ previous: () => void;
787
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
788
+ "update:has-changes": (value: boolean) => any;
789
+ "update:first": (value: boolean) => any;
790
+ "update:last": (value: boolean) => any;
791
+ "update:current": (value: string) => any;
792
+ "update:current-index": (value: number) => any;
793
+ "update:current-title": (value: string) => any;
794
+ "update:progress": (value: number) => any;
795
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
796
+ beforeCreate?: (() => void) | (() => void)[];
797
+ created?: (() => void) | (() => void)[];
798
+ beforeMount?: (() => void) | (() => void)[];
799
+ mounted?: (() => void) | (() => void)[];
800
+ beforeUpdate?: (() => void) | (() => void)[];
801
+ updated?: (() => void) | (() => void)[];
802
+ activated?: (() => void) | (() => void)[];
803
+ deactivated?: (() => void) | (() => void)[];
804
+ beforeDestroy?: (() => void) | (() => void)[];
805
+ beforeUnmount?: (() => void) | (() => void)[];
806
+ destroyed?: (() => void) | (() => void)[];
807
+ unmounted?: (() => void) | (() => void)[];
808
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
809
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
810
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
811
+ };
812
+ $forceUpdate: () => void;
813
+ $nextTick: typeof import('vue').nextTick;
814
+ $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;
815
+ } & Readonly<{}> & Omit<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
816
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
817
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
818
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
819
+ "onUpdate:current"?: ((value: string) => any) | undefined;
820
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
821
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
822
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
823
+ }>, "previous" | "next"> & import('vue').ShallowUnwrapRef<{
824
+ next: () => void;
825
+ previous: () => void;
826
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
827
+ $slots: {
828
+ default?(_: {}): any;
829
+ };
830
+ }) | null;
33
831
  }, any>;
34
832
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
833
  export default _default;