@dhccmobile/vue3-lo-form 1.1.41 → 2.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.
Files changed (165) hide show
  1. package/.env.local.bak +6 -6
  2. package/.eslintrc.js +28 -28
  3. package/README.md +70 -62
  4. package/babel.config.js +3 -3
  5. package/dist/vue3-lo-form.common.js +7700 -107778
  6. package/dist/vue3-lo-form.common.js.map +1 -1
  7. package/dist/vue3-lo-form.css +1 -1
  8. package/dist/vue3-lo-form.umd.js +7773 -107851
  9. package/dist/vue3-lo-form.umd.js.map +1 -1
  10. package/dist/vue3-lo-form.umd.min.js +1 -56
  11. package/dist/vue3-lo-form.umd.min.js.map +1 -1
  12. package/package.json +65 -61
  13. package/public/index.html +17 -17
  14. package/public/js/pinyin.ts +101 -101
  15. package/src/App.vue +741 -741
  16. package/src/components/form/DvForm.vue +642 -642
  17. package/src/components/form/DvFormLayout.vue +1569 -1569
  18. package/src/components/form/StretchText.vue +90 -90
  19. package/src/components/index.ts +3 -3
  20. package/src/constants/config/form-template.config.ts +32 -32
  21. package/src/constants/config/form.config.ts +4 -4
  22. package/src/constants/config/storage.config.ts +4 -4
  23. package/src/constants/encode-assets/svg.ts +11 -11
  24. package/src/constants/enum/builtIn-label.enum.ts +5 -5
  25. package/src/constants/enum/cache-type.enum.ts +7 -7
  26. package/src/constants/enum/control-format-type.enum.ts +9 -9
  27. package/src/constants/enum/dynamic-option-type.enum.ts +6 -6
  28. package/src/constants/enum/form-bus-attr.enum.ts +8 -8
  29. package/src/constants/enum/form-field-class.enum.ts +7 -7
  30. package/src/constants/enum/form-field-type.enum.ts +25 -25
  31. package/src/constants/enum/form-type.enum.ts +5 -5
  32. package/src/constants/enum/index.ts +19 -19
  33. package/src/constants/enum/lateral-arrangement.enum.ts +9 -9
  34. package/src/constants/enum/money-unit.enum.ts +6 -6
  35. package/src/constants/enum/option-type.enum.ts +5 -5
  36. package/src/constants/enum/submitted-type.enum.ts +32 -31
  37. package/src/constants/enum/support-upload-type.enum.ts +5 -5
  38. package/src/constants/enum/switch.enum.ts +5 -5
  39. package/src/constants/enum/upload-type.enum.ts +17 -17
  40. package/src/constants/enum/validate-rules.enum.ts +25 -25
  41. package/src/constants/enum/validate-status.enum.ts +8 -8
  42. package/src/constants/enum/vertical-arrangement.enum.ts +7 -7
  43. package/src/constants/enum/zoom-type.ts +6 -6
  44. package/src/constants/index.ts +3 -3
  45. package/src/core/FormApi.ts +1238 -1238
  46. package/src/core/index.ts +1 -1
  47. package/src/domain/AbstractControl.ts +6 -6
  48. package/src/domain/Control.ts +14 -14
  49. package/src/domain/CustomFormat.ts +6 -6
  50. package/src/domain/DesForm.ts +48 -48
  51. package/src/domain/DesFormControl.ts +241 -241
  52. package/src/domain/DesFormLayout.ts +51 -51
  53. package/src/domain/FieldChangeHistory.ts +9 -9
  54. package/src/domain/FormConfig.ts +15 -15
  55. package/src/domain/FormControl.ts +125 -125
  56. package/src/domain/FormEnum.ts +9 -9
  57. package/src/domain/FormGroup.ts +42 -42
  58. package/src/domain/FormRestfulResponse.ts +6 -6
  59. package/src/domain/ProvideInjectData.ts +10 -10
  60. package/src/domain/SysDictDetail.ts +38 -38
  61. package/src/domain/SysDictInfo.ts +40 -40
  62. package/src/domain/SysDictTreeDetail.ts +52 -52
  63. package/src/domain/index.ts +12 -12
  64. package/src/filtres/amount-capitalization.filter.ts +154 -147
  65. package/src/filtres/extract-options.filter.ts +53 -53
  66. package/src/filtres/generate-grid-column-end.filter.ts +22 -22
  67. package/src/filtres/generate-grid-template-columns.filter.ts +24 -24
  68. package/src/filtres/switch-enum-convert.filter.ts +18 -18
  69. package/src/filtres/zoom-multiple.filter.ts +32 -32
  70. package/src/index.ts +73 -73
  71. package/src/main.ts +17 -17
  72. package/src/services/api.service.ts +73 -73
  73. package/src/services/clean-local-forage.service.ts +58 -58
  74. package/src/services/date-format.service.ts +74 -74
  75. package/src/services/dict-local-forage.service.ts +58 -58
  76. package/src/services/form-bean-utils.service.ts +41 -41
  77. package/src/services/form-local-forage.service.ts +59 -59
  78. package/src/services/form-tools.service.ts +739 -659
  79. package/src/services/form-tree-node-convert.service.ts +240 -240
  80. package/src/services/form-validate.service.ts +103 -103
  81. package/src/services/index.ts +9 -9
  82. package/src/services/router.service.ts +96 -96
  83. package/src/services/validate-generator.service.ts +710 -710
  84. package/src/shims-vue.d.ts +6 -6
  85. package/src/store/dict.store.ts +63 -63
  86. package/src/store/form.store.ts +32 -32
  87. package/src/store/index.ts +2 -2
  88. package/src/styles/datePicker.scss +125 -125
  89. package/src/styles/index.scss +195 -195
  90. package/src/styles/theme1.scss +277 -277
  91. package/src/styles/theme2.scss +376 -376
  92. package/src/styles/themes.scss +9 -9
  93. package/src/types/vfForm.ts +11 -11
  94. package/tsconfig.json +40 -40
  95. package/types/components/index.d.ts +3 -3
  96. package/types/constants/config/form-template.config.d.ts +30 -30
  97. package/types/constants/config/form.config.d.ts +4 -4
  98. package/types/constants/config/storage.config.d.ts +4 -4
  99. package/types/constants/encode-assets/svg.d.ts +5 -5
  100. package/types/constants/enum/builtIn-label.enum.d.ts +7 -7
  101. package/types/constants/enum/cache-type.enum.d.ts +15 -15
  102. package/types/constants/enum/control-format-type.enum.d.ts +23 -23
  103. package/types/constants/enum/dynamic-option-type.enum.d.ts +11 -11
  104. package/types/constants/enum/form-bus-attr.enum.d.ts +19 -19
  105. package/types/constants/enum/form-field-class.enum.d.ts +18 -18
  106. package/types/constants/enum/form-field-type.enum.d.ts +111 -111
  107. package/types/constants/enum/form-type.enum.d.ts +11 -11
  108. package/types/constants/enum/index.d.ts +19 -19
  109. package/types/constants/enum/lateral-arrangement.enum.d.ts +23 -23
  110. package/types/constants/enum/money-unit.enum.d.ts +15 -15
  111. package/types/constants/enum/option-type.enum.d.ts +11 -11
  112. package/types/constants/enum/submitted-type.enum.d.ts +115 -111
  113. package/types/constants/enum/support-upload-type.enum.d.ts +11 -11
  114. package/types/constants/enum/switch.enum.d.ts +11 -11
  115. package/types/constants/enum/upload-type.enum.d.ts +59 -59
  116. package/types/constants/enum/validate-rules.enum.d.ts +2 -2
  117. package/types/constants/enum/validate-status.enum.d.ts +2 -2
  118. package/types/constants/enum/vertical-arrangement.enum.d.ts +21 -21
  119. package/types/constants/enum/zoom-type.d.ts +15 -15
  120. package/types/constants/index.d.ts +3 -3
  121. package/types/core/FormApi.d.ts +376 -376
  122. package/types/core/index.d.ts +1 -1
  123. package/types/domain/AbstractControl.d.ts +5 -5
  124. package/types/domain/Control.d.ts +13 -13
  125. package/types/domain/CustomFormat.d.ts +5 -5
  126. package/types/domain/DesForm.d.ts +32 -32
  127. package/types/domain/DesFormControl.d.ts +160 -160
  128. package/types/domain/DesFormLayout.d.ts +33 -33
  129. package/types/domain/FieldChangeHistory.d.ts +9 -9
  130. package/types/domain/FormConfig.d.ts +15 -15
  131. package/types/domain/FormControl.d.ts +60 -60
  132. package/types/domain/FormEnum.d.ts +10 -10
  133. package/types/domain/FormGroup.d.ts +27 -27
  134. package/types/domain/FormRestfulResponse.d.ts +6 -6
  135. package/types/domain/ProvideInjectData.d.ts +10 -10
  136. package/types/domain/SysDictDetail.d.ts +24 -24
  137. package/types/domain/SysDictInfo.d.ts +26 -26
  138. package/types/domain/SysDictTreeDetail.d.ts +34 -34
  139. package/types/domain/index.d.ts +12 -12
  140. package/types/filtres/amount-capitalization.filter.d.ts +7 -7
  141. package/types/filtres/extract-options.filter.d.ts +13 -13
  142. package/types/filtres/generate-grid-column-end.filter.d.ts +11 -11
  143. package/types/filtres/generate-grid-template-columns.filter.d.ts +11 -11
  144. package/types/filtres/switch-enum-convert.filter.d.ts +2 -2
  145. package/types/filtres/zoom-multiple.filter.d.ts +3 -3
  146. package/types/index.d.ts +13 -13
  147. package/types/main.d.ts +2 -2
  148. package/types/services/api.service.d.ts +25 -25
  149. package/types/services/clean-local-forage.service.d.ts +28 -28
  150. package/types/services/date-format.service.d.ts +21 -21
  151. package/types/services/dict-local-forage.service.d.ts +28 -28
  152. package/types/services/form-bean-utils.service.d.ts +23 -23
  153. package/types/services/form-local-forage.service.d.ts +28 -28
  154. package/types/services/form-tools.service.d.ts +153 -144
  155. package/types/services/form-tree-node-convert.service.d.ts +104 -104
  156. package/types/services/form-validate.service.d.ts +32 -32
  157. package/types/services/index.d.ts +9 -9
  158. package/types/services/router.service.d.ts +40 -40
  159. package/types/services/validate-generator.service.d.ts +154 -154
  160. package/types/store/dict.store.d.ts +29 -29
  161. package/types/store/form.store.d.ts +17 -17
  162. package/types/store/index.d.ts +2 -2
  163. package/types/types/vfForm.d.ts +10 -10
  164. package/vue.config.js +38 -29
  165. package/dhccmobile-vue3-lo-form-1.1.41.tgz +0 -0
