unione-form-vue 0.1.9 → 0.1.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/index.umd.js +32 -32
- package/dist/style.css +1 -1
- package/dist/version/version.d.ts +1 -1
- package/dist/widgets/container.vue.d.ts +8 -0
- package/dist/widgets/form/checkBox.vue.d.ts +9 -0
- package/dist/widgets/form/checkSwitch.vue.d.ts +87 -0
- package/dist/widgets/form/radioBox.vue.d.ts +11 -1
- package/package.json +1 -1
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { WidgetModel } from '../../typing';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
wid: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
required: false;
|
|
7
|
+
};
|
|
8
|
+
engine: {
|
|
9
|
+
type: ObjectConstructor;
|
|
10
|
+
required: false;
|
|
11
|
+
};
|
|
12
|
+
model: {
|
|
13
|
+
type: ObjectConstructor;
|
|
14
|
+
default(): {
|
|
15
|
+
checked: boolean;
|
|
16
|
+
unchecked: boolean;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
widget: {
|
|
20
|
+
type: PropType<WidgetModel>;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
convert: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
options: {
|
|
28
|
+
type: ArrayConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
formValue: {
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
};
|
|
34
|
+
layout: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
value: {
|
|
39
|
+
type: PropType<Record<string, any>>;
|
|
40
|
+
};
|
|
41
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
|
+
change: (...args: any[]) => void;
|
|
43
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
44
|
+
wid: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
required: false;
|
|
47
|
+
};
|
|
48
|
+
engine: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
required: false;
|
|
51
|
+
};
|
|
52
|
+
model: {
|
|
53
|
+
type: ObjectConstructor;
|
|
54
|
+
default(): {
|
|
55
|
+
checked: boolean;
|
|
56
|
+
unchecked: boolean;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
widget: {
|
|
60
|
+
type: PropType<WidgetModel>;
|
|
61
|
+
required: false;
|
|
62
|
+
};
|
|
63
|
+
convert: {
|
|
64
|
+
type: ObjectConstructor;
|
|
65
|
+
required: false;
|
|
66
|
+
};
|
|
67
|
+
options: {
|
|
68
|
+
type: ArrayConstructor;
|
|
69
|
+
required: false;
|
|
70
|
+
};
|
|
71
|
+
formValue: {
|
|
72
|
+
type: ObjectConstructor;
|
|
73
|
+
};
|
|
74
|
+
layout: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
value: {
|
|
79
|
+
type: PropType<Record<string, any>>;
|
|
80
|
+
};
|
|
81
|
+
}>> & Readonly<{
|
|
82
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
83
|
+
}>, {
|
|
84
|
+
model: Record<string, any>;
|
|
85
|
+
layout: string;
|
|
86
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
87
|
+
export default _default;
|
|
@@ -24,6 +24,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
24
24
|
formValue: {
|
|
25
25
|
type: ObjectConstructor;
|
|
26
26
|
};
|
|
27
|
+
layout: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
27
31
|
value: {
|
|
28
32
|
type: PropType<string | number>;
|
|
29
33
|
};
|
|
@@ -53,10 +57,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
53
57
|
formValue: {
|
|
54
58
|
type: ObjectConstructor;
|
|
55
59
|
};
|
|
60
|
+
layout: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
56
64
|
value: {
|
|
57
65
|
type: PropType<string | number>;
|
|
58
66
|
};
|
|
59
67
|
}>> & Readonly<{
|
|
60
68
|
"onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
61
|
-
}>, {
|
|
69
|
+
}>, {
|
|
70
|
+
layout: string;
|
|
71
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
62
72
|
export default _default;
|