@tmagic/form 1.7.9 → 1.7.11
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/es/containers/GroupList.vue_vue_type_script_setup_true_lang.js +17 -47
- package/dist/es/containers/TableGroupList.js +5 -0
- package/dist/es/containers/TableGroupList.vue_vue_type_script_setup_true_lang.js +162 -0
- package/dist/es/index.js +2 -3
- package/dist/es/plugin.js +3 -4
- package/dist/es/table/Table.vue_vue_type_script_setup_true_lang.js +12 -53
- package/dist/es/table/useAdd.js +3 -16
- package/dist/tmagic-form.umd.cjs +182 -107
- package/package.json +6 -6
- package/src/containers/GroupList.vue +19 -41
- package/src/containers/TableGroupList.vue +181 -0
- package/src/index.ts +3 -2
- package/src/plugin.ts +3 -4
- package/src/table/Table.vue +14 -49
- package/src/table/type.ts +0 -1
- package/src/table/useAdd.ts +2 -18
- package/types/index.d.ts +243 -286
package/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as _tmagic_form_schema0 from "@tmagic/form-schema";
|
|
2
|
-
import { FlexLayoutConfig, TableConfig } from "@tmagic/form-schema";
|
|
3
|
-
import * as _vue_reactivity0 from "@vue/reactivity";
|
|
4
|
-
import * as _vue_runtime_core0 from "@vue/runtime-core";
|
|
5
|
-
import * as _tmagic_editor0 from "@tmagic/editor";
|
|
1
|
+
import * as _$_tmagic_form_schema0 from "@tmagic/form-schema";
|
|
2
|
+
import { FlexLayoutConfig, GroupListConfig, TableConfig } from "@tmagic/form-schema";
|
|
3
|
+
import * as _$_vue_reactivity0 from "@vue/reactivity";
|
|
4
|
+
import * as _$_vue_runtime_core0 from "@vue/runtime-core";
|
|
5
|
+
import * as _$_tmagic_editor0 from "@tmagic/editor";
|
|
6
6
|
import { App, Component } from "vue";
|
|
7
7
|
export * from "@tmagic/form-schema";
|
|
8
8
|
|
|
@@ -67,23 +67,23 @@ type __VLS_Props$30 = {
|
|
|
67
67
|
preventSubmitDefault?: boolean;
|
|
68
68
|
extendState?: (_state: schema_d_exports.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
69
69
|
};
|
|
70
|
-
declare const __VLS_export$
|
|
71
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
72
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
70
|
+
declare const __VLS_export$30: _$_vue_runtime_core0.DefineComponent<__VLS_Props$30, {
|
|
71
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
72
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
73
73
|
formState: schema_d_exports.FormState;
|
|
74
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
75
|
-
changeRecords: _vue_reactivity0.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
74
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
75
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<ChangeRecord[], ChangeRecord[]>;
|
|
76
76
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
77
77
|
resetForm: () => void;
|
|
78
78
|
submitForm: (native?: boolean) => Promise<any>;
|
|
79
79
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
80
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
80
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
81
81
|
error: (...args: any[]) => void;
|
|
82
82
|
change: (...args: any[]) => void;
|
|
83
83
|
"field-input": (...args: any[]) => void;
|
|
84
84
|
"field-change": (...args: any[]) => void;
|
|
85
85
|
"update:stepActive": (...args: any[]) => void;
|
|
86
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$30> & Readonly<{
|
|
86
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$30> & Readonly<{
|
|
87
87
|
onError?: ((...args: any[]) => any) | undefined;
|
|
88
88
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
89
89
|
"onField-input"?: ((...args: any[]) => any) | undefined;
|
|
@@ -102,8 +102,8 @@ declare const __VLS_export$31: _vue_runtime_core0.DefineComponent<__VLS_Props$30
|
|
|
102
102
|
keyProp: string;
|
|
103
103
|
parentValues: Record<string, any>;
|
|
104
104
|
stepActive: string | number;
|
|
105
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
106
|
-
declare const _default$12: typeof __VLS_export$
|
|
105
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
106
|
+
declare const _default$12: typeof __VLS_export$30;
|
|
107
107
|
//#endregion
|
|
108
108
|
//#region temp/packages/form/src/FormDialog.vue.d.ts
|
|
109
109
|
type __VLS_Props$29 = {
|
|
@@ -128,15 +128,15 @@ type __VLS_Props$29 = {
|
|
|
128
128
|
showCancel?: boolean;
|
|
129
129
|
};
|
|
130
130
|
declare var __VLS_19: {}, __VLS_34: {}, __VLS_42: {};
|
|
131
|
-
type __VLS_Slots$
|
|
131
|
+
type __VLS_Slots$3 = {} & {
|
|
132
132
|
default?: (props: typeof __VLS_19) => any;
|
|
133
133
|
} & {
|
|
134
134
|
left?: (props: typeof __VLS_34) => any;
|
|
135
135
|
} & {
|
|
136
136
|
footer?: (props: typeof __VLS_42) => any;
|
|
137
137
|
};
|
|
138
|
-
declare const __VLS_base$
|
|
139
|
-
form: _vue_reactivity0.Ref<_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
138
|
+
declare const __VLS_base$3: _$_vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
139
|
+
form: _$_vue_reactivity0.Ref<_$_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
140
140
|
config: schema_d_exports.FormConfig;
|
|
141
141
|
initValues: Record<string, any>;
|
|
142
142
|
lastValues?: Record<string, any>;
|
|
@@ -152,7 +152,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
152
152
|
keyProp?: string;
|
|
153
153
|
popperClass?: string;
|
|
154
154
|
preventSubmitDefault?: boolean;
|
|
155
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
155
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
156
156
|
}> & Readonly<{
|
|
157
157
|
onError?: ((...args: any[]) => any) | undefined;
|
|
158
158
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -160,22 +160,22 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
160
160
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
161
161
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
162
162
|
}>, {
|
|
163
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
164
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
165
|
-
formState: _tmagic_form_schema0.FormState;
|
|
166
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
167
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
163
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
164
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
165
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
166
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
167
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
168
168
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
169
169
|
resetForm: () => void;
|
|
170
170
|
submitForm: (native?: boolean) => Promise<any>;
|
|
171
171
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
172
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
172
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
173
173
|
error: (...args: any[]) => void;
|
|
174
174
|
change: (...args: any[]) => void;
|
|
175
175
|
"field-input": (...args: any[]) => void;
|
|
176
176
|
"field-change": (...args: any[]) => void;
|
|
177
177
|
"update:stepActive": (...args: any[]) => void;
|
|
178
|
-
}, _vue_runtime_core0.PublicProps, {
|
|
178
|
+
}, _$_vue_runtime_core0.PublicProps, {
|
|
179
179
|
disabled: boolean;
|
|
180
180
|
labelWidth: string;
|
|
181
181
|
inline: boolean;
|
|
@@ -188,7 +188,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
188
188
|
keyProp: string;
|
|
189
189
|
parentValues: Record<string, any>;
|
|
190
190
|
stepActive: string | number;
|
|
191
|
-
}, false, {}, {}, _vue_runtime_core0.GlobalComponents, _vue_runtime_core0.GlobalDirectives, string, {}, any, _vue_runtime_core0.ComponentProvideOptions, {
|
|
191
|
+
}, false, {}, {}, _$_vue_runtime_core0.GlobalComponents, _$_vue_runtime_core0.GlobalDirectives, string, {}, any, _$_vue_runtime_core0.ComponentProvideOptions, {
|
|
192
192
|
P: {};
|
|
193
193
|
B: {};
|
|
194
194
|
D: {};
|
|
@@ -211,7 +211,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
211
211
|
keyProp?: string;
|
|
212
212
|
popperClass?: string;
|
|
213
213
|
preventSubmitDefault?: boolean;
|
|
214
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
214
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
215
215
|
}> & Readonly<{
|
|
216
216
|
onError?: ((...args: any[]) => any) | undefined;
|
|
217
217
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -219,11 +219,11 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
219
219
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
220
220
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
221
221
|
}>, {
|
|
222
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
223
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
224
|
-
formState: _tmagic_form_schema0.FormState;
|
|
225
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
226
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
222
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
223
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
224
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
225
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
226
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
227
227
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
228
228
|
resetForm: () => void;
|
|
229
229
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -241,7 +241,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
241
241
|
keyProp: string;
|
|
242
242
|
parentValues: Record<string, any>;
|
|
243
243
|
stepActive: string | number;
|
|
244
|
-
}> | undefined, _vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
244
|
+
}> | undefined, _$_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
245
245
|
config: schema_d_exports.FormConfig;
|
|
246
246
|
initValues: Record<string, any>;
|
|
247
247
|
lastValues?: Record<string, any>;
|
|
@@ -257,7 +257,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
257
257
|
keyProp?: string;
|
|
258
258
|
popperClass?: string;
|
|
259
259
|
preventSubmitDefault?: boolean;
|
|
260
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
260
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
261
261
|
}> & Readonly<{
|
|
262
262
|
onError?: ((...args: any[]) => any) | undefined;
|
|
263
263
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -265,22 +265,22 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
265
265
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
266
266
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
267
267
|
}>, {
|
|
268
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
269
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
270
|
-
formState: _tmagic_form_schema0.FormState;
|
|
271
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
272
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
268
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
269
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
270
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
271
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
272
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
273
273
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
274
274
|
resetForm: () => void;
|
|
275
275
|
submitForm: (native?: boolean) => Promise<any>;
|
|
276
276
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
277
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
277
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
278
278
|
error: (...args: any[]) => void;
|
|
279
279
|
change: (...args: any[]) => void;
|
|
280
280
|
"field-input": (...args: any[]) => void;
|
|
281
281
|
"field-change": (...args: any[]) => void;
|
|
282
282
|
"update:stepActive": (...args: any[]) => void;
|
|
283
|
-
}, _vue_runtime_core0.PublicProps, {
|
|
283
|
+
}, _$_vue_runtime_core0.PublicProps, {
|
|
284
284
|
disabled: boolean;
|
|
285
285
|
labelWidth: string;
|
|
286
286
|
inline: boolean;
|
|
@@ -293,7 +293,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
293
293
|
keyProp: string;
|
|
294
294
|
parentValues: Record<string, any>;
|
|
295
295
|
stepActive: string | number;
|
|
296
|
-
}, false, {}, {}, _vue_runtime_core0.GlobalComponents, _vue_runtime_core0.GlobalDirectives, string, {}, any, _vue_runtime_core0.ComponentProvideOptions, {
|
|
296
|
+
}, false, {}, {}, _$_vue_runtime_core0.GlobalComponents, _$_vue_runtime_core0.GlobalDirectives, string, {}, any, _$_vue_runtime_core0.ComponentProvideOptions, {
|
|
297
297
|
P: {};
|
|
298
298
|
B: {};
|
|
299
299
|
D: {};
|
|
@@ -316,7 +316,7 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
316
316
|
keyProp?: string;
|
|
317
317
|
popperClass?: string;
|
|
318
318
|
preventSubmitDefault?: boolean;
|
|
319
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
319
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
320
320
|
}> & Readonly<{
|
|
321
321
|
onError?: ((...args: any[]) => any) | undefined;
|
|
322
322
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -324,11 +324,11 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
324
324
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
325
325
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
326
326
|
}>, {
|
|
327
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
328
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
329
|
-
formState: _tmagic_form_schema0.FormState;
|
|
330
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
331
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
327
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
328
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
329
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
330
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
331
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
332
332
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
333
333
|
resetForm: () => void;
|
|
334
334
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -347,18 +347,18 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
347
347
|
parentValues: Record<string, any>;
|
|
348
348
|
stepActive: string | number;
|
|
349
349
|
}> | undefined>;
|
|
350
|
-
saveFetch: _vue_reactivity0.Ref<boolean, boolean>;
|
|
351
|
-
dialogVisible: _vue_reactivity0.Ref<boolean, boolean>;
|
|
350
|
+
saveFetch: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
351
|
+
dialogVisible: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
352
352
|
cancel: () => void;
|
|
353
353
|
save: () => Promise<void>;
|
|
354
354
|
show: () => void;
|
|
355
355
|
hide: () => void;
|
|
356
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
356
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
357
357
|
error: (...args: any[]) => void;
|
|
358
358
|
change: (...args: any[]) => void;
|
|
359
359
|
close: (...args: any[]) => void;
|
|
360
360
|
submit: (...args: any[]) => void;
|
|
361
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$29> & Readonly<{
|
|
361
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$29> & Readonly<{
|
|
362
362
|
onError?: ((...args: any[]) => any) | undefined;
|
|
363
363
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
364
364
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -372,10 +372,10 @@ declare const __VLS_base$4: _vue_runtime_core0.DefineComponent<__VLS_Props$29, {
|
|
|
372
372
|
config: schema_d_exports.FormConfig;
|
|
373
373
|
confirmText: string;
|
|
374
374
|
showCancel: boolean;
|
|
375
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
376
|
-
declare const __VLS_export$
|
|
377
|
-
declare const _default$14: typeof __VLS_export$
|
|
378
|
-
type __VLS_WithSlots$
|
|
375
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
376
|
+
declare const __VLS_export$29: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
377
|
+
declare const _default$14: typeof __VLS_export$29;
|
|
378
|
+
type __VLS_WithSlots$3<T, S> = T & {
|
|
379
379
|
new (): {
|
|
380
380
|
$slots: S;
|
|
381
381
|
};
|
|
@@ -399,16 +399,16 @@ type __VLS_Props$28 = {
|
|
|
399
399
|
preventSubmitDefault?: boolean; /** 关闭前的回调,会暂停 Drawer 的关闭; done 是个 function type 接受一个 boolean 参数, 执行 done 使用 true 参数或不提供参数将会终止关闭 */
|
|
400
400
|
beforeClose?: (_done: (_cancel?: boolean) => void) => void;
|
|
401
401
|
};
|
|
402
|
-
declare var __VLS_23
|
|
403
|
-
type __VLS_Slots$
|
|
404
|
-
default?: (props: typeof __VLS_23
|
|
402
|
+
declare var __VLS_23: {}, __VLS_38: {}, __VLS_46: {};
|
|
403
|
+
type __VLS_Slots$2 = {} & {
|
|
404
|
+
default?: (props: typeof __VLS_23) => any;
|
|
405
405
|
} & {
|
|
406
406
|
left?: (props: typeof __VLS_38) => any;
|
|
407
407
|
} & {
|
|
408
408
|
footer?: (props: typeof __VLS_46) => any;
|
|
409
409
|
};
|
|
410
|
-
declare const __VLS_base$
|
|
411
|
-
form: _vue_reactivity0.Ref<_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
410
|
+
declare const __VLS_base$2: _$_vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
411
|
+
form: _$_vue_reactivity0.Ref<_$_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
412
412
|
config: schema_d_exports.FormConfig;
|
|
413
413
|
initValues: Record<string, any>;
|
|
414
414
|
lastValues?: Record<string, any>;
|
|
@@ -424,7 +424,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
424
424
|
keyProp?: string;
|
|
425
425
|
popperClass?: string;
|
|
426
426
|
preventSubmitDefault?: boolean;
|
|
427
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
427
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
428
428
|
}> & Readonly<{
|
|
429
429
|
onError?: ((...args: any[]) => any) | undefined;
|
|
430
430
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -432,22 +432,22 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
432
432
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
433
433
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
434
434
|
}>, {
|
|
435
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
436
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
437
|
-
formState: _tmagic_form_schema0.FormState;
|
|
438
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
439
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
435
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
436
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
437
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
438
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
439
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
440
440
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
441
441
|
resetForm: () => void;
|
|
442
442
|
submitForm: (native?: boolean) => Promise<any>;
|
|
443
443
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
444
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
444
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
445
445
|
error: (...args: any[]) => void;
|
|
446
446
|
change: (...args: any[]) => void;
|
|
447
447
|
"field-input": (...args: any[]) => void;
|
|
448
448
|
"field-change": (...args: any[]) => void;
|
|
449
449
|
"update:stepActive": (...args: any[]) => void;
|
|
450
|
-
}, _vue_runtime_core0.PublicProps, {
|
|
450
|
+
}, _$_vue_runtime_core0.PublicProps, {
|
|
451
451
|
disabled: boolean;
|
|
452
452
|
labelWidth: string;
|
|
453
453
|
inline: boolean;
|
|
@@ -460,7 +460,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
460
460
|
keyProp: string;
|
|
461
461
|
parentValues: Record<string, any>;
|
|
462
462
|
stepActive: string | number;
|
|
463
|
-
}, false, {}, {}, _vue_runtime_core0.GlobalComponents, _vue_runtime_core0.GlobalDirectives, string, {}, any, _vue_runtime_core0.ComponentProvideOptions, {
|
|
463
|
+
}, false, {}, {}, _$_vue_runtime_core0.GlobalComponents, _$_vue_runtime_core0.GlobalDirectives, string, {}, any, _$_vue_runtime_core0.ComponentProvideOptions, {
|
|
464
464
|
P: {};
|
|
465
465
|
B: {};
|
|
466
466
|
D: {};
|
|
@@ -483,7 +483,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
483
483
|
keyProp?: string;
|
|
484
484
|
popperClass?: string;
|
|
485
485
|
preventSubmitDefault?: boolean;
|
|
486
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
486
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
487
487
|
}> & Readonly<{
|
|
488
488
|
onError?: ((...args: any[]) => any) | undefined;
|
|
489
489
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -491,11 +491,11 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
491
491
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
492
492
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
493
493
|
}>, {
|
|
494
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
495
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
496
|
-
formState: _tmagic_form_schema0.FormState;
|
|
497
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
498
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
494
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
495
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
496
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
497
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
498
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
499
499
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
500
500
|
resetForm: () => void;
|
|
501
501
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -513,7 +513,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
513
513
|
keyProp: string;
|
|
514
514
|
parentValues: Record<string, any>;
|
|
515
515
|
stepActive: string | number;
|
|
516
|
-
}> | undefined, _vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
516
|
+
}> | undefined, _$_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
517
517
|
config: schema_d_exports.FormConfig;
|
|
518
518
|
initValues: Record<string, any>;
|
|
519
519
|
lastValues?: Record<string, any>;
|
|
@@ -529,7 +529,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
529
529
|
keyProp?: string;
|
|
530
530
|
popperClass?: string;
|
|
531
531
|
preventSubmitDefault?: boolean;
|
|
532
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
532
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
533
533
|
}> & Readonly<{
|
|
534
534
|
onError?: ((...args: any[]) => any) | undefined;
|
|
535
535
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -537,22 +537,22 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
537
537
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
538
538
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
539
539
|
}>, {
|
|
540
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
541
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
542
|
-
formState: _tmagic_form_schema0.FormState;
|
|
543
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
544
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
540
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
541
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
542
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
543
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
544
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
545
545
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
546
546
|
resetForm: () => void;
|
|
547
547
|
submitForm: (native?: boolean) => Promise<any>;
|
|
548
548
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
549
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
549
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
550
550
|
error: (...args: any[]) => void;
|
|
551
551
|
change: (...args: any[]) => void;
|
|
552
552
|
"field-input": (...args: any[]) => void;
|
|
553
553
|
"field-change": (...args: any[]) => void;
|
|
554
554
|
"update:stepActive": (...args: any[]) => void;
|
|
555
|
-
}, _vue_runtime_core0.PublicProps, {
|
|
555
|
+
}, _$_vue_runtime_core0.PublicProps, {
|
|
556
556
|
disabled: boolean;
|
|
557
557
|
labelWidth: string;
|
|
558
558
|
inline: boolean;
|
|
@@ -565,7 +565,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
565
565
|
keyProp: string;
|
|
566
566
|
parentValues: Record<string, any>;
|
|
567
567
|
stepActive: string | number;
|
|
568
|
-
}, false, {}, {}, _vue_runtime_core0.GlobalComponents, _vue_runtime_core0.GlobalDirectives, string, {}, any, _vue_runtime_core0.ComponentProvideOptions, {
|
|
568
|
+
}, false, {}, {}, _$_vue_runtime_core0.GlobalComponents, _$_vue_runtime_core0.GlobalDirectives, string, {}, any, _$_vue_runtime_core0.ComponentProvideOptions, {
|
|
569
569
|
P: {};
|
|
570
570
|
B: {};
|
|
571
571
|
D: {};
|
|
@@ -588,7 +588,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
588
588
|
keyProp?: string;
|
|
589
589
|
popperClass?: string;
|
|
590
590
|
preventSubmitDefault?: boolean;
|
|
591
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
591
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
592
592
|
}> & Readonly<{
|
|
593
593
|
onError?: ((...args: any[]) => any) | undefined;
|
|
594
594
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -596,11 +596,11 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
596
596
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
597
597
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
598
598
|
}>, {
|
|
599
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
600
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
601
|
-
formState: _tmagic_form_schema0.FormState;
|
|
602
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
603
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
599
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
600
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
601
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
602
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
603
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
604
604
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
605
605
|
resetForm: () => void;
|
|
606
606
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -619,12 +619,12 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
619
619
|
parentValues: Record<string, any>;
|
|
620
620
|
stepActive: string | number;
|
|
621
621
|
}> | undefined>;
|
|
622
|
-
saveFetch: _vue_reactivity0.Ref<boolean, boolean>;
|
|
623
|
-
bodyHeight: _vue_reactivity0.Ref<number, number>;
|
|
622
|
+
saveFetch: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
623
|
+
bodyHeight: _$_vue_reactivity0.Ref<number, number>;
|
|
624
624
|
show: () => void;
|
|
625
625
|
hide: () => void;
|
|
626
626
|
handleClose: () => void;
|
|
627
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
627
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
628
628
|
error: (...args: any[]) => void;
|
|
629
629
|
change: (...args: any[]) => void;
|
|
630
630
|
close: (...args: any[]) => void;
|
|
@@ -632,7 +632,7 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
632
632
|
open: (...args: any[]) => void;
|
|
633
633
|
opened: (...args: any[]) => void;
|
|
634
634
|
closed: (...args: any[]) => void;
|
|
635
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$28> & Readonly<{
|
|
635
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$28> & Readonly<{
|
|
636
636
|
onError?: ((...args: any[]) => any) | undefined;
|
|
637
637
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
638
638
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -645,10 +645,10 @@ declare const __VLS_base$3: _vue_runtime_core0.DefineComponent<__VLS_Props$28, {
|
|
|
645
645
|
closeOnPressEscape: boolean;
|
|
646
646
|
config: schema_d_exports.FormConfig;
|
|
647
647
|
confirmText: string;
|
|
648
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
649
|
-
declare const __VLS_export$
|
|
650
|
-
declare const _default$15: typeof __VLS_export$
|
|
651
|
-
type __VLS_WithSlots$
|
|
648
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
649
|
+
declare const __VLS_export$28: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
650
|
+
declare const _default$15: typeof __VLS_export$28;
|
|
651
|
+
type __VLS_WithSlots$2<T, S> = T & {
|
|
652
652
|
new (): {
|
|
653
653
|
$slots: S;
|
|
654
654
|
};
|
|
@@ -670,15 +670,15 @@ type __VLS_Props$27 = {
|
|
|
670
670
|
preventSubmitDefault?: boolean;
|
|
671
671
|
};
|
|
672
672
|
declare var __VLS_16$1: {}, __VLS_18$1: {}, __VLS_20: {};
|
|
673
|
-
type __VLS_Slots$
|
|
673
|
+
type __VLS_Slots$1 = {} & {
|
|
674
674
|
default?: (props: typeof __VLS_16$1) => any;
|
|
675
675
|
} & {
|
|
676
676
|
left?: (props: typeof __VLS_18$1) => any;
|
|
677
677
|
} & {
|
|
678
678
|
footer?: (props: typeof __VLS_20) => any;
|
|
679
679
|
};
|
|
680
|
-
declare const __VLS_base$
|
|
681
|
-
form: _vue_reactivity0.Ref<_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
680
|
+
declare const __VLS_base$1: _$_vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
681
|
+
form: _$_vue_reactivity0.Ref<_$_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
682
682
|
config: schema_d_exports.FormConfig;
|
|
683
683
|
initValues: Record<string, any>;
|
|
684
684
|
lastValues?: Record<string, any>;
|
|
@@ -694,7 +694,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
694
694
|
keyProp?: string;
|
|
695
695
|
popperClass?: string;
|
|
696
696
|
preventSubmitDefault?: boolean;
|
|
697
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
697
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
698
698
|
}> & Readonly<{
|
|
699
699
|
onError?: ((...args: any[]) => any) | undefined;
|
|
700
700
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -702,22 +702,22 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
702
702
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
703
703
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
704
704
|
}>, {
|
|
705
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
706
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
707
|
-
formState: _tmagic_form_schema0.FormState;
|
|
708
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
709
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
705
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
706
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
707
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
708
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
709
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
710
710
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
711
711
|
resetForm: () => void;
|
|
712
712
|
submitForm: (native?: boolean) => Promise<any>;
|
|
713
713
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
714
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
714
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
715
715
|
error: (...args: any[]) => void;
|
|
716
716
|
change: (...args: any[]) => void;
|
|
717
717
|
"field-input": (...args: any[]) => void;
|
|
718
718
|
"field-change": (...args: any[]) => void;
|
|
719
719
|
"update:stepActive": (...args: any[]) => void;
|
|
720
|
-
}, _vue_runtime_core0.PublicProps, {
|
|
720
|
+
}, _$_vue_runtime_core0.PublicProps, {
|
|
721
721
|
disabled: boolean;
|
|
722
722
|
labelWidth: string;
|
|
723
723
|
inline: boolean;
|
|
@@ -730,7 +730,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
730
730
|
keyProp: string;
|
|
731
731
|
parentValues: Record<string, any>;
|
|
732
732
|
stepActive: string | number;
|
|
733
|
-
}, false, {}, {}, _vue_runtime_core0.GlobalComponents, _vue_runtime_core0.GlobalDirectives, string, {}, any, _vue_runtime_core0.ComponentProvideOptions, {
|
|
733
|
+
}, false, {}, {}, _$_vue_runtime_core0.GlobalComponents, _$_vue_runtime_core0.GlobalDirectives, string, {}, any, _$_vue_runtime_core0.ComponentProvideOptions, {
|
|
734
734
|
P: {};
|
|
735
735
|
B: {};
|
|
736
736
|
D: {};
|
|
@@ -753,7 +753,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
753
753
|
keyProp?: string;
|
|
754
754
|
popperClass?: string;
|
|
755
755
|
preventSubmitDefault?: boolean;
|
|
756
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
756
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
757
757
|
}> & Readonly<{
|
|
758
758
|
onError?: ((...args: any[]) => any) | undefined;
|
|
759
759
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -761,11 +761,11 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
761
761
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
762
762
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
763
763
|
}>, {
|
|
764
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
765
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
766
|
-
formState: _tmagic_form_schema0.FormState;
|
|
767
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
768
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
764
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
765
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
766
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
767
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
768
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
769
769
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
770
770
|
resetForm: () => void;
|
|
771
771
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -783,7 +783,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
783
783
|
keyProp: string;
|
|
784
784
|
parentValues: Record<string, any>;
|
|
785
785
|
stepActive: string | number;
|
|
786
|
-
}> | undefined, _vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
786
|
+
}> | undefined, _$_vue_runtime_core0.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
787
787
|
config: schema_d_exports.FormConfig;
|
|
788
788
|
initValues: Record<string, any>;
|
|
789
789
|
lastValues?: Record<string, any>;
|
|
@@ -799,7 +799,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
799
799
|
keyProp?: string;
|
|
800
800
|
popperClass?: string;
|
|
801
801
|
preventSubmitDefault?: boolean;
|
|
802
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
802
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
803
803
|
}> & Readonly<{
|
|
804
804
|
onError?: ((...args: any[]) => any) | undefined;
|
|
805
805
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -807,22 +807,22 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
807
807
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
808
808
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
809
809
|
}>, {
|
|
810
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
811
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
812
|
-
formState: _tmagic_form_schema0.FormState;
|
|
813
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
814
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
810
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
811
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
812
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
813
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
814
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
815
815
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
816
816
|
resetForm: () => void;
|
|
817
817
|
submitForm: (native?: boolean) => Promise<any>;
|
|
818
818
|
getTextByName: (name: string, config?: schema_d_exports.FormConfig) => string | undefined;
|
|
819
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
819
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
820
820
|
error: (...args: any[]) => void;
|
|
821
821
|
change: (...args: any[]) => void;
|
|
822
822
|
"field-input": (...args: any[]) => void;
|
|
823
823
|
"field-change": (...args: any[]) => void;
|
|
824
824
|
"update:stepActive": (...args: any[]) => void;
|
|
825
|
-
}, _vue_runtime_core0.PublicProps, {
|
|
825
|
+
}, _$_vue_runtime_core0.PublicProps, {
|
|
826
826
|
disabled: boolean;
|
|
827
827
|
labelWidth: string;
|
|
828
828
|
inline: boolean;
|
|
@@ -835,7 +835,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
835
835
|
keyProp: string;
|
|
836
836
|
parentValues: Record<string, any>;
|
|
837
837
|
stepActive: string | number;
|
|
838
|
-
}, false, {}, {}, _vue_runtime_core0.GlobalComponents, _vue_runtime_core0.GlobalDirectives, string, {}, any, _vue_runtime_core0.ComponentProvideOptions, {
|
|
838
|
+
}, false, {}, {}, _$_vue_runtime_core0.GlobalComponents, _$_vue_runtime_core0.GlobalDirectives, string, {}, any, _$_vue_runtime_core0.ComponentProvideOptions, {
|
|
839
839
|
P: {};
|
|
840
840
|
B: {};
|
|
841
841
|
D: {};
|
|
@@ -858,7 +858,7 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
858
858
|
keyProp?: string;
|
|
859
859
|
popperClass?: string;
|
|
860
860
|
preventSubmitDefault?: boolean;
|
|
861
|
-
extendState?: (_state: _tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
861
|
+
extendState?: (_state: _$_tmagic_form_schema0.FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
862
862
|
}> & Readonly<{
|
|
863
863
|
onError?: ((...args: any[]) => any) | undefined;
|
|
864
864
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -866,11 +866,11 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
866
866
|
"onField-change"?: ((...args: any[]) => any) | undefined;
|
|
867
867
|
"onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
|
|
868
868
|
}>, {
|
|
869
|
-
values: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
870
|
-
lastValuesProcessed: _vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
871
|
-
formState: _tmagic_form_schema0.FormState;
|
|
872
|
-
initialized: _vue_reactivity0.Ref<boolean, boolean>;
|
|
873
|
-
changeRecords: _vue_reactivity0.ShallowRef<_tmagic_editor0.ChangeRecord[], _tmagic_editor0.ChangeRecord[]>;
|
|
869
|
+
values: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
870
|
+
lastValuesProcessed: _$_vue_reactivity0.Ref<schema_d_exports.FormValue, schema_d_exports.FormValue>;
|
|
871
|
+
formState: _$_tmagic_form_schema0.FormState;
|
|
872
|
+
initialized: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
873
|
+
changeRecords: _$_vue_reactivity0.ShallowRef<_$_tmagic_editor0.ChangeRecord[], _$_tmagic_editor0.ChangeRecord[]>;
|
|
874
874
|
changeHandler: (v: schema_d_exports.FormValue, eventData: ContainerChangeEventData) => void;
|
|
875
875
|
resetForm: () => void;
|
|
876
876
|
submitForm: (native?: boolean) => Promise<any>;
|
|
@@ -889,14 +889,14 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
889
889
|
parentValues: Record<string, any>;
|
|
890
890
|
stepActive: string | number;
|
|
891
891
|
}> | undefined>;
|
|
892
|
-
saveFetch: _vue_reactivity0.Ref<boolean, boolean>;
|
|
892
|
+
saveFetch: _$_vue_reactivity0.Ref<boolean, boolean>;
|
|
893
893
|
show: () => void;
|
|
894
894
|
hide: () => void;
|
|
895
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
895
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
896
896
|
error: (e: any) => any;
|
|
897
897
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
898
898
|
submit: (v: any, eventData: ContainerChangeEventData) => any;
|
|
899
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$27> & Readonly<{
|
|
899
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$27> & Readonly<{
|
|
900
900
|
onError?: ((e: any) => any) | undefined;
|
|
901
901
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
902
902
|
onSubmit?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
@@ -904,10 +904,10 @@ declare const __VLS_base$2: _vue_runtime_core0.DefineComponent<__VLS_Props$27, {
|
|
|
904
904
|
values: Object;
|
|
905
905
|
config: schema_d_exports.FormConfig;
|
|
906
906
|
confirmText: string;
|
|
907
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
908
|
-
declare const __VLS_export$
|
|
909
|
-
declare const _default$13: typeof __VLS_export$
|
|
910
|
-
type __VLS_WithSlots$
|
|
907
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
908
|
+
declare const __VLS_export$27: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
909
|
+
declare const _default$13: typeof __VLS_export$27;
|
|
910
|
+
type __VLS_WithSlots$1<T, S> = T & {
|
|
911
911
|
new (): {
|
|
912
912
|
$slots: S;
|
|
913
913
|
};
|
|
@@ -926,10 +926,10 @@ type __VLS_Props$26 = {
|
|
|
926
926
|
size?: string; /** 是否开启对比模式 */
|
|
927
927
|
isCompare?: boolean;
|
|
928
928
|
};
|
|
929
|
-
declare const __VLS_export$
|
|
929
|
+
declare const __VLS_export$26: _$_vue_runtime_core0.DefineComponent<__VLS_Props$26, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
930
930
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
931
931
|
addDiffCount: () => any;
|
|
932
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$26> & Readonly<{
|
|
932
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$26> & Readonly<{
|
|
933
933
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
934
934
|
onAddDiffCount?: (() => any) | undefined;
|
|
935
935
|
}>, {
|
|
@@ -938,8 +938,8 @@ declare const __VLS_export$27: _vue_runtime_core0.DefineComponent<__VLS_Props$26
|
|
|
938
938
|
lastValues: schema_d_exports.FormValue;
|
|
939
939
|
isCompare: boolean;
|
|
940
940
|
expandMore: boolean;
|
|
941
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
942
|
-
declare const _default$4: typeof __VLS_export$
|
|
941
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
942
|
+
declare const _default$4: typeof __VLS_export$26;
|
|
943
943
|
//#endregion
|
|
944
944
|
//#region temp/packages/form/src/containers/Fieldset.vue.d.ts
|
|
945
945
|
type __VLS_Props$25 = {
|
|
@@ -953,10 +953,10 @@ type __VLS_Props$25 = {
|
|
|
953
953
|
rules?: any;
|
|
954
954
|
disabled?: boolean;
|
|
955
955
|
};
|
|
956
|
-
declare const __VLS_export$
|
|
956
|
+
declare const __VLS_export$25: _$_vue_runtime_core0.DefineComponent<__VLS_Props$25, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
957
957
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
958
958
|
addDiffCount: () => any;
|
|
959
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$25> & Readonly<{
|
|
959
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$25> & Readonly<{
|
|
960
960
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
961
961
|
onAddDiffCount?: (() => any) | undefined;
|
|
962
962
|
}>, {
|
|
@@ -964,8 +964,8 @@ declare const __VLS_export$26: _vue_runtime_core0.DefineComponent<__VLS_Props$25
|
|
|
964
964
|
rules: any;
|
|
965
965
|
lastValues: Record<string, any>;
|
|
966
966
|
isCompare: boolean;
|
|
967
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
968
|
-
declare const _default$10: typeof __VLS_export$
|
|
967
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
968
|
+
declare const _default$10: typeof __VLS_export$25;
|
|
969
969
|
//#endregion
|
|
970
970
|
//#region temp/packages/form/src/containers/FlexLayout.vue.d.ts
|
|
971
971
|
type __VLS_Props$24 = {
|
|
@@ -979,14 +979,14 @@ type __VLS_Props$24 = {
|
|
|
979
979
|
size?: string;
|
|
980
980
|
disabled?: boolean;
|
|
981
981
|
};
|
|
982
|
-
declare const __VLS_export$
|
|
982
|
+
declare const __VLS_export$24: _$_vue_runtime_core0.DefineComponent<__VLS_Props$24, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
983
983
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
984
984
|
addDiffCount: () => any;
|
|
985
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$24> & Readonly<{
|
|
985
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$24> & Readonly<{
|
|
986
986
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
987
987
|
onAddDiffCount?: (() => any) | undefined;
|
|
988
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
989
|
-
declare const _default$11: typeof __VLS_export$
|
|
988
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
989
|
+
declare const _default$11: typeof __VLS_export$24;
|
|
990
990
|
//#endregion
|
|
991
991
|
//#region temp/packages/form/src/containers/Panel.vue.d.ts
|
|
992
992
|
type __VLS_Props$23 = {
|
|
@@ -1001,24 +1001,24 @@ type __VLS_Props$23 = {
|
|
|
1001
1001
|
disabled?: boolean;
|
|
1002
1002
|
};
|
|
1003
1003
|
declare var __VLS_16: {}, __VLS_18: {};
|
|
1004
|
-
type __VLS_Slots
|
|
1004
|
+
type __VLS_Slots = {} & {
|
|
1005
1005
|
header?: (props: typeof __VLS_16) => any;
|
|
1006
1006
|
} & {
|
|
1007
1007
|
default?: (props: typeof __VLS_18) => any;
|
|
1008
1008
|
};
|
|
1009
|
-
declare const __VLS_base
|
|
1009
|
+
declare const __VLS_base: _$_vue_runtime_core0.DefineComponent<__VLS_Props$23, {
|
|
1010
1010
|
getExpand: () => boolean;
|
|
1011
1011
|
setExpand: (v: boolean) => void;
|
|
1012
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1012
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1013
1013
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
1014
1014
|
addDiffCount: () => any;
|
|
1015
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$23> & Readonly<{
|
|
1015
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$23> & Readonly<{
|
|
1016
1016
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
1017
1017
|
onAddDiffCount?: (() => any) | undefined;
|
|
1018
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1019
|
-
declare const __VLS_export$
|
|
1020
|
-
declare const _default$21: typeof __VLS_export$
|
|
1021
|
-
type __VLS_WithSlots
|
|
1018
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1019
|
+
declare const __VLS_export$23: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
1020
|
+
declare const _default$21: typeof __VLS_export$23;
|
|
1021
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
1022
1022
|
new (): {
|
|
1023
1023
|
$slots: S;
|
|
1024
1024
|
};
|
|
@@ -1037,14 +1037,14 @@ type __VLS_Props$22 = {
|
|
|
1037
1037
|
expandMore?: boolean;
|
|
1038
1038
|
disabled?: boolean;
|
|
1039
1039
|
};
|
|
1040
|
-
declare const __VLS_export$
|
|
1040
|
+
declare const __VLS_export$22: _$_vue_runtime_core0.DefineComponent<__VLS_Props$22, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1041
1041
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
1042
1042
|
addDiffCount: () => any;
|
|
1043
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$22> & Readonly<{
|
|
1043
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$22> & Readonly<{
|
|
1044
1044
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
1045
1045
|
onAddDiffCount?: (() => any) | undefined;
|
|
1046
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1047
|
-
declare const _default$23: typeof __VLS_export$
|
|
1046
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1047
|
+
declare const _default$23: typeof __VLS_export$22;
|
|
1048
1048
|
//#endregion
|
|
1049
1049
|
//#region temp/packages/form/src/containers/Tabs.vue.d.ts
|
|
1050
1050
|
type __VLS_Props$21 = {
|
|
@@ -1059,130 +1059,87 @@ type __VLS_Props$21 = {
|
|
|
1059
1059
|
expandMore?: boolean;
|
|
1060
1060
|
disabled?: boolean;
|
|
1061
1061
|
};
|
|
1062
|
-
declare const __VLS_export$
|
|
1062
|
+
declare const __VLS_export$21: _$_vue_runtime_core0.DefineComponent<__VLS_Props$21, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1063
1063
|
change: (v: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
1064
1064
|
addDiffCount: () => any;
|
|
1065
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$21> & Readonly<{
|
|
1065
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$21> & Readonly<{
|
|
1066
1066
|
onChange?: ((v: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
1067
1067
|
onAddDiffCount?: (() => any) | undefined;
|
|
1068
1068
|
}>, {
|
|
1069
1069
|
prop: string;
|
|
1070
1070
|
lastValues: any;
|
|
1071
1071
|
isCompare: boolean;
|
|
1072
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1073
|
-
declare const _default$
|
|
1072
|
+
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1073
|
+
declare const _default$26: typeof __VLS_export$21;
|
|
1074
1074
|
//#endregion
|
|
1075
|
-
//#region temp/packages/form/src/
|
|
1076
|
-
|
|
1075
|
+
//#region temp/packages/form/src/containers/TableGroupList.vue.d.ts
|
|
1076
|
+
type __VLS_Props$20 = {
|
|
1077
1077
|
model: any;
|
|
1078
1078
|
lastValues?: any;
|
|
1079
1079
|
isCompare?: boolean;
|
|
1080
|
-
config: TableConfig;
|
|
1080
|
+
config: TableConfig | GroupListConfig;
|
|
1081
1081
|
name: string;
|
|
1082
1082
|
prop?: string;
|
|
1083
1083
|
labelWidth?: string;
|
|
1084
|
-
sort?: boolean;
|
|
1085
1084
|
disabled?: boolean;
|
|
1086
|
-
sortKey?: string;
|
|
1087
|
-
text?: string;
|
|
1088
1085
|
size?: string;
|
|
1089
|
-
enableToggleMode?:
|
|
1086
|
+
enableToggleMode?: true;
|
|
1090
1087
|
showIndex?: boolean;
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
//#region temp/packages/form/src/table/Table.vue.d.ts
|
|
1094
|
-
declare var __VLS_23: {};
|
|
1095
|
-
type __VLS_Slots = {} & {
|
|
1096
|
-
default?: (props: typeof __VLS_23) => any;
|
|
1088
|
+
sortKey?: string;
|
|
1089
|
+
sort?: boolean;
|
|
1097
1090
|
};
|
|
1098
|
-
declare const
|
|
1099
|
-
toggleRowSelection: (row: any, selected: boolean) => void;
|
|
1100
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1091
|
+
declare const __VLS_export$20: _$_vue_runtime_core0.DefineComponent<__VLS_Props$20, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1101
1092
|
change: (...args: any[]) => void;
|
|
1102
1093
|
select: (...args: any[]) => void;
|
|
1103
1094
|
addDiffCount: (...args: any[]) => void;
|
|
1104
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<
|
|
1095
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$20> & Readonly<{
|
|
1105
1096
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1106
1097
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
1107
1098
|
onAddDiffCount?: ((...args: any[]) => any) | undefined;
|
|
1108
|
-
}>, {
|
|
1109
|
-
prop: string;
|
|
1110
|
-
lastValues: any;
|
|
1111
|
-
isCompare: boolean;
|
|
1112
|
-
enableToggleMode: boolean;
|
|
1113
|
-
showIndex: boolean;
|
|
1114
|
-
sortKey: string;
|
|
1115
|
-
}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1116
|
-
declare const __VLS_export$21: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
1117
|
-
declare const _default$26: typeof __VLS_export$21;
|
|
1118
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
1119
|
-
new (): {
|
|
1120
|
-
$slots: S;
|
|
1121
|
-
};
|
|
1122
|
-
};
|
|
1123
|
-
//#endregion
|
|
1124
|
-
//#region temp/packages/form/src/containers/GroupList.vue.d.ts
|
|
1125
|
-
type __VLS_Props$20 = {
|
|
1126
|
-
model: any;
|
|
1127
|
-
lastValues?: any;
|
|
1128
|
-
isCompare?: boolean;
|
|
1129
|
-
config: schema_d_exports.GroupListConfig;
|
|
1130
|
-
name: string;
|
|
1131
|
-
labelWidth?: string;
|
|
1132
|
-
prop?: string;
|
|
1133
|
-
size?: string;
|
|
1134
|
-
disabled?: boolean;
|
|
1135
|
-
};
|
|
1136
|
-
declare const __VLS_export$20: _vue_runtime_core0.DefineComponent<__VLS_Props$20, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1137
|
-
change: (v: any, eventData?: ContainerChangeEventData | undefined) => any;
|
|
1138
|
-
addDiffCount: () => any;
|
|
1139
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$20> & Readonly<{
|
|
1140
|
-
onChange?: ((v: any, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
1141
|
-
onAddDiffCount?: (() => any) | undefined;
|
|
1142
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1099
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1143
1100
|
declare const _default$16: typeof __VLS_export$20;
|
|
1144
1101
|
//#endregion
|
|
1145
1102
|
//#region temp/packages/form/src/fields/Text.vue.d.ts
|
|
1146
1103
|
type __VLS_Props$19 = schema_d_exports.FieldProps<schema_d_exports.TextConfig>;
|
|
1147
|
-
declare const __VLS_export$19: _vue_runtime_core0.DefineComponent<__VLS_Props$19, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1104
|
+
declare const __VLS_export$19: _$_vue_runtime_core0.DefineComponent<__VLS_Props$19, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1148
1105
|
change: (value: string, eventData?: ContainerChangeEventData | undefined) => any;
|
|
1149
1106
|
input: (value: string) => any;
|
|
1150
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$19> & Readonly<{
|
|
1107
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$19> & Readonly<{
|
|
1151
1108
|
onChange?: ((value: string, eventData?: ContainerChangeEventData | undefined) => any) | undefined;
|
|
1152
1109
|
onInput?: ((value: string) => any) | undefined;
|
|
1153
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1154
|
-
declare const _default$
|
|
1110
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1111
|
+
declare const _default$27: typeof __VLS_export$19;
|
|
1155
1112
|
//#endregion
|
|
1156
1113
|
//#region temp/packages/form/src/fields/Number.vue.d.ts
|
|
1157
1114
|
type __VLS_Props$18 = schema_d_exports.FieldProps<schema_d_exports.NumberConfig>;
|
|
1158
|
-
declare const __VLS_export$18: _vue_runtime_core0.DefineComponent<__VLS_Props$18, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1115
|
+
declare const __VLS_export$18: _$_vue_runtime_core0.DefineComponent<__VLS_Props$18, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1159
1116
|
change: (values: number) => any;
|
|
1160
1117
|
input: (values: number) => any;
|
|
1161
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$18> & Readonly<{
|
|
1118
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$18> & Readonly<{
|
|
1162
1119
|
onChange?: ((values: number) => any) | undefined;
|
|
1163
1120
|
onInput?: ((values: number) => any) | undefined;
|
|
1164
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1121
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1165
1122
|
declare const _default$19: typeof __VLS_export$18;
|
|
1166
1123
|
//#endregion
|
|
1167
1124
|
//#region temp/packages/form/src/fields/NumberRange.vue.d.ts
|
|
1168
1125
|
type __VLS_Props$17 = schema_d_exports.FieldProps<schema_d_exports.NumberRangeConfig>;
|
|
1169
|
-
declare const __VLS_export$17: _vue_runtime_core0.DefineComponent<__VLS_Props$17, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1126
|
+
declare const __VLS_export$17: _$_vue_runtime_core0.DefineComponent<__VLS_Props$17, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1170
1127
|
change: (values: [number, number]) => any;
|
|
1171
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$17> & Readonly<{
|
|
1128
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$17> & Readonly<{
|
|
1172
1129
|
onChange?: ((values: [number, number]) => any) | undefined;
|
|
1173
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1130
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1174
1131
|
declare const _default$20: typeof __VLS_export$17;
|
|
1175
1132
|
//#endregion
|
|
1176
1133
|
//#region temp/packages/form/src/fields/Textarea.vue.d.ts
|
|
1177
1134
|
type __VLS_Props$16 = schema_d_exports.FieldProps<schema_d_exports.TextareaConfig>;
|
|
1178
|
-
declare const __VLS_export$16: _vue_runtime_core0.DefineComponent<__VLS_Props$16, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1135
|
+
declare const __VLS_export$16: _$_vue_runtime_core0.DefineComponent<__VLS_Props$16, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1179
1136
|
change: (value: string) => any;
|
|
1180
1137
|
input: (value: string) => any;
|
|
1181
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$16> & Readonly<{
|
|
1138
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$16> & Readonly<{
|
|
1182
1139
|
onChange?: ((value: string) => any) | undefined;
|
|
1183
1140
|
onInput?: ((value: string) => any) | undefined;
|
|
1184
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1185
|
-
declare const _default$
|
|
1141
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1142
|
+
declare const _default$28: typeof __VLS_export$16;
|
|
1186
1143
|
//#endregion
|
|
1187
1144
|
//#region temp/packages/form/src/fields/Hidden.vue.d.ts
|
|
1188
1145
|
type __VLS_Props$15 = {
|
|
@@ -1190,117 +1147,117 @@ type __VLS_Props$15 = {
|
|
|
1190
1147
|
name: string;
|
|
1191
1148
|
prop: string;
|
|
1192
1149
|
};
|
|
1193
|
-
declare const __VLS_export$15: _vue_runtime_core0.DefineComponent<__VLS_Props$15, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$15> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1150
|
+
declare const __VLS_export$15: _$_vue_runtime_core0.DefineComponent<__VLS_Props$15, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$15> & Readonly<{}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1194
1151
|
declare const _default$17: typeof __VLS_export$15;
|
|
1195
1152
|
//#endregion
|
|
1196
1153
|
//#region temp/packages/form/src/fields/Date.vue.d.ts
|
|
1197
1154
|
type __VLS_Props$14 = schema_d_exports.FieldProps<schema_d_exports.DateConfig>;
|
|
1198
|
-
declare const __VLS_export$14: _vue_runtime_core0.DefineComponent<__VLS_Props$14, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1155
|
+
declare const __VLS_export$14: _$_vue_runtime_core0.DefineComponent<__VLS_Props$14, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1199
1156
|
change: (value: string) => any;
|
|
1200
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$14> & Readonly<{
|
|
1157
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$14> & Readonly<{
|
|
1201
1158
|
onChange?: ((value: string) => any) | undefined;
|
|
1202
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1159
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1203
1160
|
declare const _default$5: typeof __VLS_export$14;
|
|
1204
1161
|
//#endregion
|
|
1205
1162
|
//#region temp/packages/form/src/fields/DateTime.vue.d.ts
|
|
1206
1163
|
type __VLS_Props$13 = schema_d_exports.FieldProps<schema_d_exports.DateTimeConfig>;
|
|
1207
|
-
declare const __VLS_export$13: _vue_runtime_core0.DefineComponent<__VLS_Props$13, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1164
|
+
declare const __VLS_export$13: _$_vue_runtime_core0.DefineComponent<__VLS_Props$13, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1208
1165
|
change: (value: string) => any;
|
|
1209
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$13> & Readonly<{
|
|
1166
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$13> & Readonly<{
|
|
1210
1167
|
onChange?: ((value: string) => any) | undefined;
|
|
1211
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1168
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1212
1169
|
declare const _default$6: typeof __VLS_export$13;
|
|
1213
1170
|
//#endregion
|
|
1214
1171
|
//#region temp/packages/form/src/fields/Time.vue.d.ts
|
|
1215
1172
|
type __VLS_Props$12 = schema_d_exports.FieldProps<schema_d_exports.TimeConfig>;
|
|
1216
|
-
declare const __VLS_export$12: _vue_runtime_core0.DefineComponent<__VLS_Props$12, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1173
|
+
declare const __VLS_export$12: _$_vue_runtime_core0.DefineComponent<__VLS_Props$12, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1217
1174
|
change: (value: string) => any;
|
|
1218
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$12> & Readonly<{
|
|
1175
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$12> & Readonly<{
|
|
1219
1176
|
onChange?: ((value: string) => any) | undefined;
|
|
1220
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1221
|
-
declare const _default$
|
|
1177
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1178
|
+
declare const _default$29: typeof __VLS_export$12;
|
|
1222
1179
|
//#endregion
|
|
1223
1180
|
//#region temp/packages/form/src/fields/Checkbox.vue.d.ts
|
|
1224
1181
|
type __VLS_Props$11 = schema_d_exports.FieldProps<schema_d_exports.CheckboxConfig>;
|
|
1225
|
-
declare const __VLS_export$11: _vue_runtime_core0.DefineComponent<__VLS_Props$11, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1182
|
+
declare const __VLS_export$11: _$_vue_runtime_core0.DefineComponent<__VLS_Props$11, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1226
1183
|
change: (...args: any[]) => void;
|
|
1227
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$11> & Readonly<{
|
|
1184
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$11> & Readonly<{
|
|
1228
1185
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1229
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1186
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1230
1187
|
declare const _default$1: typeof __VLS_export$11;
|
|
1231
1188
|
//#endregion
|
|
1232
1189
|
//#region temp/packages/form/src/fields/Switch.vue.d.ts
|
|
1233
1190
|
type __VLS_Props$10 = schema_d_exports.FieldProps<schema_d_exports.SwitchConfig>;
|
|
1234
|
-
declare const __VLS_export$10: _vue_runtime_core0.DefineComponent<__VLS_Props$10, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1191
|
+
declare const __VLS_export$10: _$_vue_runtime_core0.DefineComponent<__VLS_Props$10, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1235
1192
|
change: (value: any) => any;
|
|
1236
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$10> & Readonly<{
|
|
1193
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$10> & Readonly<{
|
|
1237
1194
|
onChange?: ((value: any) => any) | undefined;
|
|
1238
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1195
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1239
1196
|
declare const _default$25: typeof __VLS_export$10;
|
|
1240
1197
|
//#endregion
|
|
1241
1198
|
//#region temp/packages/form/src/fields/Daterange.vue.d.ts
|
|
1242
1199
|
type __VLS_Props$9 = schema_d_exports.FieldProps<schema_d_exports.DaterangeConfig>;
|
|
1243
|
-
declare const __VLS_export$9: _vue_runtime_core0.DefineComponent<__VLS_Props$9, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1200
|
+
declare const __VLS_export$9: _$_vue_runtime_core0.DefineComponent<__VLS_Props$9, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1244
1201
|
change: (...args: any[]) => void;
|
|
1245
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$9> & Readonly<{
|
|
1202
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$9> & Readonly<{
|
|
1246
1203
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1247
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1204
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1248
1205
|
declare const _default$7: typeof __VLS_export$9;
|
|
1249
1206
|
//#endregion
|
|
1250
1207
|
//#region temp/packages/form/src/fields/Timerange.vue.d.ts
|
|
1251
1208
|
type __VLS_Props$8 = schema_d_exports.FieldProps<schema_d_exports.TimerangeConfig>;
|
|
1252
|
-
declare const __VLS_export$8: _vue_runtime_core0.DefineComponent<__VLS_Props$8, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1209
|
+
declare const __VLS_export$8: _$_vue_runtime_core0.DefineComponent<__VLS_Props$8, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1253
1210
|
change: (...args: any[]) => void;
|
|
1254
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$8> & Readonly<{
|
|
1211
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$8> & Readonly<{
|
|
1255
1212
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1256
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1257
|
-
declare const _default$
|
|
1213
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1214
|
+
declare const _default$30: typeof __VLS_export$8;
|
|
1258
1215
|
//#endregion
|
|
1259
1216
|
//#region temp/packages/form/src/fields/ColorPicker.vue.d.ts
|
|
1260
1217
|
type __VLS_Props$7 = schema_d_exports.FieldProps<schema_d_exports.ColorPickConfig>;
|
|
1261
|
-
declare const __VLS_export$7: _vue_runtime_core0.DefineComponent<__VLS_Props$7, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1218
|
+
declare const __VLS_export$7: _$_vue_runtime_core0.DefineComponent<__VLS_Props$7, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1262
1219
|
change: (value: string) => any;
|
|
1263
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$7> & Readonly<{
|
|
1220
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$7> & Readonly<{
|
|
1264
1221
|
onChange?: ((value: string) => any) | undefined;
|
|
1265
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1222
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1266
1223
|
declare const _default$3: typeof __VLS_export$7;
|
|
1267
1224
|
//#endregion
|
|
1268
1225
|
//#region temp/packages/form/src/fields/CheckboxGroup.vue.d.ts
|
|
1269
1226
|
type __VLS_Props$6 = schema_d_exports.FieldProps<schema_d_exports.CheckboxGroupConfig>;
|
|
1270
|
-
declare const __VLS_export$6: _vue_runtime_core0.DefineComponent<__VLS_Props$6, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1227
|
+
declare const __VLS_export$6: _$_vue_runtime_core0.DefineComponent<__VLS_Props$6, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1271
1228
|
change: (...args: any[]) => void;
|
|
1272
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$6> & Readonly<{
|
|
1229
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$6> & Readonly<{
|
|
1273
1230
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1274
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1231
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1275
1232
|
declare const _default$2: typeof __VLS_export$6;
|
|
1276
1233
|
//#endregion
|
|
1277
1234
|
//#region temp/packages/form/src/fields/RadioGroup.vue.d.ts
|
|
1278
1235
|
type __VLS_Props$5 = schema_d_exports.FieldProps<schema_d_exports.RadioGroupConfig>;
|
|
1279
|
-
declare const __VLS_export$5: _vue_runtime_core0.DefineComponent<__VLS_Props$5, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1236
|
+
declare const __VLS_export$5: _$_vue_runtime_core0.DefineComponent<__VLS_Props$5, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1280
1237
|
change: (...args: any[]) => void;
|
|
1281
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
1238
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
1282
1239
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1283
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1240
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1284
1241
|
declare const _default$22: typeof __VLS_export$5;
|
|
1285
1242
|
//#endregion
|
|
1286
1243
|
//#region temp/packages/form/src/fields/Display.vue.d.ts
|
|
1287
1244
|
type __VLS_Props$4 = schema_d_exports.FieldProps<schema_d_exports.DisplayConfig>;
|
|
1288
|
-
declare const __VLS_export$4: _vue_runtime_core0.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$4> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1245
|
+
declare const __VLS_export$4: _$_vue_runtime_core0.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$4> & Readonly<{}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1289
1246
|
declare const _default$8: typeof __VLS_export$4;
|
|
1290
1247
|
//#endregion
|
|
1291
1248
|
//#region temp/packages/form/src/fields/Link.vue.d.ts
|
|
1292
1249
|
type __VLS_Props$3 = schema_d_exports.FieldProps<schema_d_exports.LinkConfig>;
|
|
1293
|
-
declare const __VLS_export$3: _vue_runtime_core0.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1250
|
+
declare const __VLS_export$3: _$_vue_runtime_core0.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1294
1251
|
change: (...args: any[]) => void;
|
|
1295
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
1252
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
1296
1253
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1297
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1254
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1298
1255
|
declare const _default$18: typeof __VLS_export$3;
|
|
1299
1256
|
//#endregion
|
|
1300
1257
|
//#region temp/packages/form/src/fields/Select.vue.d.ts
|
|
1301
1258
|
type __VLS_Props$2 = schema_d_exports.FieldProps<schema_d_exports.SelectConfig>;
|
|
1302
|
-
declare const __VLS_export$2: _vue_runtime_core0.DefineComponent<__VLS_Props$2, {
|
|
1303
|
-
options: _vue_reactivity0.Ref<{
|
|
1259
|
+
declare const __VLS_export$2: _$_vue_runtime_core0.DefineComponent<__VLS_Props$2, {
|
|
1260
|
+
options: _$_vue_reactivity0.Ref<{
|
|
1304
1261
|
text: string;
|
|
1305
1262
|
value: any;
|
|
1306
1263
|
disabled?: boolean | undefined;
|
|
@@ -1328,29 +1285,29 @@ declare const __VLS_export$2: _vue_runtime_core0.DefineComponent<__VLS_Props$2,
|
|
|
1328
1285
|
}[];
|
|
1329
1286
|
}[]>;
|
|
1330
1287
|
setOptions: (data: schema_d_exports.SelectOption[] | schema_d_exports.SelectGroupOption[]) => void;
|
|
1331
|
-
}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1288
|
+
}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1332
1289
|
change: (...args: any[]) => void;
|
|
1333
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
1290
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
1334
1291
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1335
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1292
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1336
1293
|
declare const _default$24: typeof __VLS_export$2;
|
|
1337
1294
|
//#endregion
|
|
1338
1295
|
//#region temp/packages/form/src/fields/Cascader.vue.d.ts
|
|
1339
1296
|
type __VLS_Props$1 = schema_d_exports.FieldProps<schema_d_exports.CascaderConfig>;
|
|
1340
|
-
declare const __VLS_export$1: _vue_runtime_core0.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1297
|
+
declare const __VLS_export$1: _$_vue_runtime_core0.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1341
1298
|
change: (...args: any[]) => void;
|
|
1342
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
1299
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
1343
1300
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1344
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1301
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1345
1302
|
declare const _default: typeof __VLS_export$1;
|
|
1346
1303
|
//#endregion
|
|
1347
1304
|
//#region temp/packages/form/src/fields/DynamicField.vue.d.ts
|
|
1348
1305
|
type __VLS_Props = schema_d_exports.FieldProps<schema_d_exports.DynamicFieldConfig>;
|
|
1349
|
-
declare const __VLS_export: _vue_runtime_core0.DefineComponent<__VLS_Props, {}, {}, {}, {}, _vue_runtime_core0.ComponentOptionsMixin, _vue_runtime_core0.ComponentOptionsMixin, {
|
|
1306
|
+
declare const __VLS_export: _$_vue_runtime_core0.DefineComponent<__VLS_Props, {}, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {
|
|
1350
1307
|
change: (...args: any[]) => void;
|
|
1351
|
-
}, string, _vue_runtime_core0.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
1308
|
+
}, string, _$_vue_runtime_core0.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
1352
1309
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1353
|
-
}>, {}, {}, {}, {}, string, _vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1310
|
+
}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, false, {}, any>;
|
|
1354
1311
|
declare const _default$9: typeof __VLS_export;
|
|
1355
1312
|
//#endregion
|
|
1356
1313
|
//#region temp/packages/form/src/utils/config.d.ts
|
|
@@ -1362,12 +1319,12 @@ declare const deleteField: (tagName: string) => boolean;
|
|
|
1362
1319
|
interface FormInstallOptions {
|
|
1363
1320
|
[key: string]: any;
|
|
1364
1321
|
}
|
|
1365
|
-
declare const _default$
|
|
1322
|
+
declare const _default$31: {
|
|
1366
1323
|
install(app: App, opt?: FormInstallOptions): void;
|
|
1367
1324
|
};
|
|
1368
1325
|
declare namespace index_d_exports {
|
|
1369
|
-
export { ChangeRecord, ContainerChangeEventData, FormInstallOptions, _default as MCascader, _default$1 as MCheckbox, _default$2 as MCheckboxGroup, _default$3 as MColorPicker, _default$4 as MContainer, _default$5 as MDate, _default$6 as MDateTime, _default$7 as MDaterange, _default$8 as MDisplay, _default$9 as MDynamicField, _default$10 as MFieldset, _default$11 as MFlexLayout, _default$12 as MForm, _default$13 as MFormBox, _default$14 as MFormDialog, _default$15 as MFormDrawer, _default$16 as MGroupList, _default$17 as MHidden, _default$18 as MLink, _default$19 as MNumber, _default$20 as MNumberRange, _default$21 as MPanel, _default$22 as MRadioGroup, _default$23 as MRow, _default$24 as MSelect, _default$25 as MSwitch, _default$
|
|
1326
|
+
export { ChangeRecord, ContainerChangeEventData, FormInstallOptions, _default as MCascader, _default$1 as MCheckbox, _default$2 as MCheckboxGroup, _default$3 as MColorPicker, _default$4 as MContainer, _default$5 as MDate, _default$6 as MDateTime, _default$7 as MDaterange, _default$8 as MDisplay, _default$9 as MDynamicField, _default$10 as MFieldset, _default$11 as MFlexLayout, _default$12 as MForm, _default$13 as MFormBox, _default$14 as MFormDialog, _default$15 as MFormDrawer, _default$16 as MGroupList, _default$17 as MHidden, _default$18 as MLink, _default$19 as MNumber, _default$20 as MNumberRange, _default$21 as MPanel, _default$22 as MRadioGroup, _default$23 as MRow, _default$24 as MSelect, _default$25 as MSwitch, _default$16 as MTable, _default$16 as MTableGroupList, _default$26 as MTabs, _default$27 as MText, _default$28 as MTextarea, _default$29 as MTime, _default$30 as MTimerange, ValidateError, createForm, createObjectProp, createValues, datetimeFormatter, _default$31 as default, deleteField as deleteFormField, display, filterFunction, getDataByPage, getField as getFormField, getRules, initValue, registerField as registerFormField, sortArray, sortChange, useAddField };
|
|
1370
1327
|
}
|
|
1371
1328
|
declare const createForm: <T extends [] = []>(config: schema_d_exports.FormConfig | T) => schema_d_exports.FormConfig | T;
|
|
1372
1329
|
//#endregion
|
|
1373
|
-
export { ChangeRecord, ContainerChangeEventData, type FormInstallOptions, _default as MCascader, _default$1 as MCheckbox, _default$2 as MCheckboxGroup, _default$3 as MColorPicker, _default$4 as MContainer, _default$5 as MDate, _default$6 as MDateTime, _default$7 as MDaterange, _default$8 as MDisplay, _default$9 as MDynamicField, _default$10 as MFieldset, _default$11 as MFlexLayout, _default$12 as MForm, _default$13 as MFormBox, _default$14 as MFormDialog, _default$15 as MFormDrawer, _default$16 as MGroupList, _default$17 as MHidden, _default$18 as MLink, _default$19 as MNumber, _default$20 as MNumberRange, _default$21 as MPanel, _default$22 as MRadioGroup, _default$23 as MRow, _default$24 as MSelect, _default$25 as MSwitch, _default$26 as
|
|
1330
|
+
export { ChangeRecord, ContainerChangeEventData, type FormInstallOptions, _default as MCascader, _default$1 as MCheckbox, _default$2 as MCheckboxGroup, _default$3 as MColorPicker, _default$4 as MContainer, _default$5 as MDate, _default$6 as MDateTime, _default$7 as MDaterange, _default$8 as MDisplay, _default$9 as MDynamicField, _default$10 as MFieldset, _default$11 as MFlexLayout, _default$12 as MForm, _default$13 as MFormBox, _default$14 as MFormDialog, _default$15 as MFormDrawer, _default$16 as MGroupList, _default$16 as MTable, _default$16 as MTableGroupList, _default$17 as MHidden, _default$18 as MLink, _default$19 as MNumber, _default$20 as MNumberRange, _default$21 as MPanel, _default$22 as MRadioGroup, _default$23 as MRow, _default$24 as MSelect, _default$25 as MSwitch, _default$26 as MTabs, _default$27 as MText, _default$28 as MTextarea, _default$29 as MTime, _default$30 as MTimerange, ValidateError, createForm, createObjectProp, createValues, datetimeFormatter, _default$31 as default, deleteField as deleteFormField, display, filterFunction, getDataByPage, getField as getFormField, getRules, initValue, registerField as registerFormField, sortArray, sortChange, useAddField };
|