eco-vue-js 0.9.22 → 0.9.23

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 (56) hide show
  1. package/dist/components/FieldWrapper/WFieldWrapper.vue.d.ts.map +1 -1
  2. package/dist/components/FieldWrapper/WFieldWrapper.vue.js +5 -4
  3. package/dist/components/FieldWrapper/components/FilterButton.vue.d.ts +4 -2
  4. package/dist/components/FieldWrapper/components/FilterButton.vue.d.ts.map +1 -1
  5. package/dist/components/FieldWrapper/components/FilterButton.vue.js +9 -3
  6. package/dist/components/Form/WForm.vue.d.ts +13 -8
  7. package/dist/components/Form/WForm.vue.d.ts.map +1 -1
  8. package/dist/components/Form/WForm.vue.js +86 -32
  9. package/dist/components/Form/WFormValidator.vue.d.ts +3 -2
  10. package/dist/components/Form/WFormValidator.vue.d.ts.map +1 -1
  11. package/dist/components/Form/WFormValidator.vue.js +4 -0
  12. package/dist/components/Form/models/injection.d.ts +2 -1
  13. package/dist/components/Form/models/injection.d.ts.map +1 -1
  14. package/dist/components/Form/models/utils.d.ts +3 -0
  15. package/dist/components/Form/models/utils.d.ts.map +1 -1
  16. package/dist/components/Form/models/utils.js +1 -6
  17. package/dist/components/Form/use/useFormValueMap.d.ts +7 -0
  18. package/dist/components/Form/use/useFormValueMap.d.ts.map +1 -0
  19. package/dist/components/Form/use/useFormValueMap.js +36 -0
  20. package/dist/components/List/WListCard.vue.d.ts +1 -1
  21. package/dist/components/Modal/WModalStepper.vue.d.ts +761 -471
  22. package/dist/components/Modal/WModalStepper.vue.d.ts.map +1 -1
  23. package/dist/components/Tabs/WTabs.vue.d.ts +567 -45
  24. package/dist/components/Tabs/WTabs.vue.d.ts.map +1 -1
  25. package/dist/components/Tabs/WTabs.vue.js +147 -129
  26. package/dist/components/Tabs/WTabsColumns.vue.d.ts +4 -2
  27. package/dist/components/Tabs/WTabsColumns.vue.d.ts.map +1 -1
  28. package/dist/components/Tabs/WTabsItem.vue.d.ts +2 -18
  29. package/dist/components/Tabs/WTabsItem.vue.d.ts.map +1 -1
  30. package/dist/components/Tabs/components/TabItem.vue.d.ts +51 -43
  31. package/dist/components/Tabs/components/TabItem.vue.d.ts.map +1 -1
  32. package/dist/components/Tabs/components/TabItem.vue.js +2 -15
  33. package/dist/components/Tabs/types.d.ts +10 -0
  34. package/dist/components/Tabs/types.d.ts.map +1 -1
  35. package/package.json +1 -1
  36. package/dist/components/Form/use/useFormErrorMessageMap.d.ts +0 -8
  37. package/dist/components/Form/use/useFormErrorMessageMap.d.ts.map +0 -1
  38. package/dist/components/Form/use/useFormErrorMessageMap.js +0 -32
  39. package/dist/components/Form/use/useFormHasChangesMap.d.ts +0 -6
  40. package/dist/components/Form/use/useFormHasChangesMap.d.ts.map +0 -1
  41. package/dist/components/Form/use/useFormHasChangesMap.js +0 -27
  42. package/dist/components/Form/use/useFormHasValueMap.d.ts +0 -6
  43. package/dist/components/Form/use/useFormHasValueMap.d.ts.map +0 -1
  44. package/dist/components/Form/use/useFormHasValueMap.js +0 -31
  45. package/dist/components/Form/use/useFormInitModelMap.d.ts +0 -6
  46. package/dist/components/Form/use/useFormInitModelMap.d.ts.map +0 -1
  47. package/dist/components/Form/use/useFormInitModelMap.js +0 -31
  48. package/dist/components/Form/use/useFormInvalidateMap.d.ts +0 -8
  49. package/dist/components/Form/use/useFormInvalidateMap.d.ts.map +0 -1
  50. package/dist/components/Form/use/useFormInvalidateMap.js +0 -32
  51. package/dist/components/Form/use/useFormTitleMap.d.ts +0 -6
  52. package/dist/components/Form/use/useFormTitleMap.d.ts.map +0 -1
  53. package/dist/components/Form/use/useFormTitleMap.js +0 -29
  54. package/dist/components/Form/use/useFormValidateMap.d.ts +0 -9
  55. package/dist/components/Form/use/useFormValidateMap.d.ts.map +0 -1
  56. package/dist/components/Form/use/useFormValidateMap.js +0 -39
