eco-vue-js 0.8.43 → 0.9.1

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 (39) hide show
  1. package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts +139 -3
  2. package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts.map +1 -1
  3. package/dist/components/Form/WFormValidator.vue.d.ts +1 -1
  4. package/dist/components/Form/WFormValidator.vue.d.ts.map +1 -1
  5. package/dist/components/Form/WFormValidator.vue.js +15 -2
  6. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.d.ts +2 -2
  7. package/dist/components/HeaderBar/WHeaderBar.vue.d.ts +4 -1
  8. package/dist/components/HeaderBar/WHeaderBar.vue.d.ts.map +1 -1
  9. package/dist/components/Input/WInputDate.vue.d.ts +12 -2
  10. package/dist/components/Input/WInputDate.vue.d.ts.map +1 -1
  11. package/dist/components/Input/WInputOptions.vue.d.ts +1 -1
  12. package/dist/components/List/types.d.ts.map +1 -1
  13. package/dist/components/Modal/WModalStepper.vue.d.ts +638 -4
  14. package/dist/components/Modal/WModalStepper.vue.d.ts.map +1 -1
  15. package/dist/components/Modal/WModalStepper.vue.js +17 -13
  16. package/dist/components/Select/WSelectAsyncSingle.vue.d.ts +4 -4
  17. package/dist/components/Select/WSelectSingle.vue.d.ts +4 -4
  18. package/dist/components/Select/WSelectStringified.vue.d.ts +4 -4
  19. package/dist/components/Tabs/WTabs.vue.d.ts +269 -12
  20. package/dist/components/Tabs/WTabs.vue.d.ts.map +1 -1
  21. package/dist/components/Tabs/WTabs.vue.js +120 -105
  22. package/dist/components/Tabs/WTabsItem.vue.d.ts +33 -0
  23. package/dist/components/Tabs/WTabsItem.vue.d.ts.map +1 -0
  24. package/dist/components/Tabs/WTabsItem.vue.js +17 -0
  25. package/dist/components/Tabs/WTabsItem.vue2.js +5 -0
  26. package/dist/components/Tabs/components/TabItem.vue.d.ts +4 -2
  27. package/dist/components/Tabs/components/TabItem.vue.d.ts.map +1 -1
  28. package/dist/components/Tabs/components/TabItem.vue.js +6 -5
  29. package/dist/components/Tabs/components/TabTitleButton.vue.d.ts +58 -0
  30. package/dist/components/Tabs/components/TabTitleButton.vue.d.ts.map +1 -0
  31. package/dist/components/Tabs/components/TabTitleButton.vue.js +125 -0
  32. package/dist/components/Tabs/components/TabTitleButton.vue2.js +5 -0
  33. package/dist/imports/componentsPlugin.d.ts +2 -1
  34. package/dist/imports/componentsPlugin.d.ts.map +1 -1
  35. package/dist/main.js +1 -0
  36. package/dist/types/types.d.ts +1 -1
  37. package/dist/utils/Modal.d.ts.map +1 -1
  38. package/eslint/recommended.js +13 -3
  39. package/package.json +5 -1
@@ -3,13 +3,330 @@ declare function __VLS_template(): {
3
3
  title?(_: {}): any;
4
4
  };
