@ibiz/model-core 0.1.6 → 0.1.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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.7] - 2024-01-24
11
+
12
+ ### Added
13
+
14
+ - IDEUIAction 补充 asyncAction 标识
15
+
10
16
  ## [0.1.6] - 2024-01-23
11
17
 
12
18
  ### Added
@@ -25,7 +25,6 @@ export interface IDELogic extends IDELogicBase {
25
25
  /**
26
26
  * 监控事件
27
27
  * @type {string}
28
- * @default false
29
28
  * 来源 getEvents
30
29
  */
31
30
  events?: string;
@@ -30,6 +30,13 @@ export interface IDEUIAction extends IUIAction {
30
30
  * 来源 getPSDEOPPriv
31
31
  */
32
32
  deopprivId?: string;
33
+ /**
34
+ * 异步操作行为
35
+ * @type {boolean}
36
+ * @default false
37
+ * 来源 isAsyncAction
38
+ */
39
+ asyncAction?: boolean;
33
40
  /**
34
41
  * 先保存目标数据
35
42
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -28,7 +28,6 @@ export interface IDELogic extends IDELogicBase {
28
28
  /**
29
29
  * 监控事件
30
30
  * @type {string}
31
- * @default false
32
31
  * 来源 getEvents
33
32
  */
34
33
  events?: string;
@@ -35,6 +35,14 @@ export interface IDEUIAction extends IUIAction {
35
35
  */
36
36
  deopprivId?: string;
37
37
 
38
+ /**
39
+ * 异步操作行为
40
+ * @type {boolean}
41
+ * @default false
42
+ * 来源 isAsyncAction
43
+ */
44
+ asyncAction?: boolean;
45
+
38
46
  /**
39
47
  * 先保存目标数据
40
48
  * @type {boolean}