@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,11 +1,18 @@
1
- var AppPublishStateEnum = /* @__PURE__ */ ((AppPublishStateEnum2) => {
2
- AppPublishStateEnum2["SUCCESS"] = "SUCCESS";
3
- AppPublishStateEnum2["FAILURE"] = "FAILURE";
4
- AppPublishStateEnum2["PREPARING"] = "PREPARING";
5
- AppPublishStateEnum2["EVENTING"] = "EVENTING";
6
- AppPublishStateEnum2["PROCESSIING"] = "PROCESSIING";
7
- AppPublishStateEnum2["DEPLOYING"] = "DEPLOYING";
8
- return AppPublishStateEnum2;
9
- })(AppPublishStateEnum || {});
10
-
1
+ //#region src/enums/appStateEnum.ts
2
+ var AppPublishStateEnum = /* @__PURE__ */ function(AppPublishStateEnum) {
3
+ /** 发布成功 */
4
+ AppPublishStateEnum["SUCCESS"] = "SUCCESS";
5
+ /** 发布失败 */
6
+ AppPublishStateEnum["FAILURE"] = "FAILURE";
7
+ /** 准备中 */
8
+ AppPublishStateEnum["PREPARING"] = "PREPARING";
9
+ /** 事件执行中 */
10
+ AppPublishStateEnum["EVENTING"] = "EVENTING";
11
+ /** 流程同步中 */
12
+ AppPublishStateEnum["PROCESSIING"] = "PROCESSIING";
13
+ /** 部署中 */
14
+ AppPublishStateEnum["DEPLOYING"] = "DEPLOYING";
15
+ return AppPublishStateEnum;
16
+ }({});
17
+ //#endregion
11
18
  export { AppPublishStateEnum };
