@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 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.28",
3
+ "version": "0.1.0",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -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
  *
@@ -37,6 +37,14 @@ export interface IDETreeNodeDataItem extends IDataItem {
37
37
  */
38
38
  appDEFieldId?: string;
39
39
 
40
+ /**
41
+ * 树视图列
42
+ *
43
+ * @type {string}
44
+ * 来源 getPSDETreeColumn
45
+ */
46
+ detreeColumnId?: string;
47
+
40
48
  /**
41
49
  * 脚本代码
42
50
  * @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
 
@@ -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}