@gct-paas/core 0.1.4-dev.11 → 0.1.4-dev.12

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 (130) hide show
  1. package/dist/index.esm.min.js +21679 -0
  2. package/es/constants/core.mjs +5 -4
  3. package/es/constants/default-date-type/default-date-type.mjs +73 -21
  4. package/es/constants/editor-register/editor-register.mjs +17 -5
  5. package/es/constants/expression-type/BuiltOperators.mjs +152 -147
  6. package/es/constants/expression-type/FunctionKeys.mjs +75 -79
  7. package/es/constants/expression-type/editor.mjs +10 -3
  8. package/es/constants/expression-type/function.mjs +602 -613
  9. package/es/constants/expression-type/index.mjs +111 -113
  10. package/es/constants/expression-type/modeCfg.mjs +256 -263
  11. package/es/constants/expression-type/variable.mjs +43 -39
  12. package/es/constants/form-container-type/form-container-type.mjs +17 -5
  13. package/es/constants/index.mjs +30 -10
  14. package/es/constants/page-designer/model.mjs +15 -5
  15. package/es/create-app-vue.mjs +15 -9
  16. package/es/enums/app-designer/index.d.ts +19 -0
  17. package/es/enums/app-designer/index.mjs +131 -63
  18. package/es/enums/appEnum.mjs +681 -360
  19. package/es/enums/appStateEnum.mjs +17 -10
  20. package/es/enums/authActionEnum.mjs +63 -51
  21. package/es/enums/breakpointEnum.mjs +27 -26
  22. package/es/enums/cacheEnum.mjs +22 -21
  23. package/es/enums/designEnum.mjs +110 -71
  24. package/es/enums/developer-center/integration.mjs +7 -6
  25. package/es/enums/exceptionEnum.mjs +21 -17
  26. package/es/enums/expressionEnum.d.ts +1 -1
  27. package/es/enums/expressionEnum.mjs +81 -74
  28. package/es/enums/globalEnum.mjs +59 -36
  29. package/es/enums/httpEnum.mjs +71 -61
  30. package/es/enums/index.mjs +43 -14
  31. package/es/enums/menuEnum.mjs +42 -38
  32. package/es/enums/page-designer/designer.mjs +403 -407
  33. package/es/enums/page-designer/index.mjs +4 -0
  34. package/es/enums/page-designer/panel.mjs +341 -213
  35. package/es/enums/page-designer/toolkit.mjs +13 -12
  36. package/es/enums/page-designer/widget.mjs +425 -338
  37. package/es/enums/pageEnum.mjs +14 -13
  38. package/es/enums/plugin-enum.mjs +23 -7
  39. package/es/enums/processEnum.mjs +95 -60
  40. package/es/enums/roleEnum.mjs +7 -6
  41. package/es/enums/sizeEnum.d.ts +18 -0
  42. package/es/enums/sizeEnum.mjs +28 -8
  43. package/es/global/gct/gct.mjs +84 -96
  44. package/es/global/index.mjs +1 -0
  45. package/es/hooks/index.mjs +4 -0
  46. package/es/hooks/use-app-inst/use-app-inst.mjs +11 -5
  47. package/es/hooks/use-modal/use-modal.mjs +16 -10
  48. package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +43 -23
  49. package/es/hooks/useCopyToClipboard.mjs +50 -50
  50. package/es/index.mjs +122 -114
  51. package/es/locale/index.mjs +43 -57
  52. package/es/modules/env-manager/env-manager.const.mjs +16 -8
  53. package/es/modules/env-manager/env-manager.interface.mjs +14 -7
  54. package/es/modules/env-manager/env-manager.mjs +104 -107
  55. package/es/modules/error-handler/error-handler.const.mjs +11 -16
  56. package/es/modules/error-handler/error-strategy.mjs +199 -175
  57. package/es/modules/error-handler/index.mjs +120 -106
  58. package/es/modules/mqtt/constants/mqtt.const.mjs +21 -24
  59. package/es/modules/mqtt/enums/mqtt-status.enum.mjs +23 -9
  60. package/es/modules/mqtt/index.mjs +4 -0
  61. package/es/modules/mqtt/mqtt-client.mjs +228 -261
  62. package/es/modules/mqtt/mqtt-manager.mjs +117 -77
  63. package/es/modules/platform-config/constants/index.mjs +4 -0
  64. package/es/modules/platform-config/constants/login.const.mjs +48 -45
  65. package/es/modules/platform-config/constants/org.const.mjs +57 -52
  66. package/es/modules/platform-config/constants/theme.const.mjs +11 -4
  67. package/es/modules/platform-config/constants/watermark.const.mjs +17 -12
  68. package/es/modules/platform-config/enums/deploy.enum.mjs +13 -6
  69. package/es/modules/platform-config/enums/login.enum.mjs +29 -15
  70. package/es/modules/platform-config/enums/platform.enum.mjs +16 -13
  71. package/es/modules/platform-config/index.mjs +9 -0
  72. package/es/modules/platform-config/store.mjs +68 -79
  73. package/es/modules/platform-config/useBasicSetting.mjs +47 -35
  74. package/es/modules/platform-config/useDeploySetting.mjs +29 -21
  75. package/es/modules/platform-config/useLoginSetting.mjs +151 -173
  76. package/es/modules/platform-config/useOrgSetting.mjs +63 -62
  77. package/es/modules/platform-config/useProjectSetting.mjs +14 -6
  78. package/es/modules/platform-config/useSecuritySetting.mjs +68 -56
  79. package/es/modules/platform-config/useThemeSetting.mjs +78 -59
  80. package/es/modules/platform-config/useWatermarkSetting.mjs +37 -23
  81. package/es/modules/user-stores/index.mjs +3 -0
  82. package/es/modules/user-stores/store/permission.store.mjs +27 -36
  83. package/es/modules/user-stores/store/tenant.store.mjs +20 -22
  84. package/es/modules/user-stores/store/user.store.mjs +94 -117
  85. package/es/router/index.mjs +25 -28
  86. package/es/setup-app.mjs +23 -39
  87. package/es/state/global-pinia-state/global-pinia-state.mjs +49 -71
  88. package/es/state/index.mjs +1 -0
  89. package/es/store/global-store.mjs +50 -72
  90. package/es/store/index.mjs +25 -19
  91. package/es/types/index.d.ts +7 -0
  92. package/es/utils/axios/interceptors.mjs +21 -17
  93. package/es/utils/cache-adapter/cache-adapter.mjs +61 -56
  94. package/es/utils/design/design.mjs +18 -12
  95. package/es/utils/deviceFingerprint.mjs +74 -63
  96. package/es/utils/dictionary/dictionary.mjs +142 -145
  97. package/es/utils/file/base64Conver.mjs +35 -30
  98. package/es/utils/file/download.mjs +94 -98
  99. package/es/utils/file/parser.d.ts +3 -0
  100. package/es/utils/file/parser.mjs +29 -0
  101. package/es/utils/i18n/index.mjs +14 -3
  102. package/es/utils/index.d.ts +1 -0
  103. package/es/utils/index.mjs +31 -0
  104. package/es/utils/is-sort-filed/is-sort-filed.mjs +42 -37
  105. package/es/utils/linked-list/linked-list.mjs +115 -118
  106. package/es/utils/linked-node/linked-node.mjs +41 -31
  107. package/es/utils/lowcode/utils.mjs +13 -18
  108. package/es/utils/lowcode/validate.mjs +20 -26
  109. package/es/utils/mitt/mitt.mjs +4 -4
  110. package/es/utils/model-loader/model-loader.mjs +280 -325
  111. package/es/utils/namespace/namespace.mjs +178 -164
  112. package/es/utils/openUtil/index.mjs +2 -0
  113. package/es/utils/openUtil/modal/modal.mjs +72 -79
  114. package/es/utils/openUtil/overlay-container/overlay-container.mjs +144 -138
  115. package/es/utils/permission.mjs +33 -37
  116. package/es/utils/plugin-static-resource/plugin-static-resource.mjs +46 -42
  117. package/es/utils/style/index.mjs +94 -138
  118. package/es/utils/tools/tools.mjs +86 -54
  119. package/es/utils/treeHelper/treeHelper.mjs +205 -233
  120. package/es/utils/uploader/uploader.mjs +81 -115
  121. package/es/utils/useUUid.mjs +79 -87
  122. package/es/utils/util.mjs +55 -35
  123. package/es/utils/uuid/uuid.d.ts +1 -0
  124. package/es/utils/uuid/uuid.mjs +36 -43
  125. package/es/utils/validate.mjs +15 -19
  126. package/es/utils/value-helper/value-helper.mjs +113 -98
  127. package/package.json +12 -13
  128. package/dist/index.esm.min.mjs +0 -18322
  129. package/dist/index.min.cjs +0 -393
  130. package/dist/index.system.min.js +0 -393