@@ -1,54 +1,66 @@
1
- var BasicAction = /* @__PURE__ */ ((BasicAction2) => {
2
- BasicAction2["Insert"] = "Insert";
3
- BasicAction2["Update"] = "Update";
4
- BasicAction2["Delete"] = "Delete";
5
- BasicAction2["Import"] = "Import";
6
- BasicAction2["Export"] = "Export";
7
- BasicAction2["Setting"] = "Setting";
8
- BasicAction2["Download"] = "Download";
9
- BasicAction2["Test"] = "Test";
10
- BasicAction2["Design"] = "Design";
11
- BasicAction2["Add"] = "Add";
12
- return BasicAction2;
13
- })(BasicAction || {});
14
- var CustomAction = /* @__PURE__ */ ((CustomAction2) => {
15
- CustomAction2["ResetPassword"] = "ResetPassword";
16
- CustomAction2["PermissionSetting"] = "PermissionSetting";
17
- CustomAction2["RemoveAndHandover"] = "RemoveAndHandover";
18
- CustomAction2["CategoryManagement"] = "CategoryManagement";
19
- CustomAction2["BaiscSetting"] = "BaiscSetting";
20
- CustomAction2["WatermarkSetting"] = "WatermarkSetting";
21
- CustomAction2["SecuritySetting"] = "SecuritySetting";
22
- CustomAction2["LoginSetting"] = "LoginSetting";
23
- CustomAction2["ThemeSetting"] = "ThemeSetting";
24
- CustomAction2["OrganizationSetting"] = "OrganizationSetting";
25
- CustomAction2["ApkSetting"] = "ApkSetting";
26
- CustomAction2["DevelopIconManagement"] = "DevelopIconManagement";
27
- CustomAction2["DevelopImageManagement"] = "DevelopImageManagement";
28
- CustomAction2["Reprint"] = "Reprint";
29
- CustomAction2["ViewTask"] = "ViewTask";
30
- CustomAction2["ManualTrigger"] = "ManualTrigger";
31
- CustomAction2["Setting"] = "Setting";
32
- CustomAction2["Terminate"] = "Terminate";
33
- CustomAction2["Reassign"] = "Reassign";
34
- CustomAction2["Log"] = "Log";
35
- CustomAction2["Moving"] = "Moving";
36
- CustomAction2["EnableDisable"] = "EnableDisable";
37
- return CustomAction2;
38
- })(CustomAction || {});
39
- const DefaultActions = [
40
- "Insert" /* Insert */,
41
- "Update" /* Update */,
42
- "Delete" /* Delete */
1
+ //#region src/enums/authActionEnum.ts
2
+ var BasicAction = /* @__PURE__ */ function(BasicAction) {
3
+ /** 创建/添加 */
4
+ BasicAction["Insert"] = "Insert";
5
+ /** 更新 */
6
+ BasicAction["Update"] = "Update";
7
+ /** 删除 */
8
+ BasicAction["Delete"] = "Delete";
9
+ BasicAction["Import"] = "Import";
10
+ BasicAction["Export"] = "Export";
11
+ BasicAction["Setting"] = "Setting";
12
+ /**下载 */
13
+ BasicAction["Download"] = "Download";
14
+ /**测试 */
15
+ BasicAction["Test"] = "Test";
16
+ BasicAction["Design"] = "Design";
17
+ BasicAction["Add"] = "Add";
18
+ return BasicAction;
19
+ }({});
20
+ var CustomAction = /* @__PURE__ */ function(CustomAction) {
21
+ /** 重置密码 */
22
+ CustomAction["ResetPassword"] = "ResetPassword";
23
+ /** 权限配置 */
24
+ CustomAction["PermissionSetting"] = "PermissionSetting";
25
+ /** 移除并交接 */
26
+ CustomAction["RemoveAndHandover"] = "RemoveAndHandover";
27
+ /** 分类管理 */
28
+ CustomAction["CategoryManagement"] = "CategoryManagement";
29
+ CustomAction["BaiscSetting"] = "BaiscSetting";
30
+ CustomAction["WatermarkSetting"] = "WatermarkSetting";
31
+ CustomAction["SecuritySetting"] = "SecuritySetting";
32
+ CustomAction["LoginSetting"] = "LoginSetting";
33
+ CustomAction["ThemeSetting"] = "ThemeSetting";
34
+ CustomAction["OrganizationSetting"] = "OrganizationSetting";
35
+ CustomAction["ApkSetting"] = "ApkSetting";
36
+ CustomAction["DevelopIconManagement"] = "DevelopIconManagement";
37
+ CustomAction["DevelopImageManagement"] = "DevelopImageManagement";
38
+ /**补打印 */
39
+ CustomAction["Reprint"] = "Reprint";
40
+ /** 定时任务相关 */
41
+ CustomAction["ViewTask"] = "ViewTask";
42
+ CustomAction["ManualTrigger"] = "ManualTrigger";
43
+ CustomAction["Setting"] = "Setting";
44
+ CustomAction["Terminate"] = "Terminate";
45
+ CustomAction["Reassign"] = "Reassign";
46
+ CustomAction["Log"] = "Log";
47
+ CustomAction["Moving"] = "Moving";
48
+ CustomAction["EnableDisable"] = "EnableDisable";
49
+ return CustomAction;
50
+ }({});
51
+ var DefaultActions = [
52
+ BasicAction.Insert,
53
+ BasicAction.Update,
54
+ BasicAction.Delete
43
55
  ];
44
- const PlatformSettingActions = [
45
- "BaiscSetting" /* BaiscSetting */,
46
- "WatermarkSetting" /* WatermarkSetting */,
47
- "SecuritySetting" /* SecuritySetting */,
48
- "LoginSetting" /* LoginSetting */,
49
- "ThemeSetting" /* ThemeSetting */,
50
- "OrganizationSetting" /* OrganizationSetting */,
51
- "ApkSetting" /* ApkSetting */
56
+ var PlatformSettingActions = [
57
+ CustomAction.BaiscSetting,
58
+ CustomAction.WatermarkSetting,
59
+ CustomAction.SecuritySetting,
60
+ CustomAction.LoginSetting,
61
+ CustomAction.ThemeSetting,
62
+ CustomAction.OrganizationSetting,
63
+ CustomAction.ApkSetting
52
64
  ];
53
-
65
+ //#endregion
54
66
  export { BasicAction, CustomAction, DefaultActions, PlatformSettingActions };
@@ -1,27 +1,28 @@
1
- var sizeEnum = /* @__PURE__ */ ((sizeEnum2) => {
2
- sizeEnum2["XS"] = "XS";
3
- sizeEnum2["SM"] = "SM";
4
- sizeEnum2["MD"] = "MD";
5
- sizeEnum2["LG"] = "LG";
6
- sizeEnum2["XL"] = "XL";
7
- sizeEnum2["XXL"] = "XXL";
8
- return sizeEnum2;
9
- })(sizeEnum || {});
10
- var screenEnum = /* @__PURE__ */ ((screenEnum2) => {
11
- screenEnum2[screenEnum2["XS"] = 480] = "XS";
12
- screenEnum2[screenEnum2["SM"] = 576] = "SM";
13
- screenEnum2[screenEnum2["MD"] = 768] = "MD";
14
- screenEnum2[screenEnum2["LG"] = 992] = "LG";
15
- screenEnum2[screenEnum2["XL"] = 1200] = "XL";
16
- screenEnum2[screenEnum2["XXL"] = 1600] = "XXL";
17
- return screenEnum2;
18
- })(screenEnum || {});
19
- const screenMap = /* @__PURE__ */ new Map();
20
- screenMap.set("XS" /* XS */, 480 /* XS */);
21
- screenMap.set("SM" /* SM */, 576 /* SM */);
22
- screenMap.set("MD" /* MD */, 768 /* MD */);
23
- screenMap.set("LG" /* LG */, 992 /* LG */);
24
- screenMap.set("XL" /* XL */, 1200 /* XL */);
25
- screenMap.set("XXL" /* XXL */, 1600 /* XXL */);
26
-
1
+ //#region src/enums/breakpointEnum.ts
2
+ var sizeEnum = /* @__PURE__ */ function(sizeEnum) {
3
+ sizeEnum["XS"] = "XS";
4
+ sizeEnum["SM"] = "SM";
5
+ sizeEnum["MD"] = "MD";
6
+ sizeEnum["LG"] = "LG";
7
+ sizeEnum["XL"] = "XL";
8
+ sizeEnum["XXL"] = "XXL";
9
+ return sizeEnum;
10
+ }({});
11
+ var screenEnum = /* @__PURE__ */ function(screenEnum) {
12
+ screenEnum[screenEnum["XS"] = 480] = "XS";
13
+ screenEnum[screenEnum["SM"] = 576] = "SM";
14
+ screenEnum[screenEnum["MD"] = 768] = "MD";
15
+ screenEnum[screenEnum["LG"] = 992] = "LG";
16
+ screenEnum[screenEnum["XL"] = 1200] = "XL";
17
+ screenEnum[screenEnum["XXL"] = 1600] = "XXL";
18
+ return screenEnum;
19
+ }({});
20
+ var screenMap = /* @__PURE__ */ new Map();
21
+ screenMap.set(sizeEnum.XS, screenEnum.XS);
22
+ screenMap.set(sizeEnum.SM, screenEnum.SM);
23
+ screenMap.set(sizeEnum.MD, screenEnum.MD);
24
+ screenMap.set(sizeEnum.LG, screenEnum.LG);
25
+ screenMap.set(sizeEnum.XL, screenEnum.XL);
26
+ screenMap.set(sizeEnum.XXL, screenEnum.XXL);
27
+ //#endregion
27
28
  export { screenEnum, screenMap, sizeEnum };
@@ -1,4 +1,3 @@
1
- export declare const TIMEZONE_KEY = "TIMEZONE__";
2
1
  export declare const TENANT_KEY = "TENANT__";
3
2
  export declare const TOKEN_KEY = "TOKEN__";
4
3
  export declare const LOCALE_KEY = "LOCALE__";
@@ -1,22 +1,22 @@
1
- const TIMEZONE_KEY = "TIMEZONE__";
2
- const TENANT_KEY = "TENANT__";
3
- const TOKEN_KEY = "TOKEN__";
4
- const LOCALE_KEY = "LOCALE__";
5
- const LOCALE_LIST_KEY = "LOCALE__LIST";
6
- const LOCAL_I18N_TRANSLATE = "LOCAL_I18N_TRANSLATE";
7
- const USER_INFO_KEY = "USER__INFO__";
8
- const ROLES_KEY = "ROLES__KEY__";
9
- const PROJ_CFG_KEY = "PROJ__CFG__KEY__";
10
- const LOCK_INFO_KEY = "LOCK__INFO__KEY__";
11
- const MULTIPLE_TABS_KEY = "MULTIPLE_TABS__KEY__";
12
- const APP_DARK_MODE_KEY_ = "__APP__DARK__MODE__";
13
- const APP_LOCAL_CACHE_KEY = "COMMON__LOCAL__KEY__";
14
- const APP_SESSION_CACHE_KEY = "COMMON__SESSION__KEY__";
15
- const DESIGNER_SESSION_CACHE_KEY = "DESIGNER_SESSION_CACHE_KEY";
16
- var CacheTypeEnum = /* @__PURE__ */ ((CacheTypeEnum2) => {
17
- CacheTypeEnum2[CacheTypeEnum2["SESSION"] = 0] = "SESSION";
18
- CacheTypeEnum2[CacheTypeEnum2["LOCAL"] = 1] = "LOCAL";
19
- return CacheTypeEnum2;
20
- })(CacheTypeEnum || {});
21
-
22
- 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 };
1
+ //#region src/enums/cacheEnum.ts
2
+ var TENANT_KEY = "TENANT__";
3
+ var TOKEN_KEY = "TOKEN__";
4
+ var LOCALE_KEY = "LOCALE__";
5
+ var LOCALE_LIST_KEY = "LOCALE__LIST";
6
+ var LOCAL_I18N_TRANSLATE = "LOCAL_I18N_TRANSLATE";
7
+ var USER_INFO_KEY = "USER__INFO__";
8
+ var ROLES_KEY = "ROLES__KEY__";
9
+ var PROJ_CFG_KEY = "PROJ__CFG__KEY__";
10
+ var LOCK_INFO_KEY = "LOCK__INFO__KEY__";
11
+ var MULTIPLE_TABS_KEY = "MULTIPLE_TABS__KEY__";
12
+ var APP_DARK_MODE_KEY_ = "__APP__DARK__MODE__";
13
+ var APP_LOCAL_CACHE_KEY = "COMMON__LOCAL__KEY__";
14
+ var APP_SESSION_CACHE_KEY = "COMMON__SESSION__KEY__";
15
+ var DESIGNER_SESSION_CACHE_KEY = "DESIGNER_SESSION_CACHE_KEY";
16
+ var CacheTypeEnum = /* @__PURE__ */ function(CacheTypeEnum) {
17
+ CacheTypeEnum[CacheTypeEnum["SESSION"] = 0] = "SESSION";
18
+ CacheTypeEnum[CacheTypeEnum["LOCAL"] = 1] = "LOCAL";
19
+ return CacheTypeEnum;
20
+ }({});
21
+ //#endregion
22
+ 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, TOKEN_KEY, USER_INFO_KEY };
@@ -52,7 +52,13 @@ export declare enum SEARCH_SERVICE {
52
52
  /**左闭右开 */
53
53
  RORANGE = "roRange",
54
54
  /**rdo 在集合中*/
55
- VERSIONIN = "versionIn"
55
+ VERSIONIN = "versionIn",
56
+ /**rdo 不在集合中*/
57
+ VERSIONNOTIN = "versionNotIn",
58
+ /**rdo 等于*/
59
+ VERSIONEQ = "versionEq",
60
+ /**rdo 不等于*/
61
+ VERSIONNE = "versionNe"
56
62
  }
