@ibiz/model-core 0.0.17 → 0.0.18

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.18] - 2023-09-20
11
+
12
+ ### Added
13
+
14
+ - IAppPortlet 补充控件接口
15
+
10
16
  ## [0.0.17] - 2023-09-18
11
17
 
12
18
  ### Added
@@ -1,4 +1,5 @@
1
1
  import { IAppPortletCat } from './iapp-portlet-cat';
2
+ import { IControl } from '../../control/icontrol';
2
3
  import { IModelObject } from '../../imodel-object';
3
4
  /**
4
5
  *
@@ -26,6 +27,13 @@ export interface IAppPortlet extends IModelObject {
26
27
  * 来源 getPSAppPortletCat
27
28
  */
28
29
  appPortletCat?: IAppPortletCat;
30
+ /**
31
+ * 控件对象
32
+ *
33
+ * @type {IControl}
34
+ * 来源 getPSControl
35
+ */
36
+ control?: IControl;
29
37
  /**
30
38
  * 支持应用全局数据看板
31
39
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -1,4 +1,5 @@
1
1
  import { IAppPortletCat } from './iapp-portlet-cat';
2
+ import { IControl } from '../../control/icontrol';
2
3
  import { IModelObject } from '../../imodel-object';
3
4
 
4
5
  /**
@@ -30,6 +31,14 @@ export interface IAppPortlet extends IModelObject {
30
31
  */
31
32
  appPortletCat?: IAppPortletCat;
32
33
 
34
+ /**
35
+ * 控件对象
36
+ *
37
+ * @type {IControl}
38
+ * 来源 getPSControl
39
+ */
40
+ control?: IControl;
41
+
33
42
  /**
34
43
  * 支持应用全局数据看板
35
44
  * @type {boolean}