eco-vue-js 0.9.2 → 0.9.3
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.
- package/dist/components/Modal/WModalStepper.vue.d.ts +470 -375
- package/dist/components/Modal/WModalStepper.vue.d.ts.map +1 -1
- package/dist/components/Modal/WModalStepper.vue.js +7 -5
- package/dist/components/Tabs/WTabs.vue.d.ts.map +1 -1
- package/dist/components/Tabs/WTabs.vue.js +10 -8
- package/dist/components/Tabs/WTabsStepper.vue.d.ts +322 -1
- package/dist/components/Tabs/WTabsStepper.vue.d.ts.map +1 -1
- package/dist/components/Tabs/WTabsStepper.vue.js +8 -8
- package/package.json +1 -1
@@ -1,9 +1,386 @@
|
|
1
1
|
declare function __VLS_template(): {
|
2
2
|
slots: {
|
3
3
|
title?(_: {}): any;
|
4
|
+
default?(_: {}): any;
|
4
5
|
};
|
5
6
|
refs: {
|
6
|
-
tabsStepper:
|
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
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
241
|
+
$attrs: {
|
242
|
+
[x: string]: unknown;
|
243
|
+
};
|
244
|
+
$refs: {
|
245
|
+
[x: string]: unknown;
|
246
|
+
};
|
247
|
+
$slots: Readonly<{
|
248
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
249
|
+
}>;
|
250
|
+
$root: import('vue').ComponentPublicInstance | null;
|
251
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
252
|
+
$host: Element | null;
|
253
|
+
$emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void);
|
254
|
+
$el: any;
|
255
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
256
|
+
name?: string;
|
257
|
+
title?: string;
|
258
|
+
}> & Readonly<{
|
259
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
260
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
261
|
+
}>, {
|
262
|
+
isValid: import('vue').ComputedRef<boolean>;
|
263
|
+
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
264
|
+
invalidate: (payload: {
|
265
|
+
[x: string]: string | string[] | undefined;
|
266
|
+
}) => void;
|
267
|
+
initModel: () => void;
|
268
|
+
errorMessage: import('vue').ComputedRef<string>;
|
269
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
270
|
+
"update:has-changes": (value: boolean) => any;
|
271
|
+
"update:is-valid": (value: boolean | undefined) => any;
|
272
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
273
|
+
beforeCreate?: (() => void) | (() => void)[];
|
274
|
+
created?: (() => void) | (() => void)[];
|
275
|
+
beforeMount?: (() => void) | (() => void)[];
|
276
|
+
mounted?: (() => void) | (() => void)[];
|
277
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
278
|
+
updated?: (() => void) | (() => void)[];
|
279
|
+
activated?: (() => void) | (() => void)[];
|
280
|
+
deactivated?: (() => void) | (() => void)[];
|
281
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
282
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
283
|
+
destroyed?: (() => void) | (() => void)[];
|
284
|
+
unmounted?: (() => void) | (() => void)[];
|
285
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
286
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
287
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
288
|
+
};
|
289
|
+
$forceUpdate: () => void;
|
290
|
+
$nextTick: typeof import('vue').nextTick;
|
291
|
+
$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;
|
292
|
+
} & Readonly<{}> & Omit<Readonly<{
|
293
|
+
name?: string;
|
294
|
+
title?: string;
|
295
|
+
}> & Readonly<{
|
296
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
297
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
298
|
+
}>, "errorMessage" | "isValid" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
|
299
|
+
isValid: import('vue').ComputedRef<boolean>;
|
300
|
+
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
301
|
+
invalidate: (payload: {
|
302
|
+
[x: string]: string | string[] | undefined;
|
303
|
+
}) => void;
|
304
|
+
initModel: () => void;
|
305
|
+
errorMessage: import('vue').ComputedRef<string>;
|
306
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
307
|
+
$slots: {
|
308
|
+
default?(_: {}): any;
|
309
|
+
};
|
310
|
+
}) | null)[];
|
311
|
+
}, any, import('vue').ComponentProvideOptions, {
|
312
|
+
P: {};
|
313
|
+
B: {};
|
314
|
+
D: {};
|
315
|
+
C: {};
|
316
|
+
M: {};
|
317
|
+
Defaults: {};
|
318
|
+
}, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
319
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
320
|
+
"onUpdate:current"?: ((value: string) => any) | undefined;
|
321
|
+
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
322
|
+
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
323
|
+
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
324
|
+
}>, {
|
325
|
+
updateCurrent: (value: string) => void;
|
326
|
+
updateIndex: (value: number) => void;
|
327
|
+
next: () => void;
|
328
|
+
previous: () => void;
|
329
|
+
validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
330
|
+
invalidate: (index: number, payload: {
|
331
|
+
[x: string]: string | string[] | undefined;
|
332
|
+
}) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
333
|
+
initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
334
|
+
}, {}, {}, {}, {}> | null;
|
335
|
+
};
|
336
|
+
$slots: Readonly<{
|
337
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
338
|
+
}>;
|
339
|
+
$root: import('vue').ComponentPublicInstance | null;
|
340
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
341
|
+
$host: Element | null;
|
342
|
+
$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);
|
343
|
+
$el: any;
|
344
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
|
345
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
346
|
+
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
347
|
+
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
348
|
+
"onUpdate:current"?: ((value: string) => any) | undefined;
|
349
|
+
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
350
|
+
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
351
|
+
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
352
|
+
}>, {
|
353
|
+
next: () => void;
|
354
|
+
previous: () => void;
|
355
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
356
|
+
"update:has-changes": (value: boolean) => any;
|
357
|
+
"update:first": (value: boolean) => any;
|
358
|
+
"update:last": (value: boolean) => any;
|
359
|
+
"update:current": (value: string) => any;
|
360
|
+
"update:current-index": (value: number) => any;
|
361
|
+
"update:current-title": (value: string) => any;
|
362
|
+
"update:progress": (value: number) => any;
|
363
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
364
|
+
beforeCreate?: (() => void) | (() => void)[];
|
365
|
+
created?: (() => void) | (() => void)[];
|
366
|
+
beforeMount?: (() => void) | (() => void)[];
|
367
|
+
mounted?: (() => void) | (() => void)[];
|
368
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
369
|
+
updated?: (() => void) | (() => void)[];
|
370
|
+
activated?: (() => void) | (() => void)[];
|
371
|
+
deactivated?: (() => void) | (() => void)[];
|
372
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
373
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
374
|
+
destroyed?: (() => void) | (() => void)[];
|
375
|
+
unmounted?: (() => void) | (() => void)[];
|
376
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
377
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
378
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
379
|
+
};
|
380
|
+
$forceUpdate: () => void;
|
381
|
+
$nextTick: typeof import('vue').nextTick;
|
382
|
+
$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;
|
383
|
+
} & Readonly<{}> & Omit<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
|
7
384
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
8
385
|
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
9
386
|
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
@@ -11,18 +388,60 @@ declare function __VLS_template(): {
|
|
11
388
|
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
12
389
|
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
13
390
|
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
14
|
-
}>, {
|
391
|
+
}>, "previous" | "next"> & import('vue').ShallowUnwrapRef<{
|
15
392
|
next: () => void;
|
16
393
|
previous: () => void;
|
17
|
-
}
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
394
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
395
|
+
$slots: {
|
396
|
+
default?(_: {}): any;
|
397
|
+
};
|
398
|
+
}) | null;
|
399
|
+
};
|
400
|
+
attrs: Partial<{}>;
|
401
|
+
};
|
402
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
403
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
404
|
+
loading?: boolean;
|
405
|
+
disabled?: boolean;
|
406
|
+
disabledNext?: boolean;
|
407
|
+
}, {
|
408
|
+
next: () => void;
|
409
|
+
previous: () => void;
|
410
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
411
|
+
submit: () => any;
|
412
|
+
"close:modal": () => any;
|
413
|
+
"update:has-changes": (value: boolean) => any;
|
414
|
+
}, string, import('vue').PublicProps, Readonly<{
|
415
|
+
loading?: boolean;
|
416
|
+
disabled?: boolean;
|
417
|
+
disabledNext?: boolean;
|
418
|
+
}> & Readonly<{
|
419
|
+
onSubmit?: (() => any) | undefined;
|
420
|
+
"onClose:modal"?: (() => any) | undefined;
|
421
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
422
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
423
|
+
tabsStepper: ({
|
424
|
+
$: import('vue').ComponentInternalInstance;
|
425
|
+
$data: {};
|
426
|
+
$props: {
|
427
|
+
readonly customSlots?: import('vue').VNode[] | undefined;
|
428
|
+
readonly lessTransitions?: boolean | undefined;
|
429
|
+
readonly initTab?: number | undefined;
|
430
|
+
readonly disableMinHeight?: boolean | undefined;
|
431
|
+
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
432
|
+
readonly "onUpdate:first"?: ((value: boolean) => any) | undefined;
|
433
|
+
readonly "onUpdate:last"?: ((value: boolean) => any) | undefined;
|
434
|
+
readonly "onUpdate:current"?: ((value: string) => any) | undefined;
|
435
|
+
readonly "onUpdate:current-index"?: ((value: number) => any) | undefined;
|
436
|
+
readonly "onUpdate:current-title"?: ((value: string) => any) | undefined;
|
437
|
+
readonly "onUpdate:progress"?: ((value: number) => any) | undefined;
|
438
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
439
|
+
$attrs: {
|
440
|
+
[x: string]: unknown;
|
441
|
+
};
|
442
|
+
$refs: {
|
443
|
+
[x: string]: unknown;
|
444
|
+
} & {
|
26
445
|
tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
27
446
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
28
447
|
"onUpdate:current"?: ((value: string) => any) | undefined;
|
@@ -329,14 +748,16 @@ declare function __VLS_template(): {
|
|
329
748
|
}) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
330
749
|
initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
331
750
|
}, {}, {}, {}, {}> | null;
|
332
|
-
}
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
751
|
+
};
|
752
|
+
$slots: Readonly<{
|
753
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
754
|
+
}>;
|
755
|
+
$root: import('vue').ComponentPublicInstance | null;
|
756
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
757
|
+
$host: Element | null;
|
758
|
+
$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);
|
759
|
+
$el: any;
|
760
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
|
340
761
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
341
762
|
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
342
763
|
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
@@ -347,365 +768,35 @@ declare function __VLS_template(): {
|
|
347
768
|
}>, {
|
348
769
|
next: () => void;
|
349
770
|
previous: () => void;
|
350
|
-
}, {}, {}, {}, {}> | null;
|
351
|
-
};
|
352
|
-
attrs: Partial<{}>;
|
353
|
-
};
|
354
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
355
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
356
|
-
loading?: boolean;
|
357
|
-
disabled?: boolean;
|
358
|
-
disabledNext?: boolean;
|
359
|
-
}, {
|
360
|
-
next: () => void;
|
361
|
-
previous: () => void;
|
362
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
363
|
-
submit: () => any;
|
364
|
-
"close:modal": () => any;
|
365
|
-
"update:has-changes": (value: boolean) => any;
|
366
|
-
}, string, import('vue').PublicProps, Readonly<{
|
367
|
-
loading?: boolean;
|
368
|
-
disabled?: boolean;
|
369
|
-
disabledNext?: boolean;
|
370
|
-
}> & Readonly<{
|
371
|
-
onSubmit?: (() => any) | undefined;
|
372
|
-
"onClose:modal"?: (() => any) | undefined;
|
373
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
374
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
375
|
-
tabsStepper: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
|
376
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
377
|
-
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
378
|
-
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
379
|
-
"onUpdate:current"?: ((value: string) => any) | undefined;
|
380
|
-
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
381
|
-
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
382
|
-
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
383
|
-
}>, {
|
384
|
-
next: () => void;
|
385
|
-
previous: () => void;
|
386
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
387
|
-
"update:has-changes": (value: boolean) => any;
|
388
|
-
"update:first": (value: boolean) => any;
|
389
|
-
"update:last": (value: boolean) => any;
|
390
|
-
"update:current": (value: string) => any;
|
391
|
-
"update:current-index": (value: number) => any;
|
392
|
-
"update:current-title": (value: string) => any;
|
393
|
-
"update:progress": (value: number) => any;
|
394
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
395
|
-
tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
396
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
397
|
-
"onUpdate:current"?: ((value: string) => any) | undefined;
|
398
|
-
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
399
|
-
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
400
|
-
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
401
|
-
}>, {
|
402
|
-
updateCurrent: (value: string) => void;
|
403
|
-
updateIndex: (value: number) => void;
|
404
|
-
next: () => void;
|
405
|
-
previous: () => void;
|
406
|
-
validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
407
|
-
invalidate: (index: number, payload: {
|
408
|
-
[x: string]: string | string[] | undefined;
|
409
|
-
}) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
410
|
-
initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
411
771
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
412
772
|
"update:has-changes": (value: boolean) => any;
|
773
|
+
"update:first": (value: boolean) => any;
|
774
|
+
"update:last": (value: boolean) => any;
|
413
775
|
"update:current": (value: string) => any;
|
414
776
|
"update:current-index": (value: number) => any;
|
415
777
|
"update:current-title": (value: string) => any;
|
416
|
-
"update:
|
417
|
-
},
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
$attrs: {
|
439
|
-
[x: string]: unknown;
|
440
|
-
};
|
441
|
-
$refs: {
|
442
|
-
[x: string]: unknown;
|
443
|
-
} & {
|
444
|
-
button: HTMLButtonElement;
|
445
|
-
};
|
446
|
-
$slots: Readonly<{
|
447
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
448
|
-
}>;
|
449
|
-
$root: import('vue').ComponentPublicInstance | null;
|
450
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
451
|
-
$host: Element | null;
|
452
|
-
$emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
|
453
|
-
left: number;
|
454
|
-
} | {
|
455
|
-
top: number;
|
456
|
-
}) => void);
|
457
|
-
$el: any;
|
458
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
459
|
-
active: boolean;
|
460
|
-
index: number;
|
461
|
-
hasError: boolean;
|
462
|
-
hasChanges: boolean;
|
463
|
-
title: string;
|
464
|
-
icon: SVGComponent | undefined;
|
465
|
-
side?: boolean;
|
466
|
-
}> & Readonly<{
|
467
|
-
onClick?: ((value: MouseEvent) => any) | undefined;
|
468
|
-
"onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
469
|
-
"onUpdate:scroll-position"?: ((value: {
|
470
|
-
left: number;
|
471
|
-
} | {
|
472
|
-
top: number;
|
473
|
-
}) => any) | undefined;
|
474
|
-
}>, {
|
475
|
-
update: () => void;
|
476
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
477
|
-
click: (value: MouseEvent) => any;
|
478
|
-
"update:indicator-style": (value: import('vue').CSSProperties) => any;
|
479
|
-
"update:scroll-position": (value: {
|
480
|
-
left: number;
|
481
|
-
} | {
|
482
|
-
top: number;
|
483
|
-
}) => any;
|
484
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
485
|
-
beforeCreate?: (() => void) | (() => void)[];
|
486
|
-
created?: (() => void) | (() => void)[];
|
487
|
-
beforeMount?: (() => void) | (() => void)[];
|
488
|
-
mounted?: (() => void) | (() => void)[];
|
489
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
490
|
-
updated?: (() => void) | (() => void)[];
|
491
|
-
activated?: (() => void) | (() => void)[];
|
492
|
-
deactivated?: (() => void) | (() => void)[];
|
493
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
494
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
495
|
-
destroyed?: (() => void) | (() => void)[];
|
496
|
-
unmounted?: (() => void) | (() => void)[];
|
497
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
498
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
499
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
500
|
-
};
|
501
|
-
$forceUpdate: () => void;
|
502
|
-
$nextTick: typeof import('vue').nextTick;
|
503
|
-
$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;
|
504
|
-
} & Readonly<{}> & Omit<Readonly<{
|
505
|
-
active: boolean;
|
506
|
-
index: number;
|
507
|
-
hasError: boolean;
|
508
|
-
hasChanges: boolean;
|
509
|
-
title: string;
|
510
|
-
icon: SVGComponent | undefined;
|
511
|
-
side?: boolean;
|
512
|
-
}> & Readonly<{
|
513
|
-
onClick?: ((value: MouseEvent) => any) | undefined;
|
514
|
-
"onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
515
|
-
"onUpdate:scroll-position"?: ((value: {
|
516
|
-
left: number;
|
517
|
-
} | {
|
518
|
-
top: number;
|
519
|
-
}) => any) | undefined;
|
520
|
-
}>, "update"> & import('vue').ShallowUnwrapRef<{
|
521
|
-
update: () => void;
|
522
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
523
|
-
$slots: {
|
524
|
-
title?(_: {}): any;
|
525
|
-
suffix?(_: {}): any;
|
526
|
-
right?(_: {}): any;
|
527
|
-
};
|
528
|
-
}) | null)[];
|
529
|
-
tabItem: (({
|
530
|
-
$: import('vue').ComponentInternalInstance;
|
531
|
-
$data: {};
|
532
|
-
$props: {
|
533
|
-
readonly active: boolean;
|
534
|
-
readonly removable: boolean;
|
535
|
-
readonly "onUpdate:height"?: ((value: number) => any) | undefined;
|
536
|
-
readonly "onUpdate:active"?: (() => any) | undefined;
|
537
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
538
|
-
$attrs: {
|
539
|
-
[x: string]: unknown;
|
540
|
-
};
|
541
|
-
$refs: {
|
542
|
-
[x: string]: unknown;
|
543
|
-
} & {
|
544
|
-
element: HTMLDivElement;
|
545
|
-
};
|
546
|
-
$slots: Readonly<{
|
547
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
548
|
-
}>;
|
549
|
-
$root: import('vue').ComponentPublicInstance | null;
|
550
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
551
|
-
$host: Element | null;
|
552
|
-
$emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
|
553
|
-
$el: any;
|
554
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
555
|
-
active: boolean;
|
556
|
-
removable: boolean;
|
557
|
-
}> & Readonly<{
|
558
|
-
"onUpdate:height"?: ((value: number) => any) | undefined;
|
559
|
-
"onUpdate:active"?: (() => any) | undefined;
|
560
|
-
}>, {
|
561
|
-
emitHeight: () => void;
|
562
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
563
|
-
"update:height": (value: number) => any;
|
564
|
-
"update:active": () => any;
|
565
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
566
|
-
beforeCreate?: (() => void) | (() => void)[];
|
567
|
-
created?: (() => void) | (() => void)[];
|
568
|
-
beforeMount?: (() => void) | (() => void)[];
|
569
|
-
mounted?: (() => void) | (() => void)[];
|
570
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
571
|
-
updated?: (() => void) | (() => void)[];
|
572
|
-
activated?: (() => void) | (() => void)[];
|
573
|
-
deactivated?: (() => void) | (() => void)[];
|
574
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
575
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
576
|
-
destroyed?: (() => void) | (() => void)[];
|
577
|
-
unmounted?: (() => void) | (() => void)[];
|
578
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
579
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
580
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
581
|
-
};
|
582
|
-
$forceUpdate: () => void;
|
583
|
-
$nextTick: typeof import('vue').nextTick;
|
584
|
-
$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;
|
585
|
-
} & Readonly<{}> & Omit<Readonly<{
|
586
|
-
active: boolean;
|
587
|
-
removable: boolean;
|
588
|
-
}> & Readonly<{
|
589
|
-
"onUpdate:height"?: ((value: number) => any) | undefined;
|
590
|
-
"onUpdate:active"?: (() => any) | undefined;
|
591
|
-
}>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
|
592
|
-
emitHeight: () => void;
|
593
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
594
|
-
$slots: {
|
595
|
-
default?(_: {}): any;
|
596
|
-
};
|
597
|
-
}) | null)[];
|
598
|
-
form: (({
|
599
|
-
$: import('vue').ComponentInternalInstance;
|
600
|
-
$data: {};
|
601
|
-
$props: {
|
602
|
-
readonly name?: string | undefined;
|
603
|
-
readonly title?: string | undefined;
|
604
|
-
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
605
|
-
readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
606
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
607
|
-
$attrs: {
|
608
|
-
[x: string]: unknown;
|
609
|
-
};
|
610
|
-
$refs: {
|
611
|
-
[x: string]: unknown;
|
612
|
-
};
|
613
|
-
$slots: Readonly<{
|
614
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
615
|
-
}>;
|
616
|
-
$root: import('vue').ComponentPublicInstance | null;
|
617
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
618
|
-
$host: Element | null;
|
619
|
-
$emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void);
|
620
|
-
$el: any;
|
621
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
622
|
-
name?: string;
|
623
|
-
title?: string;
|
624
|
-
}> & Readonly<{
|
625
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
626
|
-
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
627
|
-
}>, {
|
628
|
-
isValid: import('vue').ComputedRef<boolean>;
|
629
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
630
|
-
invalidate: (payload: {
|
631
|
-
[x: string]: string | string[] | undefined;
|
632
|
-
}) => void;
|
633
|
-
initModel: () => void;
|
634
|
-
errorMessage: import('vue').ComputedRef<string>;
|
635
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
636
|
-
"update:has-changes": (value: boolean) => any;
|
637
|
-
"update:is-valid": (value: boolean | undefined) => any;
|
638
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
639
|
-
beforeCreate?: (() => void) | (() => void)[];
|
640
|
-
created?: (() => void) | (() => void)[];
|
641
|
-
beforeMount?: (() => void) | (() => void)[];
|
642
|
-
mounted?: (() => void) | (() => void)[];
|
643
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
644
|
-
updated?: (() => void) | (() => void)[];
|
645
|
-
activated?: (() => void) | (() => void)[];
|
646
|
-
deactivated?: (() => void) | (() => void)[];
|
647
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
648
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
649
|
-
destroyed?: (() => void) | (() => void)[];
|
650
|
-
unmounted?: (() => void) | (() => void)[];
|
651
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
652
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
653
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
654
|
-
};
|
655
|
-
$forceUpdate: () => void;
|
656
|
-
$nextTick: typeof import('vue').nextTick;
|
657
|
-
$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;
|
658
|
-
} & Readonly<{}> & Omit<Readonly<{
|
659
|
-
name?: string;
|
660
|
-
title?: string;
|
661
|
-
}> & Readonly<{
|
662
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
663
|
-
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
664
|
-
}>, "errorMessage" | "isValid" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
|
665
|
-
isValid: import('vue').ComputedRef<boolean>;
|
666
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
667
|
-
invalidate: (payload: {
|
668
|
-
[x: string]: string | string[] | undefined;
|
669
|
-
}) => void;
|
670
|
-
initModel: () => void;
|
671
|
-
errorMessage: import('vue').ComputedRef<string>;
|
672
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
673
|
-
$slots: {
|
674
|
-
default?(_: {}): any;
|
675
|
-
};
|
676
|
-
}) | null)[];
|
677
|
-
}, any, import('vue').ComponentProvideOptions, {
|
678
|
-
P: {};
|
679
|
-
B: {};
|
680
|
-
D: {};
|
681
|
-
C: {};
|
682
|
-
M: {};
|
683
|
-
Defaults: {};
|
684
|
-
}, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
685
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
686
|
-
"onUpdate:current"?: ((value: string) => any) | undefined;
|
687
|
-
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
688
|
-
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
689
|
-
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
690
|
-
}>, {
|
691
|
-
updateCurrent: (value: string) => void;
|
692
|
-
updateIndex: (value: number) => void;
|
693
|
-
next: () => void;
|
694
|
-
previous: () => void;
|
695
|
-
validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
696
|
-
invalidate: (index: number, payload: {
|
697
|
-
[x: string]: string | string[] | undefined;
|
698
|
-
}) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
699
|
-
initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
700
|
-
}, {}, {}, {}, {}> | null;
|
701
|
-
}, any, import('vue').ComponentProvideOptions, {
|
702
|
-
P: {};
|
703
|
-
B: {};
|
704
|
-
D: {};
|
705
|
-
C: {};
|
706
|
-
M: {};
|
707
|
-
Defaults: {};
|
708
|
-
}, Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
|
778
|
+
"update:progress": (value: number) => any;
|
779
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
780
|
+
beforeCreate?: (() => void) | (() => void)[];
|
781
|
+
created?: (() => void) | (() => void)[];
|
782
|
+
beforeMount?: (() => void) | (() => void)[];
|
783
|
+
mounted?: (() => void) | (() => void)[];
|
784
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
785
|
+
updated?: (() => void) | (() => void)[];
|
786
|
+
activated?: (() => void) | (() => void)[];
|
787
|
+
deactivated?: (() => void) | (() => void)[];
|
788
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
789
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
790
|
+
destroyed?: (() => void) | (() => void)[];
|
791
|
+
unmounted?: (() => void) | (() => void)[];
|
792
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
793
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
794
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
795
|
+
};
|
796
|
+
$forceUpdate: () => void;
|
797
|
+
$nextTick: typeof import('vue').nextTick;
|
798
|
+
$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;
|
799
|
+
} & Readonly<{}> & Omit<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
|
709
800
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
710
801
|
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
711
802
|
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
@@ -713,10 +804,14 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
713
804
|
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
714
805
|
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
715
806
|
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
716
|
-
}>, {
|
807
|
+
}>, "previous" | "next"> & import('vue').ShallowUnwrapRef<{
|
717
808
|
next: () => void;
|
718
809
|
previous: () => void;
|
719
|
-
}
|
810
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
811
|
+
$slots: {
|
812
|
+
default?(_: {}): any;
|
813
|
+
};
|
814
|
+
}) | null;
|
720
815
|
}, any>;
|
721
816
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
722
817
|
export default _default;
|