57
63
  export declare const notSingleArr: SEARCH_SERVICE[];
58
64
  /**设计页面对齐方式 */
@@ -1,71 +1,113 @@
1
- var SEARCH_SERVICE = /* @__PURE__ */ ((SEARCH_SERVICE2) => {
2
- SEARCH_SERVICE2["EQ"] = "eq";
3
- SEARCH_SERVICE2["IEQ"] = "iEq";
4
- SEARCH_SERVICE2["NE"] = "ne";
5
- SEARCH_SERVICE2["INE"] = "ine";
6
- SEARCH_SERVICE2["GT"] = "gt";
7
- SEARCH_SERVICE2["GE"] = "ge";
8
- SEARCH_SERVICE2["LT"] = "lt";
9
- SEARCH_SERVICE2["LE"] = "le";
10
- SEARCH_SERVICE2["ISNULL"] = "isNull";
11
- SEARCH_SERVICE2["ISNOTNULL"] = "isNotNull";
12
- SEARCH_SERVICE2["LIKE"] = "like";
13
- SEARCH_SERVICE2["ILIKE"] = "iLike";
14
- SEARCH_SERVICE2["NOTLIKE"] = "notLike";
15
- SEARCH_SERVICE2["NOTILIKE"] = "iNotLike";
16
- SEARCH_SERVICE2["LEFTLIKE"] = "leftLike";
17
- SEARCH_SERVICE2["ILEFTLIKE"] = "iLeftLike";
18
- SEARCH_SERVICE2["RIGHTLIKE"] = "rightLike";
19
- SEARCH_SERVICE2["IRIGHTLIKE"] = "iRightLike";
20
- SEARCH_SERVICE2["IN"] = "in";
21
- SEARCH_SERVICE2["NOTIN"] = "notIn";
22
- SEARCH_SERVICE2["CONTAINANY"] = "containAny";
23
- SEARCH_SERVICE2["CONTAINALL"] = "containAll";
24
- SEARCH_SERVICE2["RANGE"] = "range";
25
- SEARCH_SERVICE2["ORANGE"] = "oRange";
26
- SEARCH_SERVICE2["LORANGE"] = "loRange";
27
- SEARCH_SERVICE2["RORANGE"] = "roRange";
28
- SEARCH_SERVICE2["VERSIONIN"] = "versionIn";
29
- return SEARCH_SERVICE2;
30
- })(SEARCH_SERVICE || {});
31
- const notSingleArr = [
32
- "in" /* IN */,
33
- "notIn" /* NOTIN */,
34
- "containAny" /* CONTAINANY */,
35
- "containAll" /* CONTAINALL */,
36
- "versionIn" /* VERSIONIN */
1
+ //#region src/enums/designEnum.ts
2
+ var SEARCH_SERVICE = /* @__PURE__ */ function(SEARCH_SERVICE) {
3
+ /** 等于 */
4
+ SEARCH_SERVICE["EQ"] = "eq";
5
+ /** 等于(忽略大小写) */
6
+ SEARCH_SERVICE["IEQ"] = "iEq";
7
+ /** 不等于 */
8
+ SEARCH_SERVICE["NE"] = "ne";
9
+ /** 不等于(忽略大小写) */
10
+ SEARCH_SERVICE["INE"] = "ine";
11
+ /** 大于 */
12
+ SEARCH_SERVICE["GT"] = "gt";
13
+ /** 大于等于 */
14
+ SEARCH_SERVICE["GE"] = "ge";
15
+ /** 小于 */
16
+ SEARCH_SERVICE["LT"] = "lt";
17
+ /** 小于等于 */
18
+ SEARCH_SERVICE["LE"] = "le";
19
+ /** 为空 */
20
+ SEARCH_SERVICE["ISNULL"] = "isNull";
21
+ /** 不为空 */
22
+ SEARCH_SERVICE["ISNOTNULL"] = "isNotNull";
23
+ /** 匹配 */
24
+ SEARCH_SERVICE["LIKE"] = "like";
25
+ /** 匹配(忽略大小写) */
26
+ SEARCH_SERVICE["ILIKE"] = "iLike";
27
+ /** 不匹配 */
28
+ SEARCH_SERVICE["NOTLIKE"] = "notLike";
29
+ /** 不匹配(忽略大小写) */
30
+ SEARCH_SERVICE["NOTILIKE"] = "iNotLike";
31
+ /** 左匹配 */
32
+ SEARCH_SERVICE["LEFTLIKE"] = "leftLike";
33
+ /** 左匹配(忽略大小写) */
34
+ SEARCH_SERVICE["ILEFTLIKE"] = "iLeftLike";
35
+ /** 右匹配 */
36
+ SEARCH_SERVICE["RIGHTLIKE"] = "rightLike";
37
+ /** 右匹配(忽略大小写) */
38
+ SEARCH_SERVICE["IRIGHTLIKE"] = "iRightLike";
39
+ /** 在集合中 */
40
+ SEARCH_SERVICE["IN"] = "in";
41
+ /** 不在集合中 */
42
+ SEARCH_SERVICE["NOTIN"] = "notIn";
43
+ /** 包含任意 */
44
+ SEARCH_SERVICE["CONTAINANY"] = "containAny";
45
+ /** 包含全部 */
46
+ SEARCH_SERVICE["CONTAINALL"] = "containAll";
47
+ /** 闭区间 */
48
+ SEARCH_SERVICE["RANGE"] = "range";
49
+ /** 开区间 */
50
+ SEARCH_SERVICE["ORANGE"] = "oRange";
51
+ /** 左开右闭 */
52
+ SEARCH_SERVICE["LORANGE"] = "loRange";
53
+ /**左闭右开 */
54
+ SEARCH_SERVICE["RORANGE"] = "roRange";
55
+ /**rdo 在集合中*/
56
+ SEARCH_SERVICE["VERSIONIN"] = "versionIn";
57
+ /**rdo 不在集合中*/
58
+ SEARCH_SERVICE["VERSIONNOTIN"] = "versionNotIn";
59
+ /**rdo 等于*/
60
+ SEARCH_SERVICE["VERSIONEQ"] = "versionEq";
61
+ /**rdo 不等于*/
62
+ SEARCH_SERVICE["VERSIONNE"] = "versionNe";
63
+ return SEARCH_SERVICE;
64
+ }({});
65
+ var notSingleArr = [
66
+ SEARCH_SERVICE.IN,
67
+ SEARCH_SERVICE.NOTIN,
68
+ SEARCH_SERVICE.CONTAINANY,
69
+ SEARCH_SERVICE.CONTAINALL,
70
+ SEARCH_SERVICE.VERSIONIN
37
71
  ];
38
- var AGLINE_ENUMS = /* @__PURE__ */ ((AGLINE_ENUMS2) => {
39
- AGLINE_ENUMS2["LEFT"] = "left";
40
- AGLINE_ENUMS2["CENTER"] = "center";
41
- AGLINE_ENUMS2["RIGHT"] = "right";
42
- AGLINE_ENUMS2["BETWEEN"] = "between";
43
- return AGLINE_ENUMS2;
44
- })(AGLINE_ENUMS || {});
45
- const presetColor = [
46
- "#DBDBDB",
47
- "#FFE4E4",
48
- "#D1D1D1",
49
- "#838383",
50
- "#838383",
51
- "#FFEECB",
52
- "#D8E3FF",
53
- "#FF8888",
54
- "#FF8888",
55
- "#0DAA9C",
56
- "#3370FF"
72
+ /**设计页面对齐方式 */
73
+ var AGLINE_ENUMS = /* @__PURE__ */ function(AGLINE_ENUMS) {
74
+ AGLINE_ENUMS["LEFT"] = "left";
75
+ AGLINE_ENUMS["CENTER"] = "center";
76
+ AGLINE_ENUMS["RIGHT"] = "right";
77
+ AGLINE_ENUMS["BETWEEN"] = "between";
78
+ return AGLINE_ENUMS;
79
+ }({});
80
+ var presetColor = [
81
+ "#DBDBDB",
82
+ "#FFE4E4",
83
+ "#D1D1D1",
84
+ "#838383",
85
+ "#838383",
86
+ "#FFEECB",
87
+ "#D8E3FF",
88
+ "#FF8888",
89
+ "#FF8888",
90
+ "#0DAA9C",
91
+ "#3370FF"
57
92
  ];
58
- var ButtonOpeEnum = /* @__PURE__ */ ((ButtonOpeEnum2) => {
59
- ButtonOpeEnum2[ButtonOpeEnum2["SINGLELINE"] = 0] = "SINGLELINE";
60
- ButtonOpeEnum2[ButtonOpeEnum2["HEAD"] = 1] = "HEAD";
61
- ButtonOpeEnum2[ButtonOpeEnum2["BATCH"] = 2] = "BATCH";
62
- ButtonOpeEnum2[ButtonOpeEnum2["SINGLELINE_RDO"] = 3] = "SINGLELINE_RDO";
63
- return ButtonOpeEnum2;
64
- })(ButtonOpeEnum || {});
65
- var RdoButtonOpeEnum = /* @__PURE__ */ ((RdoButtonOpeEnum2) => {
66
- RdoButtonOpeEnum2[RdoButtonOpeEnum2["parentVersion"] = 0] = "parentVersion";
67
- RdoButtonOpeEnum2[RdoButtonOpeEnum2["childVersion"] = 1] = "childVersion";
68
- return RdoButtonOpeEnum2;
69
- })(RdoButtonOpeEnum || {});
70
-
93
+ var ButtonOpeEnum = /* @__PURE__ */ function(ButtonOpeEnum) {
94
+ /**单行 */
95
+ ButtonOpeEnum[ButtonOpeEnum["SINGLELINE"] = 0] = "SINGLELINE";
96
+ /**头部 右边*/
97
+ ButtonOpeEnum[ButtonOpeEnum["HEAD"] = 1] = "HEAD";
98
+ /**批量 左边 */
99
+ ButtonOpeEnum[ButtonOpeEnum["BATCH"] = 2] = "BATCH";
100
+ /**单行RDO */
101
+ ButtonOpeEnum[ButtonOpeEnum["SINGLELINE_RDO"] = 3] = "SINGLELINE_RDO";
102
+ return ButtonOpeEnum;
103
+ }({});
104
+ /**rdo 单行按钮类型 */
105
+ var RdoButtonOpeEnum = /* @__PURE__ */ function(RdoButtonOpeEnum) {
106
+ /**父版本 */
107
+ RdoButtonOpeEnum[RdoButtonOpeEnum["parentVersion"] = 0] = "parentVersion";
108
+ /**子版本*/
109
+ RdoButtonOpeEnum[RdoButtonOpeEnum["childVersion"] = 1] = "childVersion";
110
+ return RdoButtonOpeEnum;
111
+ }({});
112
+ //#endregion
71
113
  export { AGLINE_ENUMS, ButtonOpeEnum, RdoButtonOpeEnum, SEARCH_SERVICE, notSingleArr, presetColor };
@@ -1,7 +1,8 @@
1
- var PrintResourceEnum = /* @__PURE__ */ ((PrintResourceEnum2) => {
2
- PrintResourceEnum2["CLIENT_PRINT"] = "CLIENT_PRINT";
3
- PrintResourceEnum2["INTERNET_PRINT"] = "INTERNET_PRINT";
4
- return PrintResourceEnum2;
5
- })(PrintResourceEnum || {});
6
-
1
+ //#region src/enums/developer-center/integration.ts
2
+ var PrintResourceEnum = /* @__PURE__ */ function(PrintResourceEnum) {
3
+ PrintResourceEnum["CLIENT_PRINT"] = "CLIENT_PRINT";
4
+ PrintResourceEnum["INTERNET_PRINT"] = "INTERNET_PRINT";
5
+ return PrintResourceEnum;
6
+ }({});
7
+ //#endregion
7
8
  export { PrintResourceEnum };
@@ -1,18 +1,22 @@
1
- var ExceptionEnum = /* @__PURE__ */ ((ExceptionEnum2) => {
2
- ExceptionEnum2[ExceptionEnum2["PAGE_NOT_ACCESS"] = 403] = "PAGE_NOT_ACCESS";
3
- ExceptionEnum2[ExceptionEnum2["PAGE_NOT_FOUND"] = 404] = "PAGE_NOT_FOUND";
4
- ExceptionEnum2[ExceptionEnum2["ERROR"] = 500] = "ERROR";
5
- ExceptionEnum2[ExceptionEnum2["NET_WORK_ERROR"] = 1e4] = "NET_WORK_ERROR";
6
- ExceptionEnum2[ExceptionEnum2["PAGE_NOT_DATA"] = 10100] = "PAGE_NOT_DATA";
7
- return ExceptionEnum2;
8
- })(ExceptionEnum || {});
9
- var ErrorTypeEnum = /* @__PURE__ */ ((ErrorTypeEnum2) => {
10
- ErrorTypeEnum2["VUE"] = "vue";
11
- ErrorTypeEnum2["SCRIPT"] = "script";
12
- ErrorTypeEnum2["RESOURCE"] = "resource";
13
- ErrorTypeEnum2["AJAX"] = "ajax";
14
- ErrorTypeEnum2["PROMISE"] = "promise";
15
- return ErrorTypeEnum2;
16
- })(ErrorTypeEnum || {});
17
-
1
+ //#region src/enums/exceptionEnum.ts
2
+ /**
3
+ * @description: Exception related enumeration
4
+ */
5
+ var ExceptionEnum = /* @__PURE__ */ function(ExceptionEnum) {
6
+ ExceptionEnum[ExceptionEnum["PAGE_NOT_ACCESS"] = 403] = "PAGE_NOT_ACCESS";
7
+ ExceptionEnum[ExceptionEnum["PAGE_NOT_FOUND"] = 404] = "PAGE_NOT_FOUND";
8
+ ExceptionEnum[ExceptionEnum["ERROR"] = 500] = "ERROR";
9
+ ExceptionEnum[ExceptionEnum["NET_WORK_ERROR"] = 1e4] = "NET_WORK_ERROR";
10
+ ExceptionEnum[ExceptionEnum["PAGE_NOT_DATA"] = 10100] = "PAGE_NOT_DATA";
11
+ return ExceptionEnum;
12
+ }({});
13
+ var ErrorTypeEnum = /* @__PURE__ */ function(ErrorTypeEnum) {
14
+ ErrorTypeEnum["VUE"] = "vue";
15
+ ErrorTypeEnum["SCRIPT"] = "script";
16
+ ErrorTypeEnum["RESOURCE"] = "resource";
17
+ ErrorTypeEnum["AJAX"] = "ajax";
18
+ ErrorTypeEnum["PROMISE"] = "promise";
19
+ return ErrorTypeEnum;
20
+ }({});
21
+ //#endregion
18
22
  export { ErrorTypeEnum, ExceptionEnum };
@@ -1,4 +1,4 @@
1
- import { FIELD_TYPE } from '.';
1
+ import { FIELD_TYPE } from './appEnum';
2
2
  /**
3
3
  * 使用场景
4
4
  */
@@ -82,7 +82,7 @@ export declare enum EntityFormulaReturnTypeEnum {
82
82
  Int = "integer",
83
83
  Long = "long",
84
84
  Double = "decimal",
85
- Boolen = "boolean"
85
+ Boolean = "boolean"
86
86
  }
87
87
  interface CallbackOptions {
88
88
  expr: string;