@gct-paas/core 0.1.4-dev.9 → 0.1.5-dev.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 (330) hide show
  1. package/dist/index.esm.min.js +1 -0
  2. package/es/constants/core.mjs +5 -4
  3. package/es/constants/default-date-type/default-date-type.d.ts +70 -0
  4. package/es/constants/default-date-type/default-date-type.mjs +74 -0
  5. package/es/constants/editor-register/editor-register.mjs +17 -5
  6. package/es/constants/expression-type/BuiltOperators.mjs +152 -144
  7. package/es/constants/expression-type/FunctionKeys.mjs +75 -79
  8. package/es/constants/expression-type/editor.mjs +10 -3
  9. package/es/constants/expression-type/function.mjs +602 -613
  10. package/es/constants/expression-type/index.mjs +111 -113
  11. package/es/constants/expression-type/modeCfg.mjs +256 -263
  12. package/es/constants/expression-type/variable.mjs +43 -39
  13. package/es/constants/form-container-type/form-container-type.mjs +17 -5
  14. package/es/constants/index.d.ts +7 -1
  15. package/es/constants/index.mjs +32 -10
  16. package/es/constants/page-designer/model.d.ts +4 -0
  17. package/es/constants/page-designer/model.mjs +17 -0
  18. package/es/constants/page-designer/regex.d.ts +2 -0
  19. package/es/constants/page-designer/regex.mjs +5 -0
  20. package/es/create-app-vue.mjs +15 -9
  21. package/es/enums/app-designer/index.d.ts +19 -0
  22. package/es/enums/app-designer/index.mjs +131 -63
  23. package/es/enums/appEnum.mjs +681 -360
  24. package/es/enums/appStateEnum.mjs +17 -10
  25. package/es/enums/authActionEnum.mjs +63 -51
  26. package/es/enums/breakpointEnum.mjs +27 -26
  27. package/es/enums/cacheEnum.d.ts +0 -1
  28. package/es/enums/cacheEnum.mjs +22 -22
  29. package/es/enums/designEnum.d.ts +7 -1
  30. package/es/enums/designEnum.mjs +110 -68
  31. package/es/enums/developer-center/integration.mjs +7 -6
  32. package/es/enums/exceptionEnum.mjs +21 -17
  33. package/es/enums/expressionEnum.d.ts +2 -2
  34. package/es/enums/expressionEnum.mjs +81 -74
  35. package/es/enums/globalEnum.d.ts +15 -0
  36. package/es/enums/globalEnum.mjs +60 -25
  37. package/es/enums/httpEnum.mjs +71 -61
  38. package/es/enums/index.mjs +44 -14
  39. package/es/enums/menuEnum.mjs +42 -38
  40. package/es/enums/page-designer/designer.d.ts +1 -8
  41. package/es/enums/page-designer/designer.mjs +403 -407
  42. package/es/enums/page-designer/index.d.ts +1 -0
  43. package/es/enums/page-designer/index.mjs +5 -0
  44. package/es/enums/page-designer/layout.d.ts +12 -0
  45. package/es/enums/page-designer/layout.mjs +17 -0
  46. package/es/enums/page-designer/panel.mjs +341 -213
  47. package/es/enums/page-designer/toolkit.mjs +13 -12
  48. package/es/enums/page-designer/widget.d.ts +5 -0
  49. package/es/enums/page-designer/widget.mjs +426 -334
  50. package/es/enums/pageEnum.mjs +14 -13
  51. package/es/enums/plugin-enum.d.ts +8 -4
  52. package/es/enums/plugin-enum.mjs +27 -7
  53. package/es/enums/processEnum.mjs +95 -60
  54. package/es/enums/roleEnum.mjs +7 -6
  55. package/es/enums/sizeEnum.d.ts +18 -0
  56. package/es/enums/sizeEnum.mjs +28 -8
  57. package/es/global/gct/gct.d.ts +240 -4
  58. package/es/global/gct/gct.mjs +98 -90
  59. package/es/global/index.mjs +1 -0
  60. package/es/hooks/index.d.ts +0 -2
  61. package/es/hooks/index.mjs +4 -0
  62. package/es/hooks/use-app-inst/use-app-inst.mjs +11 -5
  63. package/es/hooks/use-modal/use-modal.mjs +16 -10
  64. package/es/hooks/use-sub-app-utils/use-sub-app-utils.d.ts +8 -12
  65. package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +45 -25
  66. package/es/hooks/useCopyToClipboard.mjs +50 -50
  67. package/es/index.d.ts +1 -3
  68. package/es/index.mjs +128 -132
  69. package/es/interface/i-dictionary/i-dictionary-item.d.ts +6 -0
  70. package/es/interface/i-global-register/i-global-register.d.ts +8 -0
  71. package/es/interface/i-kit-info/i-kit-info.d.ts +20 -0
  72. package/es/interface/i-pinia-action/i-global-actions.d.ts +4 -6
  73. package/es/interface/i-pinia-getter/i-global-getters.d.ts +2 -0
  74. package/es/interface/i-pinia-state/i-global-state.d.ts +12 -12
  75. package/es/interface/index.d.ts +4 -6
  76. package/es/interface/model-designer/entity.d.ts +110 -0
  77. package/es/interface/provider/index.d.ts +0 -2
  78. package/es/locale/index.d.ts +11 -3
  79. package/es/locale/index.mjs +75 -57
  80. package/es/modules/env-manager/env-manager.const.mjs +16 -8
  81. package/es/modules/env-manager/env-manager.d.ts +2 -0
  82. package/es/modules/env-manager/env-manager.interface.d.ts +2 -0
  83. package/es/modules/env-manager/env-manager.interface.mjs +14 -7
  84. package/es/modules/env-manager/env-manager.mjs +108 -107
  85. package/es/modules/error-handler/error-handler.const.mjs +11 -16
  86. package/es/modules/error-handler/error-strategy.mjs +199 -175
  87. package/es/modules/error-handler/index.mjs +120 -106
  88. package/es/modules/mqtt/constants/mqtt.const.d.ts +33 -0
  89. package/es/modules/mqtt/constants/mqtt.const.mjs +24 -0
  90. package/es/modules/mqtt/enums/mqtt-status.enum.d.ts +20 -0
  91. package/es/modules/mqtt/enums/mqtt-status.enum.mjs +24 -0
  92. package/es/modules/mqtt/index.d.ts +5 -0
  93. package/es/modules/mqtt/index.mjs +4 -0
  94. package/es/modules/mqtt/interfaces/i-mqtt.d.ts +139 -0
  95. package/es/modules/mqtt/mqtt-client.d.ts +117 -0
  96. package/es/modules/mqtt/mqtt-client.mjs +229 -0
  97. package/es/modules/mqtt/mqtt-manager.d.ts +87 -0
  98. package/es/modules/mqtt/mqtt-manager.mjs +118 -0
  99. package/es/modules/platform-config/constants/index.mjs +4 -0
  100. package/es/modules/platform-config/constants/login.const.mjs +48 -45
  101. package/es/modules/platform-config/constants/org.const.mjs +57 -52
  102. package/es/modules/platform-config/constants/theme.const.mjs +11 -4
  103. package/es/modules/platform-config/constants/watermark.const.mjs +17 -12
  104. package/es/modules/platform-config/enums/deploy.enum.mjs +13 -6
  105. package/es/modules/platform-config/enums/login.enum.mjs +29 -15
  106. package/es/modules/platform-config/enums/platform.enum.d.ts +0 -15
  107. package/es/modules/platform-config/enums/platform.enum.mjs +17 -26
  108. package/es/modules/platform-config/index.d.ts +1 -1
  109. package/es/modules/platform-config/index.mjs +9 -0
  110. package/es/modules/platform-config/interfaces/index.d.ts +0 -1
  111. package/es/modules/platform-config/store.d.ts +5 -1
  112. package/es/modules/platform-config/store.mjs +68 -76
  113. package/es/modules/platform-config/useBasicSetting.mjs +47 -35
  114. package/es/modules/platform-config/useDeploySetting.mjs +29 -21
  115. package/es/modules/platform-config/useLoginSetting.mjs +151 -173
  116. package/es/modules/platform-config/useOrgSetting.mjs +63 -62
  117. package/es/modules/platform-config/useProjectSetting.mjs +14 -6
  118. package/es/modules/platform-config/useSecuritySetting.d.ts +1 -0
  119. package/es/modules/platform-config/useSecuritySetting.mjs +81 -56
  120. package/es/modules/platform-config/useThemeSetting.mjs +78 -59
  121. package/es/modules/platform-config/useWatermarkSetting.mjs +37 -23
  122. package/es/modules/user-stores/index.mjs +3 -0
  123. package/es/modules/user-stores/store/permission.store.mjs +27 -36
  124. package/es/modules/user-stores/store/tenant.store.mjs +20 -22
  125. package/es/modules/user-stores/store/user.store.d.ts +149 -1
  126. package/es/modules/user-stores/store/user.store.mjs +97 -101
  127. package/es/modules/user-stores/types/user.d.ts +1 -0
  128. package/es/router/index.mjs +25 -28
  129. package/es/setup-app.d.ts +1 -1
  130. package/es/setup-app.mjs +22 -28
  131. package/es/state/global-pinia-state/global-pinia-state.d.ts +15 -7
  132. package/es/state/global-pinia-state/global-pinia-state.mjs +43 -57
  133. package/es/state/index.d.ts +0 -9
  134. package/es/state/index.mjs +1 -0
  135. package/es/store/global-store.mjs +44 -57
  136. package/es/store/index.d.ts +8 -0
  137. package/es/store/index.mjs +35 -19
  138. package/es/store/storage-store.d.ts +9 -0
  139. package/es/store/storage-store.mjs +10 -0
  140. package/es/types/index.d.ts +18 -0
  141. package/es/utils/axios/interceptors.mjs +22 -17
  142. package/es/utils/cache-adapter/cache-adapter.mjs +61 -56
  143. package/es/utils/css-loader/css-loader.d.ts +36 -0
  144. package/es/utils/css-loader/css-loader.mjs +82 -0
  145. package/es/utils/design/design.d.ts +11 -0
  146. package/es/utils/design/design.mjs +21 -0
  147. package/es/utils/deviceFingerprint.mjs +77 -63
  148. package/es/utils/dictionary/dictionary.mjs +142 -145
  149. package/es/utils/file/base64Conver.d.ts +9 -0
  150. package/es/utils/file/base64Conver.mjs +40 -0
  151. package/es/utils/file/download.d.ts +44 -0
  152. package/es/utils/file/download.mjs +101 -0
  153. package/es/utils/file/parser.d.ts +3 -0
  154. package/es/utils/file/parser.mjs +29 -0
  155. package/es/utils/i18n/index.mjs +14 -3
  156. package/es/utils/index.d.ts +14 -4
  157. package/es/utils/index.mjs +34 -0
  158. package/es/utils/is-sort-filed/is-sort-filed.d.ts +10 -0
  159. package/es/utils/is-sort-filed/is-sort-filed.mjs +45 -0
  160. package/es/utils/kit-pkg-util/kit-pkg-util.d.ts +32 -0
  161. package/es/utils/kit-pkg-util/kit-pkg-util.mjs +73 -0
  162. package/es/utils/linked-list/linked-list.mjs +115 -118
  163. package/es/utils/linked-node/linked-node.mjs +41 -31
  164. package/es/utils/lowcode/utils.mjs +13 -18
  165. package/es/utils/lowcode/validate.mjs +20 -26
  166. package/es/utils/mitt/mitt.mjs +4 -4
  167. package/es/utils/model-loader/model-loader.mjs +288 -325
  168. package/es/utils/namespace/namespace.mjs +178 -164
  169. package/es/utils/openUtil/index.mjs +2 -0
  170. package/es/utils/openUtil/modal/modal.mjs +72 -79
  171. package/es/utils/openUtil/overlay-container/overlay-container.mjs +144 -138
  172. package/es/utils/permission.d.ts +19 -0
  173. package/es/utils/permission.mjs +34 -0
  174. package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +63 -0
  175. package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +119 -0
  176. package/es/utils/plugin-static-resource/plugin-static-resource.d.ts +2 -27
  177. package/es/utils/plugin-static-resource/plugin-static-resource.mjs +19 -42
  178. package/es/utils/style/index.mjs +94 -138
  179. package/es/utils/tools/tools.d.ts +12 -10
  180. package/es/utils/tools/tools.mjs +128 -57
  181. package/es/utils/treeHelper/treeHelper.d.ts +3 -9
  182. package/es/utils/treeHelper/treeHelper.mjs +205 -233
  183. package/es/utils/uploader/uploader.d.ts +20 -0
  184. package/es/utils/uploader/uploader.mjs +86 -0
  185. package/es/utils/useUUid.d.ts +41 -0
  186. package/es/utils/useUUid.mjs +85 -0
  187. package/es/utils/util.mjs +55 -35
  188. package/es/utils/uuid/uuid.d.ts +2 -0
  189. package/es/utils/uuid/uuid.mjs +33 -43
  190. package/es/utils/validate.d.ts +5 -0
  191. package/es/utils/validate.mjs +21 -0
  192. package/es/utils/value-helper/value-helper.mjs +113 -98
  193. package/package.json +18 -27
  194. package/dist/index.esm.min.mjs +0 -7973
  195. package/dist/index.min.cjs +0 -386
  196. package/dist/index.system.min.js +0 -386
  197. package/es/constants/editor-type/editor-type.d.ts +0 -244
  198. package/es/constants/editor-type/editor-type.mjs +0 -63
  199. package/es/controller/edit-form/edit-form.controller.d.ts +0 -28
  200. package/es/controller/edit-form/edit-form.controller.mjs +0 -47
  201. package/es/controller/editor/color-editor.controller.d.ts +0 -13
  202. package/es/controller/editor/color-editor.controller.mjs +0 -6
  203. package/es/controller/editor/length-unit-editor.controller.d.ts +0 -13
  204. package/es/controller/editor/length-unit-editor.controller.mjs +0 -6
  205. package/es/controller/editor-item/editor-item.controller.d.ts +0 -14
  206. package/es/controller/editor-item/editor-item.controller.mjs +0 -8
  207. package/es/controller/form/form.controller.d.ts +0 -76
  208. package/es/controller/form/form.controller.mjs +0 -147
  209. package/es/controller/form-collapse/form-collapse.controller.d.ts +0 -18
  210. package/es/controller/form-collapse/form-collapse.controller.mjs +0 -14
  211. package/es/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +0 -18
  212. package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +0 -14
  213. package/es/controller/form-edit-item/form-edit-item.controller.d.ts +0 -27
  214. package/es/controller/form-edit-item/form-edit-item.controller.mjs +0 -74
  215. package/es/controller/form-group/form-group.controller.d.ts +0 -18
  216. package/es/controller/form-group/form-group.controller.mjs +0 -14
  217. package/es/controller/form-item/form-item.controller.d.ts +0 -21
  218. package/es/controller/form-item/form-item.controller.mjs +0 -43
  219. package/es/controller/form-item-basic/form-item-basic.controller.d.ts +0 -57
  220. package/es/controller/form-item-basic/form-item-basic.controller.mjs +0 -49
  221. package/es/controller/form-item-hidden/form-item-hidden.controller.d.ts +0 -17
  222. package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +0 -7
  223. package/es/controller/form-tab/form-tab.controller.d.ts +0 -18
  224. package/es/controller/form-tab/form-tab.controller.mjs +0 -14
  225. package/es/controller/form-tab-pane/form-tab-pane.controller.d.ts +0 -18
  226. package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +0 -14
  227. package/es/controller/gct-form/gct-form.controller.d.ts +0 -101
  228. package/es/controller/gct-form/gct-form.controller.mjs +0 -214
  229. package/es/controller/index.d.ts +0 -15
  230. package/es/hooks/use-form/use-form.d.ts +0 -10
  231. package/es/hooks/use-form/use-form.mjs +0 -8
  232. package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +0 -22
  233. package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +0 -89
  234. package/es/hooks/use-overlay-scrollbars/use-overlay-scrollbars.d.ts +0 -11
  235. package/es/interface/controller/edit-form/edit-form.controller.d.ts +0 -26
  236. package/es/interface/controller/editor/i-color-editor.controller.d.ts +0 -11
  237. package/es/interface/controller/editor/i-length-unit-editor.controller.d.ts +0 -11
  238. package/es/interface/controller/editor-item/editor-item.controller.d.ts +0 -19
  239. package/es/interface/controller/form/form.controller.d.ts +0 -121
  240. package/es/interface/controller/form-collapse/form-collapse.controller.d.ts +0 -23
  241. package/es/interface/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +0 -23
  242. package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +0 -59
  243. package/es/interface/controller/form-group/form-group.controller.d.ts +0 -24
  244. package/es/interface/controller/form-hidden-item/form-hidden-item.controller.d.ts +0 -24
  245. package/es/interface/controller/form-item/form-item.controller.d.ts +0 -40
  246. package/es/interface/controller/form-item-basic/form-item-basic.controller.d.ts +0 -51
  247. package/es/interface/controller/form-tab/form-tab.controller.d.ts +0 -23
  248. package/es/interface/controller/form-tab-pane/form-tab-pane.controller.d.ts +0 -23
  249. package/es/interface/controller/index.d.ts +0 -14
  250. package/es/interface/events/form/i-form.event.d.ts +0 -11
  251. package/es/interface/events/index.d.ts +0 -1
  252. package/es/interface/form/i-editor/i-check-switch.d.ts +0 -29
  253. package/es/interface/form/i-editor/i-checkbox-editor.d.ts +0 -9
  254. package/es/interface/form/i-editor/i-color-editor.d.ts +0 -13
  255. package/es/interface/form/i-editor/i-editor-basic.d.ts +0 -87
  256. package/es/interface/form/i-editor/i-icon-select-editor.d.ts +0 -21
  257. package/es/interface/form/i-editor/i-info-editor.d.ts +0 -21
  258. package/es/interface/form/i-editor/i-length-unit-editor.d.ts +0 -13
  259. package/es/interface/form/i-editor/i-model-field-select-editor.d.ts +0 -18
  260. package/es/interface/form/i-editor/i-number-editor.d.ts +0 -21
  261. package/es/interface/form/i-editor/i-picker-editor.d.ts +0 -30
  262. package/es/interface/form/i-editor/i-radio-editor.d.ts +0 -21
  263. package/es/interface/form/i-editor/i-select-editor.d.ts +0 -14
  264. package/es/interface/form/i-editor/i-span-editor.d.ts +0 -30
  265. package/es/interface/form/i-editor/i-switch-editor.d.ts +0 -14
  266. package/es/interface/form/i-editor/i-text-editor.d.ts +0 -46
  267. package/es/interface/form/i-editor/i-textarea-editor.d.ts +0 -25
  268. package/es/interface/form/i-form/i-edit-form.d.ts +0 -48
  269. package/es/interface/form/i-form/i-form-collapse-pane.d.ts +0 -30
  270. package/es/interface/form/i-form/i-form-collapse.d.ts +0 -35
  271. package/es/interface/form/i-form/i-form-container.d.ts +0 -53
  272. package/es/interface/form/i-form/i-form-edit-item.d.ts +0 -140
  273. package/es/interface/form/i-form/i-form-group-container.d.ts +0 -24
  274. package/es/interface/form/i-form/i-form-group.d.ts +0 -35
  275. package/es/interface/form/i-form/i-form-hidden-item.d.ts +0 -11
  276. package/es/interface/form/i-form/i-form-item-basic.d.ts +0 -126
  277. package/es/interface/form/i-form/i-form-item.d.ts +0 -11
  278. package/es/interface/form/i-form/i-form-tab-pane.d.ts +0 -23
  279. package/es/interface/form/i-form/i-form-tab.d.ts +0 -21
  280. package/es/interface/form/i-form/i-form.d.ts +0 -79
  281. package/es/interface/form/index.d.ts +0 -29
  282. package/es/interface/layout/i-flex-layout/i-flex-container.d.ts +0 -75
  283. package/es/interface/layout/i-flex-layout/i-flex-item.d.ts +0 -51
  284. package/es/interface/layout/i-grid-layout/i-grid-container.d.ts +0 -29
  285. package/es/interface/layout/i-grid-layout/i-grid-item-span.d.ts +0 -54
  286. package/es/interface/layout/i-grid-layout/i-grid-item.d.ts +0 -37
  287. package/es/interface/layout/i-layout-basis/i-layout-container-basis.d.ts +0 -11
  288. package/es/interface/layout/index.d.ts +0 -6
  289. package/es/interface/provider/i-editor-provider/i-editor-provider.d.ts +0 -24
  290. package/es/interface/provider/i-form-item-provider/i-form-item-provider.d.ts +0 -44
  291. package/es/interface/state/form/form.state.d.ts +0 -53
  292. package/es/interface/state/form-collapse/form-collapse.state.d.ts +0 -11
  293. package/es/interface/state/form-collapse-pane/form-collapse-pane.state.d.ts +0 -11
  294. package/es/interface/state/form-edit-item/form-edit-item.state.d.ts +0 -38
  295. package/es/interface/state/form-group/form-group.state.d.ts +0 -21
  296. package/es/interface/state/form-hidden-item/form-hidden-item.state.d.ts +0 -5
  297. package/es/interface/state/form-item/form-item.state.d.ts +0 -20
  298. package/es/interface/state/form-item-basic/form-item-basic.state.d.ts +0 -63
  299. package/es/interface/state/form-tab/form-tab.state.d.ts +0 -19
  300. package/es/interface/state/form-tab-pane/form-tab-pane.state.d.ts +0 -11
  301. package/es/interface/state/index.d.ts +0 -10
  302. package/es/modules/platform-config/interfaces/global-setting.interface.d.ts +0 -7
  303. package/es/register/editor-register/editor-register.d.ts +0 -49
  304. package/es/register/editor-register/editor-register.mjs +0 -57
  305. package/es/register/form-item-register/form-item-register.d.ts +0 -36
  306. package/es/register/form-item-register/form-item-register.mjs +0 -42
  307. package/es/register/index.d.ts +0 -14
  308. package/es/state/form/form.state.d.ts +0 -24
  309. package/es/state/form/form.state.mjs +0 -16
  310. package/es/state/form-collapse/form-collapse.state.d.ts +0 -14
  311. package/es/state/form-collapse/form-collapse.state.mjs +0 -6
  312. package/es/state/form-collapse-pane/form-collapse-pane.state.d.ts +0 -14
  313. package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -6
  314. package/es/state/form-edit-item/form-edit-item.state.d.ts +0 -17
  315. package/es/state/form-edit-item/form-edit-item.state.mjs +0 -10
  316. package/es/state/form-group/form-group.state.d.ts +0 -21
  317. package/es/state/form-group/form-group.state.mjs +0 -14
  318. package/es/state/form-item/form-item.state.d.ts +0 -14
  319. package/es/state/form-item/form-item.state.mjs +0 -6
  320. package/es/state/form-item-basic/form-item-basic.state.d.ts +0 -17
  321. package/es/state/form-item-basic/form-item-basic.state.mjs +0 -9
  322. package/es/state/form-tab/form-tab.state.d.ts +0 -15
  323. package/es/state/form-tab/form-tab.state.mjs +0 -7
  324. package/es/state/form-tab-pane/form-tab-pane.state.d.ts +0 -14
  325. package/es/state/form-tab-pane/form-tab-pane.state.mjs +0 -6
  326. package/es/utils/props/gct-form-item/gct-form-item.props.d.ts +0 -63
  327. package/es/utils/props/gct-form-item/gct-form-item.props.mjs +0 -66
  328. package/es/utils/props/index.d.ts +0 -1
  329. package/es/utils/width-install/width-install.d.ts +0 -17
  330. package/es/utils/width-install/width-install.mjs +0 -23
