@ibiz/model-core 0.1.44 → 0.1.45
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/out/app/bi/iapp-bicube-measure.d.ts +7 -0
- package/out/app/bi/iapp-bireport-measure.d.ts +7 -0
- package/out/control/dashboard/idbfilter-portlet-part.d.ts +17 -0
- package/out/control/dashboard/idbfilter-portlet-part.js +1 -0
- package/out/control/dashboard/idbreport-portlet-part.d.ts +8 -0
- package/out/control/dashboard/idbreport-portlet-part.js +1 -0
- package/out/control/searchbar/isearch-bar-group.d.ts +8 -0
- package/out/dataentity/ds/idedqcustom-condition.d.ts +6 -0
- package/out/exports.d.ts +2 -1
- package/package.json +1 -1
- package/src/app/bi/iapp-bicube-measure.ts +8 -0
- package/src/app/bi/iapp-bireport-measure.ts +8 -0
- package/src/control/dashboard/idbfilter-portlet-part.ts +18 -0
- package/src/control/dashboard/idbreport-portlet-part.ts +9 -0
- package/src/control/searchbar/isearch-bar-group.ts +9 -0
- package/src/dataentity/ds/idedqcustom-condition.ts +7 -0
- package/src/exports.ts +2 -1
|
@@ -18,6 +18,13 @@ export interface IAppBICubeMeasure extends IModelObject {
|
|
|
18
18
|
* 来源 getCodeName
|
|
19
19
|
*/
|
|
20
20
|
codeName?: string;
|
|
21
|
+
/**
|
|
22
|
+
* 反查数据展示视图
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* 来源 getDrillDetailPSAppView
|
|
26
|
+
*/
|
|
27
|
+
drillDetailAppViewId?: string;
|
|
21
28
|
/**
|
|
22
29
|
* 钻取数据展示视图
|
|
23
30
|
*
|
|
@@ -12,6 +12,13 @@ export interface IAppBIReportMeasure extends IModelObject {
|
|
|
12
12
|
* 来源 getAggMode
|
|
13
13
|
*/
|
|
14
14
|
aggMode?: string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4';
|
|
15
|
+
/**
|
|
16
|
+
* 反查数据展示视图
|
|
17
|
+
*
|
|
18
|
+
* @type {string}
|
|
19
|
+
* 来源 getDrillDetailPSAppView
|
|
20
|
+
*/
|
|
21
|
+
drillDetailAppViewId?: string;
|
|
15
22
|
/**
|
|
16
23
|
* 钻取数据展示视图
|
|
17
24
|
*
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IDBSysPortletPart } from './idbsys-portlet-part';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* 继承父接口类型值[FILTER]
|
|
6
|
+
* @export
|
|
7
|
+
* @interface IDBFilterPortletPart
|
|
8
|
+
*/
|
|
9
|
+
export interface IDBFilterPortletPart extends IDBSysPortletPart {
|
|
10
|
+
/**
|
|
11
|
+
* 过滤器条件
|
|
12
|
+
*
|
|
13
|
+
* @type {IDEDQCondition[]}
|
|
14
|
+
* 来源 getFilterPSDEDQConditions
|
|
15
|
+
*/
|
|
16
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ISearchBarItem } from './isearch-bar-item';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
2
3
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
@@ -6,6 +7,13 @@ import { ILanguageRes } from '../../res/ilanguage-res';
|
|
|
6
7
|
* @interface ISearchBarGroup
|
|
7
8
|
*/
|
|
8
9
|
export interface ISearchBarGroup extends ISearchBarItem {
|
|
10
|
+
/**
|
|
11
|
+
* 过滤器条件
|
|
12
|
+
*
|
|
13
|
+
* @type {IDEDQCondition[]}
|
|
14
|
+
* 来源 getFilterPSDEDQConditions
|
|
15
|
+
*/
|
|
16
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
9
17
|
/**
|
|
10
18
|
* 分组提示信息
|
|
11
19
|
* @type {string}
|
package/out/exports.d.ts
CHANGED
|
@@ -323,12 +323,13 @@ export { IDBAppViewPortletPart } from './control/dashboard/idbapp-view-portlet-p
|
|
|
323
323
|
export { IDBChartPortlet } from './control/dashboard/idbchart-portlet';
|
|
324
324
|
export { IDBContainerPortletPart } from './control/dashboard/idbcontainer-portlet-part';
|
|
325
325
|
export { IDBCustomPortletPart } from './control/dashboard/idbcustom-portlet-part';
|
|
326
|
+
export { IDBFilterPortletPart } from './control/dashboard/idbfilter-portlet-part';
|
|
326
327
|
export { IDBHtmlPortletPart } from './control/dashboard/idbhtml-portlet-part';
|
|
327
328
|
export { IDBListPortletPart } from './control/dashboard/idblist-portlet-part';
|
|
328
329
|
export { IDBMenuPortletPart } from './control/dashboard/idbmenu-portlet-part';
|
|
329
330
|
export { IDBPortletPart } from './control/dashboard/idbportlet-part';
|
|
330
331
|
export { IDBRawItemPortletPart } from './control/dashboard/idbraw-item-portlet-part';
|
|
331
|
-
export {
|
|
332
|
+
export { IDBReportPortletPart } from './control/dashboard/idbreport-portlet-part';
|
|
332
333
|
export { IDBSysPortletPart } from './control/dashboard/idbsys-portlet-part';
|
|
333
334
|
export { IDBToolbarPortlet } from './control/dashboard/idbtoolbar-portlet';
|
|
334
335
|
export { IDBViewPortletPart } from './control/dashboard/idbview-portlet-part';
|
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IDBSysPortletPart } from './idbsys-portlet-part';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* 继承父接口类型值[FILTER]
|
|
7
|
+
* @export
|
|
8
|
+
* @interface IDBFilterPortletPart
|
|
9
|
+
*/
|
|
10
|
+
export interface IDBFilterPortletPart extends IDBSysPortletPart {
|
|
11
|
+
/**
|
|
12
|
+
* 过滤器条件
|
|
13
|
+
*
|
|
14
|
+
* @type {IDEDQCondition[]}
|
|
15
|
+
* 来源 getFilterPSDEDQConditions
|
|
16
|
+
*/
|
|
17
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
18
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ISearchBarItem } from './isearch-bar-item';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
2
3
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
|
|
4
5
|
/**
|
|
@@ -7,6 +8,14 @@ import { ILanguageRes } from '../../res/ilanguage-res';
|
|
|
7
8
|
* @interface ISearchBarGroup
|
|
8
9
|
*/
|
|
9
10
|
export interface ISearchBarGroup extends ISearchBarItem {
|
|
11
|
+
/**
|
|
12
|
+
* 过滤器条件
|
|
13
|
+
*
|
|
14
|
+
* @type {IDEDQCondition[]}
|
|
15
|
+
* 来源 getFilterPSDEDQConditions
|
|
16
|
+
*/
|
|
17
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
18
|
+
|
|
10
19
|
/**
|
|
11
20
|
* 分组提示信息
|
|
12
21
|
* @type {string}
|
package/src/exports.ts
CHANGED
|
@@ -323,12 +323,13 @@ export { IDBAppViewPortletPart } from './control/dashboard/idbapp-view-portlet-p
|
|
|
323
323
|
export { IDBChartPortlet } from './control/dashboard/idbchart-portlet';
|
|
324
324
|
export { IDBContainerPortletPart } from './control/dashboard/idbcontainer-portlet-part';
|
|
325
325
|
export { IDBCustomPortletPart } from './control/dashboard/idbcustom-portlet-part';
|
|
326
|
+
export { IDBFilterPortletPart } from './control/dashboard/idbfilter-portlet-part';
|
|
326
327
|
export { IDBHtmlPortletPart } from './control/dashboard/idbhtml-portlet-part';
|
|
327
328
|
export { IDBListPortletPart } from './control/dashboard/idblist-portlet-part';
|
|
328
329
|
export { IDBMenuPortletPart } from './control/dashboard/idbmenu-portlet-part';
|
|
329
330
|
export { IDBPortletPart } from './control/dashboard/idbportlet-part';
|
|
330
331
|
export { IDBRawItemPortletPart } from './control/dashboard/idbraw-item-portlet-part';
|
|
331
|
-
export {
|
|
332
|
+
export { IDBReportPortletPart } from './control/dashboard/idbreport-portlet-part';
|
|
332
333
|
export { IDBSysPortletPart } from './control/dashboard/idbsys-portlet-part';
|
|
333
334
|
export { IDBToolbarPortlet } from './control/dashboard/idbtoolbar-portlet';
|
|
334
335
|
export { IDBViewPortletPart } from './control/dashboard/idbview-portlet-part';
|