@tmagic/form 1.3.5 → 1.3.7
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/LICENSE +5432 -0
- package/dist/style.css +2 -10
- package/dist/tmagic-form.js +280 -270
- package/dist/tmagic-form.js.map +1 -1
- package/dist/tmagic-form.umd.cjs +279 -269
- package/dist/tmagic-form.umd.cjs.map +1 -1
- package/package.json +15 -15
- package/src/containers/Container.vue +2 -0
- package/src/containers/Table.vue +168 -166
- package/src/fields/Cascader.vue +6 -2
- package/src/fields/Select.vue +5 -3
- package/src/theme/table.scss +4 -11
- package/types/Form.vue.d.ts +5 -1
- package/types/FormBox.vue.d.ts +14 -6
- package/types/FormDialog.vue.d.ts +15 -6
- package/types/FormDrawer.vue.d.ts +18 -6
- package/types/containers/Col.vue.d.ts +4 -1
- package/types/containers/Container.vue.d.ts +4 -1
- package/types/containers/Fieldset.vue.d.ts +4 -1
- package/types/containers/GroupList.vue.d.ts +4 -1
- package/types/containers/GroupListItem.vue.d.ts +6 -1
- package/types/containers/Panel.vue.d.ts +4 -1
- package/types/containers/Row.vue.d.ts +4 -1
- package/types/containers/Step.vue.d.ts +4 -1
- package/types/containers/Table.vue.d.ts +8 -4
- package/types/containers/Tabs.vue.d.ts +4 -1
- package/types/fields/Cascader.vue.d.ts +3 -1
- package/types/fields/Checkbox.vue.d.ts +3 -1
- package/types/fields/CheckboxGroup.vue.d.ts +3 -1
- package/types/fields/ColorPicker.vue.d.ts +5 -1
- package/types/fields/Date.vue.d.ts +5 -1
- package/types/fields/DateTime.vue.d.ts +5 -1
- package/types/fields/Daterange.vue.d.ts +3 -1
- package/types/fields/DynamicField.vue.d.ts +3 -1
- package/types/fields/Link.vue.d.ts +3 -1
- package/types/fields/Number.vue.d.ts +7 -1
- package/types/fields/NumberRange.vue.d.ts +5 -1
- package/types/fields/RadioGroup.vue.d.ts +3 -1
- package/types/fields/Select.vue.d.ts +3 -1
- package/types/fields/Switch.vue.d.ts +5 -1
- package/types/fields/Text.vue.d.ts +7 -1
- package/types/fields/Textarea.vue.d.ts +7 -1
- package/types/fields/Time.vue.d.ts +5 -1
- package/types/fields/Timerange.vue.d.ts +3 -1
|
@@ -132,7 +132,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
132
132
|
}>;
|
|
133
133
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
134
134
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
135
|
-
$emit: (event: "change"
|
|
135
|
+
$emit: ((event: "change", ...args: any[]) => void) & ((event: "field-input", ...args: any[]) => void) & ((event: "field-change", ...args: any[]) => void);
|
|
136
136
|
$el: any;
|
|
137
137
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
138
138
|
config: {
|
|
@@ -206,7 +206,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
206
206
|
changeHandler: () => void;
|
|
207
207
|
resetForm: () => any;
|
|
208
208
|
submitForm: (native?: boolean | undefined) => Promise<any>;
|
|
209
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
209
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
210
|
+
change: (...args: any[]) => void;
|
|
211
|
+
"field-input": (...args: any[]) => void;
|
|
212
|
+
"field-change": (...args: any[]) => void;
|
|
213
|
+
}, string, {
|
|
210
214
|
config: FormConfig;
|
|
211
215
|
initValues: Record<string, any>;
|
|
212
216
|
lastValues: Record<string, any>;
|
|
@@ -317,7 +321,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
317
321
|
show: () => void;
|
|
318
322
|
hide: () => void;
|
|
319
323
|
handleClose: () => void;
|
|
320
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
324
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
325
|
+
change: (...args: any[]) => void;
|
|
326
|
+
submit: (...args: any[]) => void;
|
|
327
|
+
error: (...args: any[]) => void;
|
|
328
|
+
close: (...args: any[]) => void;
|
|
329
|
+
closed: (...args: any[]) => void;
|
|
330
|
+
open: (...args: any[]) => void;
|
|
331
|
+
opened: (...args: any[]) => void;
|
|
332
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
321
333
|
config?: FormConfig | undefined;
|
|
322
334
|
values?: Object | undefined;
|
|
323
335
|
parentValues?: Object | undefined;
|
|
@@ -371,11 +383,11 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
371
383
|
default: D[K];
|
|
372
384
|
}> : P[K];
|
|
373
385
|
};
|
|
386
|
+
type __VLS_Prettify<T> = {
|
|
387
|
+
[K in keyof T]: T[K];
|
|
388
|
+
} & {};
|
|
374
389
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
375
390
|
new (): {
|
|
376
391
|
$slots: S;
|
|
377
392
|
};
|
|
378
393
|
};
|
|
379
|
-
type __VLS_Prettify<T> = {
|
|
380
|
-
[K in keyof T]: T[K];
|
|
381
|
-
} & {};
|
|
@@ -10,7 +10,10 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
10
10
|
size?: string | undefined;
|
|
11
11
|
prop?: string | undefined;
|
|
12
12
|
disabled?: boolean | undefined;
|
|
13
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
change: (...args: any[]) => void;
|
|
15
|
+
addDiffCount: (...args: any[]) => void;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
17
|
model: any;
|
|
15
18
|
lastValues?: any;
|
|
16
19
|
isCompare?: boolean | undefined;
|
|
@@ -19,7 +19,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
19
19
|
expandMore: boolean;
|
|
20
20
|
lastValues: () => {};
|
|
21
21
|
isCompare: boolean;
|
|
22
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
22
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
+
change: (...args: any[]) => void;
|
|
24
|
+
addDiffCount: (...args: any[]) => void;
|
|
25
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
23
26
|
/** 表单值 */
|
|
24
27
|
model: FormValue;
|
|
25
28
|
/** 需对比的值(开启对比模式时传入) */
|
|
@@ -14,7 +14,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
14
14
|
prop: string;
|
|
15
15
|
lastValues: () => {};
|
|
16
16
|
isCompare: boolean;
|
|
17
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
17
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
change: (...args: any[]) => void;
|
|
19
|
+
addDiffCount: (...args: any[]) => void;
|
|
20
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
18
21
|
labelWidth?: string | undefined;
|
|
19
22
|
prop: string;
|
|
20
23
|
size?: string | undefined;
|
|
@@ -9,7 +9,10 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
9
9
|
prop?: string | undefined;
|
|
10
10
|
size?: string | undefined;
|
|
11
11
|
disabled?: boolean | undefined;
|
|
12
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
12
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
change: (...args: any[]) => void;
|
|
14
|
+
addDiffCount: (...args: any[]) => void;
|
|
15
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
16
|
model: any;
|
|
14
17
|
lastValues?: any;
|
|
15
18
|
isCompare?: boolean | undefined;
|
|
@@ -10,7 +10,12 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
10
10
|
size?: string | undefined;
|
|
11
11
|
index: number;
|
|
12
12
|
disabled?: boolean | undefined;
|
|
13
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
change: (...args: any[]) => void;
|
|
15
|
+
addDiffCount: (...args: any[]) => void;
|
|
16
|
+
"swap-item": (...args: any[]) => void;
|
|
17
|
+
"remove-item": (...args: any[]) => void;
|
|
18
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
19
|
model: any;
|
|
15
20
|
lastValues: any;
|
|
16
21
|
isCompare?: boolean | undefined;
|
|
@@ -9,7 +9,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
9
|
prop?: string | undefined;
|
|
10
10
|
size?: string | undefined;
|
|
11
11
|
disabled?: boolean | undefined;
|
|
12
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
12
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
change: (...args: any[]) => void;
|
|
14
|
+
addDiffCount: (...args: any[]) => void;
|
|
15
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
16
|
model: any;
|
|
14
17
|
lastValues?: any;
|
|
15
18
|
isCompare?: boolean | undefined;
|
|
@@ -10,7 +10,10 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
10
10
|
size?: string | undefined;
|
|
11
11
|
expandMore?: boolean | undefined;
|
|
12
12
|
disabled?: boolean | undefined;
|
|
13
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
change: (...args: any[]) => void;
|
|
15
|
+
addDiffCount: (...args: any[]) => void;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
17
|
model: any;
|
|
15
18
|
lastValues?: any;
|
|
16
19
|
isCompare?: boolean | undefined;
|
|
@@ -10,7 +10,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
10
10
|
disabled?: boolean | undefined;
|
|
11
11
|
}>, {
|
|
12
12
|
stepActive: number;
|
|
13
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
change: (...args: any[]) => void;
|
|
15
|
+
addDiffCount: (...args: any[]) => void;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
14
17
|
model: any;
|
|
15
18
|
lastValues?: any;
|
|
16
19
|
isCompare?: boolean | undefined;
|
|
@@ -23,7 +23,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
23
|
isCompare: boolean;
|
|
24
24
|
}>, {
|
|
25
25
|
toggleRowSelection: (row: any, selected: boolean) => void;
|
|
26
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
26
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
select: (...args: any[]) => void;
|
|
28
|
+
change: (...args: any[]) => void;
|
|
29
|
+
addDiffCount: (...args: any[]) => void;
|
|
30
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
27
31
|
model: any;
|
|
28
32
|
lastValues?: any;
|
|
29
33
|
isCompare?: boolean | undefined;
|
|
@@ -80,11 +84,11 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
80
84
|
default: D[K];
|
|
81
85
|
}> : P[K];
|
|
82
86
|
};
|
|
87
|
+
type __VLS_Prettify<T> = {
|
|
88
|
+
[K in keyof T]: T[K];
|
|
89
|
+
} & {};
|
|
83
90
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
84
91
|
new (): {
|
|
85
92
|
$slots: S;
|
|
86
93
|
};
|
|
87
94
|
};
|
|
88
|
-
type __VLS_Prettify<T> = {
|
|
89
|
-
[K in keyof T]: T[K];
|
|
90
|
-
} & {};
|
|
@@ -13,7 +13,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
13
|
}>, {
|
|
14
14
|
lastValues: () => {};
|
|
15
15
|
isCompare: boolean;
|
|
16
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
16
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
change: (...args: any[]) => void;
|
|
18
|
+
addDiffCount: (...args: any[]) => void;
|
|
19
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
17
20
|
model: any;
|
|
18
21
|
lastValues?: any;
|
|
19
22
|
isCompare?: boolean | undefined;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { CascaderConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<CascaderConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<CascaderConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<CascaderConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { CheckboxConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<CheckboxConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<CheckboxConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<CheckboxConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { CheckboxGroupConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<CheckboxGroupConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<CheckboxGroupConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<CheckboxGroupConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { ColorPickConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<ColorPickConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<ColorPickConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: string) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<ColorPickConfig>>>> & {
|
|
5
|
+
onChange?: ((value: string) => any) | undefined;
|
|
6
|
+
}, {}, {}>;
|
|
3
7
|
export default _default;
|
|
4
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { DateConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DateConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DateConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: string) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<DateConfig>>>> & {
|
|
5
|
+
onChange?: ((value: string) => any) | undefined;
|
|
6
|
+
}, {}, {}>;
|
|
3
7
|
export default _default;
|
|
4
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { DateTimeConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DateTimeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DateTimeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: string) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<DateTimeConfig>>>> & {
|
|
5
|
+
onChange?: ((value: string) => any) | undefined;
|
|
6
|
+
}, {}, {}>;
|
|
3
7
|
export default _default;
|
|
4
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { DaterangeConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DaterangeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DaterangeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<DaterangeConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { DynamicFieldConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DynamicFieldConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DynamicFieldConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<DynamicFieldConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { FieldProps, LinkConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<LinkConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<LinkConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<LinkConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import type { FieldProps, NumberConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<NumberConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<NumberConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (values: number) => void;
|
|
4
|
+
input: (values: number) => void;
|
|
5
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<NumberConfig>>>> & {
|
|
6
|
+
onChange?: ((values: number) => any) | undefined;
|
|
7
|
+
onInput?: ((values: number) => any) | undefined;
|
|
8
|
+
}, {}, {}>;
|
|
3
9
|
export default _default;
|
|
4
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
11
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { FieldProps, NumberRangeConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<NumberRangeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<NumberRangeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (values: [number, number]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<NumberRangeConfig>>>> & {
|
|
5
|
+
onChange?: ((values: [number, number]) => any) | undefined;
|
|
6
|
+
}, {}, {}>;
|
|
3
7
|
export default _default;
|
|
4
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { FieldProps, RadioGroupConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<RadioGroupConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<RadioGroupConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<RadioGroupConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { FieldProps, SelectConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<SelectConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<SelectConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<SelectConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { FieldProps, SwitchConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<SwitchConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<SwitchConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: any) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<SwitchConfig>>>> & {
|
|
5
|
+
onChange?: ((value: any) => any) | undefined;
|
|
6
|
+
}, {}, {}>;
|
|
3
7
|
export default _default;
|
|
4
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import type { FieldProps, TextConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<TextConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<TextConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: string) => void;
|
|
4
|
+
input: (value: string) => void;
|
|
5
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<TextConfig>>>> & {
|
|
6
|
+
onChange?: ((value: string) => any) | undefined;
|
|
7
|
+
onInput?: ((value: string) => any) | undefined;
|
|
8
|
+
}, {}, {}>;
|
|
3
9
|
export default _default;
|
|
4
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
11
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import type { FieldProps, TextareaConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<TextareaConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<TextareaConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: string) => void;
|
|
4
|
+
input: (value: string) => void;
|
|
5
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<TextareaConfig>>>> & {
|
|
6
|
+
onChange?: ((value: string) => any) | undefined;
|
|
7
|
+
onInput?: ((value: string) => any) | undefined;
|
|
8
|
+
}, {}, {}>;
|
|
3
9
|
export default _default;
|
|
4
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
11
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { FieldProps, TimeConfig } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<TimeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<TimeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (value: string) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<TimeConfig>>>> & {
|
|
5
|
+
onChange?: ((value: string) => any) | undefined;
|
|
6
|
+
}, {}, {}>;
|
|
3
7
|
export default _default;
|
|
4
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { DaterangeConfig, FieldProps } from '../schema';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DaterangeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FieldProps<DaterangeConfig>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
change: (...args: any[]) => void;
|
|
4
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FieldProps<DaterangeConfig>>>> & {
|
|
3
5
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
4
6
|
}, {}, {}>;
|
|
5
7
|
export default _default;
|