@gct-paas/core 0.1.4-dev.7 → 0.1.4-dev.9

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 (276) hide show
  1. package/dist/index.esm.min.mjs +6520 -18715
  2. package/dist/index.min.cjs +386 -2
  3. package/dist/index.system.min.js +386 -2
  4. package/es/constants/core.mjs +0 -1
  5. package/es/constants/editor-register/editor-register.mjs +0 -1
  6. package/es/constants/editor-type/editor-type.d.ts +65 -1
  7. package/es/constants/editor-type/editor-type.mjs +14 -1
  8. package/es/constants/expression-type/BuiltOperators.d.ts +20 -0
  9. package/es/constants/expression-type/BuiltOperators.mjs +148 -0
  10. package/es/constants/expression-type/FunctionKeys.d.ts +1 -0
  11. package/es/constants/expression-type/FunctionKeys.mjs +81 -0
  12. package/es/constants/expression-type/editor.d.ts +8 -0
  13. package/es/constants/expression-type/editor.mjs +4 -0
  14. package/es/constants/expression-type/function.d.ts +7 -0
  15. package/es/constants/expression-type/function.mjs +875 -0
  16. package/es/constants/expression-type/index.d.ts +42 -0
  17. package/es/constants/expression-type/index.mjs +120 -0
  18. package/es/constants/expression-type/modeCfg.d.ts +30 -0
  19. package/es/constants/expression-type/modeCfg.mjs +268 -0
  20. package/es/constants/expression-type/variable.d.ts +12 -0
  21. package/es/constants/expression-type/variable.mjs +42 -0
  22. package/es/constants/form-container-type/form-container-type.mjs +0 -1
  23. package/es/constants/index.d.ts +5 -0
  24. package/es/constants/index.mjs +6 -6
  25. package/es/controller/edit-form/edit-form.controller.mjs +0 -1
  26. package/es/controller/editor/color-editor.controller.mjs +0 -1
  27. package/es/controller/editor/length-unit-editor.controller.mjs +0 -1
  28. package/es/controller/editor-item/editor-item.controller.mjs +0 -1
  29. package/es/controller/form/form.controller.mjs +5 -4
  30. package/es/controller/form-collapse/form-collapse.controller.mjs +4 -3
  31. package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +4 -3
  32. package/es/controller/form-edit-item/form-edit-item.controller.d.ts +1 -0
  33. package/es/controller/form-edit-item/form-edit-item.controller.mjs +6 -2
  34. package/es/controller/form-group/form-group.controller.mjs +4 -3
  35. package/es/controller/form-item/form-item.controller.d.ts +1 -0
  36. package/es/controller/form-item/form-item.controller.mjs +7 -3
  37. package/es/controller/form-item-basic/form-item-basic.controller.mjs +3 -2
  38. package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +0 -1
  39. package/es/controller/form-tab/form-tab.controller.mjs +4 -3
  40. package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +4 -3
  41. package/es/controller/gct-form/gct-form.controller.mjs +5 -4
  42. package/es/create-app-vue.mjs +3 -9
  43. package/es/enums/app-designer/index.d.ts +13 -1
  44. package/es/enums/app-designer/index.mjs +8 -2
  45. package/es/enums/appEnum.d.ts +22 -66
  46. package/es/enums/appEnum.mjs +24 -15
  47. package/es/enums/appStateEnum.mjs +0 -1
  48. package/es/enums/authActionEnum.mjs +0 -1
  49. package/es/enums/breakpointEnum.mjs +0 -1
  50. package/es/enums/cacheEnum.mjs +0 -1
  51. package/es/enums/designEnum.d.ts +2 -2
  52. package/es/enums/designEnum.mjs +31 -32
  53. package/es/enums/developer-center/index.d.ts +1 -0
  54. package/es/enums/developer-center/integration.d.ts +4 -0
  55. package/es/enums/developer-center/integration.mjs +7 -0
  56. package/es/enums/exceptionEnum.mjs +0 -1
  57. package/es/enums/expressionEnum.d.ts +130 -0
  58. package/es/enums/expressionEnum.mjs +75 -0
  59. package/es/enums/globalEnum.d.ts +38 -0
  60. package/es/enums/globalEnum.mjs +25 -0
  61. package/es/enums/httpEnum.mjs +0 -1
  62. package/es/enums/index.d.ts +19 -0
  63. package/es/enums/index.mjs +13 -16
  64. package/es/enums/menuEnum.mjs +0 -1
  65. package/es/enums/page-designer/designer.d.ts +23 -3
  66. package/es/enums/page-designer/designer.mjs +90 -6
  67. package/es/enums/page-designer/panel.d.ts +78 -7
  68. package/es/enums/page-designer/panel.mjs +22 -4
  69. package/es/enums/page-designer/toolkit.mjs +0 -1
  70. package/es/enums/page-designer/widget.d.ts +2 -1
  71. package/es/enums/page-designer/widget.mjs +3 -3
  72. package/es/enums/pageEnum.mjs +0 -1
  73. package/es/enums/plugin-enum.mjs +0 -1
  74. package/es/enums/processEnum.d.ts +54 -0
  75. package/es/enums/processEnum.mjs +36 -2
  76. package/es/enums/roleEnum.mjs +0 -1
  77. package/es/enums/sizeEnum.mjs +0 -1
  78. package/es/global/gct/gct.d.ts +11 -28
  79. package/es/global/gct/gct.mjs +29 -32
  80. package/es/hooks/index.d.ts +2 -1
  81. package/es/hooks/use-app-inst/use-app-inst.d.ts +8 -0
  82. package/es/hooks/use-app-inst/use-app-inst.mjs +8 -0
  83. package/es/hooks/use-form/use-form.mjs +0 -1
  84. package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +1 -1
  85. package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +0 -4
  86. package/es/hooks/use-modal/use-modal.mjs +0 -1
  87. package/es/hooks/use-overlay-scrollbars/use-overlay-scrollbars.d.ts +11 -0
  88. package/es/hooks/use-sub-app-utils/use-sub-app-utils.d.ts +31 -0
  89. package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +30 -0
  90. package/es/hooks/useCopyToClipboard.mjs +0 -1
  91. package/es/index.d.ts +6 -8
  92. package/es/index.mjs +98 -64
  93. package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +5 -0
  94. package/es/interface/controller/index.d.ts +0 -1
  95. package/es/interface/form/i-editor/i-editor-basic.d.ts +2 -2
  96. package/es/interface/form/i-editor/i-model-field-select-editor.d.ts +18 -0
  97. package/es/interface/form/i-form/i-form-collapse-pane.d.ts +4 -0
  98. package/es/interface/form/i-form/i-form-item-basic.d.ts +1 -1
  99. package/es/interface/form/i-form/i-form-tab-pane.d.ts +4 -0
  100. package/es/interface/form/index.d.ts +1 -0
  101. package/es/interface/i-app-context/i-app-context.d.ts +34 -0
  102. package/es/interface/i-field-code-chain/i-field-code-chain.d.ts +17 -0
  103. package/es/interface/i-global-var/i-global-var.d.ts +15 -0
  104. package/es/interface/i-mobile-home-menu-item/i-mobile-home-menu-item.d.ts +94 -0
  105. package/es/interface/i-pinia-action/i-global-actions.d.ts +8 -20
  106. package/es/interface/i-pinia-getter/i-global-getters.d.ts +1 -1
  107. package/es/interface/i-pinia-state/i-global-state.d.ts +7 -14
  108. package/es/interface/index.d.ts +5 -5
  109. package/es/interface/open-util/i-message-util/i-message-util.d.ts +54 -0
  110. package/es/interface/{i-modal → open-util/i-modal}/i-modal.d.ts +9 -10
  111. package/es/interface/{i-modal-data → open-util/i-modal-data}/i-modal-data.d.ts +6 -0
  112. package/es/interface/open-util/i-modal-options/i-modal-options.d.ts +12 -0
  113. package/es/interface/open-util/i-open-window-options/i-open-window-options.d.ts +59 -0
  114. package/es/interface/open-util/i-overlay-container/i-overlay-container.d.ts +36 -0
  115. package/es/interface/open-util/i-overlay-controller/i-overlay-controller.d.ts +36 -0
  116. package/es/interface/open-util/index.d.ts +7 -0
  117. package/es/interface/state/index.d.ts +0 -1
  118. package/es/locale/index.mjs +2 -2
  119. package/es/modules/env-manager/env-manager.const.mjs +0 -1
  120. package/es/modules/env-manager/env-manager.interface.mjs +0 -1
  121. package/es/modules/env-manager/env-manager.mjs +7 -8
  122. package/es/modules/error-handler/error-handler.const.mjs +1 -30
  123. package/es/modules/error-handler/error-strategy.mjs +0 -1
  124. package/es/modules/error-handler/index.mjs +0 -1
  125. package/es/modules/platform-config/constants/index.d.ts +7 -0
  126. package/es/modules/platform-config/constants/login.const.d.ts +15 -0
  127. package/es/modules/platform-config/constants/login.const.mjs +50 -0
  128. package/es/modules/platform-config/constants/org.const.d.ts +9 -0
  129. package/es/modules/platform-config/constants/org.const.mjs +54 -0
  130. package/es/modules/platform-config/constants/theme.const.d.ts +9 -0
  131. package/es/modules/platform-config/constants/theme.const.mjs +5 -0
  132. package/es/modules/platform-config/constants/watermark.const.d.ts +16 -0
  133. package/es/modules/platform-config/constants/watermark.const.mjs +14 -0
  134. package/es/modules/platform-config/enums/deploy.enum.d.ts +10 -0
  135. package/es/modules/platform-config/enums/deploy.enum.mjs +7 -0
  136. package/es/modules/platform-config/enums/index.d.ts +6 -0
  137. package/es/modules/platform-config/{constants.d.ts → enums/login.enum.d.ts} +3 -7
  138. package/es/modules/platform-config/enums/login.enum.mjs +16 -0
  139. package/es/modules/platform-config/enums/platform.enum.d.ts +27 -0
  140. package/es/modules/platform-config/enums/platform.enum.mjs +26 -0
  141. package/es/modules/platform-config/index.d.ts +6 -17
  142. package/es/modules/platform-config/interfaces/global-setting.interface.d.ts +7 -0
  143. package/es/modules/platform-config/interfaces/index.d.ts +7 -0
  144. package/es/modules/platform-config/interfaces/login-config.interface.d.ts +17 -0
  145. package/es/modules/platform-config/interfaces/platform-map.interface.d.ts +8 -0
  146. package/es/modules/platform-config/interfaces/theme-setting.interface.d.ts +30 -0
  147. package/es/modules/platform-config/store.d.ts +221 -0
  148. package/es/modules/platform-config/store.mjs +78 -0
  149. package/es/modules/platform-config/useBasicSetting.d.ts +6 -2
  150. package/es/modules/platform-config/useBasicSetting.mjs +39 -0
  151. package/es/modules/platform-config/useDeploySetting.d.ts +9 -4
  152. package/es/modules/platform-config/useDeploySetting.mjs +27 -0
  153. package/es/modules/platform-config/useLoginSetting.d.ts +4 -14
  154. package/es/modules/platform-config/useLoginSetting.mjs +177 -0
  155. package/es/modules/platform-config/useOrgSetting.d.ts +5 -1
  156. package/es/modules/platform-config/useOrgSetting.mjs +66 -0
  157. package/es/modules/platform-config/useProjectSetting.d.ts +12 -0
  158. package/es/modules/platform-config/useProjectSetting.mjs +11 -0
  159. package/es/modules/platform-config/useSecuritySetting.d.ts +5 -1
  160. package/es/modules/platform-config/useSecuritySetting.mjs +60 -0
  161. package/es/modules/platform-config/useThemeSetting.d.ts +6 -3
  162. package/es/modules/platform-config/useThemeSetting.mjs +64 -0
  163. package/es/modules/platform-config/useWatermarkSetting.d.ts +4 -1
  164. package/es/modules/platform-config/useWatermarkSetting.mjs +26 -0
  165. package/es/modules/user-stores/index.d.ts +3 -0
  166. package/es/modules/user-stores/store/permission.store.d.ts +21 -0
  167. package/es/modules/user-stores/store/permission.store.mjs +38 -0
  168. package/es/modules/user-stores/store/tenant.store.d.ts +9 -0
  169. package/es/modules/user-stores/store/tenant.store.mjs +24 -0
  170. package/es/modules/user-stores/store/user.store.d.ts +154 -0
  171. package/es/modules/user-stores/store/user.store.mjs +107 -0
  172. package/es/modules/user-stores/types/permission.d.ts +1 -0
  173. package/es/modules/user-stores/types/tenant.d.ts +1 -0
  174. package/es/modules/user-stores/types/user.d.ts +14 -0
  175. package/es/register/editor-register/editor-register.d.ts +5 -13
  176. package/es/register/editor-register/editor-register.mjs +8 -17
  177. package/es/register/form-item-register/form-item-register.d.ts +4 -15
  178. package/es/register/form-item-register/form-item-register.mjs +7 -17
  179. package/es/register/index.d.ts +12 -2
  180. package/es/router/index.mjs +0 -1
  181. package/es/setup-app.d.ts +8 -0
  182. package/es/setup-app.mjs +30 -0
  183. package/es/state/form/form.state.mjs +0 -1
  184. package/es/state/form-collapse/form-collapse.state.mjs +0 -1
  185. package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -1
  186. package/es/state/form-edit-item/form-edit-item.state.mjs +0 -1
  187. package/es/state/form-group/form-group.state.mjs +0 -1
  188. package/es/state/form-item/form-item.state.mjs +0 -1
  189. package/es/state/form-item-basic/form-item-basic.state.mjs +0 -1
  190. package/es/state/form-tab/form-tab.state.mjs +0 -1
  191. package/es/state/form-tab-pane/form-tab-pane.state.mjs +0 -1
  192. package/es/state/global-pinia-state/global-pinia-state.d.ts +8 -25
  193. package/es/state/global-pinia-state/global-pinia-state.mjs +30 -16
  194. package/es/store/global-store.d.ts +1 -0
  195. package/es/store/global-store.mjs +40 -37
  196. package/es/store/index.d.ts +2 -3
  197. package/es/store/index.mjs +0 -1
  198. package/es/types/index.d.ts +18 -1
  199. package/es/utils/axios/interceptors.mjs +2 -23
  200. package/es/utils/cache-adapter/cache-adapter.d.ts +2 -0
  201. package/es/utils/cache-adapter/cache-adapter.mjs +59 -0
  202. package/es/utils/deviceFingerprint.d.ts +17 -0
  203. package/es/utils/deviceFingerprint.mjs +73 -0
  204. package/es/utils/dictionary/dictionary.mjs +0 -1
  205. package/es/utils/i18n/index.d.ts +2 -1
  206. package/es/utils/i18n/index.mjs +3 -4
  207. package/es/utils/index.d.ts +17 -3
  208. package/es/utils/linked-list/linked-list.d.ts +72 -0
  209. package/es/utils/linked-list/linked-list.mjs +119 -0
  210. package/es/utils/linked-node/linked-node.d.ts +31 -0
  211. package/es/utils/linked-node/linked-node.mjs +32 -0
  212. package/es/utils/lowcode/utils.d.ts +1 -0
  213. package/es/utils/lowcode/utils.mjs +20 -0
  214. package/es/utils/lowcode/validate.d.ts +13 -0
  215. package/es/utils/lowcode/validate.mjs +29 -0
  216. package/es/utils/mitt/mitt.d.ts +1 -0
  217. package/es/utils/mitt/mitt.mjs +5 -0
  218. package/es/utils/model-loader/model-loader.d.ts +118 -0
  219. package/es/utils/model-loader/model-loader.mjs +326 -0
  220. package/es/utils/namespace/namespace.d.ts +8 -0
  221. package/es/utils/namespace/namespace.mjs +4 -2
  222. package/es/utils/openUtil/index.d.ts +2 -0
  223. package/es/utils/openUtil/modal/modal.d.ts +61 -0
  224. package/es/utils/openUtil/modal/modal.mjs +80 -0
  225. package/es/utils/openUtil/overlay-container/overlay-container.d.ts +100 -0
  226. package/es/utils/openUtil/overlay-container/overlay-container.mjs +139 -0
  227. package/es/utils/plugin-static-resource/plugin-static-resource.mjs +0 -1
  228. package/es/utils/props/gct-form-item/gct-form-item.props.d.ts +63 -0
  229. package/es/utils/props/gct-form-item/gct-form-item.props.mjs +66 -0
  230. package/es/utils/props/index.d.ts +1 -0
  231. package/es/utils/style/index.d.ts +16 -0
  232. package/es/utils/style/index.mjs +141 -0
  233. package/es/utils/tools/tools.d.ts +13 -10
  234. package/es/utils/tools/tools.mjs +23 -11
  235. package/es/utils/treeHelper/treeHelper.d.ts +124 -0
  236. package/es/utils/treeHelper/treeHelper.mjs +234 -0
  237. package/es/utils/util.d.ts +39 -0
  238. package/es/utils/util.mjs +40 -0
  239. package/es/utils/uuid/uuid.d.ts +3 -0
  240. package/es/utils/uuid/uuid.mjs +48 -0
  241. package/es/utils/value-helper/value-helper.d.ts +49 -0
  242. package/es/utils/value-helper/value-helper.mjs +111 -0
  243. package/es/utils/width-install/width-install.mjs +4 -2
  244. package/package.json +13 -16
  245. package/es/controller/index.mjs +0 -17
  246. package/es/enums/page-designer/index.mjs +0 -6
  247. package/es/global/index.mjs +0 -3
  248. package/es/hooks/index.mjs +0 -7
  249. package/es/hooks/use-namespace/use-namespace.d.ts +0 -9
  250. package/es/hooks/use-namespace/use-namespace.mjs +0 -9
  251. package/es/interface/controller/i-designer-controller.d.ts +0 -116
  252. package/es/interface/hooks/i-designer-hooks.d.ts +0 -26
  253. package/es/interface/hooks/index.d.ts +0 -1
  254. package/es/interface/i-message-util/i-message-util.d.ts +0 -78
  255. package/es/interface/index.mjs +0 -1
  256. package/es/interface/low-code-types/index.d.ts +0 -4
  257. package/es/interface/low-code-types/modal-types.d.ts +0 -67
  258. package/es/interface/low-code-types/model/index.d.ts +0 -5338
  259. package/es/interface/low-code-types/schema/index.d.ts +0 -12
  260. package/es/interface/low-code-types/widget-basic-types.d.ts +0 -667
  261. package/es/interface/state/i-designer-state.d.ts +0 -27
  262. package/es/modules/env-manager/index.mjs +0 -5
  263. package/es/modules/platform-config/index.mjs +0 -17
  264. package/es/modules/platform-config/types.d.ts +0 -67
  265. package/es/provider/i-designer-provider/i-designer-provider.d.ts +0 -102
  266. package/es/provider/index.d.ts +0 -1
  267. package/es/provider/index.mjs +0 -1
  268. package/es/register/designer-register/designer-register.d.ts +0 -53
  269. package/es/register/designer-register/designer-register.mjs +0 -68
  270. package/es/register/index.mjs +0 -6
  271. package/es/register/render-register/render-register.d.ts +0 -59
  272. package/es/register/render-register/render-register.mjs +0 -64
  273. package/es/state/index.mjs +0 -12
  274. package/es/utils/index.mjs +0 -10
  275. package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +0 -96
  276. package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +0 -260
