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.
- package/dist/components/FieldWrapper/WFieldWrapper.vue.d.ts.map +1 -1
- package/dist/components/FieldWrapper/WFieldWrapper.vue.js +5 -4
- package/dist/components/FieldWrapper/components/FilterButton.vue.d.ts +4 -2
- package/dist/components/FieldWrapper/components/FilterButton.vue.d.ts.map +1 -1
- package/dist/components/FieldWrapper/components/FilterButton.vue.js +9 -3
- package/dist/components/Form/WForm.vue.d.ts +13 -8
- package/dist/components/Form/WForm.vue.d.ts.map +1 -1
- package/dist/components/Form/WForm.vue.js +86 -32
- package/dist/components/Form/WFormValidator.vue.d.ts +3 -2
- package/dist/components/Form/WFormValidator.vue.d.ts.map +1 -1
- package/dist/components/Form/WFormValidator.vue.js +4 -0
- package/dist/components/Form/models/injection.d.ts +2 -1
- package/dist/components/Form/models/injection.d.ts.map +1 -1
- package/dist/components/Form/models/utils.d.ts +3 -0
- package/dist/components/Form/models/utils.d.ts.map +1 -1
- package/dist/components/Form/models/utils.js +1 -6
- package/dist/components/Form/use/useFormValueMap.d.ts +7 -0
- package/dist/components/Form/use/useFormValueMap.d.ts.map +1 -0
- package/dist/components/Form/use/useFormValueMap.js +36 -0
- package/dist/components/List/WListCard.vue.d.ts +1 -1
- package/dist/components/Modal/WModalStepper.vue.d.ts +761 -471
- package/dist/components/Modal/WModalStepper.vue.d.ts.map +1 -1
- package/dist/components/Tabs/WTabs.vue.d.ts +567 -45
- package/dist/components/Tabs/WTabs.vue.d.ts.map +1 -1
- package/dist/components/Tabs/WTabs.vue.js +147 -129
- package/dist/components/Tabs/WTabsColumns.vue.d.ts +4 -2
- package/dist/components/Tabs/WTabsColumns.vue.d.ts.map +1 -1
- package/dist/components/Tabs/WTabsItem.vue.d.ts +2 -18
- package/dist/components/Tabs/WTabsItem.vue.d.ts.map +1 -1
- package/dist/components/Tabs/components/TabItem.vue.d.ts +51 -43
- package/dist/components/Tabs/components/TabItem.vue.d.ts.map +1 -1
- package/dist/components/Tabs/components/TabItem.vue.js +2 -15
- package/dist/components/Tabs/types.d.ts +10 -0
- package/dist/components/Tabs/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/components/Form/use/useFormErrorMessageMap.d.ts +0 -8
- package/dist/components/Form/use/useFormErrorMessageMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormErrorMessageMap.js +0 -32
- package/dist/components/Form/use/useFormHasChangesMap.d.ts +0 -6
- package/dist/components/Form/use/useFormHasChangesMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormHasChangesMap.js +0 -27
- package/dist/components/Form/use/useFormHasValueMap.d.ts +0 -6
- package/dist/components/Form/use/useFormHasValueMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormHasValueMap.js +0 -31
- package/dist/components/Form/use/useFormInitModelMap.d.ts +0 -6
- package/dist/components/Form/use/useFormInitModelMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormInitModelMap.js +0 -31
- package/dist/components/Form/use/useFormInvalidateMap.d.ts +0 -8
- package/dist/components/Form/use/useFormInvalidateMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormInvalidateMap.js +0 -32
- package/dist/components/Form/use/useFormTitleMap.d.ts +0 -6
- package/dist/components/Form/use/useFormTitleMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormTitleMap.js +0 -29
- package/dist/components/Form/use/useFormValidateMap.d.ts +0 -9
- package/dist/components/Form/use/useFormValidateMap.d.ts.map +0 -1
- package/dist/components/Form/use/useFormValidateMap.js +0 -39
@@ -4,7 +4,512 @@ declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
5
5
|
};
|
6
6
|
refs: {
|
7
|
-
tabsStepper:
|
7
|
+
tabsStepper: ({
|
8
|
+
$: import('vue').ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {
|
11
|
+
readonly name?: string | undefined;
|
12
|
+
readonly customSlots?: import('vue').VNode[] | undefined;
|
13
|
+
readonly lessTransitions?: boolean | undefined;
|
14
|
+
readonly initTab?: string | undefined;
|
15
|
+
readonly initTabIndex?: number | undefined;
|
16
|
+
readonly side?: boolean | undefined;
|
17
|
+
readonly disableMinHeight?: boolean | undefined;
|
18
|
+
readonly noHeader?: boolean | undefined;
|
19
|
+
readonly switchToNew?: boolean | undefined;
|
20
|
+
readonly stepper?: boolean | undefined;
|
21
|
+
readonly showHasValue?: boolean | undefined;
|
22
|
+
readonly noSwitchOnInvalid?: boolean | undefined;
|
23
|
+
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
24
|
+
readonly "onUpdate:first"?: ((value: boolean) => any) | undefined;
|
25
|
+
readonly "onUpdate:last"?: ((value: boolean) => any) | undefined;
|
26
|
+
readonly "onUpdate:current"?: ((value: string) => any) | undefined;
|
27
|
+
readonly "onUpdate:current-index"?: ((value: number) => any) | undefined;
|
28
|
+
readonly "onUpdate:current-title"?: ((value: string) => any) | undefined;
|
29
|
+
readonly "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
30
|
+
readonly "onUpdate:progress"?: ((value: number) => any) | undefined;
|
31
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
32
|
+
$attrs: {
|
33
|
+
[x: string]: unknown;
|
34
|
+
};
|
35
|
+
$refs: {
|
36
|
+
[x: string]: unknown;
|
37
|
+
} & {
|
38
|
+
form: ({
|
39
|
+
$: import('vue').ComponentInternalInstance;
|
40
|
+
$data: {};
|
41
|
+
$props: {
|
42
|
+
readonly name?: string | undefined;
|
43
|
+
readonly title?: string | undefined;
|
44
|
+
readonly noTag?: boolean | undefined;
|
45
|
+
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
46
|
+
readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
47
|
+
readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
48
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
49
|
+
$attrs: {
|
50
|
+
[x: string]: unknown;
|
51
|
+
};
|
52
|
+
$refs: {
|
53
|
+
[x: string]: unknown;
|
54
|
+
};
|
55
|
+
$slots: Readonly<{
|
56
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
57
|
+
}>;
|
58
|
+
$root: import('vue').ComponentPublicInstance | null;
|
59
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
60
|
+
$host: Element | null;
|
61
|
+
$emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
|
62
|
+
$el: any;
|
63
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
64
|
+
name?: string;
|
65
|
+
title?: string;
|
66
|
+
noTag?: boolean;
|
67
|
+
}> & Readonly<{
|
68
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
69
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
70
|
+
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
71
|
+
}>, {
|
72
|
+
isValid: import('vue').ComputedRef<boolean>;
|
73
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
74
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
75
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
76
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
77
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
78
|
+
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>>;
|
79
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
80
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
81
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
82
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
83
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
84
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
85
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
86
|
+
"update:has-changes": (value: boolean) => any;
|
87
|
+
"update:is-valid": (value: boolean | undefined) => any;
|
88
|
+
"update:has-value": (value: boolean | null) => any;
|
89
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
90
|
+
beforeCreate?: (() => void) | (() => void)[];
|
91
|
+
created?: (() => void) | (() => void)[];
|
92
|
+
beforeMount?: (() => void) | (() => void)[];
|
93
|
+
mounted?: (() => void) | (() => void)[];
|
94
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
95
|
+
updated?: (() => void) | (() => void)[];
|
96
|
+
activated?: (() => void) | (() => void)[];
|
97
|
+
deactivated?: (() => void) | (() => void)[];
|
98
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
99
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
100
|
+
destroyed?: (() => void) | (() => void)[];
|
101
|
+
unmounted?: (() => void) | (() => void)[];
|
102
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
103
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
104
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
105
|
+
};
|
106
|
+
$forceUpdate: () => void;
|
107
|
+
$nextTick: typeof import('vue').nextTick;
|
108
|
+
$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;
|
109
|
+
} & Readonly<{}> & Omit<Readonly<{
|
110
|
+
name?: string;
|
111
|
+
title?: string;
|
112
|
+
noTag?: boolean;
|
113
|
+
}> & Readonly<{
|
114
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
115
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
116
|
+
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
117
|
+
}>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
|
118
|
+
isValid: import('vue').ComputedRef<boolean>;
|
119
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
120
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
121
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
122
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
123
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
124
|
+
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>>;
|
125
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
126
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
127
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
128
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
129
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
130
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
131
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
132
|
+
$slots: {
|
133
|
+
default?(_: {}): any;
|
134
|
+
};
|
135
|
+
}) | null;
|
136
|
+
buttonContainer: HTMLDivElement;
|
137
|
+
button: (({
|
138
|
+
$: import('vue').ComponentInternalInstance;
|
139
|
+
$data: {};
|
140
|
+
$props: {
|
141
|
+
readonly active: boolean;
|
142
|
+
readonly index: number;
|
143
|
+
readonly hasError: boolean;
|
144
|
+
readonly hasChanges: boolean;
|
145
|
+
readonly hasValue: boolean;
|
146
|
+
readonly title: string;
|
147
|
+
readonly icon: SVGComponent | undefined;
|
148
|
+
readonly first: boolean;
|
149
|
+
readonly last: boolean;
|
150
|
+
readonly disabled?: boolean | undefined;
|
151
|
+
readonly stepper?: boolean | undefined;
|
152
|
+
readonly showHasValue?: boolean | undefined;
|
153
|
+
readonly side?: boolean | undefined;
|
154
|
+
readonly onClick?: ((value: MouseEvent) => any) | undefined;
|
155
|
+
readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
156
|
+
readonly "onUpdate:scroll-position"?: ((value: {
|
157
|
+
left: number;
|
158
|
+
} | {
|
159
|
+
top: number;
|
160
|
+
}) => any) | undefined;
|
161
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
162
|
+
$attrs: {
|
163
|
+
[x: string]: unknown;
|
164
|
+
};
|
165
|
+
$refs: {
|
166
|
+
[x: string]: unknown;
|
167
|
+
} & {
|
168
|
+
container: HTMLDivElement;
|
169
|
+
};
|
170
|
+
$slots: Readonly<{
|
171
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
172
|
+
}>;
|
173
|
+
$root: import('vue').ComponentPublicInstance | null;
|
174
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
175
|
+
$host: Element | null;
|
176
|
+
$emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
|
177
|
+
left: number;
|
178
|
+
} | {
|
179
|
+
top: number;
|
180
|
+
}) => void);
|
181
|
+
$el: any;
|
182
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
183
|
+
active: boolean;
|
184
|
+
index: number;
|
185
|
+
hasError: boolean;
|
186
|
+
hasChanges: boolean;
|
187
|
+
hasValue: boolean;
|
188
|
+
title: string;
|
189
|
+
icon: SVGComponent | undefined;
|
190
|
+
first: boolean;
|
191
|
+
last: boolean;
|
192
|
+
disabled?: boolean;
|
193
|
+
stepper?: boolean;
|
194
|
+
showHasValue?: boolean;
|
195
|
+
side?: boolean;
|
196
|
+
}> & Readonly<{
|
197
|
+
onClick?: ((value: MouseEvent) => any) | undefined;
|
198
|
+
"onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
199
|
+
"onUpdate:scroll-position"?: ((value: {
|
200
|
+
left: number;
|
201
|
+
} | {
|
202
|
+
top: number;
|
203
|
+
}) => any) | undefined;
|
204
|
+
}>, {
|
205
|
+
update: () => void;
|
206
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
207
|
+
click: (value: MouseEvent) => any;
|
208
|
+
"update:indicator-style": (value: import('vue').CSSProperties) => any;
|
209
|
+
"update:scroll-position": (value: {
|
210
|
+
left: number;
|
211
|
+
} | {
|
212
|
+
top: number;
|
213
|
+
}) => any;
|
214
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
215
|
+
beforeCreate?: (() => void) | (() => void)[];
|
216
|
+
created?: (() => void) | (() => void)[];
|
217
|
+
beforeMount?: (() => void) | (() => void)[];
|
218
|
+
mounted?: (() => void) | (() => void)[];
|
219
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
220
|
+
updated?: (() => void) | (() => void)[];
|
221
|
+
activated?: (() => void) | (() => void)[];
|
222
|
+
deactivated?: (() => void) | (() => void)[];
|
223
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
224
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
225
|
+
destroyed?: (() => void) | (() => void)[];
|
226
|
+
unmounted?: (() => void) | (() => void)[];
|
227
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
228
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
229
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
230
|
+
};
|
231
|
+
$forceUpdate: () => void;
|
232
|
+
$nextTick: typeof import('vue').nextTick;
|
233
|
+
$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;
|
234
|
+
} & Readonly<{}> & Omit<Readonly<{
|
235
|
+
active: boolean;
|
236
|
+
index: number;
|
237
|
+
hasError: boolean;
|
238
|
+
hasChanges: boolean;
|
239
|
+
hasValue: boolean;
|
240
|
+
title: string;
|
241
|
+
icon: SVGComponent | undefined;
|
242
|
+
first: boolean;
|
243
|
+
last: boolean;
|
244
|
+
disabled?: boolean;
|
245
|
+
stepper?: boolean;
|
246
|
+
showHasValue?: boolean;
|
247
|
+
side?: boolean;
|
248
|
+
}> & Readonly<{
|
249
|
+
onClick?: ((value: MouseEvent) => any) | undefined;
|
250
|
+
"onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
251
|
+
"onUpdate:scroll-position"?: ((value: {
|
252
|
+
left: number;
|
253
|
+
} | {
|
254
|
+
top: number;
|
255
|
+
}) => any) | undefined;
|
256
|
+
}>, "update"> & import('vue').ShallowUnwrapRef<{
|
257
|
+
update: () => void;
|
258
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
259
|
+
$slots: {
|
260
|
+
title?(_: {
|
261
|
+
hasChanges: boolean;
|
262
|
+
hasError: boolean;
|
263
|
+
hasValue: boolean;
|
264
|
+
}): any;
|
265
|
+
suffix?(_: {
|
266
|
+
hasChanges: boolean;
|
267
|
+
hasError: boolean;
|
268
|
+
hasValue: boolean;
|
269
|
+
}): any;
|
270
|
+
right?(_: {
|
271
|
+
hasChanges: boolean;
|
272
|
+
hasError: boolean;
|
273
|
+
hasValue: boolean;
|
274
|
+
}): any;
|
275
|
+
};
|
276
|
+
}) | null)[];
|
277
|
+
tabItem: (({
|
278
|
+
$: import('vue').ComponentInternalInstance;
|
279
|
+
$data: {};
|
280
|
+
$props: {
|
281
|
+
readonly name: string;
|
282
|
+
readonly title: string;
|
283
|
+
readonly active: boolean;
|
284
|
+
readonly removable: boolean;
|
285
|
+
readonly "onTab:switch"?: ((value: string) => any) | undefined;
|
286
|
+
readonly "onUpdate:height"?: ((value: number) => any) | undefined;
|
287
|
+
readonly "onUpdate:active"?: (() => any) | undefined;
|
288
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
289
|
+
$attrs: {
|
290
|
+
[x: string]: unknown;
|
291
|
+
};
|
292
|
+
$refs: {
|
293
|
+
[x: string]: unknown;
|
294
|
+
} & {
|
295
|
+
form: ({
|
296
|
+
$: import('vue').ComponentInternalInstance;
|
297
|
+
$data: {};
|
298
|
+
$props: {
|
299
|
+
readonly name?: string | undefined;
|
300
|
+
readonly title?: string | undefined;
|
301
|
+
readonly noTag?: boolean | undefined;
|
302
|
+
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
303
|
+
readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
304
|
+
readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
305
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
306
|
+
$attrs: {
|
307
|
+
[x: string]: unknown;
|
308
|
+
};
|
309
|
+
$refs: {
|
310
|
+
[x: string]: unknown;
|
311
|
+
};
|
312
|
+
$slots: Readonly<{
|
313
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
314
|
+
}>;
|
315
|
+
$root: import('vue').ComponentPublicInstance | null;
|
316
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
317
|
+
$host: Element | null;
|
318
|
+
$emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
|
319
|
+
$el: any;
|
320
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
321
|
+
name?: string;
|
322
|
+
title?: string;
|
323
|
+
noTag?: boolean;
|
324
|
+
}> & Readonly<{
|
325
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
326
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
327
|
+
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
328
|
+
}>, {
|
329
|
+
isValid: import('vue').ComputedRef<boolean>;
|
330
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
331
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
332
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
333
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
334
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
335
|
+
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>>;
|
336
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
337
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
338
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
339
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
340
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
341
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
342
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
343
|
+
"update:has-changes": (value: boolean) => any;
|
344
|
+
"update:is-valid": (value: boolean | undefined) => any;
|
345
|
+
"update:has-value": (value: boolean | null) => any;
|
346
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
347
|
+
beforeCreate?: (() => void) | (() => void)[];
|
348
|
+
created?: (() => void) | (() => void)[];
|
349
|
+
beforeMount?: (() => void) | (() => void)[];
|
350
|
+
mounted?: (() => void) | (() => void)[];
|
351
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
352
|
+
updated?: (() => void) | (() => void)[];
|
353
|
+
activated?: (() => void) | (() => void)[];
|
354
|
+
deactivated?: (() => void) | (() => void)[];
|
355
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
356
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
357
|
+
destroyed?: (() => void) | (() => void)[];
|
358
|
+
unmounted?: (() => void) | (() => void)[];
|
359
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
360
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
361
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
362
|
+
};
|
363
|
+
$forceUpdate: () => void;
|
364
|
+
$nextTick: typeof import('vue').nextTick;
|
365
|
+
$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;
|
366
|
+
} & Readonly<{}> & Omit<Readonly<{
|
367
|
+
name?: string;
|
368
|
+
title?: string;
|
369
|
+
noTag?: boolean;
|
370
|
+
}> & Readonly<{
|
371
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
372
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
373
|
+
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
374
|
+
}>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
|
375
|
+
isValid: import('vue').ComputedRef<boolean>;
|
376
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
377
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
378
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
379
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
380
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
381
|
+
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>>;
|
382
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
383
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
384
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
385
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
386
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
387
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
388
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
389
|
+
$slots: {
|
390
|
+
default?(_: {}): any;
|
391
|
+
};
|
392
|
+
}) | null;
|
393
|
+
};
|
394
|
+
$slots: Readonly<{
|
395
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
396
|
+
}>;
|
397
|
+
$root: import('vue').ComponentPublicInstance | null;
|
398
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
399
|
+
$host: Element | null;
|
400
|
+
$emit: ((event: "tab:switch", value: string) => void) & ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
|
401
|
+
$el: any;
|
402
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
403
|
+
name: string;
|
404
|
+
title: string;
|
405
|
+
active: boolean;
|
406
|
+
removable: boolean;
|
407
|
+
}> & Readonly<{
|
408
|
+
"onTab:switch"?: ((value: string) => any) | undefined;
|
409
|
+
"onUpdate:height"?: ((value: number) => any) | undefined;
|
410
|
+
"onUpdate:active"?: (() => any) | undefined;
|
411
|
+
}>, {
|
412
|
+
emitHeight: () => void;
|
413
|
+
name: import('vue').Ref<string, string>;
|
414
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
415
|
+
"tab:switch": (value: string) => any;
|
416
|
+
"update:height": (value: number) => any;
|
417
|
+
"update:active": () => any;
|
418
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
419
|
+
beforeCreate?: (() => void) | (() => void)[];
|
420
|
+
created?: (() => void) | (() => void)[];
|
421
|
+
beforeMount?: (() => void) | (() => void)[];
|
422
|
+
mounted?: (() => void) | (() => void)[];
|
423
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
424
|
+
updated?: (() => void) | (() => void)[];
|
425
|
+
activated?: (() => void) | (() => void)[];
|
426
|
+
deactivated?: (() => void) | (() => void)[];
|
427
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
428
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
429
|
+
destroyed?: (() => void) | (() => void)[];
|
430
|
+
unmounted?: (() => void) | (() => void)[];
|
431
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
432
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
433
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
434
|
+
};
|
435
|
+
$forceUpdate: () => void;
|
436
|
+
$nextTick: typeof import('vue').nextTick;
|
437
|
+
$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;
|
438
|
+
} & Readonly<{}> & Omit<Readonly<{
|
439
|
+
name: string;
|
440
|
+
title: string;
|
441
|
+
active: boolean;
|
442
|
+
removable: boolean;
|
443
|
+
}> & Readonly<{
|
444
|
+
"onTab:switch"?: ((value: string) => any) | undefined;
|
445
|
+
"onUpdate:height"?: ((value: number) => any) | undefined;
|
446
|
+
"onUpdate:active"?: (() => any) | undefined;
|
447
|
+
}>, "name" | "emitHeight"> & import('vue').ShallowUnwrapRef<{
|
448
|
+
emitHeight: () => void;
|
449
|
+
name: import('vue').Ref<string, string>;
|
450
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
451
|
+
$slots: {
|
452
|
+
default?(_: {}): any;
|
453
|
+
};
|
454
|
+
}) | null)[];
|
455
|
+
};
|
456
|
+
$slots: Readonly<{
|
457
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
458
|
+
}>;
|
459
|
+
$root: import('vue').ComponentPublicInstance | null;
|
460
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
461
|
+
$host: Element | null;
|
462
|
+
$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:tabs-length", value: number) => void) & ((event: "update:progress", value: number) => void);
|
463
|
+
$el: any;
|
464
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
465
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
466
|
+
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
467
|
+
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
468
|
+
"onUpdate:current"?: ((value: string) => any) | undefined;
|
469
|
+
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
470
|
+
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
471
|
+
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
472
|
+
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
473
|
+
}>, {
|
474
|
+
updateCurrent: (value: string) => void;
|
475
|
+
updateIndex: (value: number) => void;
|
476
|
+
next: (update?: boolean) => void;
|
477
|
+
previous: () => void;
|
478
|
+
jump: (name: string, update?: boolean) => void;
|
479
|
+
validate: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
480
|
+
validateIfNoError: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
481
|
+
invalidate: (name: string, messages: Record<string, string | string[] | undefined>) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
482
|
+
initModel: (name: string) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
483
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
484
|
+
"update:has-changes": (value: boolean) => any;
|
485
|
+
"update:first": (value: boolean) => any;
|
486
|
+
"update:last": (value: boolean) => any;
|
487
|
+
"update:current": (value: string) => any;
|
488
|
+
"update:current-index": (value: number) => any;
|
489
|
+
"update:current-title": (value: string) => any;
|
490
|
+
"update:tabs-length": (value: number) => any;
|
491
|
+
"update:progress": (value: number) => any;
|
492
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
493
|
+
beforeCreate?: (() => void) | (() => void)[];
|
494
|
+
created?: (() => void) | (() => void)[];
|
495
|
+
beforeMount?: (() => void) | (() => void)[];
|
496
|
+
mounted?: (() => void) | (() => void)[];
|
497
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
498
|
+
updated?: (() => void) | (() => void)[];
|
499
|
+
activated?: (() => void) | (() => void)[];
|
500
|
+
deactivated?: (() => void) | (() => void)[];
|
501
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
502
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
503
|
+
destroyed?: (() => void) | (() => void)[];
|
504
|
+
unmounted?: (() => void) | (() => void)[];
|
505
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
506
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
507
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
508
|
+
};
|
509
|
+
$forceUpdate: () => void;
|
510
|
+
$nextTick: typeof import('vue').nextTick;
|
511
|
+
$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;
|
512
|
+
} & Readonly<{}> & Omit<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
8
513
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
9
514
|
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
10
515
|
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
@@ -13,28 +518,176 @@ declare function __VLS_template(): {
|
|
13
518
|
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
14
519
|
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
15
520
|
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
16
|
-
}>, {
|
521
|
+
}>, "validate" | "invalidate" | "initModel" | "previous" | "next" | "updateCurrent" | "updateIndex" | "jump" | "validateIfNoError"> & import('vue').ShallowUnwrapRef<{
|
17
522
|
updateCurrent: (value: string) => void;
|
18
523
|
updateIndex: (value: number) => void;
|
19
|
-
next: () => void;
|
524
|
+
next: (update?: boolean) => void;
|
20
525
|
previous: () => void;
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
526
|
+
jump: (name: string, update?: boolean) => void;
|
527
|
+
validate: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
528
|
+
validateIfNoError: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
529
|
+
invalidate: (name: string, messages: Record<string, string | string[] | undefined>) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
530
|
+
initModel: (name: string) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
531
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
532
|
+
$slots: Readonly<{
|
533
|
+
default: () => void;
|
534
|
+
}> & {
|
535
|
+
default: () => void;
|
536
|
+
};
|
537
|
+
}) | null;
|
538
|
+
};
|
539
|
+
attrs: Partial<{}>;
|
540
|
+
};
|
541
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
542
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
543
|
+
loading?: boolean;
|
544
|
+
disabled?: boolean;
|
545
|
+
disabledNext?: boolean;
|
546
|
+
}, {
|
547
|
+
next: () => void;
|
548
|
+
previous: () => void;
|
549
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
550
|
+
submit: () => any;
|
551
|
+
"close:modal": () => any;
|
552
|
+
"update:has-changes": (value: boolean) => any;
|
553
|
+
}, string, import('vue').PublicProps, Readonly<{
|
554
|
+
loading?: boolean;
|
555
|
+
disabled?: boolean;
|
556
|
+
disabledNext?: boolean;
|
557
|
+
}> & Readonly<{
|
558
|
+
onSubmit?: (() => any) | undefined;
|
559
|
+
"onClose:modal"?: (() => any) | undefined;
|
560
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
561
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
562
|
+
tabsStepper: ({
|
563
|
+
$: import('vue').ComponentInternalInstance;
|
564
|
+
$data: {};
|
565
|
+
$props: {
|
566
|
+
readonly name?: string | undefined;
|
567
|
+
readonly customSlots?: import('vue').VNode[] | undefined;
|
568
|
+
readonly lessTransitions?: boolean | undefined;
|
569
|
+
readonly initTab?: string | undefined;
|
570
|
+
readonly initTabIndex?: number | undefined;
|
571
|
+
readonly side?: boolean | undefined;
|
572
|
+
readonly disableMinHeight?: boolean | undefined;
|
573
|
+
readonly noHeader?: boolean | undefined;
|
574
|
+
readonly switchToNew?: boolean | undefined;
|
575
|
+
readonly stepper?: boolean | undefined;
|
576
|
+
readonly showHasValue?: boolean | undefined;
|
577
|
+
readonly noSwitchOnInvalid?: boolean | undefined;
|
578
|
+
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
579
|
+
readonly "onUpdate:first"?: ((value: boolean) => any) | undefined;
|
580
|
+
readonly "onUpdate:last"?: ((value: boolean) => any) | undefined;
|
581
|
+
readonly "onUpdate:current"?: ((value: string) => any) | undefined;
|
582
|
+
readonly "onUpdate:current-index"?: ((value: number) => any) | undefined;
|
583
|
+
readonly "onUpdate:current-title"?: ((value: string) => any) | undefined;
|
584
|
+
readonly "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
585
|
+
readonly "onUpdate:progress"?: ((value: number) => any) | undefined;
|
586
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
587
|
+
$attrs: {
|
588
|
+
[x: string]: unknown;
|
589
|
+
};
|
590
|
+
$refs: {
|
591
|
+
[x: string]: unknown;
|
592
|
+
} & {
|
593
|
+
form: ({
|
594
|
+
$: import('vue').ComponentInternalInstance;
|
595
|
+
$data: {};
|
596
|
+
$props: {
|
597
|
+
readonly name?: string | undefined;
|
598
|
+
readonly title?: string | undefined;
|
599
|
+
readonly noTag?: boolean | undefined;
|
600
|
+
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
601
|
+
readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
602
|
+
readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
603
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
604
|
+
$attrs: {
|
605
|
+
[x: string]: unknown;
|
606
|
+
};
|
607
|
+
$refs: {
|
608
|
+
[x: string]: unknown;
|
609
|
+
};
|
610
|
+
$slots: Readonly<{
|
611
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
612
|
+
}>;
|
613
|
+
$root: import('vue').ComponentPublicInstance | null;
|
614
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
615
|
+
$host: Element | null;
|
616
|
+
$emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
|
617
|
+
$el: any;
|
618
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
619
|
+
name?: string;
|
620
|
+
title?: string;
|
621
|
+
noTag?: boolean;
|
622
|
+
}> & Readonly<{
|
623
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
624
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
625
|
+
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
626
|
+
}>, {
|
627
|
+
isValid: import('vue').ComputedRef<boolean>;
|
628
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
629
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
630
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
631
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
632
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
633
|
+
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>>;
|
634
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
635
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
636
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
637
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
638
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
639
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
640
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
641
|
+
"update:has-changes": (value: boolean) => any;
|
642
|
+
"update:is-valid": (value: boolean | undefined) => any;
|
643
|
+
"update:has-value": (value: boolean | null) => any;
|
644
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
645
|
+
beforeCreate?: (() => void) | (() => void)[];
|
646
|
+
created?: (() => void) | (() => void)[];
|
647
|
+
beforeMount?: (() => void) | (() => void)[];
|
648
|
+
mounted?: (() => void) | (() => void)[];
|
649
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
650
|
+
updated?: (() => void) | (() => void)[];
|
651
|
+
activated?: (() => void) | (() => void)[];
|
652
|
+
deactivated?: (() => void) | (() => void)[];
|
653
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
654
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
655
|
+
destroyed?: (() => void) | (() => void)[];
|
656
|
+
unmounted?: (() => void) | (() => void)[];
|
657
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
658
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
659
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
660
|
+
};
|
661
|
+
$forceUpdate: () => void;
|
662
|
+
$nextTick: typeof import('vue').nextTick;
|
663
|
+
$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;
|
664
|
+
} & Readonly<{}> & Omit<Readonly<{
|
665
|
+
name?: string;
|
666
|
+
title?: string;
|
667
|
+
noTag?: boolean;
|
668
|
+
}> & Readonly<{
|
669
|
+
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
670
|
+
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
671
|
+
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
672
|
+
}>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
|
673
|
+
isValid: import('vue').ComputedRef<boolean>;
|
674
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
675
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
676
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
677
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
678
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
679
|
+
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>>;
|
680
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
681
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
682
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
683
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
684
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
685
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
686
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
687
|
+
$slots: {
|
688
|
+
default?(_: {}): any;
|
689
|
+
};
|
690
|
+
}) | null;
|
38
691
|
buttonContainer: HTMLDivElement;
|
39
692
|
button: (({
|
40
693
|
$: import('vue').ComponentInternalInstance;
|
@@ -229,14 +882,18 @@ declare function __VLS_template(): {
|
|
229
882
|
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
230
883
|
}>, {
|
231
884
|
isValid: import('vue').ComputedRef<boolean>;
|
232
|
-
hasChanges: import('vue').
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
885
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
886
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
887
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
888
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
889
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
890
|
+
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>>;
|
891
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
892
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
893
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
894
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
895
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
896
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
240
897
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
241
898
|
"update:has-changes": (value: boolean) => any;
|
242
899
|
"update:is-valid": (value: boolean | undefined) => any;
|
@@ -269,16 +926,20 @@ declare function __VLS_template(): {
|
|
269
926
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
270
927
|
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
271
928
|
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
272
|
-
}>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
|
929
|
+
}>, "errorMessage" | "hasChanges" | "hasChangesMap" | "isValid" | "hasValue" | "hasValueMap" | "validate" | "validateMap" | "invalidate" | "invalidateMap" | "initModel" | "initModelMap" | "errorMessageMap"> & import('vue').ShallowUnwrapRef<{
|
273
930
|
isValid: import('vue').ComputedRef<boolean>;
|
274
|
-
hasChanges: import('vue').
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
931
|
+
hasChanges: import('vue').Ref<boolean, boolean>;
|
932
|
+
hasChangesMap: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
933
|
+
hasValue: import('vue').Ref<boolean | null, boolean | null>;
|
934
|
+
hasValueMap: import('vue').Ref<Record<string, boolean | null>, Record<string, boolean | null>>;
|
935
|
+
validate: import('vue').Ref<(silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined, (silent?: boolean, path?: import('../Form/models/utils').ValidatePath) => string | undefined>;
|
936
|
+
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>>;
|
937
|
+
invalidate: import('vue').Ref<(messages: Record<string, string | string[] | undefined>) => void, (messages: Record<string, string | string[] | undefined>) => void>;
|
938
|
+
invalidateMap: import('vue').Ref<Record<string, (messages: Record<string, string | string[] | undefined>) => void>, Record<string, (messages: Record<string, string | string[] | undefined>) => void>>;
|
939
|
+
initModel: import('vue').Ref<() => void, () => void>;
|
940
|
+
initModelMap: import('vue').Ref<Record<string, () => void>, Record<string, () => void>>;
|
941
|
+
errorMessage: import('vue').Ref<string | undefined, string | undefined>;
|
942
|
+
errorMessageMap: import('vue').Ref<Record<string, string | undefined>, Record<string, string | undefined>>;
|
282
943
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
283
944
|
$slots: {
|
284
945
|
default?(_: {}): any;
|
@@ -304,15 +965,7 @@ declare function __VLS_template(): {
|
|
304
965
|
"onUpdate:active"?: (() => any) | undefined;
|
305
966
|
}>, {
|
306
967
|
emitHeight: () => void;
|
307
|
-
|
308
|
-
hasChanges: import('vue').ComputedRef<boolean>;
|
309
|
-
hasValue: import('vue').ComputedRef<boolean | null>;
|
310
|
-
errorMessage: import('vue').ComputedRef<string | undefined>;
|
311
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
312
|
-
invalidate: (payload: {
|
313
|
-
[x: string]: string | string[] | undefined;
|
314
|
-
}) => void;
|
315
|
-
initModel: () => void;
|
968
|
+
name: import('vue').Ref<string, string>;
|
316
969
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
317
970
|
"tab:switch": (value: string) => any;
|
318
971
|
"update:height": (value: number) => any;
|
@@ -346,30 +999,24 @@ declare function __VLS_template(): {
|
|
346
999
|
"onTab:switch"?: ((value: string) => any) | undefined;
|
347
1000
|
"onUpdate:height"?: ((value: number) => any) | undefined;
|
348
1001
|
"onUpdate:active"?: (() => any) | undefined;
|
349
|
-
}>, "
|
1002
|
+
}>, "name" | "emitHeight"> & import('vue').ShallowUnwrapRef<{
|
350
1003
|
emitHeight: () => void;
|
351
|
-
|
352
|
-
hasChanges: import('vue').ComputedRef<boolean>;
|
353
|
-
hasValue: import('vue').ComputedRef<boolean | null>;
|
354
|
-
errorMessage: import('vue').ComputedRef<string | undefined>;
|
355
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
356
|
-
invalidate: (payload: {
|
357
|
-
[x: string]: string | string[] | undefined;
|
358
|
-
}) => void;
|
359
|
-
initModel: () => void;
|
1004
|
+
name: import('vue').Ref<string, string>;
|
360
1005
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
361
1006
|
$slots: {
|
362
1007
|
default?(_: {}): any;
|
363
1008
|
};
|
364
1009
|
}) | null)[];
|
365
|
-
}
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
1010
|
+
};
|
1011
|
+
$slots: Readonly<{
|
1012
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
1013
|
+
}>;
|
1014
|
+
$root: import('vue').ComponentPublicInstance | null;
|
1015
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
1016
|
+
$host: Element | null;
|
1017
|
+
$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:tabs-length", value: number) => void) & ((event: "update:progress", value: number) => void);
|
1018
|
+
$el: any;
|
1019
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
373
1020
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
374
1021
|
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
375
1022
|
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
@@ -381,405 +1028,43 @@ declare function __VLS_template(): {
|
|
381
1028
|
}>, {
|
382
1029
|
updateCurrent: (value: string) => void;
|
383
1030
|
updateIndex: (value: number) => void;
|
384
|
-
next: () => void;
|
1031
|
+
next: (update?: boolean) => void;
|
385
1032
|
previous: () => void;
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
}
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
"onUpdate:current"?: ((value: string) => any) | undefined;
|
422
|
-
"onUpdate:current-index"?: ((value: number) => any) | undefined;
|
423
|
-
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
424
|
-
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
425
|
-
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
426
|
-
}>, {
|
427
|
-
updateCurrent: (value: string) => void;
|
428
|
-
updateIndex: (value: number) => void;
|
429
|
-
next: () => void;
|
430
|
-
previous: () => void;
|
431
|
-
validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
432
|
-
validateIfNoError: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
433
|
-
invalidate: (index: number, payload: {
|
434
|
-
[x: string]: string | string[] | undefined;
|
435
|
-
}) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
436
|
-
initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
437
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
438
|
-
"update:has-changes": (value: boolean) => any;
|
439
|
-
"update:first": (value: boolean) => any;
|
440
|
-
"update:last": (value: boolean) => any;
|
441
|
-
"update:current": (value: string) => any;
|
442
|
-
"update:current-index": (value: number) => any;
|
443
|
-
"update:current-title": (value: string) => any;
|
444
|
-
"update:tabs-length": (value: number) => any;
|
445
|
-
"update:progress": (value: number) => any;
|
446
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
447
|
-
container: HTMLDivElement;
|
448
|
-
buttonContainer: HTMLDivElement;
|
449
|
-
button: (({
|
450
|
-
$: import('vue').ComponentInternalInstance;
|
451
|
-
$data: {};
|
452
|
-
$props: {
|
453
|
-
readonly active: boolean;
|
454
|
-
readonly index: number;
|
455
|
-
readonly hasError: boolean;
|
456
|
-
readonly hasChanges: boolean;
|
457
|
-
readonly hasValue: boolean;
|
458
|
-
readonly title: string;
|
459
|
-
readonly icon: SVGComponent | undefined;
|
460
|
-
readonly first: boolean;
|
461
|
-
readonly last: boolean;
|
462
|
-
readonly disabled?: boolean | undefined;
|
463
|
-
readonly stepper?: boolean | undefined;
|
464
|
-
readonly showHasValue?: boolean | undefined;
|
465
|
-
readonly side?: boolean | undefined;
|
466
|
-
readonly onClick?: ((value: MouseEvent) => any) | undefined;
|
467
|
-
readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
468
|
-
readonly "onUpdate:scroll-position"?: ((value: {
|
469
|
-
left: number;
|
470
|
-
} | {
|
471
|
-
top: number;
|
472
|
-
}) => any) | undefined;
|
473
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
474
|
-
$attrs: {
|
475
|
-
[x: string]: unknown;
|
476
|
-
};
|
477
|
-
$refs: {
|
478
|
-
[x: string]: unknown;
|
479
|
-
} & {
|
480
|
-
container: HTMLDivElement;
|
481
|
-
};
|
482
|
-
$slots: Readonly<{
|
483
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
484
|
-
}>;
|
485
|
-
$root: import('vue').ComponentPublicInstance | null;
|
486
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
487
|
-
$host: Element | null;
|
488
|
-
$emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
|
489
|
-
left: number;
|
490
|
-
} | {
|
491
|
-
top: number;
|
492
|
-
}) => void);
|
493
|
-
$el: any;
|
494
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
495
|
-
active: boolean;
|
496
|
-
index: number;
|
497
|
-
hasError: boolean;
|
498
|
-
hasChanges: boolean;
|
499
|
-
hasValue: boolean;
|
500
|
-
title: string;
|
501
|
-
icon: SVGComponent | undefined;
|
502
|
-
first: boolean;
|
503
|
-
last: boolean;
|
504
|
-
disabled?: boolean;
|
505
|
-
stepper?: boolean;
|
506
|
-
showHasValue?: boolean;
|
507
|
-
side?: boolean;
|
508
|
-
}> & Readonly<{
|
509
|
-
onClick?: ((value: MouseEvent) => any) | undefined;
|
510
|
-
"onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
511
|
-
"onUpdate:scroll-position"?: ((value: {
|
512
|
-
left: number;
|
513
|
-
} | {
|
514
|
-
top: number;
|
515
|
-
}) => any) | undefined;
|
516
|
-
}>, {
|
517
|
-
update: () => void;
|
518
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
519
|
-
click: (value: MouseEvent) => any;
|
520
|
-
"update:indicator-style": (value: import('vue').CSSProperties) => any;
|
521
|
-
"update:scroll-position": (value: {
|
522
|
-
left: number;
|
523
|
-
} | {
|
524
|
-
top: number;
|
525
|
-
}) => any;
|
526
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
527
|
-
beforeCreate?: (() => void) | (() => void)[];
|
528
|
-
created?: (() => void) | (() => void)[];
|
529
|
-
beforeMount?: (() => void) | (() => void)[];
|
530
|
-
mounted?: (() => void) | (() => void)[];
|
531
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
532
|
-
updated?: (() => void) | (() => void)[];
|
533
|
-
activated?: (() => void) | (() => void)[];
|
534
|
-
deactivated?: (() => void) | (() => void)[];
|
535
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
536
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
537
|
-
destroyed?: (() => void) | (() => void)[];
|
538
|
-
unmounted?: (() => void) | (() => void)[];
|
539
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
540
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
541
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
542
|
-
};
|
543
|
-
$forceUpdate: () => void;
|
544
|
-
$nextTick: typeof import('vue').nextTick;
|
545
|
-
$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;
|
546
|
-
} & Readonly<{}> & Omit<Readonly<{
|
547
|
-
active: boolean;
|
548
|
-
index: number;
|
549
|
-
hasError: boolean;
|
550
|
-
hasChanges: boolean;
|
551
|
-
hasValue: boolean;
|
552
|
-
title: string;
|
553
|
-
icon: SVGComponent | undefined;
|
554
|
-
first: boolean;
|
555
|
-
last: boolean;
|
556
|
-
disabled?: boolean;
|
557
|
-
stepper?: boolean;
|
558
|
-
showHasValue?: boolean;
|
559
|
-
side?: boolean;
|
560
|
-
}> & Readonly<{
|
561
|
-
onClick?: ((value: MouseEvent) => any) | undefined;
|
562
|
-
"onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
|
563
|
-
"onUpdate:scroll-position"?: ((value: {
|
564
|
-
left: number;
|
565
|
-
} | {
|
566
|
-
top: number;
|
567
|
-
}) => any) | undefined;
|
568
|
-
}>, "update"> & import('vue').ShallowUnwrapRef<{
|
569
|
-
update: () => void;
|
570
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
571
|
-
$slots: {
|
572
|
-
title?(_: {
|
573
|
-
hasChanges: boolean;
|
574
|
-
hasError: boolean;
|
575
|
-
hasValue: boolean;
|
576
|
-
}): any;
|
577
|
-
suffix?(_: {
|
578
|
-
hasChanges: boolean;
|
579
|
-
hasError: boolean;
|
580
|
-
hasValue: boolean;
|
581
|
-
}): any;
|
582
|
-
right?(_: {
|
583
|
-
hasChanges: boolean;
|
584
|
-
hasError: boolean;
|
585
|
-
hasValue: boolean;
|
586
|
-
}): any;
|
587
|
-
};
|
588
|
-
}) | null)[];
|
589
|
-
tabItem: (({
|
590
|
-
$: import('vue').ComponentInternalInstance;
|
591
|
-
$data: {};
|
592
|
-
$props: {
|
593
|
-
readonly name: string;
|
594
|
-
readonly title: string;
|
595
|
-
readonly active: boolean;
|
596
|
-
readonly removable: boolean;
|
597
|
-
readonly "onTab:switch"?: ((value: string) => any) | undefined;
|
598
|
-
readonly "onUpdate:height"?: ((value: number) => any) | undefined;
|
599
|
-
readonly "onUpdate:active"?: (() => any) | undefined;
|
600
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
601
|
-
$attrs: {
|
602
|
-
[x: string]: unknown;
|
603
|
-
};
|
604
|
-
$refs: {
|
605
|
-
[x: string]: unknown;
|
606
|
-
} & {
|
607
|
-
form: ({
|
608
|
-
$: import('vue').ComponentInternalInstance;
|
609
|
-
$data: {};
|
610
|
-
$props: {
|
611
|
-
readonly name?: string | undefined;
|
612
|
-
readonly title?: string | undefined;
|
613
|
-
readonly noTag?: boolean | undefined;
|
614
|
-
readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
615
|
-
readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
616
|
-
readonly "onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
617
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
618
|
-
$attrs: {
|
619
|
-
[x: string]: unknown;
|
620
|
-
};
|
621
|
-
$refs: {
|
622
|
-
[x: string]: unknown;
|
623
|
-
};
|
624
|
-
$slots: Readonly<{
|
625
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
626
|
-
}>;
|
627
|
-
$root: import('vue').ComponentPublicInstance | null;
|
628
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
629
|
-
$host: Element | null;
|
630
|
-
$emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void) & ((event: "update:has-value", value: boolean | null) => void);
|
631
|
-
$el: any;
|
632
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
633
|
-
name?: string;
|
634
|
-
title?: string;
|
635
|
-
noTag?: boolean;
|
636
|
-
}> & Readonly<{
|
637
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
638
|
-
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
639
|
-
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
640
|
-
}>, {
|
641
|
-
isValid: import('vue').ComputedRef<boolean>;
|
642
|
-
hasChanges: import('vue').ComputedRef<boolean>;
|
643
|
-
hasValue: import('vue').ComputedRef<boolean | null>;
|
644
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
645
|
-
invalidate: (payload: {
|
646
|
-
[x: string]: string | string[] | undefined;
|
647
|
-
}) => void;
|
648
|
-
initModel: () => void;
|
649
|
-
errorMessage: import('vue').ComputedRef<string>;
|
650
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
651
|
-
"update:has-changes": (value: boolean) => any;
|
652
|
-
"update:is-valid": (value: boolean | undefined) => any;
|
653
|
-
"update:has-value": (value: boolean | null) => any;
|
654
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
655
|
-
beforeCreate?: (() => void) | (() => void)[];
|
656
|
-
created?: (() => void) | (() => void)[];
|
657
|
-
beforeMount?: (() => void) | (() => void)[];
|
658
|
-
mounted?: (() => void) | (() => void)[];
|
659
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
660
|
-
updated?: (() => void) | (() => void)[];
|
661
|
-
activated?: (() => void) | (() => void)[];
|
662
|
-
deactivated?: (() => void) | (() => void)[];
|
663
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
664
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
665
|
-
destroyed?: (() => void) | (() => void)[];
|
666
|
-
unmounted?: (() => void) | (() => void)[];
|
667
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
668
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
669
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
670
|
-
};
|
671
|
-
$forceUpdate: () => void;
|
672
|
-
$nextTick: typeof import('vue').nextTick;
|
673
|
-
$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;
|
674
|
-
} & Readonly<{}> & Omit<Readonly<{
|
675
|
-
name?: string;
|
676
|
-
title?: string;
|
677
|
-
noTag?: boolean;
|
678
|
-
}> & Readonly<{
|
679
|
-
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
680
|
-
"onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
|
681
|
-
"onUpdate:has-value"?: ((value: boolean | null) => any) | undefined;
|
682
|
-
}>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
|
683
|
-
isValid: import('vue').ComputedRef<boolean>;
|
684
|
-
hasChanges: import('vue').ComputedRef<boolean>;
|
685
|
-
hasValue: import('vue').ComputedRef<boolean | null>;
|
686
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
687
|
-
invalidate: (payload: {
|
688
|
-
[x: string]: string | string[] | undefined;
|
689
|
-
}) => void;
|
690
|
-
initModel: () => void;
|
691
|
-
errorMessage: import('vue').ComputedRef<string>;
|
692
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
693
|
-
$slots: {
|
694
|
-
default?(_: {}): any;
|
695
|
-
};
|
696
|
-
}) | null;
|
697
|
-
};
|
698
|
-
$slots: Readonly<{
|
699
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
700
|
-
}>;
|
701
|
-
$root: import('vue').ComponentPublicInstance | null;
|
702
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
703
|
-
$host: Element | null;
|
704
|
-
$emit: ((event: "tab:switch", value: string) => void) & ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
|
705
|
-
$el: any;
|
706
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
707
|
-
name: string;
|
708
|
-
title: string;
|
709
|
-
active: boolean;
|
710
|
-
removable: boolean;
|
711
|
-
}> & Readonly<{
|
712
|
-
"onTab:switch"?: ((value: string) => any) | undefined;
|
713
|
-
"onUpdate:height"?: ((value: number) => any) | undefined;
|
714
|
-
"onUpdate:active"?: (() => any) | undefined;
|
715
|
-
}>, {
|
716
|
-
emitHeight: () => void;
|
717
|
-
isValid: import('vue').ComputedRef<boolean>;
|
718
|
-
hasChanges: import('vue').ComputedRef<boolean>;
|
719
|
-
hasValue: import('vue').ComputedRef<boolean | null>;
|
720
|
-
errorMessage: import('vue').ComputedRef<string | undefined>;
|
721
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
722
|
-
invalidate: (payload: {
|
723
|
-
[x: string]: string | string[] | undefined;
|
724
|
-
}) => void;
|
725
|
-
initModel: () => void;
|
726
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
727
|
-
"tab:switch": (value: string) => any;
|
728
|
-
"update:height": (value: number) => any;
|
729
|
-
"update:active": () => any;
|
730
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
731
|
-
beforeCreate?: (() => void) | (() => void)[];
|
732
|
-
created?: (() => void) | (() => void)[];
|
733
|
-
beforeMount?: (() => void) | (() => void)[];
|
734
|
-
mounted?: (() => void) | (() => void)[];
|
735
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
736
|
-
updated?: (() => void) | (() => void)[];
|
737
|
-
activated?: (() => void) | (() => void)[];
|
738
|
-
deactivated?: (() => void) | (() => void)[];
|
739
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
740
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
741
|
-
destroyed?: (() => void) | (() => void)[];
|
742
|
-
unmounted?: (() => void) | (() => void)[];
|
743
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
744
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
745
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
746
|
-
};
|
747
|
-
$forceUpdate: () => void;
|
748
|
-
$nextTick: typeof import('vue').nextTick;
|
749
|
-
$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;
|
750
|
-
} & Readonly<{}> & Omit<Readonly<{
|
751
|
-
name: string;
|
752
|
-
title: string;
|
753
|
-
active: boolean;
|
754
|
-
removable: boolean;
|
755
|
-
}> & Readonly<{
|
756
|
-
"onTab:switch"?: ((value: string) => any) | undefined;
|
757
|
-
"onUpdate:height"?: ((value: number) => any) | undefined;
|
758
|
-
"onUpdate:active"?: (() => any) | undefined;
|
759
|
-
}>, "errorMessage" | "hasChanges" | "isValid" | "hasValue" | "validate" | "invalidate" | "initModel" | "emitHeight"> & import('vue').ShallowUnwrapRef<{
|
760
|
-
emitHeight: () => void;
|
761
|
-
isValid: import('vue').ComputedRef<boolean>;
|
762
|
-
hasChanges: import('vue').ComputedRef<boolean>;
|
763
|
-
hasValue: import('vue').ComputedRef<boolean | null>;
|
764
|
-
errorMessage: import('vue').ComputedRef<string | undefined>;
|
765
|
-
validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
|
766
|
-
invalidate: (payload: {
|
767
|
-
[x: string]: string | string[] | undefined;
|
768
|
-
}) => void;
|
769
|
-
initModel: () => void;
|
770
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
771
|
-
$slots: {
|
772
|
-
default?(_: {}): any;
|
773
|
-
};
|
774
|
-
}) | null)[];
|
775
|
-
}, any, import('vue').ComponentProvideOptions, {
|
776
|
-
P: {};
|
777
|
-
B: {};
|
778
|
-
D: {};
|
779
|
-
C: {};
|
780
|
-
M: {};
|
781
|
-
Defaults: {};
|
782
|
-
}, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
1033
|
+
jump: (name: string, update?: boolean) => void;
|
1034
|
+
validate: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
1035
|
+
validateIfNoError: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
1036
|
+
invalidate: (name: string, messages: Record<string, string | string[] | undefined>) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
1037
|
+
initModel: (name: string) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
1038
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
1039
|
+
"update:has-changes": (value: boolean) => any;
|
1040
|
+
"update:first": (value: boolean) => any;
|
1041
|
+
"update:last": (value: boolean) => any;
|
1042
|
+
"update:current": (value: string) => any;
|
1043
|
+
"update:current-index": (value: number) => any;
|
1044
|
+
"update:current-title": (value: string) => any;
|
1045
|
+
"update:tabs-length": (value: number) => any;
|
1046
|
+
"update:progress": (value: number) => any;
|
1047
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
1048
|
+
beforeCreate?: (() => void) | (() => void)[];
|
1049
|
+
created?: (() => void) | (() => void)[];
|
1050
|
+
beforeMount?: (() => void) | (() => void)[];
|
1051
|
+
mounted?: (() => void) | (() => void)[];
|
1052
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
1053
|
+
updated?: (() => void) | (() => void)[];
|
1054
|
+
activated?: (() => void) | (() => void)[];
|
1055
|
+
deactivated?: (() => void) | (() => void)[];
|
1056
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
1057
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
1058
|
+
destroyed?: (() => void) | (() => void)[];
|
1059
|
+
unmounted?: (() => void) | (() => void)[];
|
1060
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
1061
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
1062
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
1063
|
+
};
|
1064
|
+
$forceUpdate: () => void;
|
1065
|
+
$nextTick: typeof import('vue').nextTick;
|
1066
|
+
$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;
|
1067
|
+
} & Readonly<{}> & Omit<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
|
783
1068
|
"onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
|
784
1069
|
"onUpdate:first"?: ((value: boolean) => any) | undefined;
|
785
1070
|
"onUpdate:last"?: ((value: boolean) => any) | undefined;
|
@@ -788,18 +1073,23 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
788
1073
|
"onUpdate:current-title"?: ((value: string) => any) | undefined;
|
789
1074
|
"onUpdate:tabs-length"?: ((value: number) => any) | undefined;
|
790
1075
|
"onUpdate:progress"?: ((value: number) => any) | undefined;
|
791
|
-
}>, {
|
1076
|
+
}>, "validate" | "invalidate" | "initModel" | "previous" | "next" | "updateCurrent" | "updateIndex" | "jump" | "validateIfNoError"> & import('vue').ShallowUnwrapRef<{
|
792
1077
|
updateCurrent: (value: string) => void;
|
793
1078
|
updateIndex: (value: number) => void;
|
794
|
-
next: () => void;
|
1079
|
+
next: (update?: boolean) => void;
|
795
1080
|
previous: () => void;
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
1081
|
+
jump: (name: string, update?: boolean) => void;
|
1082
|
+
validate: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
1083
|
+
validateIfNoError: (name: string, silent?: boolean | undefined, path?: import('../Form/models/utils').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
|
1084
|
+
invalidate: (name: string, messages: Record<string, string | string[] | undefined>) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
|
1085
|
+
initModel: (name: string) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
|
1086
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
1087
|
+
$slots: Readonly<{
|
1088
|
+
default: () => void;
|
1089
|
+
}> & {
|
1090
|
+
default: () => void;
|
1091
|
+
};
|
1092
|
+
}) | null;
|
803
1093
|
}, any>;
|
804
1094
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
805
1095
|
export default _default;
|