@ibiz/model-core 0.0.28 → 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 +13 -0
- package/out/app/dataentity/iapp-deacmode.d.ts +8 -0
- package/out/control/tree/idetree-node-data-item.d.ts +7 -0
- package/out/dataentity/ac/ideacmode.d.ts +8 -0
- package/package.json +1 -1
- package/src/app/dataentity/iapp-deacmode.ts +9 -0
- package/src/control/tree/idetree-node-data-item.ts +8 -0
- package/src/dataentity/ac/ideacmode.ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.0] - 2023-12-28
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- IDEACMode 新增 deuiactionGroup
|
|
15
|
+
- IAppDEACMode 新增 itemLayoutPanel
|
|
16
|
+
|
|
17
|
+
## [0.0.29] - 2023-12-25
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- 树部件的数据节点新增 detreeColumnId 转换
|
|
22
|
+
|
|
10
23
|
## [0.0.28] - 2023-12-20
|
|
11
24
|
|
|
12
25
|
### Added
|
|
@@ -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
|
*
|
|
@@ -32,6 +32,13 @@ export interface IDETreeNodeDataItem extends IDataItem {
|
|
|
32
32
|
* 来源 getPSAppDEField
|
|
33
33
|
*/
|
|
34
34
|
appDEFieldId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 树视图列
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* 来源 getPSDETreeColumn
|
|
40
|
+
*/
|
|
41
|
+
detreeColumnId?: string;
|
|
35
42
|
/**
|
|
36
43
|
* 脚本代码
|
|
37
44
|
* @type {string}
|
|
@@ -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}
|