@ibiz-template/runtime 0.7.41-alpha.51 → 0.7.41-alpha.52

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 (33) hide show
  1. package/dist/index.esm.js +250 -81
  2. package/dist/index.system.min.js +1 -1
  3. package/out/controller/common/control/md-control.controller.d.ts +6 -0
  4. package/out/controller/common/control/md-control.controller.d.ts.map +1 -1
  5. package/out/controller/common/control/md-control.controller.js +7 -0
  6. package/out/controller/control/grid/grid/grid.controller.d.ts +6 -0
  7. package/out/controller/control/grid/grid/grid.controller.d.ts.map +1 -1
  8. package/out/controller/control/grid/grid/grid.controller.js +19 -1
  9. package/out/controller/control/toolbar/toolbar.controller.d.ts.map +1 -1
  10. package/out/controller/control/toolbar/toolbar.controller.js +16 -8
  11. package/out/interface/api/common/global-config/i-api-global-form-config.d.ts +0 -1
  12. package/out/interface/api/common/global-config/i-api-global-form-config.d.ts.map +1 -1
  13. package/out/interface/api/common/global-config/i-api-global-search-form-config.d.ts +1 -0
  14. package/out/interface/api/common/global-config/i-api-global-search-form-config.d.ts.map +1 -1
  15. package/out/interface/api/controller/control/i-api-chart.controller.d.ts +2 -2
  16. package/out/interface/api/controller/control/i-api-search-bar.controller.d.ts +2 -1
  17. package/out/interface/api/controller/control/i-api-search-bar.controller.d.ts.map +1 -1
  18. package/out/interface/api/controller/control/i-api-search-form.controller.d.ts +1 -1
  19. package/out/interface/api/util/i-api-ai-chat-util.d.ts +1 -1
  20. package/out/interface/api/util/i-api-ai-chat-util.d.ts.map +1 -1
  21. package/out/interface/api/util/i-api-inline-ai-util.d.ts +1 -1
  22. package/out/interface/api/util/i-api-inline-ai-util.d.ts.map +1 -1
  23. package/out/interface/api/util/i-api-json-util.d.ts +7 -6
  24. package/out/interface/api/util/i-api-json-util.d.ts.map +1 -1
  25. package/out/interface/controller/controller/i.controller.d.ts +6 -0
  26. package/out/interface/controller/controller/i.controller.d.ts.map +1 -1
  27. package/out/model/utils/util.d.ts +28 -1
  28. package/out/model/utils/util.d.ts.map +1 -1
  29. package/out/model/utils/util.js +138 -0
  30. package/out/ui-action/uiaction-util.d.ts +8 -0
  31. package/out/ui-action/uiaction-util.d.ts.map +1 -1
  32. package/out/ui-action/uiaction-util.js +12 -0
  33. package/package.json +3 -3
@@ -2,6 +2,7 @@ import { RuntimeError } from '@ibiz-template/core';
2
2
  import { PresetIdentifier, SysUIActionTag, ViewCallTag } from '../constant';
3
3
  import { getUIActionById } from '../model';
4
4
  import { getUIActionProvider } from '../register';
5
+ import { execUILogic } from '../ui-logic';
5
6
  /**
6
7
  * @description 界面行为工具类
7
8
  * @export
@@ -33,6 +34,17 @@ export class UIActionUtil {
33
34
  const provider = await getUIActionProvider(action);
34
35
  return provider.exec(action, params);
35
36
  }
37
+ /**
38
+ * 执行界面逻辑
39
+ * @param appDEUILogicId
40
+ * @param appDataEntityId
41
+ * @param args
42
+ * @returns
43
+ */
44
+ static async execUILogic(appDEUILogicId, appDataEntityId, args) {
45
+ const result = await execUILogic(appDEUILogicId, appDataEntityId, Object.assign({}, args));
46
+ return result;
47
+ }
36
48
  /**
37
49
  * @description 执行界面行为并处理返回值
38
50
  * @static
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz-template/runtime",
3
- "version": "0.7.41-alpha.51",
3
+ "version": "0.7.41-alpha.52",
4
4
  "description": "运行时逻辑库",
5
5
  "type": "module",
6
6
  "main": "out/index.js",
@@ -37,7 +37,7 @@
37
37
  "jsencrypt": "^3.3.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@ibiz-template/core": "^0.7.41-alpha.51",
40
+ "@ibiz-template/core": "^0.7.41-alpha.52",
41
41
  "@ibiz/model-core": "^0.1.84",
42
42
  "@types/animejs": "^3.1.12",
43
43
  "@types/path-browserify": "^1.0.2",
@@ -68,5 +68,5 @@
68
68
  "qx-util": "^0.4.8",
69
69
  "ramda": "^0.29.0"
70
70
  },
71
- "gitHead": "63325cc0ccb0c9667714c8c6e4e764abde103963"
71
+ "gitHead": "c74c5ef7d621be7c892a0da41feab360af205b7c"
72
72
  }