@gct-paas/core 0.0.1-dev.5 → 0.0.1-dev.7

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 (122) hide show
  1. package/dist/index.min.cjs +1 -1
  2. package/dist/index.system.min.js +1 -1
  3. package/es/_virtual/_commonjsHelpers.mjs +40 -0
  4. package/es/_virtual/index.mjs +7 -0
  5. package/es/constants/index.d.ts +1 -1
  6. package/es/constants/index.mjs +1 -1
  7. package/es/enums/app-designer/index.d.ts +80 -0
  8. package/es/enums/app-designer/index.mjs +58 -0
  9. package/es/enums/appEnum.d.ts +605 -0
  10. package/es/enums/appEnum.mjs +356 -0
  11. package/es/enums/appStateEnum.d.ts +14 -0
  12. package/es/enums/appStateEnum.mjs +12 -0
  13. package/es/enums/authActionEnum.d.ts +50 -0
  14. package/es/enums/authActionEnum.mjs +55 -0
  15. package/es/enums/breakpointEnum.d.ts +18 -0
  16. package/es/enums/breakpointEnum.mjs +28 -0
  17. package/es/enums/cacheEnum.d.ts +19 -0
  18. package/es/enums/cacheEnum.mjs +23 -0
  19. package/es/enums/designEnum.d.ts +82 -0
  20. package/es/enums/designEnum.mjs +72 -0
  21. package/es/enums/exceptionEnum.d.ts +17 -0
  22. package/es/enums/exceptionEnum.mjs +19 -0
  23. package/es/enums/httpEnum.d.ts +65 -0
  24. package/es/enums/httpEnum.mjs +63 -0
  25. package/es/enums/index.d.ts +15 -0
  26. package/es/enums/index.mjs +21 -0
  27. package/es/enums/menuEnum.d.ts +35 -0
  28. package/es/enums/menuEnum.mjs +40 -0
  29. package/es/enums/page-designer/designer.d.ts +277 -0
  30. package/es/enums/page-designer/designer.mjs +330 -0
  31. package/es/enums/page-designer/index.d.ts +4 -0
  32. package/es/enums/page-designer/index.mjs +6 -0
  33. package/es/enums/page-designer/panel.d.ts +243 -0
  34. package/es/enums/page-designer/panel.mjs +195 -0
  35. package/es/enums/page-designer/toolkit.d.ts +10 -0
  36. package/es/enums/page-designer/toolkit.mjs +14 -0
  37. package/es/enums/page-designer/widget.d.ts +316 -0
  38. package/es/enums/page-designer/widget.mjs +335 -0
  39. package/es/enums/pageEnum.d.ts +11 -0
  40. package/es/enums/pageEnum.mjs +15 -0
  41. package/es/enums/processEnum.d.ts +35 -0
  42. package/es/enums/processEnum.mjs +28 -0
  43. package/es/enums/roleEnum.d.ts +4 -0
  44. package/es/enums/roleEnum.mjs +8 -0
  45. package/es/enums/sizeEnum.d.ts +5 -0
  46. package/es/enums/sizeEnum.mjs +9 -0
  47. package/es/global/gct/gct.d.ts +47 -0
  48. package/es/global/gct/gct.mjs +49 -0
  49. package/es/global/index.d.ts +1 -0
  50. package/es/global/index.mjs +3 -0
  51. package/es/index.d.ts +14 -0
  52. package/es/index.mjs +41 -0
  53. package/es/interface/controller/i-designer-controller.d.ts +116 -0
  54. package/es/interface/controller/i-designer-controller.mjs +1 -0
  55. package/es/interface/controller/index.d.ts +1 -0
  56. package/es/interface/controller/index.mjs +1 -0
  57. package/es/interface/hooks/i-designer-hooks.d.ts +26 -0
  58. package/es/interface/hooks/i-designer-hooks.mjs +3 -0
  59. package/es/interface/hooks/index.d.ts +1 -0
  60. package/es/interface/hooks/index.mjs +1 -0
  61. package/es/interface/i-import-style-map/i-import-style-map.d.ts +15 -0
  62. package/es/interface/i-import-style-map/i-import-style-map.mjs +1 -0
  63. package/es/interface/i-pinia-action/i-global-actions.d.ts +14 -0
  64. package/es/interface/i-pinia-action/i-global-actions.mjs +1 -0
  65. package/es/interface/i-pinia-getter/i-global-getters.d.ts +16 -0
  66. package/es/interface/i-pinia-getter/i-global-getters.mjs +1 -0
  67. package/es/interface/i-pinia-state/i-global-state.d.ts +15 -0
  68. package/es/interface/i-pinia-state/i-global-state.mjs +1 -0
  69. package/es/interface/index.d.ts +8 -0
  70. package/es/interface/index.mjs +6 -0
  71. package/es/interface/low-code-types/index.d.ts +4 -0
  72. package/es/interface/low-code-types/index.mjs +5 -0
  73. package/es/interface/low-code-types/modal-types.d.ts +67 -0
  74. package/es/interface/low-code-types/modal-types.mjs +3 -0
  75. package/es/interface/low-code-types/model/index.d.ts +5338 -0
  76. package/es/interface/low-code-types/model/index.mjs +1 -0
  77. package/es/interface/low-code-types/schema/index.d.ts +12 -0
  78. package/es/interface/low-code-types/schema/index.mjs +1 -0
  79. package/es/interface/low-code-types/widget-basic-types.d.ts +655 -0
  80. package/es/interface/low-code-types/widget-basic-types.mjs +3 -0
  81. package/es/interface/state/i-designer-state.d.ts +39 -0
  82. package/es/interface/state/i-designer-state.mjs +1 -0
  83. package/es/interface/state/index.d.ts +1 -0
  84. package/es/interface/state/index.mjs +1 -0
  85. package/es/node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.mjs +541 -0
  86. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/hook/async-series-hook/async-series-hook.mjs +73 -0
  87. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/hook/index.mjs +2 -0
  88. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/hook/sync-series-hook/sync-series-hook.mjs +100 -0
  89. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/index.mjs +2 -0
  90. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/array/array.mjs +47 -0
  91. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/index.mjs +5 -0
  92. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/object/object.mjs +24 -0
  93. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/qx-event/qx-event.mjs +94 -0
  94. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/qx-event-emitter/qx-event-emitter.mjs +146 -0
  95. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/type-util/type-util.mjs +149 -0
  96. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/util/util.mjs +227 -0
  97. package/es/provider/i-designer-provider/i-designer-provider.d.ts +102 -0
  98. package/es/provider/i-designer-provider/i-designer-provider.mjs +1 -0
  99. package/es/provider/index.d.ts +1 -0
  100. package/es/provider/index.mjs +1 -0
  101. package/es/register/designer-register/designer-register.d.ts +58 -0
  102. package/es/register/designer-register/designer-register.mjs +70 -0
  103. package/es/register/index.d.ts +2 -0
  104. package/es/register/index.mjs +4 -0
  105. package/es/register/render-register/render-register.d.ts +59 -0
  106. package/es/register/render-register/render-register.mjs +65 -0
  107. package/es/state/global-pinia-state/global-pinia-state.d.ts +16 -0
  108. package/es/state/global-pinia-state/global-pinia-state.mjs +11 -0
  109. package/es/state/index.d.ts +1 -0
  110. package/es/state/index.mjs +3 -0
  111. package/es/store/global-store.d.ts +2 -0
  112. package/es/store/global-store.mjs +22 -0
  113. package/es/store/index.d.ts +20 -0
  114. package/es/store/index.mjs +21 -0
  115. package/es/types/index.d.ts +46 -0
  116. package/es/utils/index.d.ts +2 -0
  117. package/es/utils/index.mjs +2 -0
  118. package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +17 -0
  119. package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +27 -0
  120. package/es/utils/plugin-static-resource/plugin-static-resource.d.ts +41 -0
  121. package/es/utils/plugin-static-resource/plugin-static-resource.mjs +46 -0
  122. package/package.json +15 -5
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ var SEARCH_SEVICE = /* @__PURE__ */ ((SEARCH_SEVICE2) => {
3
+ SEARCH_SEVICE2["EQ"] = "eq";
4
+ SEARCH_SEVICE2["IEQ"] = "iEq";
5
+ SEARCH_SEVICE2["NE"] = "ne";
6
+ SEARCH_SEVICE2["INE"] = "ine";
7
+ SEARCH_SEVICE2["GT"] = "gt";
8
+ SEARCH_SEVICE2["GE"] = "ge";
9
+ SEARCH_SEVICE2["LT"] = "lt";
10
+ SEARCH_SEVICE2["LE"] = "le";
11
+ SEARCH_SEVICE2["ISNULL"] = "isNull";
12
+ SEARCH_SEVICE2["ISNOTNULL"] = "isNotNull";
13
+ SEARCH_SEVICE2["LIKE"] = "like";
14
+ SEARCH_SEVICE2["ILIKE"] = "iLike";
15
+ SEARCH_SEVICE2["NOTLIKE"] = "notLike";
16
+ SEARCH_SEVICE2["NOTILIKE"] = "iNotLike";
17
+ SEARCH_SEVICE2["LEFTLIKE"] = "leftLike";
18
+ SEARCH_SEVICE2["ILEFTLIKE"] = "iLeftLike";
19
+ SEARCH_SEVICE2["RIGHTLIKE"] = "rightLike";
20
+ SEARCH_SEVICE2["IRIGHTLIKE"] = "iRightLike";
21
+ SEARCH_SEVICE2["IN"] = "in";
22
+ SEARCH_SEVICE2["NOTIN"] = "notIn";
23
+ SEARCH_SEVICE2["CONTAINANY"] = "containAny";
24
+ SEARCH_SEVICE2["CONTAINALL"] = "containAll";
25
+ SEARCH_SEVICE2["RANGE"] = "range";
26
+ SEARCH_SEVICE2["ORANGE"] = "oRange";
27
+ SEARCH_SEVICE2["LORANGE"] = "loRange";
28
+ SEARCH_SEVICE2["RORANGE"] = "roRange";
29
+ SEARCH_SEVICE2["VERSIONIN"] = "versionIn";
30
+ return SEARCH_SEVICE2;
31
+ })(SEARCH_SEVICE || {});
32
+ const notSingleArr = [
33
+ "in" /* IN */,
34
+ "notIn" /* NOTIN */,
35
+ "containAny" /* CONTAINANY */,
36
+ "containAll" /* CONTAINALL */,
37
+ "versionIn" /* VERSIONIN */
38
+ ];
39
+ var AGLINE_ENUMS = /* @__PURE__ */ ((AGLINE_ENUMS2) => {
40
+ AGLINE_ENUMS2["LEFT"] = "left";
41
+ AGLINE_ENUMS2["CENTER"] = "center";
42
+ AGLINE_ENUMS2["RIGHT"] = "right";
43
+ AGLINE_ENUMS2["BETWEEN"] = "between";
44
+ return AGLINE_ENUMS2;
45
+ })(AGLINE_ENUMS || {});
46
+ const presetColor = [
47
+ "#DBDBDB",
48
+ "#FFE4E4",
49
+ "#D1D1D1",
50
+ "#838383",
51
+ "#838383",
52
+ "#FFEECB",
53
+ "#D8E3FF",
54
+ "#FF8888",
55
+ "#FF8888",
56
+ "#0DAA9C",
57
+ "#3370FF"
58
+ ];
59
+ var ButtonOpeEnum = /* @__PURE__ */ ((ButtonOpeEnum2) => {
60
+ ButtonOpeEnum2[ButtonOpeEnum2["SINGLELINE"] = 0] = "SINGLELINE";
61
+ ButtonOpeEnum2[ButtonOpeEnum2["HEAD"] = 1] = "HEAD";
62
+ ButtonOpeEnum2[ButtonOpeEnum2["BATCH"] = 2] = "BATCH";
63
+ ButtonOpeEnum2[ButtonOpeEnum2["SINGLELINE_RDO"] = 3] = "SINGLELINE_RDO";
64
+ return ButtonOpeEnum2;
65
+ })(ButtonOpeEnum || {});
66
+ var RdoButtonOpeEnum = /* @__PURE__ */ ((RdoButtonOpeEnum2) => {
67
+ RdoButtonOpeEnum2[RdoButtonOpeEnum2["parentVersion"] = 0] = "parentVersion";
68
+ RdoButtonOpeEnum2[RdoButtonOpeEnum2["childVersion"] = 1] = "childVersion";
69
+ return RdoButtonOpeEnum2;
70
+ })(RdoButtonOpeEnum || {});
71
+
72
+ export { AGLINE_ENUMS, ButtonOpeEnum, RdoButtonOpeEnum, SEARCH_SEVICE, notSingleArr, presetColor };
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @description: Exception related enumeration
3
+ */
4
+ export declare enum ExceptionEnum {
5
+ PAGE_NOT_ACCESS = 403,
6
+ PAGE_NOT_FOUND = 404,
7
+ ERROR = 500,
8
+ NET_WORK_ERROR = 10000,
9
+ PAGE_NOT_DATA = 10100
10
+ }
11
+ export declare enum ErrorTypeEnum {
12
+ VUE = "vue",
13
+ SCRIPT = "script",
14
+ RESOURCE = "resource",
15
+ AJAX = "ajax",
16
+ PROMISE = "promise"
17
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var ExceptionEnum = /* @__PURE__ */ ((ExceptionEnum2) => {
3
+ ExceptionEnum2[ExceptionEnum2["PAGE_NOT_ACCESS"] = 403] = "PAGE_NOT_ACCESS";
4
+ ExceptionEnum2[ExceptionEnum2["PAGE_NOT_FOUND"] = 404] = "PAGE_NOT_FOUND";
5
+ ExceptionEnum2[ExceptionEnum2["ERROR"] = 500] = "ERROR";
6
+ ExceptionEnum2[ExceptionEnum2["NET_WORK_ERROR"] = 1e4] = "NET_WORK_ERROR";
7
+ ExceptionEnum2[ExceptionEnum2["PAGE_NOT_DATA"] = 10100] = "PAGE_NOT_DATA";
8
+ return ExceptionEnum2;
9
+ })(ExceptionEnum || {});
10
+ var ErrorTypeEnum = /* @__PURE__ */ ((ErrorTypeEnum2) => {
11
+ ErrorTypeEnum2["VUE"] = "vue";
12
+ ErrorTypeEnum2["SCRIPT"] = "script";
13
+ ErrorTypeEnum2["RESOURCE"] = "resource";
14
+ ErrorTypeEnum2["AJAX"] = "ajax";
15
+ ErrorTypeEnum2["PROMISE"] = "promise";
16
+ return ErrorTypeEnum2;
17
+ })(ErrorTypeEnum || {});
18
+
19
+ export { ErrorTypeEnum, ExceptionEnum };
@@ -0,0 +1,65 @@
1
+ /**
2
+ * @description: Request result set
3
+ */
4
+ export declare enum ResultEnum {
5
+ SUCCESS = 200,
6
+ ERROR = -1,
7
+ TIMEOUT = 401,
8
+ TYPE = "success"
9
+ }
10
+ /**
11
+ * @description: request method
12
+ */
13
+ export declare enum RequestEnum {
14
+ GET = "GET",
15
+ POST = "POST",
16
+ PUT = "PUT",
17
+ DELETE = "DELETE"
18
+ }
19
+ /**
20
+ * @description: contentType
21
+ */
22
+ export declare enum ContentTypeEnum {
23
+ JSON = "application/json;charset=UTF-8",
24
+ FORM_URLENCODED = "application/x-www-form-urlencoded;charset=UTF-8",
25
+ FORM_DATA = "multipart/form-data;charset=UTF-8"
26
+ }
27
+ export declare enum BizServiceEnum {
28
+ submit = "post",
29
+ listByIds = "get",
30
+ getone = "post",
31
+ listAll = "post",
32
+ listByPage = "post",
33
+ listTree = "post",
34
+ save = "post",
35
+ saveOrUpdate = "post",
36
+ saveBatch = "post",
37
+ importData = "post",
38
+ exportData = "post",
39
+ remove = "post",
40
+ removeById = "delete",
41
+ removeByIds = "delete",
42
+ update = "put",
43
+ updateById = "put",
44
+ updateByIds = "put",
45
+ rdoSave = "post",
46
+ rdoListAll = "post",
47
+ rdoListByPage = "post",
48
+ rdoListVersionById = "get",
49
+ rdoSaveVersion = "post",
50
+ rdoSaveBatch = "post",
51
+ rdoUpdateVersionById = "put",
52
+ rdoRemoveVersionById = "delete",
53
+ rdoRemoveById = "delete",
54
+ rdoGetVersionById = "get",
55
+ getOne = "post",
56
+ rdoGetVersionByRefId = "post",
57
+ getById = "get",
58
+ rdoListAllVersion = "post",
59
+ rdoRefListByPage = "post",
60
+ export = "post",
61
+ import = "post",
62
+ rdoExport = "post",
63
+ rdoImport = "post",
64
+ biz_search = "post"
65
+ }
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ var ResultEnum = /* @__PURE__ */ ((ResultEnum2) => {
3
+ ResultEnum2[ResultEnum2["SUCCESS"] = 200] = "SUCCESS";
4
+ ResultEnum2[ResultEnum2["ERROR"] = -1] = "ERROR";
5
+ ResultEnum2[ResultEnum2["TIMEOUT"] = 401] = "TIMEOUT";
6
+ ResultEnum2["TYPE"] = "success";
7
+ return ResultEnum2;
8
+ })(ResultEnum || {});
9
+ var RequestEnum = /* @__PURE__ */ ((RequestEnum2) => {
10
+ RequestEnum2["GET"] = "GET";
11
+ RequestEnum2["POST"] = "POST";
12
+ RequestEnum2["PUT"] = "PUT";
13
+ RequestEnum2["DELETE"] = "DELETE";
14
+ return RequestEnum2;
15
+ })(RequestEnum || {});
16
+ var ContentTypeEnum = /* @__PURE__ */ ((ContentTypeEnum2) => {
17
+ ContentTypeEnum2["JSON"] = "application/json;charset=UTF-8";
18
+ ContentTypeEnum2["FORM_URLENCODED"] = "application/x-www-form-urlencoded;charset=UTF-8";
19
+ ContentTypeEnum2["FORM_DATA"] = "multipart/form-data;charset=UTF-8";
20
+ return ContentTypeEnum2;
21
+ })(ContentTypeEnum || {});
22
+ var BizServiceEnum = /* @__PURE__ */ ((BizServiceEnum2) => {
23
+ BizServiceEnum2["submit"] = "post";
24
+ BizServiceEnum2["listByIds"] = "get";
25
+ BizServiceEnum2["getone"] = "post";
26
+ BizServiceEnum2["listAll"] = "post";
27
+ BizServiceEnum2["listByPage"] = "post";
28
+ BizServiceEnum2["listTree"] = "post";
29
+ BizServiceEnum2["save"] = "post";
30
+ BizServiceEnum2["saveOrUpdate"] = "post";
31
+ BizServiceEnum2["saveBatch"] = "post";
32
+ BizServiceEnum2["importData"] = "post";
33
+ BizServiceEnum2["exportData"] = "post";
34
+ BizServiceEnum2["remove"] = "post";
35
+ BizServiceEnum2["removeById"] = "delete";
36
+ BizServiceEnum2["removeByIds"] = "delete";
37
+ BizServiceEnum2["update"] = "put";
38
+ BizServiceEnum2["updateById"] = "put";
39
+ BizServiceEnum2["updateByIds"] = "put";
40
+ BizServiceEnum2["rdoSave"] = "post";
41
+ BizServiceEnum2["rdoListAll"] = "post";
42
+ BizServiceEnum2["rdoListByPage"] = "post";
43
+ BizServiceEnum2["rdoListVersionById"] = "get";
44
+ BizServiceEnum2["rdoSaveVersion"] = "post";
45
+ BizServiceEnum2["rdoSaveBatch"] = "post";
46
+ BizServiceEnum2["rdoUpdateVersionById"] = "put";
47
+ BizServiceEnum2["rdoRemoveVersionById"] = "delete";
48
+ BizServiceEnum2["rdoRemoveById"] = "delete";
49
+ BizServiceEnum2["rdoGetVersionById"] = "get";
50
+ BizServiceEnum2["getOne"] = "post";
51
+ BizServiceEnum2["rdoGetVersionByRefId"] = "post";
52
+ BizServiceEnum2["getById"] = "get";
53
+ BizServiceEnum2["rdoListAllVersion"] = "post";
54
+ BizServiceEnum2["rdoRefListByPage"] = "post";
55
+ BizServiceEnum2["export"] = "post";
56
+ BizServiceEnum2["import"] = "post";
57
+ BizServiceEnum2["rdoExport"] = "post";
58
+ BizServiceEnum2["rdoImport"] = "post";
59
+ BizServiceEnum2["biz_search"] = "post";
60
+ return BizServiceEnum2;
61
+ })(BizServiceEnum || {});
62
+
63
+ export { BizServiceEnum, ContentTypeEnum, RequestEnum, ResultEnum };
@@ -0,0 +1,15 @@
1
+ export * from './app-designer';
2
+ export * from './page-designer';
3
+ export * from './appEnum';
4
+ export * from './appStateEnum';
5
+ export * from './authActionEnum';
6
+ export * from './breakpointEnum';
7
+ export * from './cacheEnum';
8
+ export * from './designEnum';
9
+ export * from './exceptionEnum';
10
+ export * from './httpEnum';
11
+ export * from './menuEnum';
12
+ export * from './pageEnum';
13
+ export * from './roleEnum';
14
+ export * from './sizeEnum';
15
+ export * from './processEnum';
@@ -0,0 +1,21 @@
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';
6
+ 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 { ASSIGNMENTSTRATEGY_ENUM, BorderStyle, COLUMNS_TYPE, Dependency_ENUM, DisplayType, EventCategory, GLOBAL_TYPE, GLOBAL_VAR_TYPE, INNER_EVENT, PanelEnum, Postion, ProgressTypeEnum, PropGroup, SUB_TABLE_EDIT_MODE, SUB_TABLE_OPE_EVENT_TYPE, SUB_TABLE_OPE_EVENT_TYPE_INLINE, StyleGroup, TagTypeEnum, TextAlign, TextDecoration, VERIFICATIONCONDITIONS_TYPE, tagEnum } from './page-designer/panel.mjs';
17
+ export { ToolkitEnum } from './page-designer/toolkit.mjs';
18
+ export { BuiltinType, ButtonColorTheme, ButtonColorType, ButtonGroupType, ButtonSize, ButtonStyle, ButtonType, ButtonTypeGroup, ButtonType_vant, CURRENCY_ENUM, CURRENCY_LANG_ENUM, CategoryTypeEnum, DatasourceTypeEnum, DateRangeEnums, DisplayEnums, KeyMode, ListTreeSearchTypeEnum, Platform, PrintModeEnums, ResetRuleType, RowSelectionTypeEnums, SelectPickerEnums, SignatureTypeEnum, StatisticalMethodEnums, TIMETYPE_ENUM, TIMETYPE_LANG_ENUM, TableEditingMethodEnum, TableSearchTypeEnum, TableTypeEnum, TransactionMode, WidgetInScopeEnum, openWindowEnums, operateSysEnums } from './page-designer/widget.mjs';
19
+ export { BindCmpStyleEnum, BindCmpStyleTypeEnum, Ch_BindCmpStyleEnum, FormComponents, SCOPE, SearchComponents, bindCmpStyleMap, buttonShowType, controlConfigEnum, fixedAlignENUM, searchListByFieldType, sortTypeEnum, statisticalMethodEnum, tableColumnTypeEnum, tableColumnWidthEnum, tabsTypeENUM, transformBindCmp2CmpType } from './page-designer/designer.mjs';
20
+
21
+ "use strict";
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @description: menu type
3
+ */
4
+ export declare enum MenuTypeEnum {
5
+ SIDEBAR = "sidebar",
6
+ MIX_SIDEBAR = "mix-sidebar",
7
+ MIX = "mix",
8
+ TOP_MENU = "top-menu"
9
+ }
10
+ export declare enum TriggerEnum {
11
+ NONE = "NONE",
12
+ FOOTER = "FOOTER",
13
+ HEADER = "HEADER"
14
+ }
15
+ export type Mode = 'vertical' | 'vertical-right' | 'horizontal' | 'inline';
16
+ export declare enum MenuModeEnum {
17
+ VERTICAL = "vertical",
18
+ HORIZONTAL = "horizontal",
19
+ VERTICAL_RIGHT = "vertical-right",
20
+ INLINE = "inline"
21
+ }
22
+ export declare enum MenuSplitTyeEnum {
23
+ NONE = 0,
24
+ TOP = 1,
25
+ LEFT = 2
26
+ }
27
+ export declare enum TopMenuAlignEnum {
28
+ CENTER = "center",
29
+ START = "start",
30
+ END = "end"
31
+ }
32
+ export declare enum MixSidebarTriggerEnum {
33
+ HOVER = "hover",
34
+ CLICK = "click"
35
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var MenuTypeEnum = /* @__PURE__ */ ((MenuTypeEnum2) => {
3
+ MenuTypeEnum2["SIDEBAR"] = "sidebar";
4
+ MenuTypeEnum2["MIX_SIDEBAR"] = "mix-sidebar";
5
+ MenuTypeEnum2["MIX"] = "mix";
6
+ MenuTypeEnum2["TOP_MENU"] = "top-menu";
7
+ return MenuTypeEnum2;
8
+ })(MenuTypeEnum || {});
9
+ var TriggerEnum = /* @__PURE__ */ ((TriggerEnum2) => {
10
+ TriggerEnum2["NONE"] = "NONE";
11
+ TriggerEnum2["FOOTER"] = "FOOTER";
12
+ TriggerEnum2["HEADER"] = "HEADER";
13
+ return TriggerEnum2;
14
+ })(TriggerEnum || {});
15
+ var MenuModeEnum = /* @__PURE__ */ ((MenuModeEnum2) => {
16
+ MenuModeEnum2["VERTICAL"] = "vertical";
17
+ MenuModeEnum2["HORIZONTAL"] = "horizontal";
18
+ MenuModeEnum2["VERTICAL_RIGHT"] = "vertical-right";
19
+ MenuModeEnum2["INLINE"] = "inline";
20
+ return MenuModeEnum2;
21
+ })(MenuModeEnum || {});
22
+ var MenuSplitTyeEnum = /* @__PURE__ */ ((MenuSplitTyeEnum2) => {
23
+ MenuSplitTyeEnum2[MenuSplitTyeEnum2["NONE"] = 0] = "NONE";
24
+ MenuSplitTyeEnum2[MenuSplitTyeEnum2["TOP"] = 1] = "TOP";
25
+ MenuSplitTyeEnum2[MenuSplitTyeEnum2["LEFT"] = 2] = "LEFT";
26
+ return MenuSplitTyeEnum2;
27
+ })(MenuSplitTyeEnum || {});
28
+ var TopMenuAlignEnum = /* @__PURE__ */ ((TopMenuAlignEnum2) => {
29
+ TopMenuAlignEnum2["CENTER"] = "center";
30
+ TopMenuAlignEnum2["START"] = "start";
31
+ TopMenuAlignEnum2["END"] = "end";
32
+ return TopMenuAlignEnum2;
33
+ })(TopMenuAlignEnum || {});
34
+ var MixSidebarTriggerEnum = /* @__PURE__ */ ((MixSidebarTriggerEnum2) => {
35
+ MixSidebarTriggerEnum2["HOVER"] = "hover";
36
+ MixSidebarTriggerEnum2["CLICK"] = "click";
37
+ return MixSidebarTriggerEnum2;
38
+ })(MixSidebarTriggerEnum || {});
39
+
40
+ export { MenuModeEnum, MenuSplitTyeEnum, MenuTypeEnum, MixSidebarTriggerEnum, TopMenuAlignEnum, TriggerEnum };
@@ -0,0 +1,277 @@
1
+ import { FIELD_TYPE } from '../appEnum';
2
+ export declare enum SCOPE {
3
+ PAGE = "page",
4
+ MODAL = "modal"
5
+ }
6
+ export declare enum FormComponents {
7
+ RdoInput = "rdo-input",
8
+ Input = "input",
9
+ ElectronicSignature = "electronic-signature",
10
+ UseinfoButton = "useinfo-button",
11
+ ModelingButton = "modeling-button",
12
+ ImportButton = "gc-import-button",
13
+ ExportButton = "gc-export-button",
14
+ DocumentPrintButton = "document-print-button",
15
+ SubmitButton = "submit-button",
16
+ BatchDeleteButton = "batchdelete-button",
17
+ CustomButton = "custom-button",
18
+ TableLinkButton = "table-link-button",
19
+ TableInfoButton = "table-info-button",
20
+ TableApproveButton = "table-approve-button",
21
+ OpeButton = "ope-button",
22
+ ResetButton = "reset-button",
23
+ RdoSaveButton = "rdo-save-button",
24
+ LabelPrintButton = "labelprint-button",
25
+ ProcessButton = "process-button",
26
+ ProcessApproveButton = "process-approve-button",
27
+ CreateButton = "create-button",
28
+ DeleteButton = "delete-button",
29
+ CopyButton = "copy-button",
30
+ RefreshButton = "refresh-button",
31
+ CreateVersionButton = "create-version-button",
32
+ CopyVersionButton = "copy-version-button",
33
+ Checkbox = "checkbox",
34
+ DataTable = "data-table",
35
+ TreeTable = "tree-table",
36
+ DataTableColumn = "data-table-column",
37
+ RefDataTable = "ref-data-table",
38
+ DataList = "data-list",
39
+ RdoDataList = "rdo-data-list",
40
+ DataTableOpe = "data-table-ope",
41
+ DataTableFormula = "data-table-formula",
42
+ Datepicker = "datepicker",
43
+ DateTimepicker = "datetimepicker",
44
+ Department = "department",
45
+ Form = "form",
46
+ RdoForm = "rdo-form",
47
+ RdoTable = "rdo-table",
48
+ MedProRdoForm = "medprordo-form",
49
+ MedProRdoTable = "medprordo-table",
50
+ FormProcess = "form-process",
51
+ Inputmoney = "inputmoney",
52
+ Inputnumber = "inputnumber",
53
+ InputDouble = "inputdouble",
54
+ Radio = "radio",
55
+ Select = "select",
56
+ RdoSelect = "rdo-select",
57
+ Switch = "switch",
58
+ Textarea = "textarea",
59
+ Timepicker = "timepicker",
60
+ Userpicker = "userpicker",
61
+ Search = "search",
62
+ SelectSearch = "select-search",
63
+ QuickSearch = "quick-search",
64
+ LayoutContainer = "layout-container",
65
+ ButtonContainer = "button-container",
66
+ ButtonProcessContainer = "button-process-container",
67
+ BottomButtonContainer = "bottom-button-container",
68
+ Grid = "grid",
69
+ GridCol = "grid-col",
70
+ Tabs = "tabs",
71
+ TabPane = "tab-pane",
72
+ LeftRightColumns = "left-right-columns",
73
+ TopBottomColumns = "top-bottom-columns",
74
+ LeftLayoutThree = "left-layout-three",
75
+ TopLayoutThree = "top-layout-three",
76
+ UploadFile = "upload-file",
77
+ UploadImage = "upload-image",
78
+ SubTable = "sub-table",
79
+ SubTableOpe = "sub-table-ope",
80
+ SubTableAddBtn = "sub-table-add-button",
81
+ SubTableCopyBtn = "sub-table-copy-button",
82
+ SubTableEditBtn = "sub-table-edit-button",
83
+ SubTableDeleteBtn = "sub-table-delete-button",
84
+ LinkPageBtn = "link-page-button",
85
+ Collapse = "collapse",
86
+ CardList = "card-list",
87
+ CardHeaderLeft = "card-header-left",
88
+ CardHeaderRight = "card-header-right",
89
+ CardContent = "card-content",
90
+ CardOpeBtn = "card-ope-btn",
91
+ BaseButton = "base-button",
92
+ ReadonlyCmp = "readonlycmp",
93
+ TableSelect = "table-select",
94
+ GenCheckbox = "gen-checkbox",
95
+ GenRadio = "gen-radio",
96
+ GenSwitch = "gen-switch",
97
+ WorkflowNodes = "workflow-nodes",
98
+ WorkflowNodeModal = "workflow-node-modal",
99
+ ESOP = "e-sop",
100
+ /** 公式 */
101
+ EXPRESSION = "expression",
102
+ /** 公式条件 */
103
+ ExpressionCondition = "expression-condition",
104
+ /** 汇总 */
105
+ AGG = "agg",
106
+ DynamicFormType = "dynamic-form-type",
107
+ DynamicFormValue = "dynamic-form-value",
108
+ DynamicFormOpts = "dynamic-form-options",
109
+ DynamicFormShowType = "dynamic-form-show-type",
110
+ DynamicTable = "dynamic-table",
111
+ Transaction = "transaction",
112
+ SerialRule = "serial-rule",
113
+ LabelTemplate = "label-template",
114
+ LabelTemplateRef = "label-template-ref",
115
+ DocumentTemplate = "document-template",
116
+ Wacom = "wacom",
117
+ Text = "text",
118
+ CustomField = "custom-field",
119
+ Printer = "printer",
120
+ Descriptions = "descriptions",
121
+ RangeUser = "range-user",
122
+ GenImage = "gen-image",
123
+ TestButton = "test-button",
124
+ Iframe = "iframe",
125
+ ExcuteButton = "medproexcute-button",
126
+ SubDataTable = "sub-data-table",
127
+ Signature = "signature",
128
+ OnlineForm = "online-form",
129
+ TmplTreeSelect = "tmpl-tree-select",
130
+ Boolean = "boolean",
131
+ BizProcess = "biz-process",
132
+ ApprovalHistory = "approval-history",
133
+ FlowDiagram = "flow-diagram"
134
+ }
135
+ export declare enum SearchComponents {
136
+ SearchInput = "SearchInput",
137
+ SearchNumberInput = "SearchNumberInput",
138
+ SearchStringNumberInput = "SearchStringNumberInput",
139
+ SearchSwitch = "SearchSwitch",
140
+ SearchDate = "SearchDate",
141
+ SearchDateTime = "SearchDateTime",
142
+ SearchTime = "SearchTime",
143
+ SearchSelect = "SearchSelect",
144
+ SearchRdoSelect = "SearchRdoSelect",
145
+ SearchTransaction = "SearchTransaction",
146
+ SearchTmplTreeSelect = "SearchTmplTreeSelect",
147
+ SearchPrinter = "SearchPrinter",
148
+ SearchBizProcess = "SearchBizProcess"
149
+ }
150
+ export declare enum tableColumnWidthEnum {
151
+ /**自适应 */
152
+ ATUO = "selfAdaption",
153
+ /**固定 */
154
+ ENUMERATION = "fixed",
155
+ /**百分比 */
156
+ PERCENTAGE = "percentage"
157
+ }
158
+ export declare enum controlConfigEnum {
159
+ NULL = "NULL",
160
+ STRING = "\u7A7A\u5B57\u7B26\u4E32",
161
+ ZERO = "0"
162
+ }
163
+ export declare enum statisticalMethodEnum {
164
+ TOTAL = "total",
165
+ AVERAGE = "average"
166
+ }
167
+ export declare enum fixedAlignENUM {
168
+ RIGHT = "right",
169
+ NONE = "",
170
+ LEFT = "left"
171
+ }
172
+ export declare enum tableColumnTypeEnum {
173
+ COLUMN_TEXT = "COLUMN_TEXT",
174
+ COLUMN_NUMBER = "COLUMN_NUMBER",
175
+ COLUMNTEXT_DATA = "COLUMNTEXT_DATA",
176
+ COLUMNTEXT_REF = "COLUMNTEXT_REF",
177
+ COLUMNTEXT_ENUM = "COLUMNTEXT_ENUM",
178
+ COLUMNTEXT_ORG = "COLUMNTEXT_ORG",
179
+ COLUMNTEXT_USER = "COLUMNTEXT_USER",
180
+ COLUMNTEXT_BOOLEAN = "COLUMNTEXT_BOOLEAN",
181
+ COLUMNTEXT_IMAGE = "COLUMNTEXT_IMAGE"
182
+ }
183
+ export declare enum tabsTypeENUM {
184
+ LINE = "line",
185
+ CARD = "card",
186
+ TEXt = "text",
187
+ CAPSULE = "capsule",
188
+ CUSTOM = "custom"
189
+ }
190
+ export declare enum sortTypeEnum {
191
+ ASC = "asc",
192
+ DESC = "desc"
193
+ }
194
+ /** 组件类型下拉框枚举 */
195
+ export declare enum BindCmpStyleEnum {
196
+ /** 单行文本 */
197
+ CMP_TEXT = "TEXT",
198
+ /** 多行文本 */
199
+ CMP_TEXTAREA = "TEXTAREA",
200
+ /** 电子签名 */
201
+ CMP_ELECTRONICSIGNATURE = "ELECTRONICSIGNATURE",
202
+ /** 开关 */
203
+ CMP_BOOLEAN = "BOOLEAN",
204
+ /** 下拉列表 */
205
+ CMP_SELECT_LIST = "SELECT_LIST",
206
+ /** 单选框 */
207
+ CMP_RADIO = "RADIO",
208
+ /** 多选框 */
209
+ CMP_CHECKBOX = "CHECKBOX",
210
+ /** 下拉选择 */
211
+ CMP_DROPDOWN_SELECT = "dropdownSelection",
212
+ /** 模态框 */
213
+ CMP_MODAL = "modalBoxSelection",
214
+ /** 树形选择 */
215
+ CMP_TREE_SELECTION = "treeSelection",
216
+ /** 数值 */
217
+ CMP_NUMBER = "NUMBER",
218
+ /** 显示币种 */
219
+ CMP_CURRENCY = "CURRENCY",
220
+ /** 显示时间 */
221
+ CMP_TIME = "TIME"
222
+ }
223
+ /** 组件类型下拉框国际化枚举 */
224
+ export declare const Ch_BindCmpStyleEnum: {
225
+ TEXT: string;
226
+ TEXTAREA: string;
227
+ ELECTRONICSIGNATURE: string;
228
+ BOOLEAN: string;
229
+ SELECT_LIST: string;
230
+ RADIO: string;
231
+ CHECKBOX: string;
232
+ dropdownSelection: string;
233
+ modalBoxSelection: string;
234
+ treeSelection: string;
235
+ NUMBER: string;
236
+ CURRENCY: string;
237
+ TIME: string;
238
+ };
239
+ /** 组件类型下拉框类型 */
240
+ export declare enum BindCmpStyleTypeEnum {
241
+ BindText = "bindText",
242
+ BindLongText = "BindLongText",
243
+ BindBool = "bindBool",
244
+ BindPerson = "bindPerson",
245
+ BindDept = "bindDept",
246
+ BindLink = "bindLink",
247
+ BindMulti = "bindMulti",
248
+ BindNum = "bindNum",
249
+ BindDecimal = "bindDecimal"
250
+ }
251
+ /** 组件类型下拉框类型对应组件类型 */
252
+ export declare const transformBindCmp2CmpType: {
253
+ TEXT: FormComponents;
254
+ TEXTAREA: FormComponents;
255
+ ELECTRONICSIGNATURE: FormComponents;
256
+ SELECT_LIST: FormComponents;
257
+ RADIO: FormComponents;
258
+ CHECKBOX: FormComponents;
259
+ };
260
+ /** 组件类型下拉框集合 */
261
+ export declare const bindCmpStyleMap: {
262
+ bindText: BindCmpStyleEnum[];
263
+ BindLongText: BindCmpStyleEnum[];
264
+ bindBool: BindCmpStyleEnum[];
265
+ bindPerson: BindCmpStyleEnum[];
266
+ bindDept: BindCmpStyleEnum[];
267
+ bindLink: BindCmpStyleEnum[];
268
+ bindMulti: BindCmpStyleEnum[];
269
+ bindNum: BindCmpStyleEnum[];
270
+ bindDecimal: BindCmpStyleEnum[];
271
+ };
272
+ export declare enum buttonShowType {
273
+ FOLD_ALL = "foldAll",
274
+ FOLD_PART = "foldPart"
275
+ }
276
+ /** 支持查询的字段类型 */
277
+ export declare const searchListByFieldType: FIELD_TYPE[];