@dhccmobile/vue3-lo-form 2.0.0 → 2.0.1
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/README.md +70 -70
- package/dist/vue3-lo-form.common.js +1189 -1069
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.umd.js +1189 -1069
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -1
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +73 -65
- package/src/App.vue +741 -741
- package/src/components/form/DvForm.vue +642 -642
- package/src/components/form/DvFormLayout.vue +1569 -1569
- package/src/components/form/StretchText.vue +90 -90
- package/src/components/index.ts +3 -3
- package/src/constants/config/form-template.config.ts +32 -32
- package/src/constants/config/form.config.ts +4 -4
- package/src/constants/config/storage.config.ts +4 -4
- package/src/constants/encode-assets/svg.ts +11 -11
- package/src/constants/enum/builtIn-label.enum.ts +5 -5
- package/src/constants/enum/cache-type.enum.ts +7 -7
- package/src/constants/enum/control-format-type.enum.ts +9 -9
- package/src/constants/enum/dynamic-option-type.enum.ts +6 -6
- package/src/constants/enum/form-bus-attr.enum.ts +8 -8
- package/src/constants/enum/form-field-class.enum.ts +7 -7
- package/src/constants/enum/form-field-type.enum.ts +25 -25
- package/src/constants/enum/form-type.enum.ts +5 -5
- package/src/constants/enum/index.ts +19 -19
- package/src/constants/enum/lateral-arrangement.enum.ts +9 -9
- package/src/constants/enum/money-unit.enum.ts +6 -6
- package/src/constants/enum/option-type.enum.ts +5 -5
- package/src/constants/enum/submitted-type.enum.ts +32 -32
- package/src/constants/enum/support-upload-type.enum.ts +5 -5
- package/src/constants/enum/switch.enum.ts +5 -5
- package/src/constants/enum/upload-type.enum.ts +17 -17
- package/src/constants/enum/validate-rules.enum.ts +25 -25
- package/src/constants/enum/validate-status.enum.ts +8 -8
- package/src/constants/enum/vertical-arrangement.enum.ts +7 -7
- package/src/constants/enum/zoom-type.ts +6 -6
- package/src/constants/index.ts +3 -3
- package/src/core/FormApi.ts +1238 -1238
- package/src/core/index.ts +1 -1
- package/src/domain/AbstractControl.ts +6 -6
- package/src/domain/Control.ts +14 -14
- package/src/domain/CustomFormat.ts +6 -6
- package/src/domain/DesForm.ts +48 -48
- package/src/domain/DesFormControl.ts +241 -241
- package/src/domain/DesFormLayout.ts +51 -51
- package/src/domain/FieldChangeHistory.ts +9 -9
- package/src/domain/FormConfig.ts +16 -15
- package/src/domain/FormControl.ts +125 -125
- package/src/domain/FormEnum.ts +9 -9
- package/src/domain/FormGroup.ts +42 -42
- package/src/domain/FormRestfulResponse.ts +6 -6
- package/src/domain/ProvideInjectData.ts +10 -10
- package/src/domain/SysDictDetail.ts +38 -38
- package/src/domain/SysDictInfo.ts +40 -40
- package/src/domain/SysDictTreeDetail.ts +52 -52
- package/src/domain/index.ts +12 -12
- package/src/filtres/amount-capitalization.filter.ts +154 -154
- package/src/filtres/extract-options.filter.ts +53 -53
- package/src/filtres/generate-grid-column-end.filter.ts +22 -22
- package/src/filtres/generate-grid-template-columns.filter.ts +24 -24
- package/src/filtres/switch-enum-convert.filter.ts +18 -18
- package/src/filtres/zoom-multiple.filter.ts +32 -32
- package/src/index.ts +74 -73
- package/src/main.ts +17 -17
- package/src/services/api.service.ts +73 -73
- package/src/services/clean-local-forage.service.ts +58 -58
- package/src/services/date-format.service.ts +74 -74
- package/src/services/dict-local-forage.service.ts +58 -58
- package/src/services/form-bean-utils.service.ts +41 -41
- package/src/services/form-local-forage.service.ts +59 -59
- package/src/services/form-tools.service.ts +739 -739
- package/src/services/form-tree-node-convert.service.ts +240 -240
- package/src/services/form-validate.service.ts +103 -103
- package/src/services/index.ts +9 -9
- package/src/services/router.service.ts +96 -96
- package/src/services/validate-generator.service.ts +710 -710
- package/src/shims-vue.d.ts +6 -6
- package/src/store/dict.store.ts +63 -63
- package/src/store/form.store.ts +32 -32
- package/src/store/index.ts +2 -2
- package/src/styles/datePicker.scss +125 -125
- package/src/styles/index.scss +195 -195
- package/src/styles/theme1.scss +277 -277
- package/src/styles/theme2.scss +376 -376
- package/src/styles/themes.scss +9 -9
- package/src/types/vfForm.ts +11 -11
- package/types/components/index.d.ts +3 -3
- package/types/constants/config/form-template.config.d.ts +30 -30
- package/types/constants/config/form.config.d.ts +4 -4
- package/types/constants/config/storage.config.d.ts +4 -4
- package/types/constants/encode-assets/svg.d.ts +5 -5
- package/types/constants/enum/builtIn-label.enum.d.ts +7 -7
- package/types/constants/enum/cache-type.enum.d.ts +15 -15
- package/types/constants/enum/control-format-type.enum.d.ts +23 -23
- package/types/constants/enum/dynamic-option-type.enum.d.ts +11 -11
- package/types/constants/enum/form-bus-attr.enum.d.ts +19 -19
- package/types/constants/enum/form-field-class.enum.d.ts +18 -18
- package/types/constants/enum/form-field-type.enum.d.ts +111 -111
- package/types/constants/enum/form-type.enum.d.ts +11 -11
- package/types/constants/enum/index.d.ts +19 -19
- package/types/constants/enum/lateral-arrangement.enum.d.ts +23 -23
- package/types/constants/enum/money-unit.enum.d.ts +15 -15
- package/types/constants/enum/option-type.enum.d.ts +11 -11
- package/types/constants/enum/submitted-type.enum.d.ts +115 -115
- package/types/constants/enum/support-upload-type.enum.d.ts +11 -11
- package/types/constants/enum/switch.enum.d.ts +11 -11
- package/types/constants/enum/upload-type.enum.d.ts +59 -59
- package/types/constants/enum/validate-rules.enum.d.ts +2 -2
- package/types/constants/enum/validate-status.enum.d.ts +2 -2
- package/types/constants/enum/vertical-arrangement.enum.d.ts +21 -21
- package/types/constants/enum/zoom-type.d.ts +15 -15
- package/types/constants/index.d.ts +3 -3
- package/types/core/FormApi.d.ts +376 -376
- package/types/core/index.d.ts +1 -1
- package/types/domain/AbstractControl.d.ts +5 -5
- package/types/domain/Control.d.ts +13 -13
- package/types/domain/CustomFormat.d.ts +5 -5
- package/types/domain/DesForm.d.ts +32 -32
- package/types/domain/DesFormControl.d.ts +160 -160
- package/types/domain/DesFormLayout.d.ts +33 -33
- package/types/domain/FieldChangeHistory.d.ts +9 -9
- package/types/domain/FormConfig.d.ts +16 -15
- package/types/domain/FormControl.d.ts +60 -60
- package/types/domain/FormEnum.d.ts +10 -10
- package/types/domain/FormGroup.d.ts +27 -27
- package/types/domain/FormRestfulResponse.d.ts +6 -6
- package/types/domain/ProvideInjectData.d.ts +10 -10
- package/types/domain/SysDictDetail.d.ts +24 -24
- package/types/domain/SysDictInfo.d.ts +26 -26
- package/types/domain/SysDictTreeDetail.d.ts +34 -34
- package/types/domain/index.d.ts +12 -12
- package/types/filtres/amount-capitalization.filter.d.ts +7 -7
- package/types/filtres/extract-options.filter.d.ts +13 -13
- package/types/filtres/generate-grid-column-end.filter.d.ts +11 -11
- package/types/filtres/generate-grid-template-columns.filter.d.ts +11 -11
- package/types/filtres/switch-enum-convert.filter.d.ts +2 -2
- package/types/filtres/zoom-multiple.filter.d.ts +3 -3
- package/types/index.d.ts +13 -13
- package/types/main.d.ts +2 -2
- package/types/services/api.service.d.ts +25 -25
- package/types/services/clean-local-forage.service.d.ts +28 -28
- package/types/services/date-format.service.d.ts +21 -21
- package/types/services/dict-local-forage.service.d.ts +28 -28
- package/types/services/form-bean-utils.service.d.ts +23 -23
- package/types/services/form-local-forage.service.d.ts +28 -28
- package/types/services/form-tools.service.d.ts +153 -153
- package/types/services/form-tree-node-convert.service.d.ts +104 -104
- package/types/services/form-validate.service.d.ts +32 -32
- package/types/services/index.d.ts +9 -9
- package/types/services/router.service.d.ts +40 -40
- package/types/services/validate-generator.service.d.ts +154 -154
- package/types/store/dict.store.d.ts +29 -29
- package/types/store/form.store.d.ts +17 -17
- package/types/store/index.d.ts +2 -2
- package/types/types/vfForm.d.ts +10 -10
- package/.env.local.bak +0 -6
- package/.eslintrc.js +0 -28
- package/babel.config.js +0 -3
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -17
- package/public/js/pinyin.ts +0 -101
- package/tsconfig.json +0 -40
- package/vue.config.js +0 -38
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./builtIn-label.enum";
|
|
2
|
-
export * from "./cache-type.enum";
|
|
3
|
-
export * from "./control-format-type.enum";
|
|
4
|
-
export * from "./dynamic-option-type.enum";
|
|
5
|
-
export * from "./form-bus-attr.enum";
|
|
6
|
-
export * from "./form-field-class.enum";
|
|
7
|
-
export * from "./form-field-type.enum";
|
|
8
|
-
export * from "./form-type.enum";
|
|
9
|
-
export * from "./lateral-arrangement.enum";
|
|
10
|
-
export * from "./money-unit.enum";
|
|
11
|
-
export * from "./option-type.enum";
|
|
12
|
-
export * from "./submitted-type.enum";
|
|
13
|
-
export * from "./support-upload-type.enum";
|
|
14
|
-
export * from "./switch.enum";
|
|
15
|
-
export * from "./upload-type.enum";
|
|
16
|
-
export * from "./validate-rules.enum";
|
|
17
|
-
export * from "./validate-status.enum";
|
|
18
|
-
export * from "./vertical-arrangement.enum";
|
|
19
|
-
export * from "./zoom-type";
|
|
1
|
+
export * from "./builtIn-label.enum";
|
|
2
|
+
export * from "./cache-type.enum";
|
|
3
|
+
export * from "./control-format-type.enum";
|
|
4
|
+
export * from "./dynamic-option-type.enum";
|
|
5
|
+
export * from "./form-bus-attr.enum";
|
|
6
|
+
export * from "./form-field-class.enum";
|
|
7
|
+
export * from "./form-field-type.enum";
|
|
8
|
+
export * from "./form-type.enum";
|
|
9
|
+
export * from "./lateral-arrangement.enum";
|
|
10
|
+
export * from "./money-unit.enum";
|
|
11
|
+
export * from "./option-type.enum";
|
|
12
|
+
export * from "./submitted-type.enum";
|
|
13
|
+
export * from "./support-upload-type.enum";
|
|
14
|
+
export * from "./switch.enum";
|
|
15
|
+
export * from "./upload-type.enum";
|
|
16
|
+
export * from "./validate-rules.enum";
|
|
17
|
+
export * from "./validate-status.enum";
|
|
18
|
+
export * from "./vertical-arrangement.enum";
|
|
19
|
+
export * from "./zoom-type";
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
declare const LateralArrangement: {
|
|
2
|
-
AlignLeft: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
RightAlignment: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
Center: {
|
|
11
|
-
code: string;
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
BothSidesAreEquallySpaced: {
|
|
15
|
-
code: string;
|
|
16
|
-
name: string;
|
|
17
|
-
};
|
|
18
|
-
AlignBothEnds: {
|
|
19
|
-
code: string;
|
|
20
|
-
name: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
export { LateralArrangement };
|
|
1
|
+
declare const LateralArrangement: {
|
|
2
|
+
AlignLeft: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
RightAlignment: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
Center: {
|
|
11
|
+
code: string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
BothSidesAreEquallySpaced: {
|
|
15
|
+
code: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
AlignBothEnds: {
|
|
19
|
+
code: string;
|
|
20
|
+
name: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export { LateralArrangement };
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
declare const MoneyUnit: {
|
|
2
|
-
Yuan: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
TenThousandYuan: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
HundredMillionYuan: {
|
|
11
|
-
code: string;
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
export { MoneyUnit };
|
|
1
|
+
declare const MoneyUnit: {
|
|
2
|
+
Yuan: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
TenThousandYuan: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
HundredMillionYuan: {
|
|
11
|
+
code: string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export { MoneyUnit };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
declare const OptionType: {
|
|
2
|
-
Fixed: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
Dynamic: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export { OptionType };
|
|
1
|
+
declare const OptionType: {
|
|
2
|
+
Fixed: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
Dynamic: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export { OptionType };
|
|
@@ -1,115 +1,115 @@
|
|
|
1
|
-
declare const SubmittedType: {
|
|
2
|
-
EAST: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
CITIC: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
TOTAL_ELEMENTS: {
|
|
11
|
-
code: string;
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
PBC_CAPITAL_DECLARATION: {
|
|
15
|
-
code: string;
|
|
16
|
-
name: string;
|
|
17
|
-
};
|
|
18
|
-
ENTERPRISE_CREDIT_REFERENCE: {
|
|
19
|
-
code: string;
|
|
20
|
-
name: string;
|
|
21
|
-
};
|
|
22
|
-
OTOHAF_SUBMISSION: {
|
|
23
|
-
code: string;
|
|
24
|
-
name: string;
|
|
25
|
-
};
|
|
26
|
-
EAST_F: {
|
|
27
|
-
code: string;
|
|
28
|
-
name: string;
|
|
29
|
-
};
|
|
30
|
-
PERSONAL_CREDIT: {
|
|
31
|
-
code: string;
|
|
32
|
-
name: string;
|
|
33
|
-
};
|
|
34
|
-
BS_09: {
|
|
35
|
-
code: string;
|
|
36
|
-
name: string;
|
|
37
|
-
};
|
|
38
|
-
BS_10: {
|
|
39
|
-
code: string;
|
|
40
|
-
name: string;
|
|
41
|
-
};
|
|
42
|
-
BS_11: {
|
|
43
|
-
code: string;
|
|
44
|
-
name: string;
|
|
45
|
-
};
|
|
46
|
-
BS_12: {
|
|
47
|
-
code: string;
|
|
48
|
-
name: string;
|
|
49
|
-
};
|
|
50
|
-
BS_13: {
|
|
51
|
-
code: string;
|
|
52
|
-
name: string;
|
|
53
|
-
};
|
|
54
|
-
BS_14: {
|
|
55
|
-
code: string;
|
|
56
|
-
name: string;
|
|
57
|
-
};
|
|
58
|
-
BS_15: {
|
|
59
|
-
code: string;
|
|
60
|
-
name: string;
|
|
61
|
-
};
|
|
62
|
-
BS_16: {
|
|
63
|
-
code: string;
|
|
64
|
-
name: string;
|
|
65
|
-
};
|
|
66
|
-
BS_17: {
|
|
67
|
-
code: string;
|
|
68
|
-
name: string;
|
|
69
|
-
};
|
|
70
|
-
BS_18: {
|
|
71
|
-
code: string;
|
|
72
|
-
name: string;
|
|
73
|
-
};
|
|
74
|
-
BS_19: {
|
|
75
|
-
code: string;
|
|
76
|
-
name: string;
|
|
77
|
-
};
|
|
78
|
-
BS_20: {
|
|
79
|
-
code: string;
|
|
80
|
-
name: string;
|
|
81
|
-
};
|
|
82
|
-
BS_21: {
|
|
83
|
-
code: string;
|
|
84
|
-
name: string;
|
|
85
|
-
};
|
|
86
|
-
BS_22: {
|
|
87
|
-
code: string;
|
|
88
|
-
name: string;
|
|
89
|
-
};
|
|
90
|
-
BS_23: {
|
|
91
|
-
code: string;
|
|
92
|
-
name: string;
|
|
93
|
-
};
|
|
94
|
-
BS_24: {
|
|
95
|
-
code: string;
|
|
96
|
-
name: string;
|
|
97
|
-
};
|
|
98
|
-
BS_25: {
|
|
99
|
-
code: string;
|
|
100
|
-
name: string;
|
|
101
|
-
};
|
|
102
|
-
BS_26: {
|
|
103
|
-
code: string;
|
|
104
|
-
name: string;
|
|
105
|
-
};
|
|
106
|
-
BS_27: {
|
|
107
|
-
code: string;
|
|
108
|
-
name: string;
|
|
109
|
-
};
|
|
110
|
-
BS_28: {
|
|
111
|
-
code: string;
|
|
112
|
-
name: string;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
export { SubmittedType };
|
|
1
|
+
declare const SubmittedType: {
|
|
2
|
+
EAST: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
CITIC: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
TOTAL_ELEMENTS: {
|
|
11
|
+
code: string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
PBC_CAPITAL_DECLARATION: {
|
|
15
|
+
code: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
ENTERPRISE_CREDIT_REFERENCE: {
|
|
19
|
+
code: string;
|
|
20
|
+
name: string;
|
|
21
|
+
};
|
|
22
|
+
OTOHAF_SUBMISSION: {
|
|
23
|
+
code: string;
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
EAST_F: {
|
|
27
|
+
code: string;
|
|
28
|
+
name: string;
|
|
29
|
+
};
|
|
30
|
+
PERSONAL_CREDIT: {
|
|
31
|
+
code: string;
|
|
32
|
+
name: string;
|
|
33
|
+
};
|
|
34
|
+
BS_09: {
|
|
35
|
+
code: string;
|
|
36
|
+
name: string;
|
|
37
|
+
};
|
|
38
|
+
BS_10: {
|
|
39
|
+
code: string;
|
|
40
|
+
name: string;
|
|
41
|
+
};
|
|
42
|
+
BS_11: {
|
|
43
|
+
code: string;
|
|
44
|
+
name: string;
|
|
45
|
+
};
|
|
46
|
+
BS_12: {
|
|
47
|
+
code: string;
|
|
48
|
+
name: string;
|
|
49
|
+
};
|
|
50
|
+
BS_13: {
|
|
51
|
+
code: string;
|
|
52
|
+
name: string;
|
|
53
|
+
};
|
|
54
|
+
BS_14: {
|
|
55
|
+
code: string;
|
|
56
|
+
name: string;
|
|
57
|
+
};
|
|
58
|
+
BS_15: {
|
|
59
|
+
code: string;
|
|
60
|
+
name: string;
|
|
61
|
+
};
|
|
62
|
+
BS_16: {
|
|
63
|
+
code: string;
|
|
64
|
+
name: string;
|
|
65
|
+
};
|
|
66
|
+
BS_17: {
|
|
67
|
+
code: string;
|
|
68
|
+
name: string;
|
|
69
|
+
};
|
|
70
|
+
BS_18: {
|
|
71
|
+
code: string;
|
|
72
|
+
name: string;
|
|
73
|
+
};
|
|
74
|
+
BS_19: {
|
|
75
|
+
code: string;
|
|
76
|
+
name: string;
|
|
77
|
+
};
|
|
78
|
+
BS_20: {
|
|
79
|
+
code: string;
|
|
80
|
+
name: string;
|
|
81
|
+
};
|
|
82
|
+
BS_21: {
|
|
83
|
+
code: string;
|
|
84
|
+
name: string;
|
|
85
|
+
};
|
|
86
|
+
BS_22: {
|
|
87
|
+
code: string;
|
|
88
|
+
name: string;
|
|
89
|
+
};
|
|
90
|
+
BS_23: {
|
|
91
|
+
code: string;
|
|
92
|
+
name: string;
|
|
93
|
+
};
|
|
94
|
+
BS_24: {
|
|
95
|
+
code: string;
|
|
96
|
+
name: string;
|
|
97
|
+
};
|
|
98
|
+
BS_25: {
|
|
99
|
+
code: string;
|
|
100
|
+
name: string;
|
|
101
|
+
};
|
|
102
|
+
BS_26: {
|
|
103
|
+
code: string;
|
|
104
|
+
name: string;
|
|
105
|
+
};
|
|
106
|
+
BS_27: {
|
|
107
|
+
code: string;
|
|
108
|
+
name: string;
|
|
109
|
+
};
|
|
110
|
+
BS_28: {
|
|
111
|
+
code: string;
|
|
112
|
+
name: string;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
export { SubmittedType };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
declare const SupportUploadType: {
|
|
2
|
-
Arbitrarily: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
Custom: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export { SupportUploadType };
|
|
1
|
+
declare const SupportUploadType: {
|
|
2
|
+
Arbitrarily: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
Custom: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export { SupportUploadType };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
declare const Switch: {
|
|
2
|
-
Disable: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
Enable: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export { Switch };
|
|
1
|
+
declare const Switch: {
|
|
2
|
+
Disable: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
Enable: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export { Switch };
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
declare const UploadType: {
|
|
2
|
-
Jpeg: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
Png: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
Gif: {
|
|
11
|
-
code: string;
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
Bmp: {
|
|
15
|
-
code: string;
|
|
16
|
-
name: string;
|
|
17
|
-
};
|
|
18
|
-
Doc: {
|
|
19
|
-
code: string;
|
|
20
|
-
name: string;
|
|
21
|
-
};
|
|
22
|
-
html: {
|
|
23
|
-
code: string;
|
|
24
|
-
name: string;
|
|
25
|
-
};
|
|
26
|
-
Mp3: {
|
|
27
|
-
code: string;
|
|
28
|
-
name: string;
|
|
29
|
-
};
|
|
30
|
-
Mp4: {
|
|
31
|
-
code: string;
|
|
32
|
-
name: string;
|
|
33
|
-
};
|
|
34
|
-
Pdf: {
|
|
35
|
-
code: string;
|
|
36
|
-
name: string;
|
|
37
|
-
};
|
|
38
|
-
Ppt: {
|
|
39
|
-
code: string;
|
|
40
|
-
name: string;
|
|
41
|
-
};
|
|
42
|
-
Xls: {
|
|
43
|
-
code: string;
|
|
44
|
-
name: string;
|
|
45
|
-
};
|
|
46
|
-
Xml: {
|
|
47
|
-
code: string;
|
|
48
|
-
name: string;
|
|
49
|
-
};
|
|
50
|
-
Zip: {
|
|
51
|
-
code: string;
|
|
52
|
-
name: string;
|
|
53
|
-
};
|
|
54
|
-
Wps: {
|
|
55
|
-
code: string;
|
|
56
|
-
name: string;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
59
|
-
export { UploadType };
|
|
1
|
+
declare const UploadType: {
|
|
2
|
+
Jpeg: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
Png: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
Gif: {
|
|
11
|
+
code: string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
Bmp: {
|
|
15
|
+
code: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
Doc: {
|
|
19
|
+
code: string;
|
|
20
|
+
name: string;
|
|
21
|
+
};
|
|
22
|
+
html: {
|
|
23
|
+
code: string;
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
Mp3: {
|
|
27
|
+
code: string;
|
|
28
|
+
name: string;
|
|
29
|
+
};
|
|
30
|
+
Mp4: {
|
|
31
|
+
code: string;
|
|
32
|
+
name: string;
|
|
33
|
+
};
|
|
34
|
+
Pdf: {
|
|
35
|
+
code: string;
|
|
36
|
+
name: string;
|
|
37
|
+
};
|
|
38
|
+
Ppt: {
|
|
39
|
+
code: string;
|
|
40
|
+
name: string;
|
|
41
|
+
};
|
|
42
|
+
Xls: {
|
|
43
|
+
code: string;
|
|
44
|
+
name: string;
|
|
45
|
+
};
|
|
46
|
+
Xml: {
|
|
47
|
+
code: string;
|
|
48
|
+
name: string;
|
|
49
|
+
};
|
|
50
|
+
Zip: {
|
|
51
|
+
code: string;
|
|
52
|
+
name: string;
|
|
53
|
+
};
|
|
54
|
+
Wps: {
|
|
55
|
+
code: string;
|
|
56
|
+
name: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export { UploadType };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const ValidateRules: any;
|
|
2
|
-
export { ValidateRules };
|
|
1
|
+
declare const ValidateRules: any;
|
|
2
|
+
export { ValidateRules };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const ValidateStatus: any;
|
|
2
|
-
export { ValidateStatus };
|
|
1
|
+
declare const ValidateStatus: any;
|
|
2
|
+
export { ValidateStatus };
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
declare const VerticalArrangement: {
|
|
2
|
-
AlignRight: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
value: string;
|
|
6
|
-
textAlign: string;
|
|
7
|
-
};
|
|
8
|
-
AlignTop: {
|
|
9
|
-
code: string;
|
|
10
|
-
name: string;
|
|
11
|
-
value: string;
|
|
12
|
-
textAlign: string;
|
|
13
|
-
};
|
|
14
|
-
AlignLeft: {
|
|
15
|
-
code: string;
|
|
16
|
-
name: string;
|
|
17
|
-
value: string;
|
|
18
|
-
textAlign: string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
export { VerticalArrangement };
|
|
1
|
+
declare const VerticalArrangement: {
|
|
2
|
+
AlignRight: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
value: string;
|
|
6
|
+
textAlign: string;
|
|
7
|
+
};
|
|
8
|
+
AlignTop: {
|
|
9
|
+
code: string;
|
|
10
|
+
name: string;
|
|
11
|
+
value: string;
|
|
12
|
+
textAlign: string;
|
|
13
|
+
};
|
|
14
|
+
AlignLeft: {
|
|
15
|
+
code: string;
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
textAlign: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export { VerticalArrangement };
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
declare const ZoomType: {
|
|
2
|
-
enlarge: {
|
|
3
|
-
code: string;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
narrow: {
|
|
7
|
-
code: string;
|
|
8
|
-
name: string;
|
|
9
|
-
};
|
|
10
|
-
automatic: {
|
|
11
|
-
code: string;
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
export { ZoomType };
|
|
1
|
+
declare const ZoomType: {
|
|
2
|
+
enlarge: {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
narrow: {
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
automatic: {
|
|
11
|
+
code: string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export { ZoomType };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./config/form-template.config";
|
|
2
|
-
export * from "./encode-assets/svg";
|
|
3
|
-
export * from "./enum/index";
|
|
1
|
+
export * from "./config/form-template.config";
|
|
2
|
+
export * from "./encode-assets/svg";
|
|
3
|
+
export * from "./enum/index";
|