@ibiz/model-core 0.1.62 → 0.1.64

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.
@@ -60,4 +60,11 @@ export interface IPanelDataRegion extends INavigateParamContainer {
60
60
  * 来源 getScriptCode
61
61
  */
62
62
  scriptCode?: string;
63
+ /**
64
+ * 显示处理提示
65
+ * @type {boolean}
66
+ * @default false
67
+ * 来源 isShowBusyIndicator
68
+ */
69
+ showBusyIndicator?: boolean;
63
70
  }
@@ -22,6 +22,20 @@ export interface IDEToolbarItem extends IControlItem {
22
22
  * 来源 getCaption
23
23
  */
24
24
  caption?: string;
25
+ /**
26
+ * 计数器标识
27
+ * @type {string}
28
+ * 来源 getCounterId
29
+ */
30
+ counterId?: string;
31
+ /**
32
+ * 计数器模式
33
+ * @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
34
+ * @type {( number | 0 | 1)}
35
+ * @default 0
36
+ * 来源 getCounterMode
37
+ */
38
+ counterMode?: number | 0 | 1;
25
39
  /**
26
40
  * 项直接样式
27
41
  * @type {string}
@@ -34,6 +34,12 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
34
34
  * 来源 getData2PSAppDEField
35
35
  */
36
36
  data2AppDEFieldId?: string;
37
+ /**
38
+ * 数据对象名称
39
+ * @type {string}
40
+ * 来源 getDataName
41
+ */
42
+ dataName?: string;
37
43
  /**
38
44
  * 数据值应用实体属性
39
45
  *
@@ -41,6 +47,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
41
47
  * 来源 getDataPSAppDEField
42
48
  */
43
49
  dataAppDEFieldId?: string;
50
+ /**
51
+ * 数据源类型
52
+ * @description 值模式 [动态树节点源] {DEACTION:实体行为、 DEDATASET:实体集合、 DELOGIC:实体逻辑、 PARENTDATAPARAM:绑定父数据变量、 APPGLOBALPARAM:绑定应用全局变量、 TOPVIEWSESSIONPARAM:绑定顶级视图会话共享变量、 VIEWSESSIONPARAM:绑定当前视图会话共享变量、 CUSTOM:自定义代码 }
53
+ * @type {( string | 'DEACTION' | 'DEDATASET' | 'DELOGIC' | 'PARENTDATAPARAM' | 'APPGLOBALPARAM' | 'TOPVIEWSESSIONPARAM' | 'VIEWSESSIONPARAM' | 'CUSTOM')}
54
+ * 来源 getDataSourceType
55
+ */
56
+ dataSourceType?: string | 'DEACTION' | 'DEDATASET' | 'DELOGIC' | 'PARENTDATAPARAM' | 'APPGLOBALPARAM' | 'TOPVIEWSESSIONPARAM' | 'VIEWSESSIONPARAM' | 'CUSTOM';
44
57
  /**
45
58
  * 过滤应用实体结果集对象
46
59
  *
@@ -102,6 +115,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
102
115
  * 来源 getMovePSDEOPPriv
103
116
  */
104
117
  moveDEOPPrivId?: string;
118
+ /**
119
+ * 应用实体行为对象
120
+ *
121
+ * @type {string}
122
+ * 来源 getPSAppDEAction
123
+ */
124
+ appDEActionId?: string;
105
125
  /**
106
126
  * 应用实体结果集对象
107
127
  *
@@ -109,6 +129,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
109
129
  * 来源 getPSAppDEDataSet
110
130
  */
111
131
  appDEDataSetId?: string;
132
+ /**
133
+ * 应用实体逻辑对象
134
+ *
135
+ * @type {string}
136
+ * 来源 getPSAppDELogic
137
+ */
138
+ appDELogicId?: string;
112
139
  /**
113
140
  * 分页大小
114
141
  * @type {number}
@@ -136,6 +163,12 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
136
163
  * 来源 getRemovePSDEOPPriv
137
164
  */
138
165
  removeDEOPPrivId?: string;
166
+ /**
167
+ * 脚本代码
168
+ * @type {string}
169
+ * 来源 getScriptCode
170
+ */
171
+ scriptCode?: string;
139
172
  /**
140
173
  * 图形样式应用实体属性
141
174
  *
@@ -54,6 +54,12 @@ export interface IUIAction extends INavigateParamContainer {
54
54
  * 来源 getConfirmMsg
55
55
  */
56
56
  confirmMsg?: string;
57
+ /**
58
+ * 计数项标识
59
+ * @type {string}
60
+ * 来源 getCounterId
61
+ */
62
+ counterId?: string;
57
63
  /**
58
64
  * 数据访问权限
59
65
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.62",
3
+ "version": "0.1.64",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -85,4 +85,12 @@ export interface IPanelDataRegion extends INavigateParamContainer {
85
85
  * 来源 getScriptCode
86
86
  */
87
87
  scriptCode?: string;
88
+
89
+ /**
90
+ * 显示处理提示
91
+ * @type {boolean}
92
+ * @default false
93
+ * 来源 isShowBusyIndicator
94
+ */
95
+ showBusyIndicator?: boolean;
88
96
  }
