cnhis-design-vue 3.1.40-beta.1 → 3.1.40-beta.10

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 (189) hide show
  1. package/README.md +12 -48
  2. package/es/components/form-config/index.d.ts +66 -148
  3. package/es/components/form-config/src/FormConfig.vue.d.ts +66 -148
  4. package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +33 -74
  5. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +33 -74
  6. package/es/components/form-render/index.d.ts +33 -74
  7. package/es/components/form-render/src/FormRender.vue.d.ts +33 -74
  8. package/es/components/form-render/src/FormRender.vue.js +36 -20
  9. package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +33 -74
  10. package/es/components/form-render/src/components/renderer/searchCascade.js +1 -0
  11. package/es/components/form-render/src/components/renderer/select.js +1 -0
  12. package/es/components/form-render/src/hooks/useAnchor.d.ts +6 -3
  13. package/es/components/form-render/src/hooks/useAnchor.js +26 -26
  14. package/es/components/form-render/src/hooks/useAutoHidden.d.ts +4 -0
  15. package/es/components/form-render/src/hooks/useAutoHidden.js +43 -0
  16. package/es/components/form-render/src/hooks/useBusinessBinding.d.ts +7 -10
  17. package/es/components/form-render/src/hooks/useBusinessBinding.js +38 -36
  18. package/es/components/form-render/src/hooks/useFieldListAdaptor.js +2 -6
  19. package/es/components/form-render/src/hooks/useFormContext.d.ts +1 -2
  20. package/es/components/form-render/src/hooks/useFormContext.js +2 -2
  21. package/es/components/form-render/src/types/fieldItem.d.ts +1 -1
  22. package/es/components/form-render/test/basic-config.spec.d.ts +1 -0
  23. package/es/components/form-render/test/renderer.spec.d.ts +1 -0
  24. package/es/components/iho-table/index.d.ts +121 -121
  25. package/es/components/iho-table/src/IhoTable.vue.d.ts +121 -121
  26. package/es/components/iho-table/src/constants/index.d.ts +2 -2
  27. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +59 -59
  28. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +1 -1
  29. package/es/components/index.css +1 -1
  30. package/es/components/index.d.ts +3 -1
  31. package/es/components/index.js +6 -0
  32. package/es/components/info-header/index.d.ts +18 -3
  33. package/es/components/info-header/src/HiddenContent.vue.d.ts +2 -2
  34. package/es/components/info-header/src/InfoEllipsis.vue.d.ts +1 -1
  35. package/es/components/info-header/src/InfoHeader.vue.d.ts +18 -3
  36. package/es/components/info-header/src/InfoHeader.vue.js +33 -19
  37. package/es/components/keyboard/index.d.ts +20 -2
  38. package/es/components/keyboard/src/Keyboard.vue.d.ts +20 -2
  39. package/es/components/keyboard/src/components/InputNumber.vue.d.ts +19 -2
  40. package/es/components/keyboard/src/components/InputNumber.vue.js +15 -5
  41. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +20 -2
  42. package/es/components/keyboard/src/components/NumberPanel.vue.js +14 -10
  43. package/es/components/recommend-search/index.d.ts +14 -14
  44. package/es/components/recommend-search/src/RecommendSearch.vue.d.ts +14 -14
  45. package/es/components/recommend-search/src/components/BaseSearch.vue.d.ts +2 -2
  46. package/es/components/recommend-search/src/components/RecommendInput.vue.d.ts +4 -4
  47. package/es/components/recommend-search/src/components/RecommendSelect.vue.d.ts +4 -4
  48. package/es/components/scale-view/index.d.ts +4 -2
  49. package/es/components/scale-view/src/ScaleView.vue.d.ts +7 -2
  50. package/es/components/scale-view/src/ScaleView.vue.js +2 -1
  51. package/es/components/scale-view/src/components/formitem/standard-modal.d.ts +1 -1
  52. package/es/components/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +1 -1
  53. package/es/components/shortcut-provider/index.d.ts +15 -1
  54. package/es/components/shortcut-provider/src/ShortcutProvider.vue.d.ts +15 -1
  55. package/es/components/shortcut-provider/src/ShortcutProvider.vue.js +7 -2
  56. package/es/components/shortcut-setter/index.d.ts +33 -74
  57. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +33 -74
  58. package/es/components/steps-wheel/index.d.ts +1 -1
  59. package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +1 -1
  60. package/es/components/table-filter/index.d.ts +8933 -0
  61. package/es/components/table-filter/index.js +21 -0
  62. package/es/components/table-filter/src/base-search-com/BaseSearch.vue.d.ts +3841 -0
  63. package/es/components/table-filter/src/base-search-com/BaseSearch.vue.js +2272 -0
  64. package/es/components/table-filter/src/classification/Classification-com.vue.d.ts +3198 -0
  65. package/es/components/table-filter/src/classification/Classification-com.vue.js +1315 -0
  66. package/es/components/table-filter/src/classification/search-class-name.vue.d.ts +71 -0
  67. package/es/components/table-filter/src/classification/search-class-name.vue.js +195 -0
  68. package/es/components/table-filter/src/classification/search-professional-model.vue.d.ts +1119 -0
  69. package/es/components/table-filter/src/classification/search-professional-model.vue.js +594 -0
  70. package/es/components/table-filter/src/components/age-com/index.vue.d.ts +119 -0
  71. package/es/components/table-filter/src/components/age-com/index.vue.js +185 -0
  72. package/es/components/table-filter/src/components/button-group/ButtonGroup.vue.d.ts +199 -0
  73. package/es/components/table-filter/src/components/button-group/ButtonGroup.vue.js +86 -0
  74. package/es/components/table-filter/src/components/button-icon/getBtnIcon.d.ts +2 -0
  75. package/es/components/table-filter/src/components/button-icon/getBtnIcon.js +30 -0
  76. package/es/components/table-filter/src/components/c-tree-select/tree-select.vue.d.ts +90 -0
  77. package/es/components/table-filter/src/components/c-tree-select/tree-select.vue.js +253 -0
  78. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +112 -0
  79. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.js +114 -0
  80. package/es/components/table-filter/src/components/classify-filter/helpers/options.d.ts +4 -0
  81. package/es/components/table-filter/src/components/classify-filter/helpers/options.js +14 -0
  82. package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.d.ts +20 -0
  83. package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.js +87 -0
  84. package/es/components/table-filter/src/components/classify-filter/hooks/useFilterConditions.d.ts +59 -0
  85. package/es/components/table-filter/src/components/classify-filter/hooks/useFilterConditions.js +147 -0
  86. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +278 -0
  87. package/es/components/table-filter/src/components/classify-filter/index.vue.js +304 -0
  88. package/es/components/table-filter/src/components/multi-select/multi-select.vue.d.ts +113 -0
  89. package/es/components/table-filter/src/components/multi-select/multi-select.vue.js +153 -0
  90. package/es/components/table-filter/src/components/out-quick-search/out-quick-search.vue.d.ts +266 -0
  91. package/es/components/table-filter/src/components/out-quick-search/out-quick-search.vue.js +310 -0
  92. package/es/components/table-filter/src/components/range-age/index.vue.d.ts +248 -0
  93. package/es/components/table-filter/src/components/range-age/index.vue.js +137 -0
  94. package/es/components/table-filter/src/components/render-widget/components/CheckboxGroup.vue.d.ts +104 -0
  95. package/es/components/table-filter/src/components/render-widget/components/CheckboxGroup.vue.js +64 -0
  96. package/es/components/table-filter/src/components/render-widget/components/Select.vue.d.ts +34 -0
  97. package/es/components/table-filter/src/components/render-widget/components/Select.vue.js +45 -0
  98. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +3 -0
  99. package/es/components/table-filter/src/components/render-widget/components/index.js +2 -0
  100. package/es/components/table-filter/src/components/render-widget/enums.d.ts +25 -0
  101. package/es/components/table-filter/src/components/render-widget/enums.js +27 -0
  102. package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.d.ts +1 -0
  103. package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.js +70 -0
  104. package/es/components/table-filter/src/components/render-widget/index.vue.d.ts +32 -0
  105. package/es/components/table-filter/src/components/render-widget/index.vue.js +107 -0
  106. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +199 -0
  107. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.js +152 -0
  108. package/es/components/table-filter/src/components/search-condition/SearchCondition.vue.d.ts +789 -0
  109. package/es/components/table-filter/src/components/search-condition/SearchCondition.vue.js +1520 -0
  110. package/es/components/table-filter/src/components/search-condition/fieldTypeList.d.ts +18 -0
  111. package/es/components/table-filter/src/components/search-condition/fieldTypeList.js +171 -0
  112. package/es/components/table-filter/src/components/search-filter/SearchFilter.vue.d.ts +1217 -0
  113. package/es/components/table-filter/src/components/search-filter/SearchFilter.vue.js +199 -0
  114. package/es/components/table-filter/src/components/search-modal/set-classification.vue.d.ts +1624 -0
  115. package/es/components/table-filter/src/components/search-modal/set-classification.vue.js +241 -0
  116. package/es/components/table-filter/src/components/table-modal/TableModal.vue.d.ts +292 -0
  117. package/es/components/table-filter/src/components/table-modal/TableModal.vue.js +526 -0
  118. package/es/components/table-filter/src/const/dataOptions.d.ts +36 -0
  119. package/es/components/table-filter/src/const/dataOptions.js +107 -0
  120. package/es/components/table-filter/src/const/index.d.ts +5 -0
  121. package/es/components/table-filter/src/const/index.js +5 -0
  122. package/es/components/table-filter/src/directive/flexibleResize.d.ts +28 -0
  123. package/es/components/table-filter/src/directive/flexibleResize.js +157 -0
  124. package/es/components/table-filter/src/directive/preventReClick.d.ts +4 -0
  125. package/es/components/table-filter/src/directive/preventReClick.js +14 -0
  126. package/es/components/table-filter/src/directive/resize.d.ts +4 -0
  127. package/es/components/table-filter/src/directive/resize.js +12 -0
  128. package/es/components/table-filter/src/hooks/export.d.ts +1 -0
  129. package/es/components/table-filter/src/hooks/export.js +1 -0
  130. package/es/components/table-filter/src/hooks/useAdvanced.d.ts +28 -0
  131. package/es/components/table-filter/src/hooks/useAdvanced.js +64 -0
  132. package/es/components/table-filter/src/hooks/useMixins.d.ts +60 -0
  133. package/es/components/table-filter/src/hooks/useMixins.js +532 -0
  134. package/es/components/table-filter/src/hooks/useRenderWidget.d.ts +15 -0
  135. package/es/components/table-filter/src/hooks/useRenderWidget.js +94 -0
  136. package/es/components/table-filter/src/hooks/useTableSearchCon.d.ts +8 -0
  137. package/es/components/table-filter/src/hooks/useTableSearchCon.js +131 -0
  138. package/es/components/table-filter/src/hooks/useWordBookutils.d.ts +12 -0
  139. package/es/components/table-filter/src/hooks/useWordBookutils.js +91 -0
  140. package/es/components/table-filter/src/quick-search/QuickSearch.vue.d.ts +1942 -0
  141. package/es/components/table-filter/src/quick-search/QuickSearch.vue.js +2038 -0
  142. package/es/components/table-filter/src/tool/generateDefOptions.d.ts +14 -0
  143. package/es/components/table-filter/src/tool/generateDefOptions.js +65 -0
  144. package/es/components/table-filter/src/tool/getWidgetType.d.ts +1 -0
  145. package/es/components/table-filter/src/tool/getWidgetType.js +27 -0
  146. package/es/components/table-filter/src/tool/options.d.ts +18 -0
  147. package/es/components/table-filter/src/tool/options.js +200 -0
  148. package/es/components/table-filter/src/tool/resizeSensor.d.ts +16 -0
  149. package/es/components/table-filter/src/tool/resizeSensor.js +123 -0
  150. package/es/components/table-filter/src/tool/time-domain.d.ts +39 -0
  151. package/es/components/table-filter/src/tool/time-domain.js +100 -0
  152. package/es/components/table-filter/src/tool/transformData.d.ts +92 -0
  153. package/es/components/table-filter/src/tool/transformData.js +169 -0
  154. package/es/components/table-filter/src/tool/utils.d.ts +4 -0
  155. package/es/components/table-filter/src/tool/utils.js +29 -0
  156. package/es/components/table-filter/src/types/enums.d.ts +65 -0
  157. package/es/components/table-filter/src/types/enums.js +67 -0
  158. package/es/components/table-filter/src/types/index.d.ts +483 -0
  159. package/es/components/table-filter/src/types/index.js +1 -0
  160. package/es/components/table-filter/src/types/tool.d.ts +7 -0
  161. package/es/components/table-filter/src/types/tool.js +1 -0
  162. package/es/components/table-filter/style/index.css +1 -0
  163. package/es/shared/assets/img/failure.js +1 -1
  164. package/es/shared/assets/img/failure.png.js +1 -1
  165. package/es/shared/assets/img/icon-asc.js +1 -1
  166. package/es/shared/assets/img/icon-desc.js +1 -1
  167. package/es/shared/assets/img/no-permission.js +1 -1
  168. package/es/shared/assets/img/no-permission.png.js +1 -1
  169. package/es/shared/assets/img/nodata.js +1 -1
  170. package/es/shared/assets/img/nodata.png.js +1 -1
  171. package/es/shared/assets/img/notfound.js +1 -1
  172. package/es/shared/assets/img/notfound.png.js +1 -1
  173. package/es/shared/assets/img/qr.js +1 -1
  174. package/es/shared/assets/img/qr.png.js +1 -1
  175. package/es/shared/assets/img/success.js +1 -1
  176. package/es/shared/assets/img/success.png.js +1 -1
  177. package/es/shared/assets/img/video.js +1 -1
  178. package/es/shared/assets/img/video.png.js +1 -1
  179. package/es/shared/assets/img/video_default_cover.js +1 -1
  180. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  181. package/es/shared/assets/img/video_hover.js +1 -1
  182. package/es/shared/assets/img/video_play_hover.js +1 -1
  183. package/es/shared/assets/img/xb_big.js +1 -1
  184. package/es/shared/assets/img/xb_big.png.js +1 -1
  185. package/es/shared/assets/img/xb_small.js +1 -1
  186. package/es/shared/assets/img/xb_small.png.js +1 -1
  187. package/es/shared/components/TextOverTooltip/TextOverTooltip.vue.d.ts +1 -1
  188. package/es/shared/utils/utilExpand.js +66 -0
  189. package/package.json +3 -3