@@ -1,17 +1,444 @@
1
1
  import { TabsProps } from './types';
2
2
  import { CSSProperties } from 'vue';
3
3
  import { default as WForm } from '../Form/WForm.vue';
4
- declare const _default: import('vue').DefineComponent<TabsProps, {
4
+ declare function __VLS_template(): {
5
+ slots: Readonly<{
6
+ default: () => void;
7
+ }> & {
8
+ default: () => void;
9
+ };
10
+ refs: {
11
+ form: ({
12
+ $: import('vue').ComponentInternalInstance;
13
+ $data: {};
14
+ $props: {
15
+ readonly name?: string | undefined;
16
+ readonly title?: string | undefined;
17
+ readonly noTag?: boolean | undefined;
18
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
19
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
20
+ readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
21
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
22
+ $attrs: {
23
+ [x: string]: unknown;
24
+ };
25
+ $refs: {
26
+ [x: string]: unknown;
27
+ };
28
+ $slots: Readonly<{
29
+ [name: string]: import('vue').Slot<any> | undefined;
30
+ }>;
31
+ $root: import('vue').ComponentPublicInstance | null;
32
+ $parent: import('vue').ComponentPublicInstance | null;
33
+ $host: Element | null;
34
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
35
+ $el: any;
36
+ $options: import('vue').ComponentOptionsBase<Readonly<{
37
+ name?: string;
38
+ title?: string;
39
+ noTag?: boolean;
40
+ }> & Readonly<{
41
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
42
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
43
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
44
+ }>, {
45
+ isValid: import('vue').ComputedRef<boolean>;
46
+ hasChanges: import('vue').Ref<boolean, boolean>;
47
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
48
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
49
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
50
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
51
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
52
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
53
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
54
+ initModel: import('vue').Ref<() => void, () => void>;
55
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
56
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
57
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
58
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
59
+ "update:has-changes": (value: boolean) => any;
60
+ "update:is-valid": (value: boolean | undefined) => any;
61
+ "update:has-value": (value: boolean | null) => any;
62
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
63
+ beforeCreate?: (() => void) | (() => void)[];
64
+ created?: (() => void) | (() => void)[];
65
+ beforeMount?: (() => void) | (() => void)[];
66
+ mounted?: (() => void) | (() => void)[];
67
+ beforeUpdate?: (() => void) | (() => void)[];
68
+ updated?: (() => void) | (() => void)[];
69
+ activated?: (() => void) | (() => void)[];
70
+ deactivated?: (() => void) | (() => void)[];
71
+ beforeDestroy?: (() => void) | (() => void)[];
72
+ beforeUnmount?: (() => void) | (() => void)[];
73
+ destroyed?: (() => void) | (() => void)[];
74
+ unmounted?: (() => void) | (() => void)[];
75
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
76
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
77
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
78
+ };
79
+ $forceUpdate: () => void;
80
+ $nextTick: typeof import('vue').nextTick;
81
+ $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;
82
+ } & Readonly<{}> & Omit<Readonly<{
83
+ name?: string;
84
+ title?: string;
85
+ noTag?: boolean;
86
+ }> & Readonly<{
87
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
88
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
89
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
90
+ }>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
91
+ isValid: import('vue').ComputedRef<boolean>;
92
+ hasChanges: import('vue').Ref<boolean, boolean>;
93
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
94
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
95
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
96
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
97
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
98
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
99
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
100
+ initModel: import('vue').Ref<() => void, () => void>;
101
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
102
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
103
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
104
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
105
+ $slots: {
106
+ default?(_: {}): any;
107
+ };
108
+ }) | null;
109
+ buttonContainer: HTMLDivElement;
110
+ button: (({
111
+ $: import('vue').ComponentInternalInstance;
112
+ $data: {};
113
+ $props: {
114
+ readonly active: boolean;
115
+ readonly index: number;
116
+ readonly hasError: boolean;
117
+ readonly hasChanges: boolean;
118
+ readonly hasValue: boolean;
119
+ readonly title: string;
120
+ readonly icon: SVGComponent | undefined;
121
+ readonly first: boolean;
122
+ readonly last: boolean;
123
+ readonly disabled?: boolean | undefined;
124
+ readonly stepper?: boolean | undefined;
125
+ readonly showHasValue?: boolean | undefined;
126
+ readonly side?: boolean | undefined;
127
+ readonly onClick?: ((value: MouseEvent) => any) | undefined;
128
+ readonly "onUpdate:indicator-style"?: ((value: CSSProperties) => any) | undefined;
129
+ readonly "onUpdate:scroll-position"?: ((value: {
130
+ left: number;
131
+ } | {
132
+ top: number;
133
+ }) => any) | undefined;
134
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
135
+ $attrs: {
136
+ [x: string]: unknown;
137
+ };
138
+ $refs: {
139
+ [x: string]: unknown;
140
+ } & {
141
+ container: HTMLDivElement;
142
+ };
143
+ $slots: Readonly<{
144
+ [name: string]: import('vue').Slot<any> | undefined;
145
+ }>;
146
+ $root: import('vue').ComponentPublicInstance | null;
147
+ $parent: import('vue').ComponentPublicInstance | null;
148
+ $host: Element | null;
149
+ $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: CSSProperties) => void) & ((event: "update:scroll-position", value: {
150
+ left: number;
151
+ } | {
152
+ top: number;
153
+ }) => void);
154
+ $el: any;
155
+ $options: import('vue').ComponentOptionsBase<Readonly<{
156
+ active: boolean;
157
+ index: number;
158
+ hasError: boolean;
159
+ hasChanges: boolean;
160
+ hasValue: boolean;
161
+ title: string;
162
+ icon: SVGComponent | undefined;
163
+ first: boolean;
164
+ last: boolean;
165
+ disabled?: boolean;
166
+ stepper?: boolean;
167
+ showHasValue?: boolean;
168
+ side?: boolean;
169
+ }> & Readonly<{
170
+ onClick?: ((value: MouseEvent) => any) | undefined;
171
+ "onUpdate:indicator-style"?: ((value: CSSProperties) => any) | undefined;
172
+ "onUpdate:scroll-position"?: ((value: {
173
+ left: number;
174
+ } | {
175
+ top: number;
176
+ }) => any) | undefined;
177
+ }>, {
178
+ update: () => void;
179
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
180
+ click: (value: MouseEvent) => any;
181
+ "update:indicator-style": (value: CSSProperties) => any;
182
+ "update:scroll-position": (value: {
183
+ left: number;
184
+ } | {
185
+ top: number;
186
+ }) => any;
187
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
188
+ beforeCreate?: (() => void) | (() => void)[];
189
+ created?: (() => void) | (() => void)[];
190
+ beforeMount?: (() => void) | (() => void)[];
191
+ mounted?: (() => void) | (() => void)[];
192
+ beforeUpdate?: (() => void) | (() => void)[];
193
+ updated?: (() => void) | (() => void)[];
194
+ activated?: (() => void) | (() => void)[];
195
+ deactivated?: (() => void) | (() => void)[];
196
+ beforeDestroy?: (() => void) | (() => void)[];
197
+ beforeUnmount?: (() => void) | (() => void)[];
198
+ destroyed?: (() => void) | (() => void)[];
199
+ unmounted?: (() => void) | (() => void)[];
200
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
201
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
202
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
203
+ };
204
+ $forceUpdate: () => void;
205
+ $nextTick: typeof import('vue').nextTick;
206
+ $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;
207
+ } & Readonly<{}> & Omit<Readonly<{
208
+ active: boolean;
209
+ index: number;
210
+ hasError: boolean;
211
+ hasChanges: boolean;
212
+ hasValue: boolean;
213
+ title: string;
214
+ icon: SVGComponent | undefined;
215
+ first: boolean;
216
+ last: boolean;
217
+ disabled?: boolean;
218
+ stepper?: boolean;
219
+ showHasValue?: boolean;
220
+ side?: boolean;
221
+ }> & Readonly<{
222
+ onClick?: ((value: MouseEvent) => any) | undefined;
223
+ "onUpdate:indicator-style"?: ((value: CSSProperties) => any) | undefined;
224
+ "onUpdate:scroll-position"?: ((value: {
225
+ left: number;
226
+ } | {
227
+ top: number;
228
+ }) => any) | undefined;
229
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
230
+ update: () => void;
231
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
232
+ $slots: {
233
+ title?(_: {
234
+ hasChanges: boolean;
235
+ hasError: boolean;
236
+ hasValue: boolean;
237
+ }): any;
238
+ suffix?(_: {
239
+ hasChanges: boolean;
240
+ hasError: boolean;
241
+ hasValue: boolean;
242
+ }): any;
243
+ right?(_: {
244
+ hasChanges: boolean;
245
+ hasError: boolean;
246
+ hasValue: boolean;
247
+ }): any;
248
+ };
249
+ }) | null)[];
250
+ tabItem: (({
251
+ $: import('vue').ComponentInternalInstance;
252
+ $data: {};
253
+ $props: {
254
+ readonly name: string;
255
+ readonly title: string;
256
+ readonly active: boolean;
257
+ readonly removable: boolean;
258
+ readonly "onTab:switch"?: ((value: string) => any) | undefined;
259
+ readonly "onUpdate:height"?: ((value: number) => any) | undefined;
260
+ readonly "onUpdate:active"?: (() => any) | undefined;
261
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
262
+ $attrs: {
263
+ [x: string]: unknown;
264
+ };
265
+ $refs: {
266
+ [x: string]: unknown;
267
+ } & {
268
+ form: ({
269
+ $: import('vue').ComponentInternalInstance;
270
+ $data: {};
271
+ $props: {
272
+ readonly name?: string | undefined;
273
+ readonly title?: string | undefined;
274
+ readonly noTag?: boolean | undefined;
275
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
276
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
277
+ readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
278
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
279
+ $attrs: {
280
+ [x: string]: unknown;
281
+ };
282
+ $refs: {
283
+ [x: string]: unknown;
284
+ };
285
+ $slots: Readonly<{
286
+ [name: string]: import('vue').Slot<any> | undefined;
287
+ }>;
288
+ $root: import('vue').ComponentPublicInstance | null;
289
+ $parent: import('vue').ComponentPublicInstance | null;
290
+ $host: Element | null;
291
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
292
+ $el: any;
293
+ $options: import('vue').ComponentOptionsBase<Readonly<{
294
+ name?: string;
295
+ title?: string;
296
+ noTag?: boolean;
297
+ }> & Readonly<{
298
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
299
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
300
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
301
+ }>, {
302
+ isValid: import('vue').ComputedRef<boolean>;
303
+ hasChanges: import('vue').Ref<boolean, boolean>;
304
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
305
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
306
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
307
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
308
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
309
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
310
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
311
+ initModel: import('vue').Ref<() => void, () => void>;
312
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
313
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
314
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
315
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
316
+ "update:has-changes": (value: boolean) => any;
317
+ "update:is-valid": (value: boolean | undefined) => any;
318
+ "update:has-value": (value: boolean | null) => any;
319
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
320
+ beforeCreate?: (() => void) | (() => void)[];
321
+ created?: (() => void) | (() => void)[];
322
+ beforeMount?: (() => void) | (() => void)[];
323
+ mounted?: (() => void) | (() => void)[];
324
+ beforeUpdate?: (() => void) | (() => void)[];
325
+ updated?: (() => void) | (() => void)[];
326
+ activated?: (() => void) | (() => void)[];
327
+ deactivated?: (() => void) | (() => void)[];
328
+ beforeDestroy?: (() => void) | (() => void)[];
329
+ beforeUnmount?: (() => void) | (() => void)[];
330
+ destroyed?: (() => void) | (() => void)[];
331
+ unmounted?: (() => void) | (() => void)[];
332
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
333
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
334
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
335
+ };
336
+ $forceUpdate: () => void;
337
+ $nextTick: typeof import('vue').nextTick;
338
+ $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;
339
+ } & Readonly<{}> & Omit<Readonly<{
340
+ name?: string;
341
+ title?: string;
342
+ noTag?: boolean;
343
+ }> & Readonly<{
344
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
345
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
346
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
347
+ }>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
348
+ isValid: import('vue').ComputedRef<boolean>;
349
+ hasChanges: import('vue').Ref<boolean, boolean>;
350
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
351
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
352
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
353
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
354
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
355
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
356
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
357
+ initModel: import('vue').Ref<() => void, () => void>;
358
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
359
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
360
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
361
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
362
+ $slots: {
363
+ default?(_: {}): any;
364
+ };
365
+ }) | null;
366
+ };
367
+ $slots: Readonly<{
368
+ [name: string]: import('vue').Slot<any> | undefined;
369
+ }>;
370
+ $root: import('vue').ComponentPublicInstance | null;
371
+ $parent: import('vue').ComponentPublicInstance | null;
372
+ $host: Element | null;
373
+ $emit: ((event: "tab:switch", value: string) => void) & ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
374
+ $el: any;
375
+ $options: import('vue').ComponentOptionsBase<Readonly<{
376
+ name: string;
377
+ title: string;
378
+ active: boolean;
379
+ removable: boolean;
380
+ }> & Readonly<{
381
+ "onTab:switch"?: ((value: string) => any) | undefined;
382
+ "onUpdate:height"?: ((value: number) => any) | undefined;
383
+ "onUpdate:active"?: (() => any) | undefined;
384
+ }>, {
385
+ emitHeight: () => void;
386
+ name: import('vue').Ref<string, string>;
387
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
388
+ "tab:switch": (value: string) => any;
389
+ "update:height": (value: number) => any;
390
+ "update:active": () => any;
391
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
392
+ beforeCreate?: (() => void) | (() => void)[];
393
+ created?: (() => void) | (() => void)[];
394
+ beforeMount?: (() => void) | (() => void)[];
395
+ mounted?: (() => void) | (() => void)[];
396
+ beforeUpdate?: (() => void) | (() => void)[];
397
+ updated?: (() => void) | (() => void)[];
398
+ activated?: (() => void) | (() => void)[];
399
+ deactivated?: (() => void) | (() => void)[];
400
+ beforeDestroy?: (() => void) | (() => void)[];
401
+ beforeUnmount?: (() => void) | (() => void)[];
402
+ destroyed?: (() => void) | (() => void)[];
403
+ unmounted?: (() => void) | (() => void)[];
404
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
405
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
406
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
407
+ };
408
+ $forceUpdate: () => void;
409
+ $nextTick: typeof import('vue').nextTick;
410
+ $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;
411
+ } & Readonly<{}> & Omit<Readonly<{
412
+ name: string;
413
+ title: string;
414
+ active: boolean;
415
+ removable: boolean;
416
+ }> & Readonly<{
417
+ "onTab:switch"?: ((value: string) => any) | undefined;
418
+ "onUpdate:height"?: ((value: number) => any) | undefined;
419
+ "onUpdate:active"?: (() => any) | undefined;
420
+ }>, "name" | "emitHeight"> & import('vue').ShallowUnwrapRef<{
421
+ emitHeight: () => void;
422
+ name: import('vue').Ref<string, string>;
423
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
424
+ $slots: {
425
+ default?(_: {}): any;
426
+ };
427
+ }) | null)[];
428
+ };
429
+ attrs: Partial<{}>;
430
+ };
431
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
432
+ declare const __VLS_component: import('vue').DefineComponent<TabsProps, {
5
433
  updateCurrent: (value: string) => void;
6
434
  updateIndex: (value: number) => void;
7
- next: () => void;
435
+ next: (update?: boolean) => void;
8
436
  previous: () => void;
9
- validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof WForm>["validate"]>;
10
- validateIfNoError: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof WForm>["validate"]>;
11
- invalidate: (index: number, payload: {
12
- [x: string]: string | string[] | undefined;
13
- }) => ReturnType<ComponentInstance<typeof WForm>["invalidate"]>;
14
- initModel: (index: number) => ReturnType<ComponentInstance<typeof WForm>["initModel"]>;
437
+ jump: (name: string, update?: boolean) => void;
438
+ validate: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof WForm>["validate"]>;
439
+ validateIfNoError: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof WForm>["validate"]>;
440
+ invalidate: (name: string, messages: Record<string, string | string[] | undefined>) => ReturnType<ComponentInstance<typeof WForm>["invalidate"]>;
441
+ initModel: (name: string) => ReturnType<ComponentInstance<typeof WForm>["initModel"]>;
15
442
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
16
443
  "update:has-changes": (value: boolean) => any;
17
444
  "update:first": (value: boolean) => any;
@@ -31,7 +458,104 @@ declare const _default: import('vue').DefineComponent<TabsProps, {
31
458
  "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
32
459
  "onUpdate:progress"?: ((value: number) => any) | undefined;
33
460
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
34
- container: HTMLDivElement;
461
+ form: ({
462
+ $: import('vue').ComponentInternalInstance;
463
+ $data: {};
464
+ $props: {
465
+ readonly name?: string | undefined;
466
+ readonly title?: string | undefined;
467
+ readonly noTag?: boolean | undefined;
468
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
469
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
470
+ readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
471
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
472
+ $attrs: {
473
+ [x: string]: unknown;
474
+ };
475
+ $refs: {
476
+ [x: string]: unknown;
477
+ };
478
+ $slots: Readonly<{
479
+ [name: string]: import('vue').Slot<any> | undefined;
480
+ }>;
481
+ $root: import('vue').ComponentPublicInstance | null;
482
+ $parent: import('vue').ComponentPublicInstance | null;
483
+ $host: Element | null;
484
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
485
+ $el: any;
486
+ $options: import('vue').ComponentOptionsBase<Readonly<{
487
+ name?: string;
488
+ title?: string;
489
+ noTag?: boolean;
490
+ }> & Readonly<{
491
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
492
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
493
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
494
+ }>, {
495
+ isValid: import('vue').ComputedRef<boolean>;
496
+ hasChanges: import('vue').Ref<boolean, boolean>;
497
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
498
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
499
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
500
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
501
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
502
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
503
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
504
+ initModel: import('vue').Ref<() => void, () => void>;
505
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
506
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
507
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
508
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
509
+ "update:has-changes": (value: boolean) => any;
510
+ "update:is-valid": (value: boolean | undefined) => any;
511
+ "update:has-value": (value: boolean | null) => any;
512
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
513
+ beforeCreate?: (() => void) | (() => void)[];
514
+ created?: (() => void) | (() => void)[];
515
+ beforeMount?: (() => void) | (() => void)[];
516
+ mounted?: (() => void) | (() => void)[];
517
+ beforeUpdate?: (() => void) | (() => void)[];
518
+ updated?: (() => void) | (() => void)[];
519
+ activated?: (() => void) | (() => void)[];
520
+ deactivated?: (() => void) | (() => void)[];
521
+ beforeDestroy?: (() => void) | (() => void)[];
522
+ beforeUnmount?: (() => void) | (() => void)[];
523
+ destroyed?: (() => void) | (() => void)[];
524
+ unmounted?: (() => void) | (() => void)[];
525
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
526
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
527
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
528
+ };
529
+ $forceUpdate: () => void;
530
+ $nextTick: typeof import('vue').nextTick;
531
+ $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;
532
+ } & Readonly<{}> & Omit<Readonly<{
533
+ name?: string;
534
+ title?: string;
535
+ noTag?: boolean;
536
+ }> & Readonly<{
537
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
538
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
539
+ "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
540
+ }>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
541
+ isValid: import('vue').ComputedRef<boolean>;
542
+ hasChanges: import('vue').Ref<boolean, boolean>;
543
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
544
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
545
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
546
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
547
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
548
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
549
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
550
+ initModel: import('vue').Ref<() => void, () => void>;
551
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
552
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
553
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
554
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
555
+ $slots: {
556
+ default?(_: {}): any;
557
+ };
558
+ }) | null;
35
559
  buttonContainer: HTMLDivElement;
36
560
  button: (({
37
561
  $: import('vue').ComponentInternalInstance;
@@ -226,14 +750,18 @@ declare const _default: import('vue').DefineComponent<TabsProps, {
226
750
  "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
227
751
  }>, {
228
752
  isValid: import('vue').ComputedRef<boolean>;
229
- hasChanges: import('vue').ComputedRef<boolean>;
230
- hasValue: import('vue').ComputedRef<boolean | null>;
231
- validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
232
- invalidate: (payload: {
233
- [x: string]: string | string[] | undefined;
234
- }) => void;
235
- initModel: () => void;
236
- errorMessage: import('vue').ComputedRef<string>;
753
+ hasChanges: import('vue').Ref<boolean, boolean>;
754
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
755
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
756
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
757
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
758
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
759
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
760
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
761
+ initModel: import('vue').Ref<() => void, () => void>;
762
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
763
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
764
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
237
765
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
238
766
  "update:has-changes": (value: boolean) => any;
239
767
  "update:is-valid": (value: boolean | undefined) => any;
@@ -266,16 +794,20 @@ declare const _default: import('vue').DefineComponent<TabsProps, {
266
794
  "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
267
795
  "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
268
796
  "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
269
- }>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
797
+ }>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
270
798
  isValid: import('vue').ComputedRef<boolean>;
271
- hasChanges: import('vue').ComputedRef<boolean>;
272
- hasValue: import('vue').ComputedRef<boolean | null>;
273
- validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
274
- invalidate: (payload: {
275
- [x: string]: string | string[] | undefined;
276
- }) => void;
277
- initModel: () => void;
278
- errorMessage: import('vue').ComputedRef<string>;
799
+ hasChanges: import('vue').Ref<boolean, boolean>;
800
+ hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
801
+ hasValue: import('vue').Ref<boolean | null, boolean | null>;
802
+ hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
803
+ validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
804
+ validateMap: import('vue').Ref<Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>, Record<string, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>>;
805
+ invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
806
+ invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
807
+ initModel: import('vue').Ref<() => void, () => void>;
808
+ initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
809
+ errorMessage: import('vue').Ref<string | undefined, string | undefined>;
810
+ errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
279
811
  }> & {} & import('vue').ComponentCustomProperties & {} & {
280
812
  $slots: {
281
813
  default?(_: {}): any;
@@ -301,15 +833,7 @@ declare const _default: import('vue').DefineComponent<TabsProps, {
301
833
  "onUpdate:active"?: (() => any) | undefined;
302
834
  }>, {
303
835
  emitHeight: () => void;
304
- isValid: import('vue').ComputedRef<boolean>;
305
- hasChanges: import('vue').ComputedRef<boolean>;
306
- hasValue: import('vue').ComputedRef<boolean | null>;
307
- errorMessage: import('vue').ComputedRef<string | undefined>;
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;
836
+ name: import('vue').Ref<string, string>;
313
837
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
314
838
  "tab:switch": (value: string) => any;
315
839
  "update:height": (value: number) => any;
@@ -343,22 +867,20 @@ declare const _default: import('vue').DefineComponent<TabsProps, {
343
867
  "onTab:switch"?: ((value: string) => any) | undefined;
344
868
  "onUpdate:height"?: ((value: number) => any) | undefined;
345
869
  "onUpdate:active"?: (() => any) | undefined;
346
- }>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel" | "emitHeight"> & import('vue').ShallowUnwrapRef<{
870
+ }>, "name" | "emitHeight"> & import('vue').ShallowUnwrapRef<{
347
871
  emitHeight: () => void;
348
- isValid: import('vue').ComputedRef<boolean>;
349
- hasChanges: import('vue').ComputedRef<boolean>;
350
- hasValue: import('vue').ComputedRef<boolean | null>;
351
- errorMessage: import('vue').ComputedRef<string | undefined>;
352
- validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
353
- invalidate: (payload: {
354
- [x: string]: string | string[] | undefined;
355
- }) => void;
356
- initModel: () => void;
872
+ name: import('vue').Ref<string, string>;
357
873
  }> & {} & import('vue').ComponentCustomProperties & {} & {
358
874
  $slots: {
359
875
  default?(_: {}): any;
360
876
  };
361
877
  }) | null)[];
362
878
  }, any>;
879
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
363
880
  export default _default;
881
+ type __VLS_WithTemplateSlots<T, S> = T & {
882
+ new (): {
883
+ $slots: S;
884
+ };
885
+ };
364
886
  //# sourceMappingURL=WTabs.vue.d.ts.map