@ibiz/model-core 0.0.29 → 0.1.0
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,3 +1,4 @@
|
|
|
1
|
+
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
1
2
|
import { IDEACMode } from '../../dataentity/ac/ideacmode';
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
@@ -5,6 +6,13 @@ import { IDEACMode } from '../../dataentity/ac/ideacmode';
|
|
|
5
6
|
* @interface IAppDEACMode
|
|
6
7
|
*/
|
|
7
8
|
export interface IAppDEACMode extends IDEACMode {
|
|
9
|
+
/**
|
|
10
|
+
* 布局面板
|
|
11
|
+
*
|
|
12
|
+
* @type {ILayoutPanel}
|
|
13
|
+
* 来源 getItemPSLayoutPanel
|
|
14
|
+
*/
|
|
15
|
+
itemLayoutPanel?: ILayoutPanel;
|
|
8
16
|
/**
|
|
9
17
|
* 从排序应用属性对象
|
|
10
18
|
*
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDEACModeDataItem } from './ideacmode-data-item';
|
|
2
|
+
import { IDEUIActionGroup } from '../uiaction/ideuiaction-group';
|
|
2
3
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
import { IModelObject } from '../../imodel-object';
|
|
4
5
|
/**
|
|
@@ -61,6 +62,13 @@ export interface IDEACMode extends IModelObject {
|
|
|
61
62
|
* 来源 getPSDEACModeDataItems
|
|
62
63
|
*/
|
|
63
64
|
deacmodeDataItems?: IDEACModeDataItem[];
|
|
65
|
+
/**
|
|
66
|
+
* 界面行为组
|
|
67
|
+
*
|
|
68
|
+
* @type {IDEUIActionGroup}
|
|
69
|
+
* 来源 getPSDEUIActionGroup
|
|
70
|
+
*/
|
|
71
|
+
deuiactionGroup?: IDEUIActionGroup;
|
|
64
72
|
/**
|
|
65
73
|
* 分页大小
|
|
66
74
|
* @type {number}
|
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
1
2
|
import { IDEACMode } from '../../dataentity/ac/ideacmode';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -6,6 +7,14 @@ import { IDEACMode } from '../../dataentity/ac/ideacmode';
|
|
|
6
7
|
* @interface IAppDEACMode
|
|
7
8
|
*/
|
|
8
9
|
export interface IAppDEACMode extends IDEACMode {
|
|
10
|
+
/**
|
|
11
|
+
* 布局面板
|
|
12
|
+
*
|
|
13
|
+
* @type {ILayoutPanel}
|
|
14
|
+
* 来源 getItemPSLayoutPanel
|
|
15
|
+
*/
|
|
16
|
+
itemLayoutPanel?: ILayoutPanel;
|
|
17
|
+
|
|
9
18
|
/**
|
|
10
19
|
* 从排序应用属性对象
|
|
11
20
|
*
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDEACModeDataItem } from './ideacmode-data-item';
|
|
2
|
+
import { IDEUIActionGroup } from '../uiaction/ideuiaction-group';
|
|
2
3
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
import { IModelObject } from '../../imodel-object';
|
|
4
5
|
|
|
@@ -70,6 +71,14 @@ export interface IDEACMode extends IModelObject {
|
|
|
70
71
|
*/
|
|
71
72
|
deacmodeDataItems?: IDEACModeDataItem[];
|
|
72
73
|
|
|
74
|
+
/**
|
|
75
|
+
* 界面行为组
|
|
76
|
+
*
|
|
77
|
+
* @type {IDEUIActionGroup}
|
|
78
|
+
* 来源 getPSDEUIActionGroup
|
|
79
|
+
*/
|
|
80
|
+
deuiactionGroup?: IDEUIActionGroup;
|
|
81
|
+
|
|
73
82
|
/**
|
|
74
83
|
* 分页大小
|
|
75
84
|
* @type {number}
|