@@ -25,6 +25,22 @@ export interface IDEToolbarItem extends IControlItem {
25
25
  */
26
26
  caption?: string;
27
27
 
28
+ /**
29
+ * 计数器标识
30
+ * @type {string}
31
+ * 来源 getCounterId
32
+ */
33
+ counterId?: string;
34
+
35
+ /**
36
+ * 计数器模式
37
+ * @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
38
+ * @type {( number | 0 | 1)}
39
+ * @default 0
40
+ * 来源 getCounterMode
41
+ */
42
+ counterMode?: number | 0 | 1;
43
+
28
44
  /**
29
45
  * 项直接样式
30
46
  * @type {string}
@@ -39,6 +39,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
39
39
  */
40
40
  data2AppDEFieldId?: string;
41
41
 
42
+ /**
43
+ * 数据对象名称
44
+ * @type {string}
45
+ * 来源 getDataName
46
+ */
47
+ dataName?: string;
48
+
42
49
  /**
43
50
  * 数据值应用实体属性
44
51
  *
@@ -47,6 +54,23 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
47
54
  */
48
55
  dataAppDEFieldId?: string;
49
56
 
57
+ /**
58
+ * 数据源类型
59
+ * @description 值模式 [动态树节点源] {DEACTION:实体行为、 DEDATASET:实体集合、 DELOGIC:实体逻辑、 PARENTDATAPARAM:绑定父数据变量、 APPGLOBALPARAM:绑定应用全局变量、 TOPVIEWSESSIONPARAM:绑定顶级视图会话共享变量、 VIEWSESSIONPARAM:绑定当前视图会话共享变量、 CUSTOM:自定义代码 }
60
+ * @type {( string | 'DEACTION' | 'DEDATASET' | 'DELOGIC' | 'PARENTDATAPARAM' | 'APPGLOBALPARAM' | 'TOPVIEWSESSIONPARAM' | 'VIEWSESSIONPARAM' | 'CUSTOM')}
61
+ * 来源 getDataSourceType
62
+ */
63
+ dataSourceType?:
64
+ | string
65
+ | 'DEACTION'
66
+ | 'DEDATASET'
67
+ | 'DELOGIC'
68
+ | 'PARENTDATAPARAM'
69
+ | 'APPGLOBALPARAM'
70
+ | 'TOPVIEWSESSIONPARAM'
71
+ | 'VIEWSESSIONPARAM'
72
+ | 'CUSTOM';
73
+
50
74
  /**
51
75
  * 过滤应用实体结果集对象
52
76
  *
@@ -117,6 +141,14 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
117
141
  */
118
142
  moveDEOPPrivId?: string;
119
143
 
144
+ /**
145
+ * 应用实体行为对象
146
+ *
147
+ * @type {string}
148
+ * 来源 getPSAppDEAction
149
+ */
150
+ appDEActionId?: string;
151
+
120
152
  /**
121
153
  * 应用实体结果集对象
122
154
  *
@@ -125,6 +157,14 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
125
157
  */
126
158
  appDEDataSetId?: string;
127
159
 
160
+ /**
161
+ * 应用实体逻辑对象
162
+ *
163
+ * @type {string}
164
+ * 来源 getPSAppDELogic
165
+ */
166
+ appDELogicId?: string;
167
+
128
168
  /**
129
169
  * 分页大小
130
170
  * @type {number}
@@ -156,6 +196,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
156
196
  */
157
197
  removeDEOPPrivId?: string;
158
198
 
199
+ /**
200
+ * 脚本代码
201
+ * @type {string}
202
+ * 来源 getScriptCode
203
+ */
204
+ scriptCode?: string;
205
+
159
206
  /**
160
207
  * 图形样式应用实体属性
161
208
  *
@@ -5,4 +5,4 @@ import { IModelObject } from '../../imodel-object';
5
5
  * @export
6
6
  * @interface IDEMapAction
7
7
  */
8
- export type IDEMapAction = IModelObject
8
+ export type IDEMapAction = IModelObject;
@@ -5,4 +5,4 @@ import { IModelObject } from '../../imodel-object';
5
5
  * @export
6
6
  * @interface IDEMapDataSet
7
7
  */
8
- export type IDEMapDataSet = IModelObject
8
+ export type IDEMapDataSet = IModelObject;
@@ -68,6 +68,13 @@ export interface IUIAction extends INavigateParamContainer {
68
68
  */
69
69
  confirmMsg?: string;
70
70
 
71
+ /**
72
+ * 计数项标识
73
+ * @type {string}
74
+ * 来源 getCounterId
75
+ */
76
+ counterId?: string;
77
+
71
78
  /**
72
79
  * 数据访问权限
73
80
  * @type {string}