@@ -0,0 +1,1217 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ visible: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ modalTitle: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ conditionList: {
11
+ type: ArrayConstructor;
12
+ default: () => never[];
13
+ };
14
+ searchFieldList: {
15
+ type: ArrayConstructor;
16
+ default: () => never[];
17
+ };
18
+ tableDataType: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ filterApiConfig: {
23
+ type: ObjectConstructor;
24
+ default: () => {};
25
+ };
26
+ }, {
27
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
28
+ visible: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ modalTitle: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ conditionList: {
37
+ type: ArrayConstructor;
38
+ default: () => never[];
39
+ };
40
+ searchFieldList: {
41
+ type: ArrayConstructor;
42
+ default: () => never[];
43
+ };
44
+ tableDataType: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ filterApiConfig: {
49
+ type: ObjectConstructor;
50
+ default: () => {};
51
+ };
52
+ }>> & {
53
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
54
+ }>>;
55
+ emits: (event: "cancelSaveAdd", ...args: any[]) => void;
56
+ addVisible: import("vue").Ref<boolean>;
57
+ isChangeWindow: import("vue").Ref<boolean>;
58
+ modalWidth: import("vue").Ref<string>;
59
+ bodyStyle: import("vue").Ref<{
60
+ maxHeight: string;
61
+ height: string;
62
+ overflowY: string;
63
+ }>;
64
+ conditionApiRef: any;
65
+ conditionSqlRef: any;
66
+ filterTimer: any;
67
+ isApiFilter: import("vue").ComputedRef<boolean>;
68
+ init: () => void;
69
+ clearTimer: () => void;
70
+ handleInitConditions: () => void;
71
+ saveAdd: () => void;
72
+ cancelSaveAdd: () => void;
73
+ clearConditions: () => void;
74
+ resetChangeWindow: () => void;
75
+ changeModalWindow: () => void;
76
+ NModal: any;
77
+ NCard: any;
78
+ NButton: any;
79
+ SearchCondition: import("vue").DefineComponent<{
80
+ isSee: {
81
+ type: BooleanConstructor;
82
+ };
83
+ visible: {
84
+ type: BooleanConstructor;
85
+ };
86
+ actionList_prop: {
87
+ type: ObjectConstructor;
88
+ default: () => {};
89
+ };
90
+ filterApiConfig: {
91
+ type: ObjectConstructor;
92
+ default: () => {};
93
+ };
94
+ searchFieldList: {
95
+ type: ArrayConstructor;
96
+ default: () => never[];
97
+ };
98
+ showItemName: {
99
+ default: boolean;
100
+ };
101
+ saveEmpty: {
102
+ default: boolean;
103
+ };
104
+ homeManage: {
105
+ default: boolean;
106
+ };
107
+ tableId: {
108
+ default: string;
109
+ };
110
+ isPersonalizedHome: {
111
+ default: boolean;
112
+ };
113
+ conditionList: {
114
+ type: ArrayConstructor;
115
+ };
116
+ source: {
117
+ type: StringConstructor;
118
+ };
119
+ isBI: {
120
+ default: boolean;
121
+ };
122
+ isOnlyCondition: {
123
+ type: BooleanConstructor;
124
+ };
125
+ isCnHis: {
126
+ type: BooleanConstructor;
127
+ default: boolean;
128
+ };
129
+ isAdmin: {
130
+ type: BooleanConstructor;
131
+ default: boolean;
132
+ };
133
+ showCompareField: {
134
+ type: BooleanConstructor;
135
+ default: boolean;
136
+ };
137
+ hideAddBtn: {
138
+ type: BooleanConstructor;
139
+ default: boolean;
140
+ };
141
+ openType: {
142
+ type: StringConstructor;
143
+ default: string;
144
+ };
145
+ }, {
146
+ handleGetConfigApi: (params: any, key: string, config: {} | undefined, filterApiConfigVal: any) => Promise<any>;
147
+ $attrs: {
148
+ [x: string]: unknown;
149
+ };
150
+ $message: import("naive-ui").MessageApi;
151
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
152
+ isSee: {
153
+ type: BooleanConstructor;
154
+ };
155
+ visible: {
156
+ type: BooleanConstructor;
157
+ };
158
+ actionList_prop: {
159
+ type: ObjectConstructor;
160
+ default: () => {};
161
+ };
162
+ filterApiConfig: {
163
+ type: ObjectConstructor;
164
+ default: () => {};
165
+ };
166
+ searchFieldList: {
167
+ type: ArrayConstructor;
168
+ default: () => never[];
169
+ };
170
+ showItemName: {
171
+ default: boolean;
172
+ };
173
+ saveEmpty: {
174
+ default: boolean;
175
+ };
176
+ homeManage: {
177
+ default: boolean;
178
+ };
179
+ tableId: {
180
+ default: string;
181
+ };
182
+ isPersonalizedHome: {
183
+ default: boolean;
184
+ };
185
+ conditionList: {
186
+ type: ArrayConstructor;
187
+ };
188
+ source: {
189
+ type: StringConstructor;
190
+ };
191
+ isBI: {
192
+ default: boolean;
193
+ };
194
+ isOnlyCondition: {
195
+ type: BooleanConstructor;
196
+ };
197
+ isCnHis: {
198
+ type: BooleanConstructor;
199
+ default: boolean;
200
+ };
201
+ isAdmin: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
205
+ showCompareField: {
206
+ type: BooleanConstructor;
207
+ default: boolean;
208
+ };
209
+ hideAddBtn: {
210
+ type: BooleanConstructor;
211
+ default: boolean;
212
+ };
213
+ openType: {
214
+ type: StringConstructor;
215
+ default: string;
216
+ };
217
+ }>> & {
218
+ onSetConditionMap?: ((...args: any[]) => any) | undefined;
219
+ onSaveAdd?: ((...args: any[]) => any) | undefined;
220
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
221
+ }>>;
222
+ emit: (event: "setConditionMap" | "saveAdd" | "cancelSaveAdd", ...args: any[]) => void;
223
+ checkedItem: import("vue").Ref<null>;
224
+ start_val: any;
225
+ end_val: any;
226
+ className: any;
227
+ teaValue: import("vue").Ref<string>;
228
+ classifyId: import("vue").Ref<string>;
229
+ initConditionsed: import("vue").Ref<boolean>;
230
+ relationVisible: import("vue").Ref<boolean>;
231
+ addVal: import("vue").Ref<string>;
232
+ showAdd: import("vue").Ref<boolean>;
233
+ curAutograph: import("vue").Ref<string>;
234
+ classify: import("vue").Ref<string>;
235
+ limit_date: import("vue").Ref<string>;
236
+ clickRelationIndex: import("vue").Ref<number>;
237
+ fetching: import("vue").Ref<boolean>;
238
+ searchList: any;
239
+ searchChildList: any;
240
+ relationTableList: any;
241
+ isRelationList: any;
242
+ fieldTypeList: import("vue").Ref<({
243
+ conList: {
244
+ name: string;
245
+ desc: string;
246
+ }[];
247
+ name: string;
248
+ format: string;
249
+ type: string;
250
+ } | {
251
+ conList: {
252
+ name: string;
253
+ desc: string;
254
+ }[];
255
+ name: string;
256
+ type: string;
257
+ format?: undefined;
258
+ })[]>;
259
+ dateList: any;
260
+ dateTimeList: import("vue").Ref<{
261
+ name: string;
262
+ value: string;
263
+ }>;
264
+ relationSelect: import("vue").Ref<{
265
+ desc: string;
266
+ name: string;
267
+ }[]>;
268
+ rangeAgeOptions: import("vue").Ref<{
269
+ desc: string;
270
+ name: string;
271
+ }[]>;
272
+ relationAction: import("vue").Ref<{}>;
273
+ relationSearchFieldList: import("vue").Ref<never[]>;
274
+ birthdayUnits: import("vue").Ref<{
275
+ title: string;
276
+ units: number;
277
+ con: string;
278
+ }[]>;
279
+ parentNames: any;
280
+ searchItem: import("vue").Ref<{}>;
281
+ curWordbookData: import("vue").Ref<undefined>;
282
+ classifyList: any;
283
+ birthdayFilter: import("vue").Ref<string[]>;
284
+ actionList: any;
285
+ parentNamesHasAdd: import("vue").ComputedRef<any>;
286
+ showPercent: import("vue").ComputedRef<(item: any) => boolean>;
287
+ searchListKey: import("vue").ComputedRef<any>;
288
+ isOrgAdmin: import("vue").ComputedRef<boolean>;
289
+ is_search_professional: import("vue").ComputedRef<boolean>;
290
+ noShowListDelIcon: import("vue").ComputedRef<boolean>;
291
+ handleInitConditions: () => void;
292
+ getClassifyList: () => Promise<void>;
293
+ getParentNames: () => void;
294
+ initData: (config?: any) => void;
295
+ backShow: (val: any) => void;
296
+ saveAdd: () => import("naive-ui").MessageReactive | undefined;
297
+ getSqlExpression: () => string;
298
+ getConditions: () => never[] | undefined;
299
+ addAction: (config?: any) => import("naive-ui").MessageReactive | undefined;
300
+ softDel: (index: number) => void;
301
+ cancelSaveAdd: () => void;
302
+ changeColumnName: (value: string | number | null, action: any) => void;
303
+ formatData: (value: string | number | null, action: any) => void;
304
+ formatActionData: (action: any) => void;
305
+ handleDictionDef: (el: any) => null;
306
+ getWordbookData: (o: any, obj: any) => Promise<any>;
307
+ handleWordbookData: (item: any, data: any) => void;
308
+ dropdownVisibleChange: (open: boolean, item: any) => void;
309
+ handleSearch: (value: any, item: any) => void;
310
+ handleSelect: (value: any, item: any) => void;
311
+ handleDeSelect: (value: any, item: any) => void;
312
+ selectChild: (value: any, item: any, isInitSet?: boolean | undefined, config?: any) => void;
313
+ handleHideItem: (item: any, reset?: boolean) => void;
314
+ disabledStartDate: (start_value: string) => boolean;
315
+ disabledEndDate: (end_value: string) => boolean;
316
+ handleStartOpenChange: (open: boolean, item: any) => void;
317
+ handleEndOpenChange: (open: boolean, item: any) => void;
318
+ disabledDate: (current: any) => any;
319
+ changeRange: (value: any, item: any) => void;
320
+ handlerSelectRelation: (e: string, item: any) => void;
321
+ openRelationFilter: (data: any, i: number) => void;
322
+ relationCancel: () => void;
323
+ relationSave: (data: any) => void;
324
+ initBirthdayParams: (item: any) => void;
325
+ handleParentNamesAdd: (e: any) => void;
326
+ hanldeBlur: () => void;
327
+ editParentName: (e: any, item: any) => void;
328
+ handleParentNameSelect: (item: any, index: number) => void;
329
+ handleParentNamesRemove: (index: number, item: any) => void;
330
+ handleParent: (index: number, item: any) => void;
331
+ getParentSelectedStyle: (item: any) => {
332
+ backgroundColor: string;
333
+ color: string;
334
+ } | null;
335
+ ageRangeOnChange: (obj: any, item: any) => void;
336
+ agecomOnChange: (obj: any, item: any) => void;
337
+ diffTime: (days: number) => {
338
+ year?: undefined;
339
+ month?: undefined;
340
+ day?: undefined;
341
+ d?: undefined;
342
+ } | {
343
+ year: number;
344
+ month: number;
345
+ day: number;
346
+ d: number;
347
+ };
348
+ filterOption: (...arg: any) => any;
349
+ handleSetSelectList: (item: any) => void;
350
+ compare_fieldOnChange: (e: string, item: any) => void;
351
+ checkCustomInput: (item: any) => boolean;
352
+ visibleCompareField: (item: any) => any;
353
+ visibleDefaultField: (item: any) => any;
354
+ handleHideCompareField: (item: any) => void;
355
+ checkActionList: () => any;
356
+ fieldselectONchange: (item: any, eventName: string, value: any) => void;
357
+ handleResetColumnName: (item: any) => void;
358
+ handleResetSelectChild: (item: any) => void;
359
+ AddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
360
+ AddCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
361
+ CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
362
+ rangeAge: import("vue").DefineComponent<{
363
+ value: {
364
+ value: ObjectConstructor;
365
+ default: () => {
366
+ star_val: string;
367
+ end_val: string;
368
+ };
369
+ };
370
+ options: {
371
+ type: ArrayConstructor;
372
+ default: () => never[];
373
+ };
374
+ item: {
375
+ type: ObjectConstructor;
376
+ default: () => {};
377
+ };
378
+ defaultValue: {
379
+ type: ObjectConstructor;
380
+ default: () => {};
381
+ };
382
+ format: {
383
+ type: StringConstructor;
384
+ default: string;
385
+ };
386
+ disabled: {
387
+ type: BooleanConstructor;
388
+ default: boolean;
389
+ };
390
+ dataName: {
391
+ type: StringConstructor;
392
+ };
393
+ }, {
394
+ valueObj: any;
395
+ startValue: any;
396
+ endValue: any;
397
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
398
+ value: {
399
+ value: ObjectConstructor;
400
+ default: () => {
401
+ star_val: string;
402
+ end_val: string;
403
+ };
404
+ };
405
+ options: {
406
+ type: ArrayConstructor;
407
+ default: () => never[];
408
+ };
409
+ item: {
410
+ type: ObjectConstructor;
411
+ default: () => {};
412
+ };
413
+ defaultValue: {
414
+ type: ObjectConstructor;
415
+ default: () => {};
416
+ };
417
+ format: {
418
+ type: StringConstructor;
419
+ default: string;
420
+ };
421
+ disabled: {
422
+ type: BooleanConstructor;
423
+ default: boolean;
424
+ };
425
+ dataName: {
426
+ type: StringConstructor;
427
+ };
428
+ }>> & {
429
+ onChange?: ((...args: any[]) => any) | undefined;
430
+ }>>;
431
+ emits: (event: "change", ...args: any[]) => void;
432
+ initDefaultValue: () => void;
433
+ diffTime: (days: number) => {
434
+ year?: undefined;
435
+ month?: undefined;
436
+ day?: undefined;
437
+ days?: undefined;
438
+ } | {
439
+ year: string | number;
440
+ month: string | number;
441
+ day: string | number;
442
+ days: string | number;
443
+ };
444
+ ageStartOnChange: (obj: any) => void;
445
+ ageEndOnChange: (obj: any) => void;
446
+ reset: () => void;
447
+ ageCom: import("vue").DefineComponent<{
448
+ value: {
449
+ type: ObjectConstructor;
450
+ default: () => void;
451
+ };
452
+ format: {
453
+ type: StringConstructor;
454
+ default: string;
455
+ };
456
+ disabled: {
457
+ type: BooleanConstructor;
458
+ default: boolean;
459
+ };
460
+ isDetail: {
461
+ type: BooleanConstructor;
462
+ default: boolean;
463
+ };
464
+ defaultValue: {
465
+ type: ObjectConstructor;
466
+ default: () => {};
467
+ };
468
+ itemData: {
469
+ type: ObjectConstructor;
470
+ default: () => {};
471
+ };
472
+ shortcutFieldsList: {
473
+ type: ArrayConstructor;
474
+ default: () => never[];
475
+ };
476
+ }, {
477
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
478
+ value: {
479
+ type: ObjectConstructor;
480
+ default: () => void;
481
+ };
482
+ format: {
483
+ type: StringConstructor;
484
+ default: string;
485
+ };
486
+ disabled: {
487
+ type: BooleanConstructor;
488
+ default: boolean;
489
+ };
490
+ isDetail: {
491
+ type: BooleanConstructor;
492
+ default: boolean;
493
+ };
494
+ defaultValue: {
495
+ type: ObjectConstructor;
496
+ default: () => {};
497
+ };
498
+ itemData: {
499
+ type: ObjectConstructor;
500
+ default: () => {};
501
+ };
502
+ shortcutFieldsList: {
503
+ type: ArrayConstructor;
504
+ default: () => never[];
505
+ };
506
+ }>> & {
507
+ onChange?: ((...args: any[]) => any) | undefined;
508
+ }>>;
509
+ emits: (event: "change", ...args: any[]) => void;
510
+ ageValue: any;
511
+ showType: import("vue").ComputedRef<string>;
512
+ isDisabled: import("vue").ComputedRef<boolean>;
513
+ handleInitDefaultValue: () => void;
514
+ checkType: (val: any) => string;
515
+ handlefillVal: (val?: any) => void;
516
+ handleYearChange: (e: any) => void;
517
+ handleMonthChange: (e: any) => void;
518
+ handleDayChange: (e: any) => void;
519
+ getvalue: (e: any) => any;
520
+ valueChange: (val: string, key: string) => void;
521
+ checkVal: (val: string, key: string) => boolean;
522
+ handleProrate: () => void;
523
+ triggerChange: (changedValue: any) => void;
524
+ NInputNumber: any;
525
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
526
+ value: {
527
+ type: ObjectConstructor;
528
+ default: () => void;
529
+ };
530
+ format: {
531
+ type: StringConstructor;
532
+ default: string;
533
+ };
534
+ disabled: {
535
+ type: BooleanConstructor;
536
+ default: boolean;
537
+ };
538
+ isDetail: {
539
+ type: BooleanConstructor;
540
+ default: boolean;
541
+ };
542
+ defaultValue: {
543
+ type: ObjectConstructor;
544
+ default: () => {};
545
+ };
546
+ itemData: {
547
+ type: ObjectConstructor;
548
+ default: () => {};
549
+ };
550
+ shortcutFieldsList: {
551
+ type: ArrayConstructor;
552
+ default: () => never[];
553
+ };
554
+ }>> & {
555
+ onChange?: ((...args: any[]) => any) | undefined;
556
+ }, {
557
+ value: Record<string, any>;
558
+ disabled: boolean;
559
+ isDetail: boolean;
560
+ defaultValue: Record<string, any>;
561
+ format: string;
562
+ itemData: Record<string, any>;
563
+ shortcutFieldsList: unknown[];
564
+ }>;
565
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
566
+ value: {
567
+ value: ObjectConstructor;
568
+ default: () => {
569
+ star_val: string;
570
+ end_val: string;
571
+ };
572
+ };
573
+ options: {
574
+ type: ArrayConstructor;
575
+ default: () => never[];
576
+ };
577
+ item: {
578
+ type: ObjectConstructor;
579
+ default: () => {};
580
+ };
581
+ defaultValue: {
582
+ type: ObjectConstructor;
583
+ default: () => {};
584
+ };
585
+ format: {
586
+ type: StringConstructor;
587
+ default: string;
588
+ };
589
+ disabled: {
590
+ type: BooleanConstructor;
591
+ default: boolean;
592
+ };
593
+ dataName: {
594
+ type: StringConstructor;
595
+ };
596
+ }>> & {
597
+ onChange?: ((...args: any[]) => any) | undefined;
598
+ }, {
599
+ value: {
600
+ star_val: string;
601
+ end_val: string;
602
+ };
603
+ disabled: boolean;
604
+ options: unknown[];
605
+ item: Record<string, any>;
606
+ defaultValue: Record<string, any>;
607
+ format: string;
608
+ }>;
609
+ ageCom: import("vue").DefineComponent<{
610
+ value: {
611
+ type: ObjectConstructor;
612
+ default: () => void;
613
+ };
614
+ format: {
615
+ type: StringConstructor;
616
+ default: string;
617
+ };
618
+ disabled: {
619
+ type: BooleanConstructor;
620
+ default: boolean;
621
+ };
622
+ isDetail: {
623
+ type: BooleanConstructor;
624
+ default: boolean;
625
+ };
626
+ defaultValue: {
627
+ type: ObjectConstructor;
628
+ default: () => {};
629
+ };
630
+ itemData: {
631
+ type: ObjectConstructor;
632
+ default: () => {};
633
+ };
634
+ shortcutFieldsList: {
635
+ type: ArrayConstructor;
636
+ default: () => never[];
637
+ };
638
+ }, {
639
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
640
+ value: {
641
+ type: ObjectConstructor;
642
+ default: () => void;
643
+ };
644
+ format: {
645
+ type: StringConstructor;
646
+ default: string;
647
+ };
648
+ disabled: {
649
+ type: BooleanConstructor;
650
+ default: boolean;
651
+ };
652
+ isDetail: {
653
+ type: BooleanConstructor;
654
+ default: boolean;
655
+ };
656
+ defaultValue: {
657
+ type: ObjectConstructor;
658
+ default: () => {};
659
+ };
660
+ itemData: {
661
+ type: ObjectConstructor;
662
+ default: () => {};
663
+ };
664
+ shortcutFieldsList: {
665
+ type: ArrayConstructor;
666
+ default: () => never[];
667
+ };
668
+ }>> & {
669
+ onChange?: ((...args: any[]) => any) | undefined;
670
+ }>>;
671
+ emits: (event: "change", ...args: any[]) => void;
672
+ ageValue: any;
673
+ showType: import("vue").ComputedRef<string>;
674
+ isDisabled: import("vue").ComputedRef<boolean>;
675
+ handleInitDefaultValue: () => void;
676
+ checkType: (val: any) => string;
677
+ handlefillVal: (val?: any) => void;
678
+ handleYearChange: (e: any) => void;
679
+ handleMonthChange: (e: any) => void;
680
+ handleDayChange: (e: any) => void;
681
+ getvalue: (e: any) => any;
682
+ valueChange: (val: string, key: string) => void;
683
+ checkVal: (val: string, key: string) => boolean;
684
+ handleProrate: () => void;
685
+ triggerChange: (changedValue: any) => void;
686
+ NInputNumber: any;
687
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
688
+ value: {
689
+ type: ObjectConstructor;
690
+ default: () => void;
691
+ };
692
+ format: {
693
+ type: StringConstructor;
694
+ default: string;
695
+ };
696
+ disabled: {
697
+ type: BooleanConstructor;
698
+ default: boolean;
699
+ };
700
+ isDetail: {
701
+ type: BooleanConstructor;
702
+ default: boolean;
703
+ };
704
+ defaultValue: {
705
+ type: ObjectConstructor;
706
+ default: () => {};
707
+ };
708
+ itemData: {
709
+ type: ObjectConstructor;
710
+ default: () => {};
711
+ };
712
+ shortcutFieldsList: {
713
+ type: ArrayConstructor;
714
+ default: () => never[];
715
+ };
716
+ }>> & {
717
+ onChange?: ((...args: any[]) => any) | undefined;
718
+ }, {
719
+ value: Record<string, any>;
720
+ disabled: boolean;
721
+ isDetail: boolean;
722
+ defaultValue: Record<string, any>;
723
+ format: string;
724
+ itemData: Record<string, any>;
725
+ shortcutFieldsList: unknown[];
726
+ }>;
727
+ SvgIcon: import("vue").DefineComponent<{
728
+ iconClass: {
729
+ type: StringConstructor;
730
+ required: true;
731
+ default: string;
732
+ };
733
+ title: {
734
+ type: StringConstructor;
735
+ required: false;
736
+ default: string;
737
+ };
738
+ className: {
739
+ type: StringConstructor;
740
+ required: false;
741
+ };
742
+ }, {
743
+ props: {
744
+ iconClass: string;
745
+ title: string;
746
+ className?: string | undefined;
747
+ };
748
+ iconName: import("vue").ComputedRef<string>;
749
+ svgClass: import("vue").ComputedRef<string>;
750
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
751
+ iconClass: {
752
+ type: StringConstructor;
753
+ required: true;
754
+ default: string;
755
+ };
756
+ title: {
757
+ type: StringConstructor;
758
+ required: false;
759
+ default: string;
760
+ };
761
+ className: {
762
+ type: StringConstructor;
763
+ required: false;
764
+ };
765
+ }>>, {
766
+ title: string;
767
+ iconClass: string;
768
+ }>;
769
+ NIcon: any;
770
+ NInput: any;
771
+ NButton: any;
772
+ NInputNumber: any;
773
+ NTooltip: any;
774
+ NSelect: any;
775
+ NDatePicker: any;
776
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("setConditionMap" | "saveAdd" | "cancelSaveAdd")[], "setConditionMap" | "saveAdd" | "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
777
+ isSee: {
778
+ type: BooleanConstructor;
779
+ };
780
+ visible: {
781
+ type: BooleanConstructor;
782
+ };
783
+ actionList_prop: {
784
+ type: ObjectConstructor;
785
+ default: () => {};
786
+ };
787
+ filterApiConfig: {
788
+ type: ObjectConstructor;
789
+ default: () => {};
790
+ };
791
+ searchFieldList: {
792
+ type: ArrayConstructor;
793
+ default: () => never[];
794
+ };
795
+ showItemName: {
796
+ default: boolean;
797
+ };
798
+ saveEmpty: {
799
+ default: boolean;
800
+ };
801
+ homeManage: {
802
+ default: boolean;
803
+ };
804
+ tableId: {
805
+ default: string;
806
+ };
807
+ isPersonalizedHome: {
808
+ default: boolean;
809
+ };
810
+ conditionList: {
811
+ type: ArrayConstructor;
812
+ };
813
+ source: {
814
+ type: StringConstructor;
815
+ };
816
+ isBI: {
817
+ default: boolean;
818
+ };
819
+ isOnlyCondition: {
820
+ type: BooleanConstructor;
821
+ };
822
+ isCnHis: {
823
+ type: BooleanConstructor;
824
+ default: boolean;
825
+ };
826
+ isAdmin: {
827
+ type: BooleanConstructor;
828
+ default: boolean;
829
+ };
830
+ showCompareField: {
831
+ type: BooleanConstructor;
832
+ default: boolean;
833
+ };
834
+ hideAddBtn: {
835
+ type: BooleanConstructor;
836
+ default: boolean;
837
+ };
838
+ openType: {
839
+ type: StringConstructor;
840
+ default: string;
841
+ };
842
+ }>> & {
843
+ onSetConditionMap?: ((...args: any[]) => any) | undefined;
844
+ onSaveAdd?: ((...args: any[]) => any) | undefined;
845
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
846
+ }, {
847
+ visible: boolean;
848
+ openType: string;
849
+ searchFieldList: unknown[];
850
+ tableId: string;
851
+ isAdmin: boolean;
852
+ filterApiConfig: Record<string, any>;
853
+ isSee: boolean;
854
+ actionList_prop: Record<string, any>;
855
+ showItemName: boolean;
856
+ saveEmpty: boolean;
857
+ homeManage: boolean;
858
+ isPersonalizedHome: boolean;
859
+ isBI: boolean;
860
+ isOnlyCondition: boolean;
861
+ isCnHis: boolean;
862
+ showCompareField: boolean;
863
+ hideAddBtn: boolean;
864
+ }>;
865
+ SearchConditionByApi: import("vue").DefineComponent<{
866
+ actionList_prop: {
867
+ type: import("vue").PropType<import("../../types").IClassifyListType>;
868
+ default: () => {};
869
+ };
870
+ conditionList: {
871
+ type: ArrayConstructor;
872
+ default: () => never[];
873
+ };
874
+ tableId: {
875
+ type: StringConstructor;
876
+ default: string;
877
+ };
878
+ }, {
879
+ $message: import("naive-ui").MessageApi;
880
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
881
+ actionList_prop: {
882
+ type: import("vue").PropType<import("../../types").IClassifyListType>;
883
+ default: () => {};
884
+ };
885
+ conditionList: {
886
+ type: ArrayConstructor;
887
+ default: () => never[];
888
+ };
889
+ tableId: {
890
+ type: StringConstructor;
891
+ default: string;
892
+ };
893
+ }>> & {
894
+ onSaveAdd?: ((...args: any[]) => any) | undefined;
895
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
896
+ }>>;
897
+ emit: (event: "saveAdd" | "cancelSaveAdd", ...args: any[]) => void;
898
+ $attrs: {
899
+ [x: string]: unknown;
900
+ };
901
+ FormState: {
902
+ className: string;
903
+ displayCategory: string;
904
+ filterConditions: {
905
+ value: string;
906
+ key: string;
907
+ condition: string;
908
+ presetVal: string;
909
+ }[];
910
+ };
911
+ loading: import("vue").Ref<boolean>;
912
+ DisplayCategoryState: {
913
+ addDisplayCategory: string;
914
+ displayCategories: {
915
+ disabled: boolean;
916
+ value: string;
917
+ }[];
918
+ displayCategoryOriginLen: number;
919
+ showAdd: boolean;
920
+ };
921
+ isEnableAddDisplayCategory: import("vue").ComputedRef<boolean>;
922
+ editDisplayCategory: (e: any, item: import("../../types").ICategoryItemType) => void;
923
+ handleDisplayCategorySelect: (item: import("../../types").ICategoryItemType) => void;
924
+ handleDisplayCategoryRemove: (index: number, item: import("../../types").ICategoryItemType) => void;
925
+ handleDisplayCategoryAdd: (e: any) => void;
926
+ handlerBlur: () => void;
927
+ initDisplayCategories: (rawDataDisplayCategories: any, displayCategory: any) => void;
928
+ FilterConditionsState: any;
929
+ paramOptions: import("vue").ComputedRef<any>;
930
+ addFilterCondition: () => void;
931
+ delFilterCondition: (index: number) => void;
932
+ updateKey: (index: number, val: any) => void;
933
+ updateCondition: (index: number, val: any) => void;
934
+ getParamCfg: (key: string) => any;
935
+ initFilterConditions: (tableId: string, rawConditions: import("../../types").ISearchConfigType) => Promise<void>;
936
+ getRawFilterConditions: () => {
937
+ field_key: any;
938
+ con: any;
939
+ value: any;
940
+ unit: any;
941
+ }[];
942
+ findConditionByDisplayCategory: (displayCategory: string) => unknown;
943
+ handleDisplayCategorySelectProxy: (item: import("../../types").ICategoryItemType) => void;
944
+ clearFormData: () => void;
945
+ handleInitConditions: () => Promise<void>;
946
+ validate: () => Promise<unknown>;
947
+ saveAdd: () => void;
948
+ cancelSaveAdd: () => void;
949
+ NSpin: any;
950
+ NIcon: any;
951
+ NInput: any;
952
+ NButton: any;
953
+ NTooltip: any;
954
+ NSelect: any;
955
+ AddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
956
+ AddCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
957
+ CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
958
+ SvgIcon: import("vue").DefineComponent<{
959
+ iconClass: {
960
+ type: StringConstructor;
961
+ required: true;
962
+ default: string;
963
+ };
964
+ title: {
965
+ type: StringConstructor;
966
+ required: false;
967
+ default: string;
968
+ };
969
+ className: {
970
+ type: StringConstructor;
971
+ required: false;
972
+ };
973
+ }, {
974
+ props: {
975
+ iconClass: string;
976
+ title: string;
977
+ className?: string | undefined;
978
+ };
979
+ iconName: import("vue").ComputedRef<string>;
980
+ svgClass: import("vue").ComputedRef<string>;
981
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
982
+ iconClass: {
983
+ type: StringConstructor;
984
+ required: true;
985
+ default: string;
986
+ };
987
+ title: {
988
+ type: StringConstructor;
989
+ required: false;
990
+ default: string;
991
+ };
992
+ className: {
993
+ type: StringConstructor;
994
+ required: false;
995
+ };
996
+ }>>, {
997
+ title: string;
998
+ iconClass: string;
999
+ }>;
1000
+ ValueCfg: import("vue").DefineComponent<{
1001
+ paramCfg: {
1002
+ type: ObjectConstructor;
1003
+ default: null;
1004
+ };
1005
+ modelValue: {
1006
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1007
+ default: null;
1008
+ };
1009
+ presetVal: {
1010
+ type: StringConstructor;
1011
+ default: null;
1012
+ };
1013
+ }, {
1014
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1015
+ paramCfg: {
1016
+ type: ObjectConstructor;
1017
+ default: null;
1018
+ };
1019
+ modelValue: {
1020
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1021
+ default: null;
1022
+ };
1023
+ presetVal: {
1024
+ type: StringConstructor;
1025
+ default: null;
1026
+ };
1027
+ }>> & {
1028
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1029
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1030
+ }>>;
1031
+ emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
1032
+ valueCp: import("vue").WritableComputedRef<unknown>;
1033
+ presetValCp: import("vue").WritableComputedRef<unknown>;
1034
+ widgetType: import("vue").ComputedRef<any>;
1035
+ optionSetting: import("vue").ComputedRef<any>;
1036
+ mappingConfig: import("vue").ComputedRef<any>;
1037
+ widgetOptions: import("vue").ComputedRef<{
1038
+ label: string;
1039
+ value: string;
1040
+ }[]>;
1041
+ NInputNumber: any;
1042
+ NInput: any;
1043
+ NSelect: any;
1044
+ NDatePicker: any;
1045
+ WidgetTypeEnums: {
1046
+ INPUT_NUMBER: string;
1047
+ INPUT: string;
1048
+ SELECT: string;
1049
+ DATE: string;
1050
+ DATE_TIME: string;
1051
+ };
1052
+ WidgetValEnums: {
1053
+ CUSTOM: string;
1054
+ FIRST_VAL: string;
1055
+ NOW: string;
1056
+ TODAY: string;
1057
+ TODAY_START: string;
1058
+ TODAY_END: string;
1059
+ TOMORROW: string;
1060
+ TOMORROW_START: string;
1061
+ TOMORROW_END: string;
1062
+ YESTERDAY: string;
1063
+ YESTERDAY_START: string;
1064
+ YESTERDAY_END: string;
1065
+ THIS_WEEK: string;
1066
+ WEEK_START: string;
1067
+ WEEK_END: string;
1068
+ NEXT_WEEK: string;
1069
+ LAST_WEEK: string;
1070
+ THIS_MONTH: string;
1071
+ MONTH_START: string;
1072
+ MONTH_END: string;
1073
+ NEXT_MONTH: string;
1074
+ LAST_MONTH: string;
1075
+ THIS_QUARTER: string;
1076
+ NEXT_QUARTER: string;
1077
+ LAST_QUARTER: string;
1078
+ THIS_YEAR: string;
1079
+ NEXT_YEAR: string;
1080
+ LAST_YEAR: string;
1081
+ };
1082
+ WidgetOptionEnums: {
1083
+ RADIO: string;
1084
+ MULTIPLE: string;
1085
+ ALL: string;
1086
+ SELECT_TIME: string;
1087
+ PAST_TIME: string;
1088
+ FUTURE_TIME: string;
1089
+ };
1090
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1091
+ paramCfg: {
1092
+ type: ObjectConstructor;
1093
+ default: null;
1094
+ };
1095
+ modelValue: {
1096
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1097
+ default: null;
1098
+ };
1099
+ presetVal: {
1100
+ type: StringConstructor;
1101
+ default: null;
1102
+ };
1103
+ }>> & {
1104
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1105
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1106
+ }, {
1107
+ modelValue: string | number | unknown[];
1108
+ presetVal: string;
1109
+ paramCfg: Record<string, any>;
1110
+ }>;
1111
+ ConditionEnums: {
1112
+ NULL: string;
1113
+ EQUAL: string;
1114
+ };
1115
+ conditionOptions: {
1116
+ label: string;
1117
+ value: string;
1118
+ }[];
1119
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("saveAdd" | "cancelSaveAdd")[], "saveAdd" | "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1120
+ actionList_prop: {
1121
+ type: import("vue").PropType<import("../../types").IClassifyListType>;
1122
+ default: () => {};
1123
+ };
1124
+ conditionList: {
1125
+ type: ArrayConstructor;
1126
+ default: () => never[];
1127
+ };
1128
+ tableId: {
1129
+ type: StringConstructor;
1130
+ default: string;
1131
+ };
1132
+ }>> & {
1133
+ onSaveAdd?: ((...args: any[]) => any) | undefined;
1134
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
1135
+ }, {
1136
+ tableId: string;
1137
+ actionList_prop: import("../../types").IClassifyListType;
1138
+ conditionList: unknown[];
1139
+ }>;
1140
+ SvgIcon: import("vue").DefineComponent<{
1141
+ iconClass: {
1142
+ type: StringConstructor;
1143
+ required: true;
1144
+ default: string;
1145
+ };
1146
+ title: {
1147
+ type: StringConstructor;
1148
+ required: false;
1149
+ default: string;
1150
+ };
1151
+ className: {
1152
+ type: StringConstructor;
1153
+ required: false;
1154
+ };
1155
+ }, {
1156
+ props: {
1157
+ iconClass: string;
1158
+ title: string;
1159
+ className?: string | undefined;
1160
+ };
1161
+ iconName: import("vue").ComputedRef<string>;
1162
+ svgClass: import("vue").ComputedRef<string>;
1163
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1164
+ iconClass: {
1165
+ type: StringConstructor;
1166
+ required: true;
1167
+ default: string;
1168
+ };
1169
+ title: {
1170
+ type: StringConstructor;
1171
+ required: false;
1172
+ default: string;
1173
+ };
1174
+ className: {
1175
+ type: StringConstructor;
1176
+ required: false;
1177
+ };
1178
+ }>>, {
1179
+ title: string;
1180
+ iconClass: string;
1181
+ }>;
1182
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "cancelSaveAdd"[], "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1183
+ visible: {
1184
+ type: BooleanConstructor;
1185
+ default: boolean;
1186
+ };
1187
+ modalTitle: {
1188
+ type: StringConstructor;
1189
+ default: string;
1190
+ };
1191
+ conditionList: {
1192
+ type: ArrayConstructor;
1193
+ default: () => never[];
1194
+ };
1195
+ searchFieldList: {
1196
+ type: ArrayConstructor;
1197
+ default: () => never[];
1198
+ };
1199
+ tableDataType: {
1200
+ type: StringConstructor;
1201
+ default: string;
1202
+ };
1203
+ filterApiConfig: {
1204
+ type: ObjectConstructor;
1205
+ default: () => {};
1206
+ };
1207
+ }>> & {
1208
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
1209
+ }, {
1210
+ visible: boolean;
1211
+ modalTitle: string;
1212
+ searchFieldList: unknown[];
1213
+ filterApiConfig: Record<string, any>;
1214
+ conditionList: unknown[];
1215
+ tableDataType: string;
1216
+ }>;
1217
+ export default _default;