designformshow 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/formDesign/FormDesigner.vue.d.ts +82 -0
- package/dist/components/formDesign/FormPreview.vue.d.ts +27 -0
- package/dist/components/formDesign/components/TabulationInformation.vue.d.ts +21 -0
- package/dist/components/formDesign/components/inputList.vue.d.ts +30 -0
- package/dist/components/formDesign/components/matrixTable.vue.d.ts +100 -0
- package/dist/components/formDesign/rules.d.ts +82 -0
- package/dist/components/test.vue.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +4438 -0
- package/dist/index.umd.js +28 -0
- package/dist/style.css +1 -0
- package/package.json +63 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
formId: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
formName: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
rules: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {};
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => {};
|
|
17
|
+
};
|
|
18
|
+
configs: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: () => {
|
|
21
|
+
showSaveBtn: boolean;
|
|
22
|
+
showLanguage: boolean;
|
|
23
|
+
showMenuBar: boolean;
|
|
24
|
+
showAi: boolean;
|
|
25
|
+
showJsonPreview: boolean;
|
|
26
|
+
hiddenFormConfig: string[];
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
fixedItems: {
|
|
30
|
+
type: ArrayConstructor;
|
|
31
|
+
default: () => never[];
|
|
32
|
+
};
|
|
33
|
+
}>, {
|
|
34
|
+
designerRef: import("vue").Ref<any, any>;
|
|
35
|
+
FcDesigner: any;
|
|
36
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
+
submit: (...args: any[]) => void;
|
|
38
|
+
handleSave: (...args: any[]) => void;
|
|
39
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
formId: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
formName: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
rules: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default: () => {};
|
|
51
|
+
};
|
|
52
|
+
options: {
|
|
53
|
+
type: ObjectConstructor;
|
|
54
|
+
default: () => {};
|
|
55
|
+
};
|
|
56
|
+
configs: {
|
|
57
|
+
type: ObjectConstructor;
|
|
58
|
+
default: () => {
|
|
59
|
+
showSaveBtn: boolean;
|
|
60
|
+
showLanguage: boolean;
|
|
61
|
+
showMenuBar: boolean;
|
|
62
|
+
showAi: boolean;
|
|
63
|
+
showJsonPreview: boolean;
|
|
64
|
+
hiddenFormConfig: string[];
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
fixedItems: {
|
|
68
|
+
type: ArrayConstructor;
|
|
69
|
+
default: () => never[];
|
|
70
|
+
};
|
|
71
|
+
}>> & Readonly<{
|
|
72
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
73
|
+
onHandleSave?: ((...args: any[]) => any) | undefined;
|
|
74
|
+
}>, {
|
|
75
|
+
options: Record<string, any>;
|
|
76
|
+
formName: string;
|
|
77
|
+
rules: Record<string, any>;
|
|
78
|
+
configs: Record<string, any>;
|
|
79
|
+
fixedItems: unknown[];
|
|
80
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
81
|
+
declare const _default: typeof __VLS_export;
|
|
82
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
isViewMode: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
id: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {
|
|
11
|
+
openPreview: (formItem: any) => void;
|
|
12
|
+
closePreview: () => void;
|
|
13
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
isViewMode: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
id: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{}>, {
|
|
23
|
+
id: string;
|
|
24
|
+
isViewMode: boolean;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: () => string[];
|
|
4
|
+
default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
change: (...args: any[]) => void;
|
|
8
|
+
"update:modelValue": (...args: any[]) => void;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: () => string[];
|
|
12
|
+
default: () => never[];
|
|
13
|
+
};
|
|
14
|
+
}>> & Readonly<{
|
|
15
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
modelValue: string[];
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
declare const _default: typeof __VLS_export;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: () => string[];
|
|
4
|
+
default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
placeholder: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
change: (...args: any[]) => void;
|
|
12
|
+
"update:modelValue": (...args: any[]) => void;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
modelValue: {
|
|
15
|
+
type: () => string[];
|
|
16
|
+
default: () => never[];
|
|
17
|
+
};
|
|
18
|
+
placeholder: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{
|
|
23
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
modelValue: string[];
|
|
27
|
+
placeholder: string;
|
|
28
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
30
|
+
export default _default;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: ArrayConstructor;
|
|
6
|
+
default: () => never[];
|
|
7
|
+
};
|
|
8
|
+
disabled: BooleanConstructor;
|
|
9
|
+
rowList: {
|
|
10
|
+
type: ArrayConstructor;
|
|
11
|
+
required: true;
|
|
12
|
+
default: () => never[];
|
|
13
|
+
};
|
|
14
|
+
rowListTwo: {
|
|
15
|
+
type: ArrayConstructor;
|
|
16
|
+
default: () => never[];
|
|
17
|
+
};
|
|
18
|
+
rowListThree: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
default: () => never[];
|
|
21
|
+
};
|
|
22
|
+
columnList: {
|
|
23
|
+
type: ArrayConstructor;
|
|
24
|
+
required: true;
|
|
25
|
+
default: () => never[];
|
|
26
|
+
};
|
|
27
|
+
lableTitle: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
lableTitleTwo: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
lableTitleThree: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
tableTitleArray: {
|
|
40
|
+
type: ArrayConstructor;
|
|
41
|
+
default: () => never[];
|
|
42
|
+
};
|
|
43
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
|
+
change: (...args: any[]) => void;
|
|
45
|
+
"update:modelValue": (...args: any[]) => void;
|
|
46
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
modelValue: {
|
|
48
|
+
type: ArrayConstructor;
|
|
49
|
+
default: () => never[];
|
|
50
|
+
};
|
|
51
|
+
disabled: BooleanConstructor;
|
|
52
|
+
rowList: {
|
|
53
|
+
type: ArrayConstructor;
|
|
54
|
+
required: true;
|
|
55
|
+
default: () => never[];
|
|
56
|
+
};
|
|
57
|
+
rowListTwo: {
|
|
58
|
+
type: ArrayConstructor;
|
|
59
|
+
default: () => never[];
|
|
60
|
+
};
|
|
61
|
+
rowListThree: {
|
|
62
|
+
type: ArrayConstructor;
|
|
63
|
+
default: () => never[];
|
|
64
|
+
};
|
|
65
|
+
columnList: {
|
|
66
|
+
type: ArrayConstructor;
|
|
67
|
+
required: true;
|
|
68
|
+
default: () => never[];
|
|
69
|
+
};
|
|
70
|
+
lableTitle: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
lableTitleTwo: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
lableTitleThree: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
tableTitleArray: {
|
|
83
|
+
type: ArrayConstructor;
|
|
84
|
+
default: () => never[];
|
|
85
|
+
};
|
|
86
|
+
}>> & Readonly<{
|
|
87
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
}>, {
|
|
90
|
+
modelValue: unknown[];
|
|
91
|
+
disabled: boolean;
|
|
92
|
+
lableTitle: string;
|
|
93
|
+
lableTitleTwo: string;
|
|
94
|
+
lableTitleThree: string;
|
|
95
|
+
rowList: unknown[];
|
|
96
|
+
rowListTwo: unknown[];
|
|
97
|
+
rowListThree: unknown[];
|
|
98
|
+
columnList: unknown[];
|
|
99
|
+
tableTitleArray: unknown[];
|
|
100
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
export declare const iNPUTRukles: {
|
|
2
|
+
menu: string;
|
|
3
|
+
icon: string;
|
|
4
|
+
label: string;
|
|
5
|
+
show: boolean;
|
|
6
|
+
name: string;
|
|
7
|
+
event: string[];
|
|
8
|
+
rule(): {
|
|
9
|
+
type: string;
|
|
10
|
+
props: {
|
|
11
|
+
title: string;
|
|
12
|
+
modelValue: never[];
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
props(): ({
|
|
16
|
+
type: string;
|
|
17
|
+
field: string;
|
|
18
|
+
title: string;
|
|
19
|
+
value?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
type: string;
|
|
22
|
+
field: string;
|
|
23
|
+
title: string;
|
|
24
|
+
value: never[];
|
|
25
|
+
})[];
|
|
26
|
+
};
|
|
27
|
+
export declare const MatrixTableRule: {
|
|
28
|
+
menu: string;
|
|
29
|
+
icon: string;
|
|
30
|
+
label: string;
|
|
31
|
+
show: boolean;
|
|
32
|
+
name: string;
|
|
33
|
+
value: never[];
|
|
34
|
+
event: never[];
|
|
35
|
+
rule(): {
|
|
36
|
+
type: string;
|
|
37
|
+
title: string;
|
|
38
|
+
field: string;
|
|
39
|
+
props: {
|
|
40
|
+
lableTitle: string;
|
|
41
|
+
labelTitleTwo: string;
|
|
42
|
+
labelTitleThree: string;
|
|
43
|
+
rowList: never[];
|
|
44
|
+
rowListTwo: never[];
|
|
45
|
+
rowListThree: never[];
|
|
46
|
+
columnList: never[];
|
|
47
|
+
tableTitleArray: never[];
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
props(): ({
|
|
51
|
+
type: string;
|
|
52
|
+
field: string;
|
|
53
|
+
title: string;
|
|
54
|
+
value?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
type: string;
|
|
57
|
+
field: string;
|
|
58
|
+
title: string;
|
|
59
|
+
value: never[];
|
|
60
|
+
})[];
|
|
61
|
+
};
|
|
62
|
+
export declare const TabulationInformationRule: {
|
|
63
|
+
menu: string;
|
|
64
|
+
icon: string;
|
|
65
|
+
label: string;
|
|
66
|
+
show: boolean;
|
|
67
|
+
name: string;
|
|
68
|
+
event: never[];
|
|
69
|
+
rule(): {
|
|
70
|
+
type: string;
|
|
71
|
+
title: string;
|
|
72
|
+
props: {
|
|
73
|
+
modelValue: never[];
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
props(): {
|
|
77
|
+
type: string;
|
|
78
|
+
field: string;
|
|
79
|
+
title: string;
|
|
80
|
+
value: never[];
|
|
81
|
+
}[];
|
|
82
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
package/dist/index.d.ts
ADDED