@@ -1,11 +1,31 @@
1
- export { ModeFnMap, ModeTabDict, ModeTabMap, ReturnTypeMaps } from './expression-type/modeCfg.mjs';
2
- export { BuiltOperators, allOperator, booleanOperator, getOperatorList, numberOperator, returnBolOperator } from './expression-type/BuiltOperators.mjs';
3
- export { biBackFunctionGroup, biBackFunctionMap, functionGroup, functionMap, ipaasBackFunctionGroup, ipaasBackFunctionMap } from './expression-type/function.mjs';
4
- export { SYSTEM_VAR_PREFIX, booleanTypes, innerVarIds, innerVarList, numberTypes } from './expression-type/variable.mjs';
5
-
6
- const STYLE_NAMESPACE_TAG = "gct";
7
- const PLUGIN_BASE_URL = "/minio";
8
- const VITE_MINIO_PATH = "/minio";
9
- const APP_INST = "app_inst";
10
-
1
+ import "./expression-type/modeCfg.mjs";
2
+ import "./expression-type/BuiltOperators.mjs";
3
+ import "./expression-type/editor.mjs";
4
+ import "./expression-type/function.mjs";
5
+ import "./expression-type/FunctionKeys.mjs";
6
+ import "./expression-type/variable.mjs";
7
+ import "./expression-type/index.mjs";
8
+ import "./editor-register/editor-register.mjs";
9
+ import "./form-container-type/form-container-type.mjs";
10
+ import "./default-date-type/default-date-type.mjs";
11
+ import "./core.mjs";
12
+ import "./page-designer/model.mjs";
13
+ //#region src/constants/index.ts
14
+ /**
15
+ * 默认样式命名空间名称
16
+ */
17
+ var STYLE_NAMESPACE_TAG = "gct";
18
+ /**
19
+ * 插件基础路径
20
+ */
21
+ var PLUGIN_BASE_URL = "/minio";
22
+ /**
23
+ * 图片文件基础路径
24
+ */
25
+ var VITE_MINIO_PATH = "/minio";
26
+ /**
27
+ * 应用实例全局标识符
28
+ */
29
+ var APP_INST = "app_inst";
30
+ //#endregion
11
31
  export { APP_INST, PLUGIN_BASE_URL, STYLE_NAMESPACE_TAG, VITE_MINIO_PATH };
