@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
|
@@ -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,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}
|