@ibiz/model-core 0.0.8 → 0.0.9

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.0.9] - 2023-05-18
11
+
12
+ ### Added
13
+
14
+ - 界面行为项补充 sysImage 输出
15
+
10
16
  ## [0.0.8] - 2023-05-16
11
17
 
12
18
  ### Added
@@ -1,3 +1,4 @@
1
+ import { ISysImage } from '../exports';
1
2
  import { IModelObject } from '../imodel-object';
2
3
  /**
3
4
  *
@@ -74,4 +75,10 @@ export interface IUIActionGroupDetail extends IModelObject {
74
75
  * 来源 isShowIcon
75
76
  */
76
77
  showIcon?: boolean;
78
+ /**
79
+ * 系统图片
80
+ * @type {ISysImage}
81
+ * 来源 getPSSysImage
82
+ */
83
+ sysImage?: ISysImage;
77
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -1,3 +1,4 @@
1
+ import { ISysImage } from '../exports';
1
2
  import { IModelObject } from '../imodel-object';
2
3
 
3
4
  /**
@@ -85,4 +86,11 @@ export interface IUIActionGroupDetail extends IModelObject {
85
86
  * 来源 isShowIcon
86
87
  */
87
88
  showIcon?: boolean;
89
+
90
+ /**
91
+ * 系统图片
92
+ * @type {ISysImage}
93
+ * 来源 getPSSysImage
94
+ */
95
+ sysImage?: ISysImage;
88
96
  }