@ibiz/model-core 0.1.39 → 0.1.40

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.
@@ -1,3 +1,5 @@
1
+ import { IAppBICube } from './iapp-bicube';
2
+ import { IAppBIReport } from './iapp-bireport';
1
3
  import { IModelObject } from '../../imodel-object';
2
4
  /**
3
5
  *
@@ -8,17 +10,17 @@ export interface IAppBIScheme extends IModelObject {
8
10
  /**
9
11
  * 智能立方体集合
10
12
  *
11
- * @type {string[]}
13
+ * @type {IAppBICube[]}
12
14
  * 来源 getPSAppBICubes
13
15
  */
14
- appBICubeIds?: string[];
16
+ appBICubes?: IAppBICube[];
15
17
  /**
16
18
  * 智能报表集合
17
19
  *
18
- * @type {string[]}
20
+ * @type {IAppBIReport[]}
19
21
  * 来源 getPSAppBIReports
20
22
  */
21
- appBIReportIds?: string[];
23
+ appBIReports?: IAppBIReport[];
22
24
  /**
23
25
  * 智能报表唯一标记
24
26
  * @type {string}
@@ -8,6 +8,14 @@ import { ILayoutContainer } from '../layout/ilayout-container';
8
8
  * @interface IDashboard
9
9
  */
10
10
  export interface IDashboard extends IAjaxControl, IControlContainer, IDashboardContainer, ILayoutContainer {
11
+ /**
12
+ * 看板定制模式
13
+ * @description 值模式 [部件自定义模式] {0:禁用、 1:启用、 2:启用(支持扩展) }
14
+ * @type {( number | 0 | 1 | 2)}
15
+ * @default 0
16
+ * 来源 getCustomizeMode
17
+ */
18
+ customizeMode?: number | 0 | 1 | 2;
11
19
  /**
12
20
  * 应用动态看板功能
13
21
  *
@@ -65,11 +65,11 @@ export interface IDBPortletPart extends IControl, IAjaxControl, IControlContaine
65
65
  uiactionGroup?: IUIActionGroup;
66
66
  /**
67
67
  * 门户部件类型
68
- * @description 值模式 [云平台门户部件类型(全部)] {LIST:实体列表、 CHART:实体图表、 VIEW:系统视图、 HTML:网页部件、 TOOLBAR:工具栏、 ACTIONBAR:操作栏、 CUSTOM:自定义、 APPMENU:快捷菜单栏、 CONTAINER:布局容器、 RAWITEM:直接内容 }
69
- * @type {( string | 'LIST' | 'CHART' | 'VIEW' | 'HTML' | 'TOOLBAR' | 'ACTIONBAR' | 'CUSTOM' | 'APPMENU' | 'CONTAINER' | 'RAWITEM')}
68
+ * @description 值模式 [云平台门户部件类型(全部)] {LIST:实体列表、 CHART:实体图表、 VIEW:系统视图、 REPORT:实体报表、 HTML:网页部件、 TOOLBAR:工具栏、 ACTIONBAR:操作栏、 CUSTOM:自定义、 APPMENU:快捷菜单栏、 CONTAINER:布局容器、 RAWITEM:直接内容 }
69
+ * @type {( string | 'LIST' | 'CHART' | 'VIEW' | 'REPORT' | 'HTML' | 'TOOLBAR' | 'ACTIONBAR' | 'CUSTOM' | 'APPMENU' | 'CONTAINER' | 'RAWITEM')}
70
70
  * 来源 getPortletType
71
71
  */
72
- portletType?: string | 'LIST' | 'CHART' | 'VIEW' | 'HTML' | 'TOOLBAR' | 'ACTIONBAR' | 'CUSTOM' | 'APPMENU' | 'CONTAINER' | 'RAWITEM';
72
+ portletType?: string | 'LIST' | 'CHART' | 'VIEW' | 'REPORT' | 'HTML' | 'TOOLBAR' | 'ACTIONBAR' | 'CUSTOM' | 'APPMENU' | 'CONTAINER' | 'RAWITEM';
73
73
  /**
74
74
  * 抬头
75
75
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.39",
3
+ "version": "0.1.40",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -1,3 +1,5 @@
1
+ import { IAppBICube } from './iapp-bicube';
2
+ import { IAppBIReport } from './iapp-bireport';
1
3
  import { IModelObject } from '../../imodel-object';
2
4
 
3
5
  /**
@@ -9,18 +11,18 @@ export interface IAppBIScheme extends IModelObject {
9
11
  /**
10
12
  * 智能立方体集合
11
13
  *
12
- * @type {string[]}
14
+ * @type {IAppBICube[]}
13
15
  * 来源 getPSAppBICubes
14
16
  */
15
- appBICubeIds?: string[];
17
+ appBICubes?: IAppBICube[];
16
18
 
17
19
  /**
18
20
  * 智能报表集合
19
21
  *
20
- * @type {string[]}
22
+ * @type {IAppBIReport[]}
21
23
  * 来源 getPSAppBIReports
22
24
  */
23
- appBIReportIds?: string[];
25
+ appBIReports?: IAppBIReport[];
24
26
 
25
27
  /**
26
28
  * 智能报表唯一标记
@@ -13,6 +13,15 @@ export interface IDashboard
13
13
  IControlContainer,
14
14
  IDashboardContainer,
15
15
  ILayoutContainer {
16
+ /**
17
+ * 看板定制模式
18
+ * @description 值模式 [部件自定义模式] {0:禁用、 1:启用、 2:启用(支持扩展) }
19
+ * @type {( number | 0 | 1 | 2)}
20
+ * @default 0
21
+ * 来源 getCustomizeMode
22
+ */
23
+ customizeMode?: number | 0 | 1 | 2;
24
+
16
25
  /**
17
26
  * 应用动态看板功能
18
27
  *
@@ -78,8 +78,8 @@ export interface IDBPortletPart
78
78
 
79
79
  /**
80
80
  * 门户部件类型
81
- * @description 值模式 [云平台门户部件类型(全部)] {LIST:实体列表、 CHART:实体图表、 VIEW:系统视图、 HTML:网页部件、 TOOLBAR:工具栏、 ACTIONBAR:操作栏、 CUSTOM:自定义、 APPMENU:快捷菜单栏、 CONTAINER:布局容器、 RAWITEM:直接内容 }
82
- * @type {( string | 'LIST' | 'CHART' | 'VIEW' | 'HTML' | 'TOOLBAR' | 'ACTIONBAR' | 'CUSTOM' | 'APPMENU' | 'CONTAINER' | 'RAWITEM')}
81
+ * @description 值模式 [云平台门户部件类型(全部)] {LIST:实体列表、 CHART:实体图表、 VIEW:系统视图、 REPORT:实体报表、 HTML:网页部件、 TOOLBAR:工具栏、 ACTIONBAR:操作栏、 CUSTOM:自定义、 APPMENU:快捷菜单栏、 CONTAINER:布局容器、 RAWITEM:直接内容 }
82
+ * @type {( string | 'LIST' | 'CHART' | 'VIEW' | 'REPORT' | 'HTML' | 'TOOLBAR' | 'ACTIONBAR' | 'CUSTOM' | 'APPMENU' | 'CONTAINER' | 'RAWITEM')}
83
83
  * 来源 getPortletType
84
84
  */
85
85
  portletType?:
@@ -87,6 +87,7 @@ export interface IDBPortletPart
87
87
  | 'LIST'
88
88
  | 'CHART'
89
89
  | 'VIEW'
90
+ | 'REPORT'
90
91
  | 'HTML'
91
92
  | 'TOOLBAR'
92
93
  | 'ACTIONBAR'