5
5
  refs: {
6
- tabs: any;
6
+ tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
7
+ customSlots?: import('vue').VNode[];
8
+ lessTransitions?: boolean;
9
+ initTab?: number;
10
+ side?: boolean;
11
+ disableMinHeight?: boolean;
12
+ noHeader?: boolean;
13
+ switchToNew?: boolean;
14
+ }> & Readonly<{
15
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
16
+ "onUpdate:current"?: ((value: string) => any) | undefined;
17
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
18
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
19
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
20
+ }>, {
21
+ updateCurrent: (value: string) => void;
22
+ updateIndex: (value: number) => void;
23
+ next: () => void;
24
+ previous: () => void;
25
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
26
+ invalidate: (index: number, payload: {
27
+ [x: string]: string | string[] | undefined;
28
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
29
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
30
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
31
+ "update:has-changes": (value: boolean) => any;
32
+ "update:current": (value: string) => any;
33
+ "update:current-index": (value: number) => any;
34
+ "update:current-title": (value: string) => any;
35
+ "update:tabs-length": (value: number) => any;
36
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
37
+ buttonContainer: HTMLDivElement;
38
+ button: (({
39
+ $: import('vue').ComponentInternalInstance;
40
+ $data: {};
41
+ $props: {
42
+ readonly active: boolean;
43
+ readonly index: number;
44
+ readonly hasError: boolean;
45
+ readonly hasChanges: boolean;
46
+ readonly title: string;
47
+ readonly icon: SVGComponent | undefined;
48
+ readonly side?: boolean | undefined;
49
+ readonly onClick?: ((value: MouseEvent) => any) | undefined;
50
+ readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
51
+ readonly "onUpdate:scroll-position"?: ((value: {
52
+ left: number;
53
+ } | {
54
+ top: number;
55
+ }) => any) | undefined;
56
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
57
+ $attrs: {
58
+ [x: string]: unknown;
59
+ };
60
+ $refs: {
61
+ [x: string]: unknown;
62
+ } & {
63
+ button: HTMLButtonElement;
64
+ };
65
+ $slots: Readonly<{
66
+ [name: string]: import('vue').Slot<any> | undefined;
67
+ }>;
68
+ $root: import('vue').ComponentPublicInstance | null;
69
+ $parent: import('vue').ComponentPublicInstance | null;
70
+ $host: Element | null;
71
+ $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
72
+ left: number;
73
+ } | {
74
+ top: number;
75
+ }) => void);
76
+ $el: any;
77
+ $options: import('vue').ComponentOptionsBase<Readonly<{
78
+ active: boolean;
79
+ index: number;
80
+ hasError: boolean;
81
+ hasChanges: boolean;
82
+ title: string;
83
+ icon: SVGComponent | undefined;
84
+ side?: boolean;
85
+ }> & Readonly<{
86
+ onClick?: ((value: MouseEvent) => any) | undefined;
87
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
88
+ "onUpdate:scroll-position"?: ((value: {
89
+ left: number;
90
+ } | {
91
+ top: number;
92
+ }) => any) | undefined;
93
+ }>, {
94
+ update: () => void;
95
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
96
+ click: (value: MouseEvent) => any;
97
+ "update:indicator-style": (value: import('vue').CSSProperties) => any;
98
+ "update:scroll-position": (value: {
99
+ left: number;
100
+ } | {
101
+ top: number;
102
+ }) => any;
103
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
104
+ beforeCreate?: (() => void) | (() => void)[];
105
+ created?: (() => void) | (() => void)[];
106
+ beforeMount?: (() => void) | (() => void)[];
107
+ mounted?: (() => void) | (() => void)[];
108
+ beforeUpdate?: (() => void) | (() => void)[];
109
+ updated?: (() => void) | (() => void)[];
110
+ activated?: (() => void) | (() => void)[];
111
+ deactivated?: (() => void) | (() => void)[];
112
+ beforeDestroy?: (() => void) | (() => void)[];
113
+ beforeUnmount?: (() => void) | (() => void)[];
114
+ destroyed?: (() => void) | (() => void)[];
115
+ unmounted?: (() => void) | (() => void)[];
116
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
117
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
118
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
119
+ };
120
+ $forceUpdate: () => void;
121
+ $nextTick: typeof import('vue').nextTick;
122
+ $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;
123
+ } & Readonly<{}> & Omit<Readonly<{
124
+ active: boolean;
125
+ index: number;
126
+ hasError: boolean;
127
+ hasChanges: boolean;
128
+ title: string;
129
+ icon: SVGComponent | undefined;
130
+ side?: boolean;
131
+ }> & Readonly<{
132
+ onClick?: ((value: MouseEvent) => any) | undefined;
133
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
134
+ "onUpdate:scroll-position"?: ((value: {
135
+ left: number;
136
+ } | {
137
+ top: number;
138
+ }) => any) | undefined;
139
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
140
+ update: () => void;
141
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
142
+ $slots: {
143
+ title?(_: {}): any;
144
+ suffix?(_: {}): any;
145
+ right?(_: {}): any;
146
+ };
147
+ }) | null)[];
148
+ tabItem: (({
149
+ $: import('vue').ComponentInternalInstance;
150
+ $data: {};
151
+ $props: {
152
+ readonly active: boolean;
153
+ readonly "onUpdate:height"?: ((value: number) => any) | undefined;
154
+ readonly "onUpdate:active"?: (() => any) | undefined;
155
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
156
+ $attrs: {
157
+ [x: string]: unknown;
158
+ };
159
+ $refs: {
160
+ [x: string]: unknown;
161
+ } & {
162
+ element: HTMLDivElement;
163
+ };
164
+ $slots: Readonly<{
165
+ [name: string]: import('vue').Slot<any> | undefined;
166
+ }>;
167
+ $root: import('vue').ComponentPublicInstance | null;
168
+ $parent: import('vue').ComponentPublicInstance | null;
169
+ $host: Element | null;
170
+ $emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
171
+ $el: any;
172
+ $options: import('vue').ComponentOptionsBase<Readonly<{
173
+ active: boolean;
174
+ }> & Readonly<{
175
+ "onUpdate:height"?: ((value: number) => any) | undefined;
176
+ "onUpdate:active"?: (() => any) | undefined;
177
+ }>, {
178
+ emitHeight: () => void;
179
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
180
+ "update:height": (value: number) => any;
181
+ "update:active": () => any;
182
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
183
+ beforeCreate?: (() => void) | (() => void)[];
184
+ created?: (() => void) | (() => void)[];
185
+ beforeMount?: (() => void) | (() => void)[];
186
+ mounted?: (() => void) | (() => void)[];
187
+ beforeUpdate?: (() => void) | (() => void)[];
188
+ updated?: (() => void) | (() => void)[];
189
+ activated?: (() => void) | (() => void)[];
190
+ deactivated?: (() => void) | (() => void)[];
191
+ beforeDestroy?: (() => void) | (() => void)[];
192
+ beforeUnmount?: (() => void) | (() => void)[];
193
+ destroyed?: (() => void) | (() => void)[];
194
+ unmounted?: (() => void) | (() => void)[];
195
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
196
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
197
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
198
+ };
199
+ $forceUpdate: () => void;
200
+ $nextTick: typeof import('vue').nextTick;
201
+ $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;
202
+ } & Readonly<{}> & Omit<Readonly<{
203
+ active: boolean;
204
+ }> & Readonly<{
205
+ "onUpdate:height"?: ((value: number) => any) | undefined;
206
+ "onUpdate:active"?: (() => any) | undefined;
207
+ }>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
208
+ emitHeight: () => void;
209
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
210
+ $slots: {
211
+ default?(_: {}): any;
212
+ };
213
+ }) | null)[];
214
+ form: (({
215
+ $: import('vue').ComponentInternalInstance;
216
+ $data: {};
217
+ $props: {
218
+ readonly name?: string | undefined;
219
+ readonly title?: string | undefined;
220
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
221
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
222
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
223
+ $attrs: {
224
+ [x: string]: unknown;
225
+ };
226
+ $refs: {
227
+ [x: string]: unknown;
228
+ };
229
+ $slots: Readonly<{
230
+ [name: string]: import('vue').Slot<any> | undefined;
231
+ }>;
232
+ $root: import('vue').ComponentPublicInstance | null;
233
+ $parent: import('vue').ComponentPublicInstance | null;
234
+ $host: Element | null;
235
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void);
236
+ $el: any;
237
+ $options: import('vue').ComponentOptionsBase<Readonly<{
238
+ name?: string;
239
+ title?: string;
240
+ }> & Readonly<{
241
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
242
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
243
+ }>, {
244
+ isValid: import('vue').ComputedRef<boolean>;
245
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
246
+ invalidate: (payload: {
247
+ [x: string]: string | string[] | undefined;
248
+ }) => void;
249
+ initModel: () => void;
250
+ errorMessage: import('vue').ComputedRef<string>;
251
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
252
+ "update:has-changes": (value: boolean) => any;
253
+ "update:is-valid": (value: boolean | undefined) => any;
254
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
255
+ beforeCreate?: (() => void) | (() => void)[];
256
+ created?: (() => void) | (() => void)[];
257
+ beforeMount?: (() => void) | (() => void)[];
258
+ mounted?: (() => void) | (() => void)[];
259
+ beforeUpdate?: (() => void) | (() => void)[];
260
+ updated?: (() => void) | (() => void)[];
261
+ activated?: (() => void) | (() => void)[];
262
+ deactivated?: (() => void) | (() => void)[];
263
+ beforeDestroy?: (() => void) | (() => void)[];
264
+ beforeUnmount?: (() => void) | (() => void)[];
265
+ destroyed?: (() => void) | (() => void)[];
266
+ unmounted?: (() => void) | (() => void)[];
267
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
268
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
269
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
270
+ };
271
+ $forceUpdate: () => void;
272
+ $nextTick: typeof import('vue').nextTick;
273
+ $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;
274
+ } & Readonly<{}> & Omit<Readonly<{
275
+ name?: string;
276
+ title?: string;
277
+ }> & Readonly<{
278
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
279
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
280
+ }>, "errorMessage" | "isValid" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
281
+ isValid: import('vue').ComputedRef<boolean>;
282
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
283
+ invalidate: (payload: {
284
+ [x: string]: string | string[] | undefined;
285
+ }) => void;
286
+ initModel: () => void;
287
+ errorMessage: import('vue').ComputedRef<string>;
288
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
289
+ $slots: {
290
+ default?(_: {}): any;
291
+ };
292
+ }) | null)[];
293
+ }, any, import('vue').ComponentProvideOptions, {
294
+ P: {};
295
+ B: {};
296
+ D: {};
297
+ C: {};
298
+ M: {};
299
+ Defaults: {};
300
+ }, Readonly<{
301
+ customSlots?: import('vue').VNode[];
302
+ lessTransitions?: boolean;
303
+ initTab?: number;
304
+ side?: boolean;
305
+ disableMinHeight?: boolean;
306
+ noHeader?: boolean;
307
+ switchToNew?: boolean;
308
+ }> & Readonly<{
309
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
310
+ "onUpdate:current"?: ((value: string) => any) | undefined;
311
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
312
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
313
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
314
+ }>, {
315
+ updateCurrent: (value: string) => void;
316
+ updateIndex: (value: number) => void;
317
+ next: () => void;
318
+ previous: () => void;
319
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
320
+ invalidate: (index: number, payload: {
321
+ [x: string]: string | string[] | undefined;
322
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
323
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
324
+ }, {}, {}, {}, {}> | null;
7
325
  };
8
326
  attrs: Partial<{}>;
9
327
  };