@@ -1,7 +1,17 @@
1
- const ModelTypeOptions = [
2
- { value: "entity", label: "sys.pageDesigner.entity" },
3
- { value: "data", label: "sys.pageDesigner.data" },
4
- { value: "view", label: "sys.pageDesigner.view" }
1
+ //#region src/constants/page-designer/model.ts
2
+ var ModelTypeOptions = [
3
+ {
4
+ value: "entity",
5
+ label: "sys.pageDesigner.entity"
6
+ },
7
+ {
8
+ value: "data",
9
+ label: "sys.pageDesigner.data"
10
+ },
11
+ {
12
+ value: "view",
13
+ label: "sys.pageDesigner.view"
14
+ }
5
15
  ];
6
-
16
+ //#endregion
7
17
  export { ModelTypeOptions };
@@ -1,12 +1,18 @@
1
- import 'vue';
2
- import { setupI18n } from './locale/index.mjs';
3
- import { setupRouter } from './router/index.mjs';
4
- import { APP_INST } from './constants/index.mjs';
5
-
1
+ import { APP_INST } from "./constants/index.mjs";
2
+ import { setupI18n } from "./locale/index.mjs";
3
+ import { setupRouter } from "./router/index.mjs";
4
+ import "vue";
5
+ //#region src/create-app-vue.ts
6
+ /**
7
+ * 创建 Vue 应用并配置全局错误处理
8
+ *
9
+ * @export
10
+ * @param {App} app Vue 应用实例
11
+ */
6
12
  async function createAppVue(app) {
7
- app.provide(APP_INST, app);
8
- setupI18n(app);
9
- setupRouter(app);
13
+ app.provide(APP_INST, app);
14
+ setupI18n(app);
15
+ setupRouter(app);
10
16
  }
11
-
17
+ //#endregion
12
18
  export { createAppVue };
@@ -90,3 +90,22 @@ export declare enum pageLayoutModeEnum {
90
90
  /**展示所有数据 外部滚动*/
91
91
  SHOW_ALL_DATA = "showAllData"
92
92
  }
93
+ export declare enum TypeEnum {
94
+ FIXED = "fixed",
95
+ PLACEHOLDER = "placeholder",
96
+ DATE = "date",
97
+ LETTER = "letter",
98
+ INCREASE = "increase"
99
+ }
100
+ export declare enum PatternEnum {
101
+ yyyyMMdd = "sys.model.yyyyMMdd",
102
+ yyyyMM = "sys.model.yyyyMM",
103
+ MMddyyyy = "sys.model.MMddyyyy",
104
+ ddMMyyyy = "sys.model.ddMMyyyy",
105
+ MMyyyy = "sys.model.MMyyyy",
106
+ yyyywk = "sys.model.yyyywk",
107
+ yyyyMMddHH = "sys.model.yyyyMMddHH",
108
+ yyyyMMddHHmm = "sys.model.yyyyMMddHHmm",
109
+ yyyyMMddHHmmss = "sys.model.yyyyMMddHHmmss",
110
+ CUSTOM = "sys.customize"
111
+ }
@@ -1,64 +1,132 @@
1
- import { FIELD_TYPE } from '../appEnum.mjs';
2
-
3
- const SHOW_FIELDTYPES = [
4
- FIELD_TYPE.TEXT,
5
- FIELD_TYPE.LONG_TEXT,
6
- FIELD_TYPE.LONG,
7
- FIELD_TYPE.INTEGER,
8
- FIELD_TYPE.DECIMAL,
9
- FIELD_TYPE.DOUBLE,
10
- FIELD_TYPE.SERIAL
1
+ import { FIELD_TYPE } from "../appEnum.mjs";
2
+ //#region src/enums/app-designer/index.ts
3
+ /**
4
+ * 支持显示字段的类型
5
+ */
6
+ var SHOW_FIELDTYPES = [
7
+ FIELD_TYPE.TEXT,
8
+ FIELD_TYPE.LONG_TEXT,
9
+ FIELD_TYPE.LONG,
10
+ FIELD_TYPE.INTEGER,
11
+ FIELD_TYPE.DECIMAL,
12
+ FIELD_TYPE.DOUBLE,
13
+ FIELD_TYPE.SERIAL
11
14
  ];
12
- var UserServiceType = /* @__PURE__ */ ((UserServiceType2) => {
13
- UserServiceType2["SCRIPT_SERVICE"] = "SCRIPT_SERVICE";
14
- UserServiceType2["SQL_SERVICE"] = "SQL_SERVICE";
15
- UserServiceType2["SO_SERVICE"] = "SO_SERVICE";
16
- UserServiceType2["BUILTIN_SERVICE"] = "SYS_BUILTIN";
17
- return UserServiceType2;
18
- })(UserServiceType || {});
19
- var EntityModelCategoryEnum = /* @__PURE__ */ ((EntityModelCategoryEnum2) => {
20
- EntityModelCategoryEnum2["ENTITY"] = "entity";
21
- EntityModelCategoryEnum2["DATA"] = "data";
22
- EntityModelCategoryEnum2["VIEW"] = "view";
23
- EntityModelCategoryEnum2["FORM"] = "form";
24
- EntityModelCategoryEnum2["DATA_SET"] = "dataSet";
25
- return EntityModelCategoryEnum2;
26
- })(EntityModelCategoryEnum || {});
27
- var EntityModelTypeEnum = /* @__PURE__ */ ((EntityModelTypeEnum2) => {
28
- EntityModelTypeEnum2["BASE"] = "BASE";
29
- EntityModelTypeEnum2["NDO"] = "NDO";
30
- EntityModelTypeEnum2["RDO"] = "RDO";
31
- EntityModelTypeEnum2["TREE"] = "TREE";
32
- EntityModelTypeEnum2["DYNAMIC_FORM"] = "DYNAMIC_FORM";
33
- EntityModelTypeEnum2["WORKFLOW"] = "WORKFLOW";
34
- EntityModelTypeEnum2["TRANSACTION"] = "TRANSACTION";
35
- return EntityModelTypeEnum2;
36
- })(EntityModelTypeEnum || {});
37
- var FieldDefaultValueTypeEnum = /* @__PURE__ */ ((FieldDefaultValueTypeEnum2) => {
38
- FieldDefaultValueTypeEnum2["NONE"] = "NONE";
39
- FieldDefaultValueTypeEnum2["FIXED"] = "FIXED";
40
- FieldDefaultValueTypeEnum2["SYS_VAR"] = "SYS_VAR";
41
- return FieldDefaultValueTypeEnum2;
42
- })(FieldDefaultValueTypeEnum || {});
43
- var FieldSysVarDefaultValueEnum = /* @__PURE__ */ ((FieldSysVarDefaultValueEnum2) => {
44
- FieldSysVarDefaultValueEnum2["NULL"] = "";
45
- FieldSysVarDefaultValueEnum2["SYS_DATE"] = "SYS_DATE";
46
- FieldSysVarDefaultValueEnum2["SYS_TIME"] = "SYS_TIME";
47
- FieldSysVarDefaultValueEnum2["SYS_DATE_TIME"] = "SYS_DATE_TIME";
48
- FieldSysVarDefaultValueEnum2["CURRENT_USER"] = "CURRENT_USER";
49
- FieldSysVarDefaultValueEnum2["CURRENT_ORG"] = "CURRENT_ORG";
50
- return FieldSysVarDefaultValueEnum2;
51
- })(FieldSysVarDefaultValueEnum || {});
52
- var scriptTypeEnum = /* @__PURE__ */ ((scriptTypeEnum2) => {
53
- scriptTypeEnum2["EVENT"] = "event";
54
- scriptTypeEnum2["BUSINESSSERVICE"] = "businessService";
55
- scriptTypeEnum2["TIMER"] = "timer";
56
- return scriptTypeEnum2;
57
- })(scriptTypeEnum || {});
58
- var pageLayoutModeEnum = /* @__PURE__ */ ((pageLayoutModeEnum2) => {
59
- pageLayoutModeEnum2["SHOW_BOX_SCROLL"] = "showBoxScroll";
60
- pageLayoutModeEnum2["SHOW_ALL_DATA"] = "showAllData";
61
- return pageLayoutModeEnum2;
62
- })(pageLayoutModeEnum || {});
63
-
64
- export { EntityModelCategoryEnum, EntityModelTypeEnum, FieldDefaultValueTypeEnum, FieldSysVarDefaultValueEnum, SHOW_FIELDTYPES, UserServiceType, pageLayoutModeEnum, scriptTypeEnum };
15
+ /**
16
+ * 自定义业务服务类型
17
+ */
18
+ var UserServiceType = /* @__PURE__ */ function(UserServiceType) {
19
+ UserServiceType["SCRIPT_SERVICE"] = "SCRIPT_SERVICE";
20
+ UserServiceType["SQL_SERVICE"] = "SQL_SERVICE";
21
+ UserServiceType["SO_SERVICE"] = "SO_SERVICE";
22
+ UserServiceType["BUILTIN_SERVICE"] = "SYS_BUILTIN";
23
+ return UserServiceType;
24
+ }({});
25
+ /**
26
+ * 模型大类
27
+ */
28
+ var EntityModelCategoryEnum = /* @__PURE__ */ function(EntityModelCategoryEnum) {
29
+ /** 实体模型 */
30
+ EntityModelCategoryEnum["ENTITY"] = "entity";
31
+ /** 数据模型 */
32
+ EntityModelCategoryEnum["DATA"] = "data";
33
+ /** 视图模型*/
34
+ EntityModelCategoryEnum["VIEW"] = "view";
35
+ /** 表单模型 */
36
+ EntityModelCategoryEnum["FORM"] = "form";
37
+ /**
38
+ * 数据集模式
39
+ */
40
+ EntityModelCategoryEnum["DATA_SET"] = "dataSet";
41
+ return EntityModelCategoryEnum;
42
+ }({});
43
+ /**
44
+ * 实体模型类型
45
+ */
46
+ var EntityModelTypeEnum = /* @__PURE__ */ function(EntityModelTypeEnum) {
47
+ /** 基础模型 */
48
+ EntityModelTypeEnum["BASE"] = "BASE";
49
+ /** 命名模型 */
50
+ EntityModelTypeEnum["NDO"] = "NDO";
51
+ /** 版本模型 */
52
+ EntityModelTypeEnum["RDO"] = "RDO";
53
+ /** 树模型 */
54
+ EntityModelTypeEnum["TREE"] = "TREE";
55
+ /** 动态表单模型 */
56
+ EntityModelTypeEnum["DYNAMIC_FORM"] = "DYNAMIC_FORM";
57
+ /** 工作流模型 */
58
+ EntityModelTypeEnum["WORKFLOW"] = "WORKFLOW";
59
+ /** 事务模型 */
60
+ EntityModelTypeEnum["TRANSACTION"] = "TRANSACTION";
61
+ return EntityModelTypeEnum;
62
+ /** 检验项 */
63
+ }({});
64
+ /**
65
+ * 工作流节点元素类型
66
+ */
67
+ /** 字段默认值类型 */
68
+ var FieldDefaultValueTypeEnum = /* @__PURE__ */ function(FieldDefaultValueTypeEnum) {
69
+ /** 无 */
70
+ FieldDefaultValueTypeEnum["NONE"] = "NONE";
71
+ /** 固定值 */
72
+ FieldDefaultValueTypeEnum["FIXED"] = "FIXED";
73
+ /** 系统变量 */
74
+ FieldDefaultValueTypeEnum["SYS_VAR"] = "SYS_VAR";
75
+ return FieldDefaultValueTypeEnum;
76
+ }({});
77
+ /** 字段默认值系统变量 */
78
+ var FieldSysVarDefaultValueEnum = /* @__PURE__ */ function(FieldSysVarDefaultValueEnum) {
79
+ FieldSysVarDefaultValueEnum["NULL"] = "";
80
+ /** 系统日期 */
81
+ FieldSysVarDefaultValueEnum["SYS_DATE"] = "SYS_DATE";
82
+ /** 系统时间 */
83
+ FieldSysVarDefaultValueEnum["SYS_TIME"] = "SYS_TIME";
84
+ /** 系统日期时间 */
85
+ FieldSysVarDefaultValueEnum["SYS_DATE_TIME"] = "SYS_DATE_TIME";
86
+ /** 系统登录用户 */
87
+ FieldSysVarDefaultValueEnum["CURRENT_USER"] = "CURRENT_USER";
88
+ /** 当前登录用户主部门 */
89
+ FieldSysVarDefaultValueEnum["CURRENT_ORG"] = "CURRENT_ORG";
90
+ return FieldSysVarDefaultValueEnum;
91
+ }({});
92
+ var scriptTypeEnum = /* @__PURE__ */ function(scriptTypeEnum) {
93
+ /**
94
+ * 事件脚本
95
+ */
96
+ scriptTypeEnum["EVENT"] = "event";
97
+ /**模型业务服务 */
98
+ scriptTypeEnum["BUSINESSSERVICE"] = "businessService";
99
+ /**定时器 */
100
+ scriptTypeEnum["TIMER"] = "timer";
101
+ return scriptTypeEnum;
102
+ }({});
103
+ var pageLayoutModeEnum = /* @__PURE__ */ function(pageLayoutModeEnum) {
104
+ /**适配浏览器高度 内部滚动*/
105
+ pageLayoutModeEnum["SHOW_BOX_SCROLL"] = "showBoxScroll";
106
+ /**展示所有数据 外部滚动*/
107
+ pageLayoutModeEnum["SHOW_ALL_DATA"] = "showAllData";
108
+ return pageLayoutModeEnum;
109
+ }({});
110
+ var TypeEnum = /* @__PURE__ */ function(TypeEnum) {
111
+ TypeEnum["FIXED"] = "fixed";
112
+ TypeEnum["PLACEHOLDER"] = "placeholder";
113
+ TypeEnum["DATE"] = "date";
114
+ TypeEnum["LETTER"] = "letter";
115
+ TypeEnum["INCREASE"] = "increase";
116
+ return TypeEnum;
117
+ }({});
118
+ var PatternEnum = /* @__PURE__ */ function(PatternEnum) {
119
+ PatternEnum["yyyyMMdd"] = "sys.model.yyyyMMdd";
120
+ PatternEnum["yyyyMM"] = "sys.model.yyyyMM";
121
+ PatternEnum["MMddyyyy"] = "sys.model.MMddyyyy";
122
+ PatternEnum["ddMMyyyy"] = "sys.model.ddMMyyyy";
123
+ PatternEnum["MMyyyy"] = "sys.model.MMyyyy";
124
+ PatternEnum["yyyywk"] = "sys.model.yyyywk";
125
+ PatternEnum["yyyyMMddHH"] = "sys.model.yyyyMMddHH";
126
+ PatternEnum["yyyyMMddHHmm"] = "sys.model.yyyyMMddHHmm";
127
+ PatternEnum["yyyyMMddHHmmss"] = "sys.model.yyyyMMddHHmmss";
128
+ PatternEnum["CUSTOM"] = "sys.customize";
129
+ return PatternEnum;
130
+ }({});
131
+ //#endregion
132
+ export { EntityModelCategoryEnum, EntityModelTypeEnum, FieldDefaultValueTypeEnum, FieldSysVarDefaultValueEnum, PatternEnum, SHOW_FIELDTYPES, TypeEnum, UserServiceType, pageLayoutModeEnum, scriptTypeEnum };