@@ -0,0 +1,130 @@
1
+ import { FIELD_TYPE } from '.';
2
+ /**
3
+ * 使用场景
4
+ */
5
+ export declare enum ExpressionModeEnum {
6
+ SEARCH = 0,// 搜索条件
7
+ FIELD_DISPLAY = 1,// 字段显示规则
8
+ EXPORT_TEMPLATE = 2,// 导出模版
9
+ DISPLAY_RULE = 3,// 显隐规则
10
+ PROCESS_TITLE = 4,// 流程标题
11
+ GATEWAY_RULE = 5,// 网关
12
+ CREATE_FIELD = 6,// 创建字段
13
+ PAAS_CREATE_FIELD = 7,// paas平台创建字段
14
+ ENTITY_FORMULA = 8,// 实体-公式字段
15
+ IPAAS_BACK = 9,// 用于 ipaas 后端计算用
16
+ LABEL_PRINT = 10,// 标签打印文本字段配置
17
+ NOCODE_BPMN_RULE = 11,// 无代码流程条件规则
18
+ PAAS_BPMN_RULE = 12,// 低代码审批流
19
+ ONLINE_FORM_FIELD_FORMULA = 13,// 电子表单字段公式
20
+ MEDPRO_BUSINESSFLOW = 14,//medpro 业务流
21
+ RUN_FORMULA = 15,//组件-公式计算字段字段
22
+ BI_FORMULA = 16,// BI公式字段函数
23
+ DATA_SET_FORMULA = 17
24
+ }
25
+ export type ModeTabMapInterface = Record<ExpressionModeEnum, ExpressionTabEnum[]>;
26
+ export declare enum ExpressionTabEnum {
27
+ FUNCTION = "function",// 函数
28
+ FORM = "form",// 表单
29
+ FIELD = "field",// 字段
30
+ VARIABLE = "variable",// 变量
31
+ NODE = "node",// 节点
32
+ OPERATOR = "operator"
33
+ }
34
+ export declare enum OperatorTypeEnum {
35
+ /**算术 */
36
+ ARITHMETIC = "arithmetic",
37
+ /**关系 */
38
+ RELATIONSHIP = "relationship",
39
+ /**逻辑 */
40
+ LOGIC = "logic",
41
+ /**其他 */
42
+ OTHER = "other"
43
+ }
44
+ export declare enum VarTypeEnum {
45
+ INNER_VAR = "INNER_VAR",
46
+ SYSTEM_VAR = "SYSTEM_VAR",
47
+ GLOBAL_VAR = "GLOBAL_VAR",
48
+ PAGE_VAR = "PAGE_VAR"
49
+ }
50
+ export interface IdentifierItemInterface {
51
+ id?: string;
52
+ name?: string;
53
+ desc?: string;
54
+ valueType?: FIELD_TYPE | string;
55
+ type?: FIELD_TYPE | string;
56
+ _id_?: string;
57
+ _name_?: string;
58
+ _type_?: ExpressionTabEnum;
59
+ _args_?: number;
60
+ }
61
+ export interface IdentifierGroupInterface {
62
+ id: string;
63
+ name: string;
64
+ _id_?: string;
65
+ _name_?: string;
66
+ idToChildren?: boolean;
67
+ children: IdentifierItemInterface[];
68
+ }
69
+ export type IdentifiersInterface = Partial<Record<ExpressionTabEnum, (IdentifierGroupInterface | IdentifierItemInterface)[]>>;
70
+ export declare enum ReturnTypeEnum {
71
+ String = "string",
72
+ Number = "number",
73
+ Boolean = "boolean"
74
+ }
75
+ export declare enum DataSetReturnTypeEnum {
76
+ String = "string",
77
+ Double = "number"
78
+ }
79
+ export declare enum EntityFormulaReturnTypeEnum {
80
+ Text = "text",
81
+ LongText = "long_text",
82
+ Int = "integer",
83
+ Long = "long",
84
+ Double = "decimal",
85
+ Boolen = "boolean"
86
+ }
87
+ interface CallbackOptions {
88
+ expr: string;
89
+ exprEcho: string;
90
+ exprName?: string;
91
+ returnType?: ReturnTypeEnum | EntityFormulaReturnTypeEnum;
92
+ modelKey?: string;
93
+ fieldProps?: {
94
+ /**小数位数 */
95
+ digits?: number;
96
+ /**布尔值真 */
97
+ trueText?: string;
98
+ /**布尔值假 */
99
+ falseText?: string;
100
+ };
101
+ }
102
+ export interface ExpressionInterface {
103
+ expr?: string;
104
+ exprEcho?: string;
105
+ exprName?: string;
106
+ returnType?: ReturnTypeEnum | EntityFormulaReturnTypeEnum | DataSetReturnTypeEnum;
107
+ disabledReturnType?: boolean;
108
+ modalTitle?: string;
109
+ mode: ExpressionModeEnum;
110
+ identifiers: IdentifiersInterface;
111
+ modelKey?: string;
112
+ fieldProps?: {
113
+ /**小数位数 */
114
+ digits?: number;
115
+ /**布尔值真 */
116
+ trueText?: string;
117
+ /**布尔值假 */
118
+ falseText?: string;
119
+ };
120
+ callback?: (expr: string, exprEcho?: string, options?: CallbackOptions) => void;
121
+ beforeClose?: (expr: string, exprEcho: string, returnType: string, formState: object) => Promise<boolean>;
122
+ }
123
+ export declare enum IdentifierAddon {
124
+ Prefix = "\u200B"
125
+ }
126
+ /**
127
+ * 零宽字符
128
+ */
129
+ export declare const zeroWidthSpace = "\u200B";
130
+ export {};
@@ -0,0 +1,75 @@
1
+ import './app-designer/index.mjs';
2
+ import './page-designer/designer.mjs';
3
+ import './breakpointEnum.mjs';
4
+
5
+ var ExpressionModeEnum = /* @__PURE__ */ ((ExpressionModeEnum2) => {
6
+ ExpressionModeEnum2[ExpressionModeEnum2["SEARCH"] = 0] = "SEARCH";
7
+ ExpressionModeEnum2[ExpressionModeEnum2["FIELD_DISPLAY"] = 1] = "FIELD_DISPLAY";
8
+ ExpressionModeEnum2[ExpressionModeEnum2["EXPORT_TEMPLATE"] = 2] = "EXPORT_TEMPLATE";
9
+ ExpressionModeEnum2[ExpressionModeEnum2["DISPLAY_RULE"] = 3] = "DISPLAY_RULE";
10
+ ExpressionModeEnum2[ExpressionModeEnum2["PROCESS_TITLE"] = 4] = "PROCESS_TITLE";
11
+ ExpressionModeEnum2[ExpressionModeEnum2["GATEWAY_RULE"] = 5] = "GATEWAY_RULE";
12
+ ExpressionModeEnum2[ExpressionModeEnum2["CREATE_FIELD"] = 6] = "CREATE_FIELD";
13
+ ExpressionModeEnum2[ExpressionModeEnum2["PAAS_CREATE_FIELD"] = 7] = "PAAS_CREATE_FIELD";
14
+ ExpressionModeEnum2[ExpressionModeEnum2["ENTITY_FORMULA"] = 8] = "ENTITY_FORMULA";
15
+ ExpressionModeEnum2[ExpressionModeEnum2["IPAAS_BACK"] = 9] = "IPAAS_BACK";
16
+ ExpressionModeEnum2[ExpressionModeEnum2["LABEL_PRINT"] = 10] = "LABEL_PRINT";
17
+ ExpressionModeEnum2[ExpressionModeEnum2["NOCODE_BPMN_RULE"] = 11] = "NOCODE_BPMN_RULE";
18
+ ExpressionModeEnum2[ExpressionModeEnum2["PAAS_BPMN_RULE"] = 12] = "PAAS_BPMN_RULE";
19
+ ExpressionModeEnum2[ExpressionModeEnum2["ONLINE_FORM_FIELD_FORMULA"] = 13] = "ONLINE_FORM_FIELD_FORMULA";
20
+ ExpressionModeEnum2[ExpressionModeEnum2["MEDPRO_BUSINESSFLOW"] = 14] = "MEDPRO_BUSINESSFLOW";
21
+ ExpressionModeEnum2[ExpressionModeEnum2["RUN_FORMULA"] = 15] = "RUN_FORMULA";
22
+ ExpressionModeEnum2[ExpressionModeEnum2["BI_FORMULA"] = 16] = "BI_FORMULA";
23
+ ExpressionModeEnum2[ExpressionModeEnum2["DATA_SET_FORMULA"] = 17] = "DATA_SET_FORMULA";
24
+ return ExpressionModeEnum2;
25
+ })(ExpressionModeEnum || {});
26
+ var ExpressionTabEnum = /* @__PURE__ */ ((ExpressionTabEnum2) => {
27
+ ExpressionTabEnum2["FUNCTION"] = "function";
28
+ ExpressionTabEnum2["FORM"] = "form";
29
+ ExpressionTabEnum2["FIELD"] = "field";
30
+ ExpressionTabEnum2["VARIABLE"] = "variable";
31
+ ExpressionTabEnum2["NODE"] = "node";
32
+ ExpressionTabEnum2["OPERATOR"] = "operator";
33
+ return ExpressionTabEnum2;
34
+ })(ExpressionTabEnum || {});
35
+ var OperatorTypeEnum = /* @__PURE__ */ ((OperatorTypeEnum2) => {
36
+ OperatorTypeEnum2["ARITHMETIC"] = "arithmetic";
37
+ OperatorTypeEnum2["RELATIONSHIP"] = "relationship";
38
+ OperatorTypeEnum2["LOGIC"] = "logic";
39
+ OperatorTypeEnum2["OTHER"] = "other";
40
+ return OperatorTypeEnum2;
41
+ })(OperatorTypeEnum || {});
42
+ var VarTypeEnum = /* @__PURE__ */ ((VarTypeEnum2) => {
43
+ VarTypeEnum2["INNER_VAR"] = "INNER_VAR";
44
+ VarTypeEnum2["SYSTEM_VAR"] = "SYSTEM_VAR";
45
+ VarTypeEnum2["GLOBAL_VAR"] = "GLOBAL_VAR";
46
+ VarTypeEnum2["PAGE_VAR"] = "PAGE_VAR";
47
+ return VarTypeEnum2;
48
+ })(VarTypeEnum || {});
49
+ var ReturnTypeEnum = /* @__PURE__ */ ((ReturnTypeEnum2) => {
50
+ ReturnTypeEnum2["String"] = "string";
51
+ ReturnTypeEnum2["Number"] = "number";
52
+ ReturnTypeEnum2["Boolean"] = "boolean";
53
+ return ReturnTypeEnum2;
54
+ })(ReturnTypeEnum || {});
55
+ var DataSetReturnTypeEnum = /* @__PURE__ */ ((DataSetReturnTypeEnum2) => {
56
+ DataSetReturnTypeEnum2["String"] = "string";
57
+ DataSetReturnTypeEnum2["Double"] = "number";
58
+ return DataSetReturnTypeEnum2;
59
+ })(DataSetReturnTypeEnum || {});
60
+ var EntityFormulaReturnTypeEnum = /* @__PURE__ */ ((EntityFormulaReturnTypeEnum2) => {
61
+ EntityFormulaReturnTypeEnum2["Text"] = "text";
62
+ EntityFormulaReturnTypeEnum2["LongText"] = "long_text";
63
+ EntityFormulaReturnTypeEnum2["Int"] = "integer";
64
+ EntityFormulaReturnTypeEnum2["Long"] = "long";
65
+ EntityFormulaReturnTypeEnum2["Double"] = "decimal";
66
+ EntityFormulaReturnTypeEnum2["Boolen"] = "boolean";
67
+ return EntityFormulaReturnTypeEnum2;
68
+ })(EntityFormulaReturnTypeEnum || {});
69
+ var IdentifierAddon = /* @__PURE__ */ ((IdentifierAddon2) => {
70
+ IdentifierAddon2["Prefix"] = "​";
71
+ return IdentifierAddon2;
72
+ })(IdentifierAddon || {});
73
+ const zeroWidthSpace = "​";
74
+
75
+ export { DataSetReturnTypeEnum, EntityFormulaReturnTypeEnum, ExpressionModeEnum, ExpressionTabEnum, IdentifierAddon, OperatorTypeEnum, ReturnTypeEnum, VarTypeEnum, zeroWidthSpace };
@@ -0,0 +1,38 @@
1
+ /**
2
+ * 平台类型枚举
3
+ *
4
+ * @author copilot
5
+ * @date 2025-06-13
6
+ * @export
7
+ * @enum {string}
8
+ */
9
+ export declare enum PlatformType {
10
+ /**
11
+ * 网页端
12
+ */
13
+ WEB = "web",
14
+ /**
15
+ * PDA端
16
+ */
17
+ PDA = "pda",
18
+ /**
19
+ * PAD端
20
+ */
21
+ PAD = "pad"
22
+ }
23
+ /**空值显示枚举 */
24
+ export declare enum nullDisplayEnum {
25
+ '--' = "--",
26
+ 'empty' = "(\u7A7A)",
27
+ 'null' = "null",
28
+ 'N/A' = "N/A",
29
+ 'noDisplay' = ""
30
+ }
31
+ export declare enum DeviceParamsTypeEnum {
32
+ STRING = "String",
33
+ INTEGER = "Integer",
34
+ LONG = "Long",
35
+ FLOAT = "Float",
36
+ BOOLEAN = "Boolean",
37
+ DATE = "Date"
38
+ }
@@ -0,0 +1,25 @@
1
+ var PlatformType = /* @__PURE__ */ ((PlatformType2) => {
2
+ PlatformType2["WEB"] = "web";
3
+ PlatformType2["PDA"] = "pda";
4
+ PlatformType2["PAD"] = "pad";
5
+ return PlatformType2;
6
+ })(PlatformType || {});
7
+ var nullDisplayEnum = /* @__PURE__ */ ((nullDisplayEnum2) => {
8
+ nullDisplayEnum2["--"] = "--";
9
+ nullDisplayEnum2["empty"] = "(空)";
10
+ nullDisplayEnum2["null"] = "null";
11
+ nullDisplayEnum2["N/A"] = "N/A";
12
+ nullDisplayEnum2["noDisplay"] = "";
13
+ return nullDisplayEnum2;
14
+ })(nullDisplayEnum || {});
15
+ var DeviceParamsTypeEnum = /* @__PURE__ */ ((DeviceParamsTypeEnum2) => {
16
+ DeviceParamsTypeEnum2["STRING"] = "String";
17
+ DeviceParamsTypeEnum2["INTEGER"] = "Integer";
18
+ DeviceParamsTypeEnum2["LONG"] = "Long";
19
+ DeviceParamsTypeEnum2["FLOAT"] = "Float";
20
+ DeviceParamsTypeEnum2["BOOLEAN"] = "Boolean";
21
+ DeviceParamsTypeEnum2["DATE"] = "Date";
22
+ return DeviceParamsTypeEnum2;
23
+ })(DeviceParamsTypeEnum || {});
24
+
25
+ export { DeviceParamsTypeEnum, PlatformType, nullDisplayEnum };
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  var ResultEnum = /* @__PURE__ */ ((ResultEnum2) => {
3
2
  ResultEnum2[ResultEnum2["SUCCESS"] = 200] = "SUCCESS";
4
3
  ResultEnum2[ResultEnum2["ERROR"] = -1] = "ERROR";
@@ -1,5 +1,6 @@
1
1
  export * from './app-designer';
2
2
  export * from './page-designer';
3
+ export * from './developer-center';
3
4
  export * from './appEnum';
4
5
  export * from './appStateEnum';
5
6
  export * from './authActionEnum';
@@ -8,9 +9,27 @@ export * from './cacheEnum';
8
9
  export * from './designEnum';
9
10
  export * from './exceptionEnum';
10
11
  export * from './httpEnum';
12
+ export * from './globalEnum';
11
13
  export * from './menuEnum';
12
14
  export * from './pageEnum';
13
15
  export * from './roleEnum';
14
16
  export * from './sizeEnum';
15
17
  export * from './processEnum';
16
18
  export * from './plugin-enum';
19
+ export * from './expressionEnum';
20
+ /**mqtt主题枚举*/
21
+ export declare enum GctMqttTopsEnum {
22
+ /**mqtt电子表单 编辑 遗嘱消息解锁使用 */
23
+ EDHR_FORM_INST_MULTI_PERSON_EDIT_BREAK = "FORM_INST_MULTI_PERSON_EDIT_BREAK",
24
+ /**mqtt用于接受其他用户解锁的主题 */
25
+ EDHR_FORM_INST_MULTI_PERSON_EDIT_UNLOCK = "FORM_INST_MULTI_PERSON_EDIT_UNLOCK"
26
+ }
27
+ /**
28
+ * 全局参数
29
+ */
30
+ export declare enum GlobalParamEnum {
31
+ /**
32
+ * 选择组件标识
33
+ */
34
+ SELECT_ID = "$VAR_GCT_SELECT_ID"
35
+ }
@@ -1,18 +1,15 @@
1
- export { EntityModelCategoryEnum, EntityModelTypeEnum, FieldDefaultValueTypeEnum, FieldSysVarDefaultValueEnum, SHOW_FIELDTYPES, UserServiceType, scriptTypeEnum } from './app-designer/index.mjs';
2
- import './page-designer/index.mjs';
3
- export { AggTypes, ContentEnum, CreateType, FIELD_TYPE, FIELD_TYPE_BASIC, FIELD_TYPE_CATEGORY, FIELD_TYPE_LOGIC, FIELD_TYPE_TRACE, FieldIconMap, FieldTypeToJs, GENDER_TYPE, MaterialEnum, MenuType, MessageType, NodesConfigTypeEnum, OpenMode, PermissionModeEnum, PersonalCenterType, ProjectName, RouterTransitionEnum, SIDE_BAR_MINI_WIDTH, SIDE_BAR_SHOW_TIT_MINI_WIDTH, SessionTimeoutProcessingEnum, SettingButtonPositionEnum, TODO_TYPE, ThemeEnum, UniqueConstraintType, WorkbenchType, selectionTypeEnums } from './appEnum.mjs';
4
- export { AppPublishStateEnum } from './appStateEnum.mjs';
5
- export { BasicAction, CustomAction, DefaultActions, PlatformSettingActions } from './authActionEnum.mjs';
1
+ export { EntityModelCategoryEnum, EntityModelTypeEnum, FieldDefaultValueTypeEnum, FieldSysVarDefaultValueEnum, SHOW_FIELDTYPES, UserServiceType, pageLayoutModeEnum, scriptTypeEnum } from './app-designer/index.mjs';
2
+ export { BindCmpStyleEnum, BindCmpStyleTypeEnum, Ch_BindCmpStyleEnum, FormComponents, SCOPE, SCOPEINFO, SearchComponents, bindCmpStyleMap, buttonShowType, controlConfigEnum, fixedAlignENUM, mobileSearchListByFieldType, padSearchListByFieldType, searchListByFieldType, sortTypeEnum, statisticalMethodEnum, tableColumnTypeEnum, tableColumnWidthEnum, tabsTypeENUM, transformBindCmp2CmpType } from './page-designer/designer.mjs';
6
3
  export { screenEnum, screenMap, sizeEnum } from './breakpointEnum.mjs';
7
- export { APP_DARK_MODE_KEY_, APP_LOCAL_CACHE_KEY, APP_SESSION_CACHE_KEY, CacheTypeEnum, DESIGNER_SESSION_CACHE_KEY, LOCALE_KEY, LOCALE_LIST_KEY, LOCAL_I18N_TRANSLATE, LOCK_INFO_KEY, MULTIPLE_TABS_KEY, PROJ_CFG_KEY, ROLES_KEY, TENANT_KEY, TIMEZONE_KEY, TOKEN_KEY, USER_INFO_KEY } from './cacheEnum.mjs';
8
- export { AGLINE_ENUMS, ButtonOpeEnum, RdoButtonOpeEnum, SEARCH_SEVICE, notSingleArr, presetColor } from './designEnum.mjs';
9
- export { ErrorTypeEnum, ExceptionEnum } from './exceptionEnum.mjs';
10
- export { BizServiceEnum, ContentTypeEnum, RequestEnum, ResultEnum } from './httpEnum.mjs';
11
- export { MenuModeEnum, MenuSplitTyeEnum, MenuTypeEnum, MixSidebarTriggerEnum, TopMenuAlignEnum, TriggerEnum } from './menuEnum.mjs';
12
- export { PageEnum } from './pageEnum.mjs';
13
- export { RoleEnum } from './roleEnum.mjs';
14
- export { SizeEnum } from './sizeEnum.mjs';
15
- export { ExamineAndApproveStateEnum, ProcessStatusEnum, ch_ProcessStatusMap } from './processEnum.mjs';
16
- export { PluginModeEnum } from './plugin-enum.mjs';
17
4
 
18
- "use strict";
5
+ var GctMqttTopsEnum = /* @__PURE__ */ ((GctMqttTopsEnum2) => {
6
+ GctMqttTopsEnum2["EDHR_FORM_INST_MULTI_PERSON_EDIT_BREAK"] = "FORM_INST_MULTI_PERSON_EDIT_BREAK";
7
+ GctMqttTopsEnum2["EDHR_FORM_INST_MULTI_PERSON_EDIT_UNLOCK"] = "FORM_INST_MULTI_PERSON_EDIT_UNLOCK";
8
+ return GctMqttTopsEnum2;
9
+ })(GctMqttTopsEnum || {});
10
+ var GlobalParamEnum = /* @__PURE__ */ ((GlobalParamEnum2) => {
11
+ GlobalParamEnum2["SELECT_ID"] = "$VAR_GCT_SELECT_ID";
12
+ return GlobalParamEnum2;
13
+ })(GlobalParamEnum || {});
14
+
15
+ export { GctMqttTopsEnum, GlobalParamEnum };
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  var MenuTypeEnum = /* @__PURE__ */ ((MenuTypeEnum2) => {
3
2
  MenuTypeEnum2["SIDEBAR"] = "sidebar";
4
3
  MenuTypeEnum2["MIX_SIDEBAR"] = "mix-sidebar";
@@ -32,6 +32,7 @@ export declare enum FormComponents {
32
32
  CopyVersionButton = "copy-version-button",
33
33
  Checkbox = "checkbox",
34
34
  DataTable = "data-table",
35
+ DataVTable = "data-v-table",
35
36
  TreeTable = "tree-table",
36
37
  DataTableColumn = "data-table-column",
37
38
  RefDataTable = "ref-data-table",
@@ -83,6 +84,8 @@ export declare enum FormComponents {
83
84
  SubTableDeleteBtn = "sub-table-delete-button",
84
85
  LinkPageBtn = "link-page-button",
85
86
  Collapse = "collapse",
87
+ SpaceOccupation = "space-occupation",
88
+ Divider = "divider",
86
89
  CardList = "card-list",
87
90
  CardHeaderLeft = "card-header-left",
88
91
  CardHeaderRight = "card-header-right",
@@ -130,7 +133,9 @@ export declare enum FormComponents {
130
133
  Boolean = "boolean",
131
134
  BizProcess = "biz-process",
132
135
  ApprovalHistory = "approval-history",
133
- FlowDiagram = "flow-diagram"
136
+ FlowDiagram = "flow-diagram",
137
+ CustomCode = "custom-code",
138
+ ApprovalProcess = "approval-process"
134
139
  }
135
140
  export declare enum SearchComponents {
136
141
  SearchInput = "SearchInput",
@@ -141,14 +146,19 @@ export declare enum SearchComponents {
141
146
  SearchDateTime = "SearchDateTime",
142
147
  SearchTime = "SearchTime",
143
148
  SearchSelect = "SearchSelect",
149
+ SearchUserSelect = "SearchUserSelect",
144
150
  SearchRdoSelect = "SearchRdoSelect",
145
151
  SearchTransaction = "SearchTransaction",
146
152
  SearchTmplTreeSelect = "SearchTmplTreeSelect",
147
153
  SearchPrinter = "SearchPrinter",
148
- SearchBizProcess = "SearchBizProcess"
154
+ SearchBizProcess = "SearchBizProcess",
155
+ SearchSelectRangUser = "SearchSelectRangUser",
156
+ SearchSelectDepartment = "SearchSelectDepartment"
149
157
  }
150
158
  export declare enum tableColumnWidthEnum {
151
- /**自适应 */
159
+ /**适配父容器 */
160
+ AUTO_PARENT_BOX = "AutoParentBox",
161
+ /**自适应 展示所有*/
152
162
  ATUO = "selfAdaption",
153
163
  /**固定 */
154
164
  ENUMERATION = "fixed",
@@ -275,3 +285,13 @@ export declare enum buttonShowType {
275
285
  }
276
286
  /** 支持查询的字段类型 */
277
287
  export declare const searchListByFieldType: FIELD_TYPE[];
288
+ /** mobile 支持查询的字段类型 */
289
+ export declare const mobileSearchListByFieldType: FIELD_TYPE[];
290
+ /** 支持查询的字段类型 */
291
+ export declare const padSearchListByFieldType: FIELD_TYPE[];
292
+ export declare enum SCOPEINFO {
293
+ /**字段列表 */
294
+ FIELD_LIST = "fieldList",
295
+ /**字段表单*/
296
+ FIELD_FORM = "fieldForm"
297
+ }
@@ -1,6 +1,5 @@
1
1
  import { FIELD_TYPE } from '../appEnum.mjs';
2
2
 
3
- "use strict";
4
3
  var SCOPE = /* @__PURE__ */ ((SCOPE2) => {
5
4
  SCOPE2["PAGE"] = "page";
6
5
  SCOPE2["MODAL"] = "modal";
@@ -35,6 +34,7 @@ var FormComponents = /* @__PURE__ */ ((FormComponents2) => {
35
34
  FormComponents2["CopyVersionButton"] = "copy-version-button";
36
35
  FormComponents2["Checkbox"] = "checkbox";
37
36
  FormComponents2["DataTable"] = "data-table";
37
+ FormComponents2["DataVTable"] = "data-v-table";
38
38
  FormComponents2["TreeTable"] = "tree-table";
39
39
  FormComponents2["DataTableColumn"] = "data-table-column";
40
40
  FormComponents2["RefDataTable"] = "ref-data-table";
@@ -86,6 +86,8 @@ var FormComponents = /* @__PURE__ */ ((FormComponents2) => {
86
86
  FormComponents2["SubTableDeleteBtn"] = "sub-table-delete-button";
87
87
  FormComponents2["LinkPageBtn"] = "link-page-button";
88
88
  FormComponents2["Collapse"] = "collapse";
89
+ FormComponents2["SpaceOccupation"] = "space-occupation";
90
+ FormComponents2["Divider"] = "divider";
89
91
  FormComponents2["CardList"] = "card-list";
90
92
  FormComponents2["CardHeaderLeft"] = "card-header-left";
91
93
  FormComponents2["CardHeaderRight"] = "card-header-right";
@@ -131,6 +133,8 @@ var FormComponents = /* @__PURE__ */ ((FormComponents2) => {
131
133
  FormComponents2["BizProcess"] = "biz-process";
132
134
  FormComponents2["ApprovalHistory"] = "approval-history";
133
135
  FormComponents2["FlowDiagram"] = "flow-diagram";
136
+ FormComponents2["CustomCode"] = "custom-code";
137
+ FormComponents2["ApprovalProcess"] = "approval-process";
134
138
  return FormComponents2;
135
139
  })(FormComponents || {});
136
140
  var SearchComponents = /* @__PURE__ */ ((SearchComponents2) => {
@@ -142,14 +146,18 @@ var SearchComponents = /* @__PURE__ */ ((SearchComponents2) => {
142
146
  SearchComponents2["SearchDateTime"] = "SearchDateTime";
143
147
  SearchComponents2["SearchTime"] = "SearchTime";
144
148
  SearchComponents2["SearchSelect"] = "SearchSelect";
149
+ SearchComponents2["SearchUserSelect"] = "SearchUserSelect";
145
150
  SearchComponents2["SearchRdoSelect"] = "SearchRdoSelect";
146
151
  SearchComponents2["SearchTransaction"] = "SearchTransaction";
147
152
  SearchComponents2["SearchTmplTreeSelect"] = "SearchTmplTreeSelect";
148
153
  SearchComponents2["SearchPrinter"] = "SearchPrinter";
149
154
  SearchComponents2["SearchBizProcess"] = "SearchBizProcess";
155
+ SearchComponents2["SearchSelectRangUser"] = "SearchSelectRangUser";
156
+ SearchComponents2["SearchSelectDepartment"] = "SearchSelectDepartment";
150
157
  return SearchComponents2;
151
158
  })(SearchComponents || {});
152
159
  var tableColumnWidthEnum = /* @__PURE__ */ ((tableColumnWidthEnum2) => {
160
+ tableColumnWidthEnum2["AUTO_PARENT_BOX"] = "AutoParentBox";
153
161
  tableColumnWidthEnum2["ATUO"] = "selfAdaption";
154
162
  tableColumnWidthEnum2["ENUMERATION"] = "fixed";
155
163
  tableColumnWidthEnum2["PERCENTAGE"] = "percentage";
@@ -157,7 +165,7 @@ var tableColumnWidthEnum = /* @__PURE__ */ ((tableColumnWidthEnum2) => {
157
165
  })(tableColumnWidthEnum || {});
158
166
  var controlConfigEnum = /* @__PURE__ */ ((controlConfigEnum2) => {
159
167
  controlConfigEnum2["NULL"] = "NULL";
160
- controlConfigEnum2["STRING"] = "\u7A7A\u5B57\u7B26\u4E32";
168
+ controlConfigEnum2["STRING"] = "空字符串";
161
169
  controlConfigEnum2["ZERO"] = "0";
162
170
  return controlConfigEnum2;
163
171
  })(controlConfigEnum || {});
@@ -316,15 +324,91 @@ const searchListByFieldType = [
316
324
  FIELD_TYPE.ORG_MULTI,
317
325
  FIELD_TYPE.ORG,
318
326
  // FIELD_TYPE.MASTERSLAVE,
319
- FIELD_TYPE.AGG,
320
- FIELD_TYPE.EXPRESSION,
327
+ // FIELD_TYPE.AGG,
328
+ // FIELD_TYPE.EXPRESSION,
321
329
  FIELD_TYPE.SERIAL,
322
330
  FIELD_TYPE.ONLINE_FORM_TEMPLATE,
323
331
  FIELD_TYPE.E_DHR_TEMPLATE,
324
332
  FIELD_TYPE.PRINTER,
325
333
  FIELD_TYPE.LABEL_TEMPLATE_REF,
326
334
  FIELD_TYPE.Biz_Process,
327
- FIELD_TYPE.DOCUMENT_TEMPLATE
335
+ FIELD_TYPE.DOCUMENT_TEMPLATE,
336
+ FIELD_TYPE.TRANSACTION,
337
+ FIELD_TYPE.RANGE_USER,
338
+ FIELD_TYPE.MESSAGE_TMPL
328
339
  ];
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
373
+ ];
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,
407
+ ];
408
+ var SCOPEINFO = /* @__PURE__ */ ((SCOPEINFO2) => {
409
+ SCOPEINFO2["FIELD_LIST"] = "fieldList";
410
+ SCOPEINFO2["FIELD_FORM"] = "fieldForm";
411
+ return SCOPEINFO2;
412
+ })(SCOPEINFO || {});
329
413
 
330
- export { BindCmpStyleEnum, BindCmpStyleTypeEnum, Ch_BindCmpStyleEnum, FormComponents, SCOPE, SearchComponents, bindCmpStyleMap, buttonShowType, controlConfigEnum, fixedAlignENUM, searchListByFieldType, sortTypeEnum, statisticalMethodEnum, tableColumnTypeEnum, tableColumnWidthEnum, tabsTypeENUM, transformBindCmp2CmpType };
414
+ export { BindCmpStyleEnum, BindCmpStyleTypeEnum, Ch_BindCmpStyleEnum, FormComponents, SCOPE, SCOPEINFO, SearchComponents, bindCmpStyleMap, buttonShowType, controlConfigEnum, fixedAlignENUM, mobileSearchListByFieldType, padSearchListByFieldType, searchListByFieldType, sortTypeEnum, statisticalMethodEnum, tableColumnTypeEnum, tableColumnWidthEnum, tabsTypeENUM, transformBindCmp2CmpType };