@@ -1,111 +1,111 @@
1
- declare const FormFieldType: {
2
- Input: {
3
- code: string;
4
- name: string;
5
- icon: string;
6
- type: string;
7
- };
8
- Textarea: {
9
- code: string;
10
- name: string;
11
- icon: string;
12
- type: string;
13
- };
14
- InputNumber: {
15
- code: string;
16
- name: string;
17
- icon: string;
18
- type: string;
19
- };
20
- Select: {
21
- code: string;
22
- name: string;
23
- icon: string;
24
- type: string;
25
- };
26
- Radio: {
27
- code: string;
28
- name: string;
29
- icon: string;
30
- type: string;
31
- };
32
- Checkbox: {
33
- code: string;
34
- name: string;
35
- icon: string;
36
- type: string;
37
- };
38
- Switch: {
39
- code: string;
40
- name: string;
41
- icon: string;
42
- type: string;
43
- };
44
- TimePicker: {
45
- code: string;
46
- name: string;
47
- icon: string;
48
- type: string;
49
- };
50
- DatePicker: {
51
- code: string;
52
- name: string;
53
- icon: string;
54
- type: string;
55
- };
56
- Slider: {
57
- code: string;
58
- name: string;
59
- icon: string;
60
- type: string;
61
- };
62
- Rate: {
63
- code: string;
64
- name: string;
65
- icon: string;
66
- type: string;
67
- };
68
- Upload: {
69
- code: string;
70
- name: string;
71
- icon: string;
72
- type: string;
73
- };
74
- Editor: {
75
- code: string;
76
- name: string;
77
- icon: string;
78
- type: string;
79
- };
80
- Cascader: {
81
- code: string;
82
- name: string;
83
- icon: string;
84
- type: string;
85
- };
86
- TreeSelect: {
87
- code: string;
88
- name: string;
89
- icon: string;
90
- type: string;
91
- };
92
- Custom: {
93
- code: string;
94
- name: string;
95
- icon: string;
96
- type: string;
97
- };
98
- Empty: {
99
- code: string;
100
- name: string;
101
- icon: string;
102
- type: string;
103
- };
104
- Grid: {
105
- code: string;
106
- name: string;
107
- icon: string;
108
- type: string;
109
- };
110
- };
111
- export { FormFieldType };
1
+ declare const FormFieldType: {
2
+ Input: {
3
+ code: string;
4
+ name: string;
5
+ icon: string;
6
+ type: string;
7
+ };
8
+ Textarea: {
9
+ code: string;
10
+ name: string;
11
+ icon: string;
12
+ type: string;
13
+ };
14
+ InputNumber: {
15
+ code: string;
16
+ name: string;
17
+ icon: string;
18
+ type: string;
19
+ };
20
+ Select: {
21
+ code: string;
22
+ name: string;
23
+ icon: string;
24
+ type: string;
25
+ };
26
+ Radio: {
27
+ code: string;
28
+ name: string;
29
+ icon: string;
30
+ type: string;
31
+ };
32
+ Checkbox: {
33
+ code: string;
34
+ name: string;
35
+ icon: string;
36
+ type: string;
37
+ };
38
+ Switch: {
39
+ code: string;
40
+ name: string;
41
+ icon: string;
42
+ type: string;
43
+ };
44
+ TimePicker: {
45
+ code: string;
46
+ name: string;
47
+ icon: string;
48
+ type: string;
49
+ };
50
+ DatePicker: {
51
+ code: string;
52
+ name: string;
53
+ icon: string;
54
+ type: string;
55
+ };
56
+ Slider: {
57
+ code: string;
58
+ name: string;
59
+ icon: string;
60
+ type: string;
61
+ };
62
+ Rate: {
63
+ code: string;
64
+ name: string;
65
+ icon: string;
66
+ type: string;
67
+ };
68
+ Upload: {
69
+ code: string;
70
+ name: string;
71
+ icon: string;
72
+ type: string;
73
+ };
74
+ Editor: {
75
+ code: string;
76
+ name: string;
77
+ icon: string;
78
+ type: string;
79
+ };
80
+ Cascader: {
81
+ code: string;
82
+ name: string;
83
+ icon: string;
84
+ type: string;
85
+ };
86
+ TreeSelect: {
87
+ code: string;
88
+ name: string;
89
+ icon: string;
90
+ type: string;
91
+ };
92
+ Custom: {
93
+ code: string;
94
+ name: string;
95
+ icon: string;
96
+ type: string;
97
+ };
98
+ Empty: {
99
+ code: string;
100
+ name: string;
101
+ icon: string;
102
+ type: string;
103
+ };
104
+ Grid: {
105
+ code: string;
106
+ name: string;
107
+ icon: string;
108
+ type: string;
109
+ };
110
+ };
111
+ export { FormFieldType };
@@ -1,11 +1,11 @@
1
- declare const FormType: {
2
- Pc: {
3
- code: string;
4
- name: string;
5
- };
6
- Mobile: {
7
- code: string;
8
- name: string;
9
- };
10
- };
11
- export { FormType };
1
+ declare const FormType: {
2
+ Pc: {
3
+ code: string;
4
+ name: string;
5
+ };
6
+ Mobile: {
7
+ code: string;
8
+ name: string;
9
+ };
10
+ };
11
+ export { FormType };
@@ -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,111 +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
- };
111
- 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 };