@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.
- package/dist/index.esm.js +250 -81
- package/dist/index.system.min.js +1 -1
- package/out/controller/common/control/md-control.controller.d.ts +6 -0
- package/out/controller/common/control/md-control.controller.d.ts.map +1 -1
- package/out/controller/common/control/md-control.controller.js +7 -0
- package/out/controller/control/grid/grid/grid.controller.d.ts +6 -0
- package/out/controller/control/grid/grid/grid.controller.d.ts.map +1 -1
- package/out/controller/control/grid/grid/grid.controller.js +19 -1
- package/out/controller/control/toolbar/toolbar.controller.d.ts.map +1 -1
- package/out/controller/control/toolbar/toolbar.controller.js +16 -8
- package/out/interface/api/common/global-config/i-api-global-form-config.d.ts +0 -1
- package/out/interface/api/common/global-config/i-api-global-form-config.d.ts.map +1 -1
- package/out/interface/api/common/global-config/i-api-global-search-form-config.d.ts +1 -0
- package/out/interface/api/common/global-config/i-api-global-search-form-config.d.ts.map +1 -1
- package/out/interface/api/controller/control/i-api-chart.controller.d.ts +2 -2
- package/out/interface/api/controller/control/i-api-search-bar.controller.d.ts +2 -1
- package/out/interface/api/controller/control/i-api-search-bar.controller.d.ts.map +1 -1
- package/out/interface/api/controller/control/i-api-search-form.controller.d.ts +1 -1
- package/out/interface/api/util/i-api-ai-chat-util.d.ts +1 -1
- package/out/interface/api/util/i-api-ai-chat-util.d.ts.map +1 -1
- package/out/interface/api/util/i-api-inline-ai-util.d.ts +1 -1
- package/out/interface/api/util/i-api-inline-ai-util.d.ts.map +1 -1
- package/out/interface/api/util/i-api-json-util.d.ts +7 -6
- package/out/interface/api/util/i-api-json-util.d.ts.map +1 -1
- package/out/interface/controller/controller/i.controller.d.ts +6 -0
- package/out/interface/controller/controller/i.controller.d.ts.map +1 -1
- package/out/model/utils/util.d.ts +28 -1
- package/out/model/utils/util.d.ts.map +1 -1
- package/out/model/utils/util.js +138 -0
- package/out/ui-action/uiaction-util.d.ts +8 -0
- package/out/ui-action/uiaction-util.d.ts.map +1 -1
- package/out/ui-action/uiaction-util.js +12 -0
- 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.
|
|
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.
|
|
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": "
|
|
71
|
+
"gitHead": "c74c5ef7d621be7c892a0da41feab360af205b7c"
|
|
72
72
|
}
|