10
328
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
329
  declare const __VLS_component: import('vue').DefineComponent<{
12
- names?: string[];
13
330
  loading?: boolean;
14
331
  disabled?: boolean;
15
332
  disabledNext?: boolean;
@@ -24,7 +341,6 @@ declare const __VLS_component: import('vue').DefineComponent<{
24
341
  next: (current: number) => any;
25
342
  "update:current": (value: number) => any;
26
343
  }, string, import('vue').PublicProps, Readonly<{
27
- names?: string[];
28
344
  loading?: boolean;
29
345
  disabled?: boolean;
30
346
  disabledNext?: boolean;
@@ -36,7 +352,325 @@ declare const __VLS_component: import('vue').DefineComponent<{
36
352
  onNext?: ((current: number) => any) | undefined;
37
353
  "onUpdate:current"?: ((value: number) => any) | undefined;
38
354
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
39
- tabs: any;
355
+ tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
356
+ customSlots?: import('vue').VNode[];
357
+ lessTransitions?: boolean;
358
+ initTab?: number;
359
+ side?: boolean;
360
+ disableMinHeight?: boolean;
361
+ noHeader?: boolean;
362
+ switchToNew?: boolean;
363
+ }> & Readonly<{
364
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
365
+ "onUpdate:current"?: ((value: string) => any) | undefined;
366
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
367
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
368
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
369
+ }>, {
370
+ updateCurrent: (value: string) => void;
371
+ updateIndex: (value: number) => void;
372
+ next: () => void;
373
+ previous: () => void;
374
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
375
+ invalidate: (index: number, payload: {
376
+ [x: string]: string | string[] | undefined;
377
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
378
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
379
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
380
+ "update:has-changes": (value: boolean) => any;
381
+ "update:current": (value: string) => any;
382
+ "update:current-index": (value: number) => any;
383
+ "update:current-title": (value: string) => any;
384
+ "update:tabs-length": (value: number) => any;
385
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
386
+ buttonContainer: HTMLDivElement;
387
+ button: (({
388
+ $: import('vue').ComponentInternalInstance;
389
+ $data: {};
390
+ $props: {
391
+ readonly active: boolean;
392
+ readonly index: number;
393
+ readonly hasError: boolean;
394
+ readonly hasChanges: boolean;
395
+ readonly title: string;
396
+ readonly icon: SVGComponent | undefined;
397
+ readonly side?: boolean | undefined;
398
+ readonly onClick?: ((value: MouseEvent) => any) | undefined;
399
+ readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
400
+ readonly "onUpdate:scroll-position"?: ((value: {
401
+ left: number;
402
+ } | {
403
+ top: number;
404
+ }) => any) | undefined;
405
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
406
+ $attrs: {
407
+ [x: string]: unknown;
408
+ };
409
+ $refs: {
410
+ [x: string]: unknown;
411
+ } & {
412
+ button: HTMLButtonElement;
413
+ };
414
+ $slots: Readonly<{
415
+ [name: string]: import('vue').Slot<any> | undefined;
416
+ }>;
417
+ $root: import('vue').ComponentPublicInstance | null;
418
+ $parent: import('vue').ComponentPublicInstance | null;
419
+ $host: Element | null;
420
+ $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
421
+ left: number;
422
+ } | {
423
+ top: number;
424
+ }) => void);
425
+ $el: any;
426
+ $options: import('vue').ComponentOptionsBase<Readonly<{
427
+ active: boolean;
428
+ index: number;
429
+ hasError: boolean;
430
+ hasChanges: boolean;
431
+ title: string;
432
+ icon: SVGComponent | undefined;
433
+ side?: boolean;
434
+ }> & Readonly<{
435
+ onClick?: ((value: MouseEvent) => any) | undefined;
436
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
437
+ "onUpdate:scroll-position"?: ((value: {
438
+ left: number;
439
+ } | {
440
+ top: number;
441
+ }) => any) | undefined;
442
+ }>, {
443
+ update: () => void;
444
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
445
+ click: (value: MouseEvent) => any;
446
+ "update:indicator-style": (value: import('vue').CSSProperties) => any;
447
+ "update:scroll-position": (value: {
448
+ left: number;
449
+ } | {
450
+ top: number;
451
+ }) => any;
452
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
453
+ beforeCreate?: (() => void) | (() => void)[];
454
+ created?: (() => void) | (() => void)[];
455
+ beforeMount?: (() => void) | (() => void)[];
456
+ mounted?: (() => void) | (() => void)[];
457
+ beforeUpdate?: (() => void) | (() => void)[];
458
+ updated?: (() => void) | (() => void)[];
459
+ activated?: (() => void) | (() => void)[];
460
+ deactivated?: (() => void) | (() => void)[];
461
+ beforeDestroy?: (() => void) | (() => void)[];
462
+ beforeUnmount?: (() => void) | (() => void)[];
463
+ destroyed?: (() => void) | (() => void)[];
464
+ unmounted?: (() => void) | (() => void)[];
465
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
466
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
467
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
468
+ };
469
+ $forceUpdate: () => void;
470
+ $nextTick: typeof import('vue').nextTick;
471
+ $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;
472
+ } & Readonly<{}> & Omit<Readonly<{
473
+ active: boolean;
474
+ index: number;
475
+ hasError: boolean;
476
+ hasChanges: boolean;
477
+ title: string;
478
+ icon: SVGComponent | undefined;
479
+ side?: boolean;
480
+ }> & Readonly<{
481
+ onClick?: ((value: MouseEvent) => any) | undefined;
482
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
483
+ "onUpdate:scroll-position"?: ((value: {
484
+ left: number;
485
+ } | {
486
+ top: number;
487
+ }) => any) | undefined;
488
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
489
+ update: () => void;
490
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
491
+ $slots: {
492
+ title?(_: {}): any;
493
+ suffix?(_: {}): any;
494
+ right?(_: {}): any;
495
+ };
496
+ }) | null)[];
497
+ tabItem: (({
498
+ $: import('vue').ComponentInternalInstance;
499
+ $data: {};
500
+ $props: {
501
+ readonly active: boolean;
502
+ readonly "onUpdate:height"?: ((value: number) => any) | undefined;
503
+ readonly "onUpdate:active"?: (() => any) | undefined;
504
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
505
+ $attrs: {
506
+ [x: string]: unknown;
507
+ };
508
+ $refs: {
509
+ [x: string]: unknown;
510
+ } & {
511
+ element: HTMLDivElement;
512
+ };
513
+ $slots: Readonly<{
514
+ [name: string]: import('vue').Slot<any> | undefined;
515
+ }>;
516
+ $root: import('vue').ComponentPublicInstance | null;
517
+ $parent: import('vue').ComponentPublicInstance | null;
518
+ $host: Element | null;
519
+ $emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
520
+ $el: any;
521
+ $options: import('vue').ComponentOptionsBase<Readonly<{
522
+ active: boolean;
523
+ }> & Readonly<{
524
+ "onUpdate:height"?: ((value: number) => any) | undefined;
525
+ "onUpdate:active"?: (() => any) | undefined;
526
+ }>, {
527
+ emitHeight: () => void;
528
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
529
+ "update:height": (value: number) => any;
530
+ "update:active": () => any;
531
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
532
+ beforeCreate?: (() => void) | (() => void)[];
533
+ created?: (() => void) | (() => void)[];
534
+ beforeMount?: (() => void) | (() => void)[];
535
+ mounted?: (() => void) | (() => void)[];
536
+ beforeUpdate?: (() => void) | (() => void)[];
537
+ updated?: (() => void) | (() => void)[];
538
+ activated?: (() => void) | (() => void)[];
539
+ deactivated?: (() => void) | (() => void)[];
540
+ beforeDestroy?: (() => void) | (() => void)[];
541
+ beforeUnmount?: (() => void) | (() => void)[];
542
+ destroyed?: (() => void) | (() => void)[];
543
+ unmounted?: (() => void) | (() => void)[];
544
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
545
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
546
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
547
+ };
548
+ $forceUpdate: () => void;
549
+ $nextTick: typeof import('vue').nextTick;
550
+ $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;
551
+ } & Readonly<{}> & Omit<Readonly<{
552
+ active: boolean;
553
+ }> & Readonly<{
554
+ "onUpdate:height"?: ((value: number) => any) | undefined;
555
+ "onUpdate:active"?: (() => any) | undefined;
556
+ }>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
557
+ emitHeight: () => void;
558
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
559
+ $slots: {
560
+ default?(_: {}): any;
561
+ };
562
+ }) | null)[];
563
+ form: (({
564
+ $: import('vue').ComponentInternalInstance;
565
+ $data: {};
566
+ $props: {
567
+ readonly name?: string | undefined;
568
+ readonly title?: string | undefined;
569
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
570
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
571
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
572
+ $attrs: {
573
+ [x: string]: unknown;
574
+ };
575
+ $refs: {
576
+ [x: string]: unknown;
577
+ };
578
+ $slots: Readonly<{
579
+ [name: string]: import('vue').Slot<any> | undefined;
580
+ }>;
581
+ $root: import('vue').ComponentPublicInstance | null;
582
+ $parent: import('vue').ComponentPublicInstance | null;
583
+ $host: Element | null;
584
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void);
585
+ $el: any;
586
+ $options: import('vue').ComponentOptionsBase<Readonly<{
587
+ name?: string;
588
+ title?: string;
589
+ }> & Readonly<{
590
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
591
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
592
+ }>, {
593
+ isValid: import('vue').ComputedRef<boolean>;
594
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
595
+ invalidate: (payload: {
596
+ [x: string]: string | string[] | undefined;
597
+ }) => void;
598
+ initModel: () => void;
599
+ errorMessage: import('vue').ComputedRef<string>;
600
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
601
+ "update:has-changes": (value: boolean) => any;
602
+ "update:is-valid": (value: boolean | undefined) => any;
603
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
604
+ beforeCreate?: (() => void) | (() => void)[];
605
+ created?: (() => void) | (() => void)[];
606
+ beforeMount?: (() => void) | (() => void)[];
607
+ mounted?: (() => void) | (() => void)[];
608
+ beforeUpdate?: (() => void) | (() => void)[];
609
+ updated?: (() => void) | (() => void)[];
610
+ activated?: (() => void) | (() => void)[];
611
+ deactivated?: (() => void) | (() => void)[];
612
+ beforeDestroy?: (() => void) | (() => void)[];
613
+ beforeUnmount?: (() => void) | (() => void)[];
614
+ destroyed?: (() => void) | (() => void)[];
615
+ unmounted?: (() => void) | (() => void)[];
616
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
617
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
618
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
619
+ };
620
+ $forceUpdate: () => void;
621
+ $nextTick: typeof import('vue').nextTick;
622
+ $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;
623
+ } & Readonly<{}> & Omit<Readonly<{
624
+ name?: string;
625
+ title?: string;
626
+ }> & Readonly<{
627
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
628
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
629
+ }>, "errorMessage" | "isValid" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
630
+ isValid: import('vue').ComputedRef<boolean>;
631
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
632
+ invalidate: (payload: {
633
+ [x: string]: string | string[] | undefined;
634
+ }) => void;
635
+ initModel: () => void;
636
+ errorMessage: import('vue').ComputedRef<string>;
637
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
638
+ $slots: {
639
+ default?(_: {}): any;
640
+ };
641
+ }) | null)[];
642
+ }, any, import('vue').ComponentProvideOptions, {
643
+ P: {};
644
+ B: {};
645
+ D: {};
646
+ C: {};
647
+ M: {};
648
+ Defaults: {};
649
+ }, Readonly<{
650
+ customSlots?: import('vue').VNode[];
651
+ lessTransitions?: boolean;
652
+ initTab?: number;
653
+ side?: boolean;
654
+ disableMinHeight?: boolean;
655
+ noHeader?: boolean;
656
+ switchToNew?: boolean;
657
+ }> & Readonly<{
658
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
659
+ "onUpdate:current"?: ((value: string) => any) | undefined;
660
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
661
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
662
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
663
+ }>, {
664
+ updateCurrent: (value: string) => void;
665
+ updateIndex: (value: number) => void;
666
+ next: () => void;
667
+ previous: () => void;
668
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
669
+ invalidate: (index: number, payload: {
670
+ [x: string]: string | string[] | undefined;
671
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
672
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
673
+ }, {}, {}, {}, {}> | null;
40
674
  }, any>;
41
675
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
42
676
  export default _default;