@@ -1,414 +1,410 @@
1
- import { FIELD_TYPE } from '../appEnum.mjs';
2
-
3
- var SCOPE = /* @__PURE__ */ ((SCOPE2) => {
4
- SCOPE2["PAGE"] = "page";
5
- SCOPE2["MODAL"] = "modal";
6
- return SCOPE2;
7
- })(SCOPE || {});
8
- var FormComponents = /* @__PURE__ */ ((FormComponents2) => {
9
- FormComponents2["RdoInput"] = "rdo-input";
10
- FormComponents2["Input"] = "input";
11
- FormComponents2["ElectronicSignature"] = "electronic-signature";
12
- FormComponents2["UseinfoButton"] = "useinfo-button";
13
- FormComponents2["ModelingButton"] = "modeling-button";
14
- FormComponents2["ImportButton"] = "gc-import-button";
15
- FormComponents2["ExportButton"] = "gc-export-button";
16
- FormComponents2["DocumentPrintButton"] = "document-print-button";
17
- FormComponents2["SubmitButton"] = "submit-button";
18
- FormComponents2["BatchDeleteButton"] = "batchdelete-button";
19
- FormComponents2["CustomButton"] = "custom-button";
20
- FormComponents2["TableLinkButton"] = "table-link-button";
21
- FormComponents2["TableInfoButton"] = "table-info-button";
22
- FormComponents2["TableApproveButton"] = "table-approve-button";
23
- FormComponents2["OpeButton"] = "ope-button";
24
- FormComponents2["ResetButton"] = "reset-button";
25
- FormComponents2["RdoSaveButton"] = "rdo-save-button";
26
- FormComponents2["LabelPrintButton"] = "labelprint-button";
27
- FormComponents2["ProcessButton"] = "process-button";
28
- FormComponents2["ProcessApproveButton"] = "process-approve-button";
29
- FormComponents2["CreateButton"] = "create-button";
30
- FormComponents2["DeleteButton"] = "delete-button";
31
- FormComponents2["CopyButton"] = "copy-button";
32
- FormComponents2["RefreshButton"] = "refresh-button";
33
- FormComponents2["CreateVersionButton"] = "create-version-button";
34
- FormComponents2["CopyVersionButton"] = "copy-version-button";
35
- FormComponents2["Checkbox"] = "checkbox";
36
- FormComponents2["DataTable"] = "data-table";
37
- FormComponents2["DataVTable"] = "data-v-table";
38
- FormComponents2["TreeTable"] = "tree-table";
39
- FormComponents2["DataTableColumn"] = "data-table-column";
40
- FormComponents2["RefDataTable"] = "ref-data-table";
41
- FormComponents2["DataList"] = "data-list";
42
- FormComponents2["RdoDataList"] = "rdo-data-list";
43
- FormComponents2["DataTableOpe"] = "data-table-ope";
44
- FormComponents2["DataTableFormula"] = "data-table-formula";
45
- FormComponents2["Datepicker"] = "datepicker";
46
- FormComponents2["DateTimepicker"] = "datetimepicker";
47
- FormComponents2["Department"] = "department";
48
- FormComponents2["Form"] = "form";
49
- FormComponents2["RdoForm"] = "rdo-form";
50
- FormComponents2["RdoTable"] = "rdo-table";
51
- FormComponents2["MedProRdoForm"] = "medprordo-form";
52
- FormComponents2["MedProRdoTable"] = "medprordo-table";
53
- FormComponents2["FormProcess"] = "form-process";
54
- FormComponents2["Inputmoney"] = "inputmoney";
55
- FormComponents2["Inputnumber"] = "inputnumber";
56
- FormComponents2["InputDouble"] = "inputdouble";
57
- FormComponents2["Radio"] = "radio";
58
- FormComponents2["Select"] = "select";
59
- FormComponents2["RdoSelect"] = "rdo-select";
60
- FormComponents2["Switch"] = "switch";
61
- FormComponents2["Textarea"] = "textarea";
62
- FormComponents2["Timepicker"] = "timepicker";
63
- FormComponents2["Userpicker"] = "userpicker";
64
- FormComponents2["Search"] = "search";
65
- FormComponents2["SelectSearch"] = "select-search";
66
- FormComponents2["QuickSearch"] = "quick-search";
67
- FormComponents2["LayoutContainer"] = "layout-container";
68
- FormComponents2["ButtonContainer"] = "button-container";
69
- FormComponents2["ButtonProcessContainer"] = "button-process-container";
70
- FormComponents2["BottomButtonContainer"] = "bottom-button-container";
71
- FormComponents2["Grid"] = "grid";
72
- FormComponents2["GridCol"] = "grid-col";
73
- FormComponents2["Tabs"] = "tabs";
74
- FormComponents2["TabPane"] = "tab-pane";
75
- FormComponents2["LeftRightColumns"] = "left-right-columns";
76
- FormComponents2["TopBottomColumns"] = "top-bottom-columns";
77
- FormComponents2["LeftLayoutThree"] = "left-layout-three";
78
- FormComponents2["TopLayoutThree"] = "top-layout-three";
79
- FormComponents2["UploadFile"] = "upload-file";
80
- FormComponents2["UploadImage"] = "upload-image";
81
- FormComponents2["SubTable"] = "sub-table";
82
- FormComponents2["SubTableOpe"] = "sub-table-ope";
83
- FormComponents2["SubTableAddBtn"] = "sub-table-add-button";
84
- FormComponents2["SubTableCopyBtn"] = "sub-table-copy-button";
85
- FormComponents2["SubTableEditBtn"] = "sub-table-edit-button";
86
- FormComponents2["SubTableDeleteBtn"] = "sub-table-delete-button";
87
- FormComponents2["LinkPageBtn"] = "link-page-button";
88
- FormComponents2["Collapse"] = "collapse";
89
- FormComponents2["SpaceOccupation"] = "space-occupation";
90
- FormComponents2["Divider"] = "divider";
91
- FormComponents2["CardList"] = "card-list";
92
- FormComponents2["CardHeaderLeft"] = "card-header-left";
93
- FormComponents2["CardHeaderRight"] = "card-header-right";
94
- FormComponents2["CardContent"] = "card-content";
95
- FormComponents2["CardOpeBtn"] = "card-ope-btn";
96
- FormComponents2["BaseButton"] = "base-button";
97
- FormComponents2["ReadonlyCmp"] = "readonlycmp";
98
- FormComponents2["TableSelect"] = "table-select";
99
- FormComponents2["GenCheckbox"] = "gen-checkbox";
100
- FormComponents2["GenRadio"] = "gen-radio";
101
- FormComponents2["GenSwitch"] = "gen-switch";
102
- FormComponents2["WorkflowNodes"] = "workflow-nodes";
103
- FormComponents2["WorkflowNodeModal"] = "workflow-node-modal";
104
- FormComponents2["ESOP"] = "e-sop";
105
- FormComponents2["EXPRESSION"] = "expression";
106
- FormComponents2["ExpressionCondition"] = "expression-condition";
107
- FormComponents2["AGG"] = "agg";
108
- FormComponents2["DynamicFormType"] = "dynamic-form-type";
109
- FormComponents2["DynamicFormValue"] = "dynamic-form-value";
110
- FormComponents2["DynamicFormOpts"] = "dynamic-form-options";
111
- FormComponents2["DynamicFormShowType"] = "dynamic-form-show-type";
112
- FormComponents2["DynamicTable"] = "dynamic-table";
113
- FormComponents2["Transaction"] = "transaction";
114
- FormComponents2["SerialRule"] = "serial-rule";
115
- FormComponents2["LabelTemplate"] = "label-template";
116
- FormComponents2["LabelTemplateRef"] = "label-template-ref";
117
- FormComponents2["DocumentTemplate"] = "document-template";
118
- FormComponents2["Wacom"] = "wacom";
119
- FormComponents2["Text"] = "text";
120
- FormComponents2["CustomField"] = "custom-field";
121
- FormComponents2["Printer"] = "printer";
122
- FormComponents2["Descriptions"] = "descriptions";
123
- FormComponents2["RangeUser"] = "range-user";
124
- FormComponents2["GenImage"] = "gen-image";
125
- FormComponents2["TestButton"] = "test-button";
126
- FormComponents2["Iframe"] = "iframe";
127
- FormComponents2["ExcuteButton"] = "medproexcute-button";
128
- FormComponents2["SubDataTable"] = "sub-data-table";
129
- FormComponents2["Signature"] = "signature";
130
- FormComponents2["OnlineForm"] = "online-form";
131
- FormComponents2["TmplTreeSelect"] = "tmpl-tree-select";
132
- FormComponents2["Boolean"] = "boolean";
133
- FormComponents2["BizProcess"] = "biz-process";
134
- FormComponents2["ApprovalHistory"] = "approval-history";
135
- FormComponents2["FlowDiagram"] = "flow-diagram";
136
- FormComponents2["CustomCode"] = "custom-code";
137
- FormComponents2["ApprovalProcess"] = "approval-process";
138
- return FormComponents2;
139
- })(FormComponents || {});
140
- var SearchComponents = /* @__PURE__ */ ((SearchComponents2) => {
141
- SearchComponents2["SearchInput"] = "SearchInput";
142
- SearchComponents2["SearchNumberInput"] = "SearchNumberInput";
143
- SearchComponents2["SearchStringNumberInput"] = "SearchStringNumberInput";
144
- SearchComponents2["SearchSwitch"] = "SearchSwitch";
145
- SearchComponents2["SearchDate"] = "SearchDate";
146
- SearchComponents2["SearchDateTime"] = "SearchDateTime";
147
- SearchComponents2["SearchTime"] = "SearchTime";
148
- SearchComponents2["SearchSelect"] = "SearchSelect";
149
- SearchComponents2["SearchUserSelect"] = "SearchUserSelect";
150
- SearchComponents2["SearchRdoSelect"] = "SearchRdoSelect";
151
- SearchComponents2["SearchTransaction"] = "SearchTransaction";
152
- SearchComponents2["SearchTmplTreeSelect"] = "SearchTmplTreeSelect";
153
- SearchComponents2["SearchPrinter"] = "SearchPrinter";
154
- SearchComponents2["SearchBizProcess"] = "SearchBizProcess";
155
- SearchComponents2["SearchSelectRangUser"] = "SearchSelectRangUser";
156
- SearchComponents2["SearchSelectDepartment"] = "SearchSelectDepartment";
157
- return SearchComponents2;
158
- })(SearchComponents || {});
159
- var tableColumnWidthEnum = /* @__PURE__ */ ((tableColumnWidthEnum2) => {
160
- tableColumnWidthEnum2["AUTO_PARENT_BOX"] = "AutoParentBox";
161
- tableColumnWidthEnum2["ATUO"] = "selfAdaption";
162
- tableColumnWidthEnum2["ENUMERATION"] = "fixed";
163
- tableColumnWidthEnum2["PERCENTAGE"] = "percentage";
164
- return tableColumnWidthEnum2;
165
- })(tableColumnWidthEnum || {});
166
- var controlConfigEnum = /* @__PURE__ */ ((controlConfigEnum2) => {
167
- controlConfigEnum2["NULL"] = "NULL";
168
- controlConfigEnum2["STRING"] = "空字符串";
169
- controlConfigEnum2["ZERO"] = "0";
170
- return controlConfigEnum2;
171
- })(controlConfigEnum || {});
172
- var statisticalMethodEnum = /* @__PURE__ */ ((statisticalMethodEnum2) => {
173
- statisticalMethodEnum2["TOTAL"] = "total";
174
- statisticalMethodEnum2["AVERAGE"] = "average";
175
- return statisticalMethodEnum2;
176
- })(statisticalMethodEnum || {});
177
- var fixedAlignENUM = /* @__PURE__ */ ((fixedAlignENUM2) => {
178
- fixedAlignENUM2["RIGHT"] = "right";
179
- fixedAlignENUM2["NONE"] = "";
180
- fixedAlignENUM2["LEFT"] = "left";
181
- return fixedAlignENUM2;
182
- })(fixedAlignENUM || {});
183
- var tableColumnTypeEnum = /* @__PURE__ */ ((tableColumnTypeEnum2) => {
184
- tableColumnTypeEnum2["COLUMN_TEXT"] = "COLUMN_TEXT";
185
- tableColumnTypeEnum2["COLUMN_NUMBER"] = "COLUMN_NUMBER";
186
- tableColumnTypeEnum2["COLUMNTEXT_DATA"] = "COLUMNTEXT_DATA";
187
- tableColumnTypeEnum2["COLUMNTEXT_REF"] = "COLUMNTEXT_REF";
188
- tableColumnTypeEnum2["COLUMNTEXT_ENUM"] = "COLUMNTEXT_ENUM";
189
- tableColumnTypeEnum2["COLUMNTEXT_ORG"] = "COLUMNTEXT_ORG";
190
- tableColumnTypeEnum2["COLUMNTEXT_USER"] = "COLUMNTEXT_USER";
191
- tableColumnTypeEnum2["COLUMNTEXT_BOOLEAN"] = "COLUMNTEXT_BOOLEAN";
192
- tableColumnTypeEnum2["COLUMNTEXT_IMAGE"] = "COLUMNTEXT_IMAGE";
193
- return tableColumnTypeEnum2;
194
- })(tableColumnTypeEnum || {});
195
- var tabsTypeENUM = /* @__PURE__ */ ((tabsTypeENUM2) => {
196
- tabsTypeENUM2["LINE"] = "line";
197
- tabsTypeENUM2["CARD"] = "card";
198
- tabsTypeENUM2["TEXt"] = "text";
199
- tabsTypeENUM2["CAPSULE"] = "capsule";
200
- tabsTypeENUM2["CUSTOM"] = "custom";
201
- return tabsTypeENUM2;
202
- })(tabsTypeENUM || {});
203
- var sortTypeEnum = /* @__PURE__ */ ((sortTypeEnum2) => {
204
- sortTypeEnum2["ASC"] = "asc";
205
- sortTypeEnum2["DESC"] = "desc";
206
- return sortTypeEnum2;
207
- })(sortTypeEnum || {});
208
- var BindCmpStyleEnum = /* @__PURE__ */ ((BindCmpStyleEnum2) => {
209
- BindCmpStyleEnum2["CMP_TEXT"] = "TEXT";
210
- BindCmpStyleEnum2["CMP_TEXTAREA"] = "TEXTAREA";
211
- BindCmpStyleEnum2["CMP_ELECTRONICSIGNATURE"] = "ELECTRONICSIGNATURE";
212
- BindCmpStyleEnum2["CMP_BOOLEAN"] = "BOOLEAN";
213
- BindCmpStyleEnum2["CMP_SELECT_LIST"] = "SELECT_LIST";
214
- BindCmpStyleEnum2["CMP_RADIO"] = "RADIO";
215
- BindCmpStyleEnum2["CMP_CHECKBOX"] = "CHECKBOX";
216
- BindCmpStyleEnum2["CMP_DROPDOWN_SELECT"] = "dropdownSelection";
217
- BindCmpStyleEnum2["CMP_MODAL"] = "modalBoxSelection";
218
- BindCmpStyleEnum2["CMP_TREE_SELECTION"] = "treeSelection";
219
- BindCmpStyleEnum2["CMP_NUMBER"] = "NUMBER";
220
- BindCmpStyleEnum2["CMP_CURRENCY"] = "CURRENCY";
221
- BindCmpStyleEnum2["CMP_TIME"] = "TIME";
222
- return BindCmpStyleEnum2;
223
- })(BindCmpStyleEnum || {});
224
- const Ch_BindCmpStyleEnum = {
225
- ["TEXT" /* CMP_TEXT */]: "sys.pageDesigner.bindCmpStyle.bindText",
226
- ["TEXTAREA" /* CMP_TEXTAREA */]: "sys.pageDesigner.bindCmpStyle.bindTextarea",
227
- ["ELECTRONICSIGNATURE" /* CMP_ELECTRONICSIGNATURE */]: "sys.pageDesigner.bindCmpStyle.electronicSignature",
228
- ["BOOLEAN" /* CMP_BOOLEAN */]: "sys.pageDesigner.bindCmpStyle.bindBoolean",
229
- ["SELECT_LIST" /* CMP_SELECT_LIST */]: "sys.pageDesigner.bindCmpStyle.bindSelectList",
230
- ["RADIO" /* CMP_RADIO */]: "sys.pageDesigner.bindCmpStyle.bindRadio",
231
- ["CHECKBOX" /* CMP_CHECKBOX */]: "sys.pageDesigner.bindCmpStyle.bindCheckbox",
232
- ["dropdownSelection" /* CMP_DROPDOWN_SELECT */]: "sys.pageDesigner.bindCmpStyle.bindDropdownSelect",
233
- ["modalBoxSelection" /* CMP_MODAL */]: "sys.pageDesigner.bindCmpStyle.bindModal",
234
- ["treeSelection" /* CMP_TREE_SELECTION */]: "sys.pageDesigner.bindCmpStyle.bindTreeSelection",
235
- ["NUMBER" /* CMP_NUMBER */]: "sys.pageDesigner.bindCmpStyle.bindNumber",
236
- ["CURRENCY" /* CMP_CURRENCY */]: "sys.pageDesigner.bindCmpStyle.bindCurrency",
237
- ["TIME" /* CMP_TIME */]: "sys.pageDesigner.bindCmpStyle.bindTime"
1
+ import { FIELD_TYPE } from "../appEnum.mjs";
2
+ //#region src/enums/page-designer/designer.ts
3
+ var SCOPE = /* @__PURE__ */ function(SCOPE) {
4
+ SCOPE["PAGE"] = "page";
5
+ SCOPE["MODAL"] = "modal";
6
+ return SCOPE;
7
+ }({});
8
+ var FormComponents = /* @__PURE__ */ function(FormComponents) {
9
+ FormComponents["RdoInput"] = "rdo-input";
10
+ FormComponents["Input"] = "input";
11
+ FormComponents["ElectronicSignature"] = "electronic-signature";
12
+ FormComponents["UseinfoButton"] = "useinfo-button";
13
+ FormComponents["ModelingButton"] = "modeling-button";
14
+ FormComponents["ImportButton"] = "gc-import-button";
15
+ FormComponents["ExportButton"] = "gc-export-button";
16
+ FormComponents["DocumentPrintButton"] = "document-print-button";
17
+ FormComponents["SubmitButton"] = "submit-button";
18
+ FormComponents["BatchDeleteButton"] = "batchdelete-button";
19
+ FormComponents["CustomButton"] = "custom-button";
20
+ FormComponents["TableLinkButton"] = "table-link-button";
21
+ FormComponents["TableInfoButton"] = "table-info-button";
22
+ FormComponents["TableApproveButton"] = "table-approve-button";
23
+ FormComponents["OpeButton"] = "ope-button";
24
+ FormComponents["ResetButton"] = "reset-button";
25
+ FormComponents["RdoSaveButton"] = "rdo-save-button";
26
+ FormComponents["LabelPrintButton"] = "labelprint-button";
27
+ FormComponents["ProcessButton"] = "process-button";
28
+ FormComponents["ProcessApproveButton"] = "process-approve-button";
29
+ FormComponents["CreateButton"] = "create-button";
30
+ FormComponents["DeleteButton"] = "delete-button";
31
+ FormComponents["CopyButton"] = "copy-button";
32
+ FormComponents["RefreshButton"] = "refresh-button";
33
+ FormComponents["CreateVersionButton"] = "create-version-button";
34
+ FormComponents["CopyVersionButton"] = "copy-version-button";
35
+ FormComponents["Checkbox"] = "checkbox";
36
+ FormComponents["DataTable"] = "data-table";
37
+ FormComponents["DataVTable"] = "data-v-table";
38
+ FormComponents["TreeTable"] = "tree-table";
39
+ FormComponents["DataTableColumn"] = "data-table-column";
40
+ FormComponents["RefDataTable"] = "ref-data-table";
41
+ FormComponents["DataList"] = "data-list";
42
+ FormComponents["RdoDataList"] = "rdo-data-list";
43
+ FormComponents["DataTableOpe"] = "data-table-ope";
44
+ FormComponents["DataTableFormula"] = "data-table-formula";
45
+ FormComponents["Datepicker"] = "datepicker";
46
+ FormComponents["DateTimepicker"] = "datetimepicker";
47
+ FormComponents["Department"] = "department";
48
+ FormComponents["Form"] = "form";
49
+ FormComponents["RdoForm"] = "rdo-form";
50
+ FormComponents["RdoTable"] = "rdo-table";
51
+ FormComponents["MedProRdoForm"] = "medprordo-form";
52
+ FormComponents["MedProRdoTable"] = "medprordo-table";
53
+ FormComponents["FormProcess"] = "form-process";
54
+ FormComponents["Inputmoney"] = "inputmoney";
55
+ FormComponents["Inputnumber"] = "inputnumber";
56
+ FormComponents["InputDouble"] = "inputdouble";
57
+ FormComponents["Radio"] = "radio";
58
+ FormComponents["Select"] = "select";
59
+ FormComponents["RdoSelect"] = "rdo-select";
60
+ FormComponents["Switch"] = "switch";
61
+ FormComponents["Textarea"] = "textarea";
62
+ FormComponents["Timepicker"] = "timepicker";
63
+ FormComponents["Userpicker"] = "userpicker";
64
+ FormComponents["Search"] = "search";
65
+ FormComponents["SelectSearch"] = "select-search";
66
+ FormComponents["QuickSearch"] = "quick-search";
67
+ FormComponents["LayoutContainer"] = "layout-container";
68
+ FormComponents["ButtonContainer"] = "button-container";
69
+ FormComponents["ButtonProcessContainer"] = "button-process-container";
70
+ FormComponents["BottomButtonContainer"] = "bottom-button-container";
71
+ FormComponents["Grid"] = "grid";
72
+ FormComponents["GridCol"] = "grid-col";
73
+ FormComponents["Tabs"] = "tabs";
74
+ FormComponents["TabPane"] = "tab-pane";
75
+ FormComponents["LeftRightColumns"] = "left-right-columns";
76
+ FormComponents["TopBottomColumns"] = "top-bottom-columns";
77
+ FormComponents["LeftLayoutThree"] = "left-layout-three";
78
+ FormComponents["TopLayoutThree"] = "top-layout-three";
79
+ FormComponents["UploadFile"] = "upload-file";
80
+ FormComponents["UploadImage"] = "upload-image";
81
+ FormComponents["SubTable"] = "sub-table";
82
+ FormComponents["SubTableOpe"] = "sub-table-ope";
83
+ FormComponents["SubTableAddBtn"] = "sub-table-add-button";
84
+ FormComponents["SubTableCopyBtn"] = "sub-table-copy-button";
85
+ FormComponents["SubTableEditBtn"] = "sub-table-edit-button";
86
+ FormComponents["SubTableDeleteBtn"] = "sub-table-delete-button";
87
+ FormComponents["LinkPageBtn"] = "link-page-button";
88
+ FormComponents["Collapse"] = "collapse";
89
+ FormComponents["SpaceOccupation"] = "space-occupation";
90
+ FormComponents["Divider"] = "divider";
91
+ FormComponents["CardList"] = "card-list";
92
+ FormComponents["CardHeaderLeft"] = "card-header-left";
93
+ FormComponents["CardHeaderRight"] = "card-header-right";
94
+ FormComponents["CardContent"] = "card-content";
95
+ FormComponents["CardOpeBtn"] = "card-ope-btn";
96
+ FormComponents["BaseButton"] = "base-button";
97
+ FormComponents["ReadonlyCmp"] = "readonlycmp";
98
+ FormComponents["TableSelect"] = "table-select";
99
+ FormComponents["GenCheckbox"] = "gen-checkbox";
100
+ FormComponents["GenRadio"] = "gen-radio";
101
+ FormComponents["GenSwitch"] = "gen-switch";
102
+ FormComponents["WorkflowNodes"] = "workflow-nodes";
103
+ FormComponents["WorkflowNodeModal"] = "workflow-node-modal";
104
+ FormComponents["ESOP"] = "e-sop";
105
+ /** 公式 */
106
+ FormComponents["EXPRESSION"] = "expression";
107
+ /** 公式条件 */
108
+ FormComponents["ExpressionCondition"] = "expression-condition";
109
+ /** 汇总 */
110
+ FormComponents["AGG"] = "agg";
111
+ FormComponents["DynamicFormType"] = "dynamic-form-type";
112
+ FormComponents["DynamicFormValue"] = "dynamic-form-value";
113
+ FormComponents["DynamicFormOpts"] = "dynamic-form-options";
114
+ FormComponents["DynamicFormShowType"] = "dynamic-form-show-type";
115
+ FormComponents["DynamicTable"] = "dynamic-table";
116
+ FormComponents["Transaction"] = "transaction";
117
+ FormComponents["SerialRule"] = "serial-rule";
118
+ FormComponents["LabelTemplate"] = "label-template";
119
+ FormComponents["LabelTemplateRef"] = "label-template-ref";
120
+ FormComponents["DocumentTemplate"] = "document-template";
121
+ FormComponents["Wacom"] = "wacom";
122
+ FormComponents["Text"] = "text";
123
+ FormComponents["CustomField"] = "custom-field";
124
+ FormComponents["Printer"] = "printer";
125
+ FormComponents["Descriptions"] = "descriptions";
126
+ FormComponents["RangeUser"] = "range-user";
127
+ FormComponents["GenImage"] = "gen-image";
128
+ FormComponents["TestButton"] = "test-button";
129
+ FormComponents["Iframe"] = "iframe";
130
+ FormComponents["ExcuteButton"] = "medproexcute-button";
131
+ FormComponents["SubDataTable"] = "sub-data-table";
132
+ FormComponents["Signature"] = "signature";
133
+ FormComponents["OnlineForm"] = "online-form";
134
+ FormComponents["TmplTreeSelect"] = "tmpl-tree-select";
135
+ FormComponents["Boolean"] = "boolean";
136
+ FormComponents["BizProcess"] = "biz-process";
137
+ FormComponents["ApprovalHistory"] = "approval-history";
138
+ FormComponents["FlowDiagram"] = "flow-diagram";
139
+ FormComponents["CustomCode"] = "custom-code";
140
+ FormComponents["ApprovalProcess"] = "approval-process";
141
+ return FormComponents;
142
+ }({});
143
+ var SearchComponents = /* @__PURE__ */ function(SearchComponents) {
144
+ SearchComponents["SearchInput"] = "SearchInput";
145
+ SearchComponents["SearchNumberInput"] = "SearchNumberInput";
146
+ SearchComponents["SearchStringNumberInput"] = "SearchStringNumberInput";
147
+ SearchComponents["SearchSwitch"] = "SearchSwitch";
148
+ SearchComponents["SearchDate"] = "SearchDate";
149
+ SearchComponents["SearchDateTime"] = "SearchDateTime";
150
+ SearchComponents["SearchTime"] = "SearchTime";
151
+ SearchComponents["SearchSelect"] = "SearchSelect";
152
+ SearchComponents["SearchUserSelect"] = "SearchUserSelect";
153
+ SearchComponents["SearchRdoSelect"] = "SearchRdoSelect";
154
+ SearchComponents["SearchTransaction"] = "SearchTransaction";
155
+ SearchComponents["SearchTmplTreeSelect"] = "SearchTmplTreeSelect";
156
+ SearchComponents["SearchPrinter"] = "SearchPrinter";
157
+ SearchComponents["SearchBizProcess"] = "SearchBizProcess";
158
+ SearchComponents["SearchSelectRangUser"] = "SearchSelectRangUser";
159
+ SearchComponents["SearchSelectDepartment"] = "SearchSelectDepartment";
160
+ return SearchComponents;
161
+ }({});
162
+ var tableColumnWidthEnum = /* @__PURE__ */ function(tableColumnWidthEnum) {
163
+ /**适配父容器 */
164
+ tableColumnWidthEnum["AUTO_PARENT_BOX"] = "AutoParentBox";
165
+ /**自适应 展示所有*/
166
+ tableColumnWidthEnum["ATUO"] = "selfAdaption";
167
+ /**固定 */
168
+ tableColumnWidthEnum["ENUMERATION"] = "fixed";
169
+ /**百分比 */
170
+ tableColumnWidthEnum["PERCENTAGE"] = "percentage";
171
+ return tableColumnWidthEnum;
172
+ }({});
173
+ var controlConfigEnum = /* @__PURE__ */ function(controlConfigEnum) {
174
+ controlConfigEnum["NULL"] = "NULL";
175
+ controlConfigEnum["STRING"] = "空字符串";
176
+ controlConfigEnum["ZERO"] = "0";
177
+ return controlConfigEnum;
178
+ }({});
179
+ var statisticalMethodEnum = /* @__PURE__ */ function(statisticalMethodEnum) {
180
+ statisticalMethodEnum["TOTAL"] = "total";
181
+ statisticalMethodEnum["AVERAGE"] = "average";
182
+ return statisticalMethodEnum;
183
+ }({});
184
+ var fixedAlignENUM = /* @__PURE__ */ function(fixedAlignENUM) {
185
+ fixedAlignENUM["RIGHT"] = "right";
186
+ fixedAlignENUM["NONE"] = "";
187
+ fixedAlignENUM["LEFT"] = "left";
188
+ return fixedAlignENUM;
189
+ }({});
190
+ var tableColumnTypeEnum = /* @__PURE__ */ function(tableColumnTypeEnum) {
191
+ tableColumnTypeEnum["COLUMN_TEXT"] = "COLUMN_TEXT";
192
+ tableColumnTypeEnum["COLUMN_NUMBER"] = "COLUMN_NUMBER";
193
+ tableColumnTypeEnum["COLUMNTEXT_DATA"] = "COLUMNTEXT_DATA";
194
+ tableColumnTypeEnum["COLUMNTEXT_REF"] = "COLUMNTEXT_REF";
195
+ tableColumnTypeEnum["COLUMNTEXT_ENUM"] = "COLUMNTEXT_ENUM";
196
+ tableColumnTypeEnum["COLUMNTEXT_ORG"] = "COLUMNTEXT_ORG";
197
+ tableColumnTypeEnum["COLUMNTEXT_USER"] = "COLUMNTEXT_USER";
198
+ tableColumnTypeEnum["COLUMNTEXT_BOOLEAN"] = "COLUMNTEXT_BOOLEAN";
199
+ tableColumnTypeEnum["COLUMNTEXT_IMAGE"] = "COLUMNTEXT_IMAGE";
200
+ return tableColumnTypeEnum;
201
+ }({});
202
+ var tabsTypeENUM = /* @__PURE__ */ function(tabsTypeENUM) {
203
+ tabsTypeENUM["LINE"] = "line";
204
+ tabsTypeENUM["CARD"] = "card";
205
+ tabsTypeENUM["TEXt"] = "text";
206
+ tabsTypeENUM["CAPSULE"] = "capsule";
207
+ tabsTypeENUM["CUSTOM"] = "custom";
208
+ return tabsTypeENUM;
209
+ }({});
210
+ var sortTypeEnum = /* @__PURE__ */ function(sortTypeEnum) {
211
+ sortTypeEnum["ASC"] = "asc";
212
+ sortTypeEnum["DESC"] = "desc";
213
+ return sortTypeEnum;
214
+ }({});
215
+ /** 组件类型下拉框枚举 */
216
+ var BindCmpStyleEnum = /* @__PURE__ */ function(BindCmpStyleEnum) {
217
+ /** 单行文本 */
218
+ BindCmpStyleEnum["CMP_TEXT"] = "TEXT";
219
+ /** 多行文本 */
220
+ BindCmpStyleEnum["CMP_TEXTAREA"] = "TEXTAREA";
221
+ /** 电子签名 */
222
+ BindCmpStyleEnum["CMP_ELECTRONICSIGNATURE"] = "ELECTRONICSIGNATURE";
223
+ /** 开关 */
224
+ BindCmpStyleEnum["CMP_BOOLEAN"] = "BOOLEAN";
225
+ /** 下拉列表 */
226
+ BindCmpStyleEnum["CMP_SELECT_LIST"] = "SELECT_LIST";
227
+ /** 单选框 */
228
+ BindCmpStyleEnum["CMP_RADIO"] = "RADIO";
229
+ /** 多选框 */
230
+ BindCmpStyleEnum["CMP_CHECKBOX"] = "CHECKBOX";
231
+ /** 下拉选择 */
232
+ BindCmpStyleEnum["CMP_DROPDOWN_SELECT"] = "dropdownSelection";
233
+ /** 模态框 */
234
+ BindCmpStyleEnum["CMP_MODAL"] = "modalBoxSelection";
235
+ /** 树形选择 */
236
+ BindCmpStyleEnum["CMP_TREE_SELECTION"] = "treeSelection";
237
+ /** 数值 */
238
+ BindCmpStyleEnum["CMP_NUMBER"] = "NUMBER";
239
+ /** 显示币种 */
240
+ BindCmpStyleEnum["CMP_CURRENCY"] = "CURRENCY";
241
+ /** 显示时间 */
242
+ BindCmpStyleEnum["CMP_TIME"] = "TIME";
243
+ return BindCmpStyleEnum;
244
+ }({});
245
+ /** 组件类型下拉框国际化枚举 */
246
+ var Ch_BindCmpStyleEnum = {
247
+ [BindCmpStyleEnum.CMP_TEXT]: "sys.pageDesigner.bindCmpStyle.bindText",
248
+ [BindCmpStyleEnum.CMP_TEXTAREA]: "sys.pageDesigner.bindCmpStyle.bindTextarea",
249
+ [BindCmpStyleEnum.CMP_ELECTRONICSIGNATURE]: "sys.pageDesigner.bindCmpStyle.electronicSignature",
250
+ [BindCmpStyleEnum.CMP_BOOLEAN]: "sys.pageDesigner.bindCmpStyle.bindBoolean",
251
+ [BindCmpStyleEnum.CMP_SELECT_LIST]: "sys.pageDesigner.bindCmpStyle.bindSelectList",
252
+ [BindCmpStyleEnum.CMP_RADIO]: "sys.pageDesigner.bindCmpStyle.bindRadio",
253
+ [BindCmpStyleEnum.CMP_CHECKBOX]: "sys.pageDesigner.bindCmpStyle.bindCheckbox",
254
+ [BindCmpStyleEnum.CMP_DROPDOWN_SELECT]: "sys.pageDesigner.bindCmpStyle.bindDropdownSelect",
255
+ [BindCmpStyleEnum.CMP_MODAL]: "sys.pageDesigner.bindCmpStyle.bindModal",
256
+ [BindCmpStyleEnum.CMP_TREE_SELECTION]: "sys.pageDesigner.bindCmpStyle.bindTreeSelection",
257
+ [BindCmpStyleEnum.CMP_NUMBER]: "sys.pageDesigner.bindCmpStyle.bindNumber",
258
+ [BindCmpStyleEnum.CMP_CURRENCY]: "sys.pageDesigner.bindCmpStyle.bindCurrency",
259
+ [BindCmpStyleEnum.CMP_TIME]: "sys.pageDesigner.bindCmpStyle.bindTime"
238
260
  };
239
- var BindCmpStyleTypeEnum = /* @__PURE__ */ ((BindCmpStyleTypeEnum2) => {
240
- BindCmpStyleTypeEnum2["BindText"] = "bindText";
241
- BindCmpStyleTypeEnum2["BindLongText"] = "BindLongText";
242
- BindCmpStyleTypeEnum2["BindBool"] = "bindBool";
243
- BindCmpStyleTypeEnum2["BindPerson"] = "bindPerson";
244
- BindCmpStyleTypeEnum2["BindDept"] = "bindDept";
245
- BindCmpStyleTypeEnum2["BindLink"] = "bindLink";
246
- BindCmpStyleTypeEnum2["BindMulti"] = "bindMulti";
247
- BindCmpStyleTypeEnum2["BindNum"] = "bindNum";
248
- BindCmpStyleTypeEnum2["BindDecimal"] = "bindDecimal";
249
- return BindCmpStyleTypeEnum2;
250
- })(BindCmpStyleTypeEnum || {});
251
- const transformBindCmp2CmpType = {
252
- ["TEXT" /* CMP_TEXT */]: "input" /* Input */,
253
- ["TEXTAREA" /* CMP_TEXTAREA */]: "textarea" /* Textarea */,
254
- ["ELECTRONICSIGNATURE" /* CMP_ELECTRONICSIGNATURE */]: "electronic-signature" /* ElectronicSignature */,
255
- ["SELECT_LIST" /* CMP_SELECT_LIST */]: "select" /* Select */,
256
- ["RADIO" /* CMP_RADIO */]: "radio" /* Radio */,
257
- ["CHECKBOX" /* CMP_CHECKBOX */]: "checkbox" /* Checkbox */
261
+ /** 组件类型下拉框类型 */
262
+ var BindCmpStyleTypeEnum = /* @__PURE__ */ function(BindCmpStyleTypeEnum) {
263
+ BindCmpStyleTypeEnum["BindText"] = "bindText";
264
+ BindCmpStyleTypeEnum["BindLongText"] = "BindLongText";
265
+ BindCmpStyleTypeEnum["BindBool"] = "bindBool";
266
+ BindCmpStyleTypeEnum["BindPerson"] = "bindPerson";
267
+ BindCmpStyleTypeEnum["BindDept"] = "bindDept";
268
+ BindCmpStyleTypeEnum["BindLink"] = "bindLink";
269
+ BindCmpStyleTypeEnum["BindMulti"] = "bindMulti";
270
+ BindCmpStyleTypeEnum["BindNum"] = "bindNum";
271
+ BindCmpStyleTypeEnum["BindDecimal"] = "bindDecimal";
272
+ return BindCmpStyleTypeEnum;
273
+ }({});
274
+ /** 组件类型下拉框类型对应组件类型 */
275
+ var transformBindCmp2CmpType = {
276
+ [BindCmpStyleEnum.CMP_TEXT]: FormComponents.Input,
277
+ [BindCmpStyleEnum.CMP_TEXTAREA]: FormComponents.Textarea,
278
+ [BindCmpStyleEnum.CMP_ELECTRONICSIGNATURE]: FormComponents.ElectronicSignature,
279
+ [BindCmpStyleEnum.CMP_SELECT_LIST]: FormComponents.Select,
280
+ [BindCmpStyleEnum.CMP_RADIO]: FormComponents.Radio,
281
+ [BindCmpStyleEnum.CMP_CHECKBOX]: FormComponents.Checkbox
258
282
  };
259
- const bindCmpStyleMap = {
260
- ["bindText" /* BindText */]: [
261
- "TEXT" /* CMP_TEXT */,
262
- "TEXTAREA" /* CMP_TEXTAREA */
263
- ],
264
- ["BindLongText" /* BindLongText */]: [
265
- "TEXT" /* CMP_TEXT */,
266
- "TEXTAREA" /* CMP_TEXTAREA */,
267
- "ELECTRONICSIGNATURE" /* CMP_ELECTRONICSIGNATURE */
268
- ],
269
- ["bindBool" /* BindBool */]: [
270
- "BOOLEAN" /* CMP_BOOLEAN */,
271
- "SELECT_LIST" /* CMP_SELECT_LIST */,
272
- "RADIO" /* CMP_RADIO */,
273
- "CHECKBOX" /* CMP_CHECKBOX */
274
- ],
275
- ["bindPerson" /* BindPerson */]: [
276
- "dropdownSelection" /* CMP_DROPDOWN_SELECT */,
277
- "modalBoxSelection" /* CMP_MODAL */
278
- ],
279
- ["bindDept" /* BindDept */]: [
280
- "treeSelection" /* CMP_TREE_SELECTION */,
281
- "modalBoxSelection" /* CMP_MODAL */
282
- ],
283
- ["bindLink" /* BindLink */]: [
284
- "SELECT_LIST" /* CMP_SELECT_LIST */,
285
- "RADIO" /* CMP_RADIO */
286
- ],
287
- ["bindMulti" /* BindMulti */]: [
288
- "SELECT_LIST" /* CMP_SELECT_LIST */,
289
- "CHECKBOX" /* CMP_CHECKBOX */
290
- ],
291
- ["bindNum" /* BindNum */]: [
292
- "NUMBER" /* CMP_NUMBER */,
293
- "CURRENCY" /* CMP_CURRENCY */,
294
- "TIME" /* CMP_TIME */
295
- ],
296
- ["bindDecimal" /* BindDecimal */]: [
297
- "NUMBER" /* CMP_NUMBER */,
298
- "CURRENCY" /* CMP_CURRENCY */
299
- ]
283
+ /** 组件类型下拉框集合 */
284
+ var bindCmpStyleMap = {
285
+ [BindCmpStyleTypeEnum.BindText]: [BindCmpStyleEnum.CMP_TEXT, BindCmpStyleEnum.CMP_TEXTAREA],
286
+ [BindCmpStyleTypeEnum.BindLongText]: [
287
+ BindCmpStyleEnum.CMP_TEXT,
288
+ BindCmpStyleEnum.CMP_TEXTAREA,
289
+ BindCmpStyleEnum.CMP_ELECTRONICSIGNATURE
290
+ ],
291
+ [BindCmpStyleTypeEnum.BindBool]: [
292
+ BindCmpStyleEnum.CMP_BOOLEAN,
293
+ BindCmpStyleEnum.CMP_SELECT_LIST,
294
+ BindCmpStyleEnum.CMP_RADIO,
295
+ BindCmpStyleEnum.CMP_CHECKBOX
296
+ ],
297
+ [BindCmpStyleTypeEnum.BindPerson]: [BindCmpStyleEnum.CMP_DROPDOWN_SELECT, BindCmpStyleEnum.CMP_MODAL],
298
+ [BindCmpStyleTypeEnum.BindDept]: [BindCmpStyleEnum.CMP_TREE_SELECTION, BindCmpStyleEnum.CMP_MODAL],
299
+ [BindCmpStyleTypeEnum.BindLink]: [BindCmpStyleEnum.CMP_SELECT_LIST, BindCmpStyleEnum.CMP_RADIO],
300
+ [BindCmpStyleTypeEnum.BindMulti]: [BindCmpStyleEnum.CMP_SELECT_LIST, BindCmpStyleEnum.CMP_CHECKBOX],
301
+ [BindCmpStyleTypeEnum.BindNum]: [
302
+ BindCmpStyleEnum.CMP_NUMBER,
303
+ BindCmpStyleEnum.CMP_CURRENCY,
304
+ BindCmpStyleEnum.CMP_TIME
305
+ ],
306
+ [BindCmpStyleTypeEnum.BindDecimal]: [BindCmpStyleEnum.CMP_NUMBER, BindCmpStyleEnum.CMP_CURRENCY]
300
307
  };
301
- var buttonShowType = /* @__PURE__ */ ((buttonShowType2) => {
302
- buttonShowType2["FOLD_ALL"] = "foldAll";
303
- buttonShowType2["FOLD_PART"] = "foldPart";
304
- return buttonShowType2;
305
- })(buttonShowType || {});
306
- const searchListByFieldType = [
307
- FIELD_TYPE.BOOLEAN,
308
- FIELD_TYPE.DATE,
309
- FIELD_TYPE.DATE_TIME,
310
- FIELD_TYPE.DECIMAL,
311
- FIELD_TYPE.DOUBLE,
312
- FIELD_TYPE.ENUM,
313
- FIELD_TYPE.ENUM_MULTI,
314
- FIELD_TYPE.INTEGER,
315
- FIELD_TYPE.LONG,
316
- FIELD_TYPE.LONG_TEXT,
317
- FIELD_TYPE.TEXT,
318
- FIELD_TYPE.USER_MULTI,
319
- FIELD_TYPE.USER,
320
- FIELD_TYPE.TIME,
321
- FIELD_TYPE.REF_MULTI,
322
- FIELD_TYPE.REF,
323
- FIELD_TYPE.RDO_REF,
324
- FIELD_TYPE.ORG_MULTI,
325
- FIELD_TYPE.ORG,
326
- // FIELD_TYPE.MASTERSLAVE,
327
- // FIELD_TYPE.AGG,
328
- // FIELD_TYPE.EXPRESSION,
329
- FIELD_TYPE.SERIAL,
330
- FIELD_TYPE.ONLINE_FORM_TEMPLATE,
331
- FIELD_TYPE.E_DHR_TEMPLATE,
332
- FIELD_TYPE.PRINTER,
333
- FIELD_TYPE.LABEL_TEMPLATE_REF,
334
- FIELD_TYPE.Biz_Process,
335
- FIELD_TYPE.DOCUMENT_TEMPLATE,
336
- FIELD_TYPE.TRANSACTION,
337
- FIELD_TYPE.RANGE_USER,
338
- FIELD_TYPE.MESSAGE_TMPL
308
+ var buttonShowType = /* @__PURE__ */ function(buttonShowType) {
309
+ buttonShowType["FOLD_ALL"] = "foldAll";
310
+ buttonShowType["FOLD_PART"] = "foldPart";
311
+ return buttonShowType;
312
+ }({});
313
+ /** 支持查询的字段类型 */
314
+ var searchListByFieldType = [
315
+ FIELD_TYPE.BOOLEAN,
316
+ FIELD_TYPE.DATE,
317
+ FIELD_TYPE.DATE_TIME,
318
+ FIELD_TYPE.DECIMAL,
319
+ FIELD_TYPE.DOUBLE,
320
+ FIELD_TYPE.ENUM,
321
+ FIELD_TYPE.ENUM_MULTI,
322
+ FIELD_TYPE.INTEGER,
323
+ FIELD_TYPE.LONG,
324
+ FIELD_TYPE.LONG_TEXT,
325
+ FIELD_TYPE.TEXT,
326
+ FIELD_TYPE.USER_MULTI,
327
+ FIELD_TYPE.USER,
328
+ FIELD_TYPE.TIME,
329
+ FIELD_TYPE.REF_MULTI,
330
+ FIELD_TYPE.REF,
331
+ FIELD_TYPE.RDO_REF,
332
+ FIELD_TYPE.ORG_MULTI,
333
+ FIELD_TYPE.ORG,
334
+ FIELD_TYPE.SERIAL,
335
+ FIELD_TYPE.ONLINE_FORM_TEMPLATE,
336
+ FIELD_TYPE.E_DHR_TEMPLATE,
337
+ FIELD_TYPE.PRINTER,
338
+ FIELD_TYPE.LABEL_TEMPLATE_REF,
339
+ FIELD_TYPE.Biz_Process,
340
+ FIELD_TYPE.DOCUMENT_TEMPLATE,
341
+ FIELD_TYPE.TRANSACTION,
342
+ FIELD_TYPE.RANGE_USER,
343
+ FIELD_TYPE.MESSAGE_TMPL
339
344
  ];
340
- const mobileSearchListByFieldType = [
341
- FIELD_TYPE.BOOLEAN,
342
- FIELD_TYPE.DATE,
343
- FIELD_TYPE.DATE_TIME,
344
- FIELD_TYPE.DECIMAL,
345
- FIELD_TYPE.DOUBLE,
346
- FIELD_TYPE.ENUM,
347
- FIELD_TYPE.ENUM_MULTI,
348
- FIELD_TYPE.INTEGER,
349
- FIELD_TYPE.LONG,
350
- FIELD_TYPE.LONG_TEXT,
351
- FIELD_TYPE.TEXT,
352
- FIELD_TYPE.USER_MULTI,
353
- FIELD_TYPE.USER,
354
- FIELD_TYPE.TIME,
355
- FIELD_TYPE.REF_MULTI,
356
- FIELD_TYPE.REF,
357
- FIELD_TYPE.RDO_REF,
358
- FIELD_TYPE.ORG_MULTI,
359
- FIELD_TYPE.ORG,
360
- // FIELD_TYPE.MASTERSLAVE,
361
- // FIELD_TYPE.AGG,
362
- // FIELD_TYPE.EXPRESSION,
363
- FIELD_TYPE.SERIAL,
364
- FIELD_TYPE.ONLINE_FORM_TEMPLATE,
365
- FIELD_TYPE.E_DHR_TEMPLATE,
366
- FIELD_TYPE.PRINTER,
367
- FIELD_TYPE.LABEL_TEMPLATE_REF,
368
- FIELD_TYPE.Biz_Process,
369
- FIELD_TYPE.DOCUMENT_TEMPLATE,
370
- FIELD_TYPE.TRANSACTION,
371
- // FIELD_TYPE.RANGE_USER,
372
- FIELD_TYPE.MESSAGE_TMPL
345
+ /** mobile 支持查询的字段类型 */
346
+ var mobileSearchListByFieldType = [
347
+ FIELD_TYPE.BOOLEAN,
348
+ FIELD_TYPE.DATE,
349
+ FIELD_TYPE.DATE_TIME,
350
+ FIELD_TYPE.DECIMAL,
351
+ FIELD_TYPE.DOUBLE,
352
+ FIELD_TYPE.ENUM,
353
+ FIELD_TYPE.ENUM_MULTI,
354
+ FIELD_TYPE.INTEGER,
355
+ FIELD_TYPE.LONG,
356
+ FIELD_TYPE.LONG_TEXT,
357
+ FIELD_TYPE.TEXT,
358
+ FIELD_TYPE.USER_MULTI,
359
+ FIELD_TYPE.USER,
360
+ FIELD_TYPE.TIME,
361
+ FIELD_TYPE.REF_MULTI,
362
+ FIELD_TYPE.REF,
363
+ FIELD_TYPE.RDO_REF,
364
+ FIELD_TYPE.ORG_MULTI,
365
+ FIELD_TYPE.ORG,
366
+ FIELD_TYPE.SERIAL,
367
+ FIELD_TYPE.ONLINE_FORM_TEMPLATE,
368
+ FIELD_TYPE.E_DHR_TEMPLATE,
369
+ FIELD_TYPE.PRINTER,
370
+ FIELD_TYPE.LABEL_TEMPLATE_REF,
371
+ FIELD_TYPE.Biz_Process,
372
+ FIELD_TYPE.DOCUMENT_TEMPLATE,
373
+ FIELD_TYPE.TRANSACTION,
374
+ FIELD_TYPE.MESSAGE_TMPL
373
375
  ];
374
- const padSearchListByFieldType = [
375
- FIELD_TYPE.BOOLEAN,
376
- FIELD_TYPE.DATE,
377
- FIELD_TYPE.DATE_TIME,
378
- FIELD_TYPE.DECIMAL,
379
- FIELD_TYPE.DOUBLE,
380
- FIELD_TYPE.ENUM,
381
- FIELD_TYPE.ENUM_MULTI,
382
- FIELD_TYPE.INTEGER,
383
- FIELD_TYPE.LONG,
384
- FIELD_TYPE.LONG_TEXT,
385
- FIELD_TYPE.TEXT,
386
- FIELD_TYPE.USER_MULTI,
387
- FIELD_TYPE.USER,
388
- FIELD_TYPE.TIME,
389
- FIELD_TYPE.REF_MULTI,
390
- FIELD_TYPE.REF,
391
- FIELD_TYPE.RDO_REF,
392
- FIELD_TYPE.ORG_MULTI,
393
- FIELD_TYPE.ORG,
394
- // FIELD_TYPE.MASTERSLAVE,
395
- // FIELD_TYPE.AGG,
396
- // FIELD_TYPE.EXPRESSION,
397
- FIELD_TYPE.SERIAL,
398
- // FIELD_TYPE.ONLINE_FORM_TEMPLATE,
399
- // FIELD_TYPE.E_DHR_TEMPLATE,
400
- FIELD_TYPE.PRINTER,
401
- FIELD_TYPE.LABEL_TEMPLATE_REF,
402
- // FIELD_TYPE.Biz_Process,
403
- // FIELD_TYPE.DOCUMENT_TEMPLATE,
404
- FIELD_TYPE.TRANSACTION
405
- // FIELD_TYPE.RANGE_USER,
406
- // FIELD_TYPE.MESSAGE_TMPL,
376
+ /** 支持查询的字段类型 */
377
+ var padSearchListByFieldType = [
378
+ FIELD_TYPE.BOOLEAN,
379
+ FIELD_TYPE.DATE,
380
+ FIELD_TYPE.DATE_TIME,
381
+ FIELD_TYPE.DECIMAL,
382
+ FIELD_TYPE.DOUBLE,
383
+ FIELD_TYPE.ENUM,
384
+ FIELD_TYPE.ENUM_MULTI,
385
+ FIELD_TYPE.INTEGER,
386
+ FIELD_TYPE.LONG,
387
+ FIELD_TYPE.LONG_TEXT,
388
+ FIELD_TYPE.TEXT,
389
+ FIELD_TYPE.USER_MULTI,
390
+ FIELD_TYPE.USER,
391
+ FIELD_TYPE.TIME,
392
+ FIELD_TYPE.REF_MULTI,
393
+ FIELD_TYPE.REF,
394
+ FIELD_TYPE.RDO_REF,
395
+ FIELD_TYPE.ORG_MULTI,
396
+ FIELD_TYPE.ORG,
397
+ FIELD_TYPE.SERIAL,
398
+ FIELD_TYPE.PRINTER,
399
+ FIELD_TYPE.LABEL_TEMPLATE_REF,
400
+ FIELD_TYPE.TRANSACTION
407
401
  ];
408
- var SCOPEINFO = /* @__PURE__ */ ((SCOPEINFO2) => {
409
- SCOPEINFO2["FIELD_LIST"] = "fieldList";
410
- SCOPEINFO2["FIELD_FORM"] = "fieldForm";
411
- return SCOPEINFO2;
412
- })(SCOPEINFO || {});
413
-
402
+ var SCOPEINFO = /* @__PURE__ */ function(SCOPEINFO) {
403
+ /**字段列表 */
404
+ SCOPEINFO["FIELD_LIST"] = "fieldList";
405
+ /**字段表单*/
406
+ SCOPEINFO["FIELD_FORM"] = "fieldForm";
407
+ return SCOPEINFO;
408
+ }({});
409
+ //#endregion
414
410
  export { BindCmpStyleEnum, BindCmpStyleTypeEnum, Ch_BindCmpStyleEnum, FormComponents, SCOPE, SCOPEINFO, SearchComponents, bindCmpStyleMap, buttonShowType, controlConfigEnum, fixedAlignENUM, mobileSearchListByFieldType, padSearchListByFieldType, searchListByFieldType, sortTypeEnum, statisticalMethodEnum, tableColumnTypeEnum, tableColumnWidthEnum, tabsTypeENUM, transformBindCmp2CmpType };