@ibiz/model-core 0.1.75 → 0.1.77
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-demethod-dtofield.d.ts +7 -0
- package/out/app/dataentity/iapp-ders.d.ts +7 -0
- package/out/control/calendar/idecalendar.d.ts +7 -0
- package/out/control/dataview/idedata-view.d.ts +7 -0
- package/out/control/grid/idegrid.d.ts +7 -0
- package/out/control/list/idelist.d.ts +7 -0
- package/package.json +1 -1
- package/src/app/dataentity/iapp-demethod-dtofield.ts +8 -0
- package/src/app/dataentity/iapp-ders.ts +8 -0
- package/src/control/calendar/idecalendar.ts +8 -0
- package/src/control/dataview/idedata-view.ts +8 -0
- package/src/control/grid/idegrid.ts +8 -0
- package/src/control/list/idelist.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
此日志格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/),
|
|
6
6
|
并且此项目遵循 [Semantic Versioning](https://semver.org/lang/zh-CN/).
|
|
7
7
|
|
|
8
|
+
## [0.1.77] - 2025-06-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- 表格、列表、卡片、日历新增分组应用实体属性模型
|
|
13
|
+
- 应用实体关系新增父关系连接文本属性模型
|
|
14
|
+
|
|
15
|
+
## [0.1.76] - 2025-06-09
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- 应用实体方法DTO属性对象新增引用应用实体的嵌套数据集
|
|
20
|
+
|
|
8
21
|
## [0.1.75] - 2025-05-26
|
|
9
22
|
|
|
10
23
|
### Added
|
|
@@ -31,6 +31,13 @@ export interface IAppDEMethodDTOField extends IModelObject {
|
|
|
31
31
|
* 来源 getPSAppDEField
|
|
32
32
|
*/
|
|
33
33
|
appDEFieldId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* 引用应用实体的嵌套数据集
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* 来源 getRefPSAppDEDataSet
|
|
39
|
+
*/
|
|
40
|
+
refAppDEDataSetId?: string;
|
|
34
41
|
/**
|
|
35
42
|
* 引用应用实体方法DTO对象
|
|
36
43
|
*
|
|
@@ -102,6 +102,13 @@ export interface IAppDERS extends IModelObject {
|
|
|
102
102
|
* 来源 getParentPSAppDEField
|
|
103
103
|
*/
|
|
104
104
|
parentAppDEFieldId?: string;
|
|
105
|
+
/**
|
|
106
|
+
* 父关系连接文本属性
|
|
107
|
+
*
|
|
108
|
+
* @type {string}
|
|
109
|
+
* 来源 getParentTextPSAppDEField
|
|
110
|
+
*/
|
|
111
|
+
parentTextAppDEFieldId?: string;
|
|
105
112
|
/**
|
|
106
113
|
* 删除拒绝消息语言标记
|
|
107
114
|
* @type {string}
|
|
@@ -56,6 +56,13 @@ export interface IDECalendar extends ICalendar {
|
|
|
56
56
|
* 来源 getGroupPSSysPFPlugin
|
|
57
57
|
*/
|
|
58
58
|
groupSysPFPluginId?: string;
|
|
59
|
+
/**
|
|
60
|
+
* 分组应用实体属性
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* 来源 getGroupTextPSAppDEField
|
|
64
|
+
*/
|
|
65
|
+
groupTextAppDEFieldId?: string;
|
|
59
66
|
/**
|
|
60
67
|
* 分组宽度
|
|
61
68
|
* @type {number}
|
|
@@ -178,6 +178,13 @@ export interface IDEDataView extends IMDAjaxControl, IControlContainer, IControl
|
|
|
178
178
|
* 来源 getGroupStyle
|
|
179
179
|
*/
|
|
180
180
|
groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
181
|
+
/**
|
|
182
|
+
* 分组应用实体属性
|
|
183
|
+
*
|
|
184
|
+
* @type {string}
|
|
185
|
+
* 来源 getGroupTextPSAppDEField
|
|
186
|
+
*/
|
|
187
|
+
groupTextAppDEFieldId?: string;
|
|
181
188
|
/**
|
|
182
189
|
* 分组宽度
|
|
183
190
|
* @type {number}
|
|
@@ -151,6 +151,13 @@ export interface IDEGrid extends IMDAjaxControl, IControlContainer, IControlNavi
|
|
|
151
151
|
* 来源 getGroupStyle
|
|
152
152
|
*/
|
|
153
153
|
groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
154
|
+
/**
|
|
155
|
+
* 分组应用实体属性
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* 来源 getGroupTextPSAppDEField
|
|
159
|
+
*/
|
|
160
|
+
groupTextAppDEFieldId?: string;
|
|
154
161
|
/**
|
|
155
162
|
* 附加排序方向
|
|
156
163
|
* @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
|
|
@@ -62,6 +62,13 @@ export interface IDEList extends IList, IMDControl2 {
|
|
|
62
62
|
* 来源 getGroupStyle
|
|
63
63
|
*/
|
|
64
64
|
groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
65
|
+
/**
|
|
66
|
+
* 分组应用实体属性
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* 来源 getGroupTextPSAppDEField
|
|
70
|
+
*/
|
|
71
|
+
groupTextAppDEFieldId?: string;
|
|
65
72
|
/**
|
|
66
73
|
* 默认排序方向
|
|
67
74
|
* @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
|
package/package.json
CHANGED
|
@@ -118,6 +118,14 @@ export interface IAppDERS extends IModelObject {
|
|
|
118
118
|
*/
|
|
119
119
|
parentAppDEFieldId?: string;
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
* 父关系连接文本属性
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* 来源 getParentTextPSAppDEField
|
|
126
|
+
*/
|
|
127
|
+
parentTextAppDEFieldId?: string;
|
|
128
|
+
|
|
121
129
|
/**
|
|
122
130
|
* 删除拒绝消息语言标记
|
|
123
131
|
* @type {string}
|
|
@@ -64,6 +64,14 @@ export interface IDECalendar extends ICalendar {
|
|
|
64
64
|
*/
|
|
65
65
|
groupSysPFPluginId?: string;
|
|
66
66
|
|
|
67
|
+
/**
|
|
68
|
+
* 分组应用实体属性
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* 来源 getGroupTextPSAppDEField
|
|
72
|
+
*/
|
|
73
|
+
groupTextAppDEFieldId?: string;
|
|
74
|
+
|
|
67
75
|
/**
|
|
68
76
|
* 分组宽度
|
|
69
77
|
* @type {number}
|
|
@@ -206,6 +206,14 @@ export interface IDEDataView
|
|
|
206
206
|
*/
|
|
207
207
|
groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
208
208
|
|
|
209
|
+
/**
|
|
210
|
+
* 分组应用实体属性
|
|
211
|
+
*
|
|
212
|
+
* @type {string}
|
|
213
|
+
* 来源 getGroupTextPSAppDEField
|
|
214
|
+
*/
|
|
215
|
+
groupTextAppDEFieldId?: string;
|
|
216
|
+
|
|
209
217
|
/**
|
|
210
218
|
* 分组宽度
|
|
211
219
|
* @type {number}
|
|
@@ -183,6 +183,14 @@ export interface IDEGrid
|
|
|
183
183
|
*/
|
|
184
184
|
groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
185
185
|
|
|
186
|
+
/**
|
|
187
|
+
* 分组应用实体属性
|
|
188
|
+
*
|
|
189
|
+
* @type {string}
|
|
190
|
+
* 来源 getGroupTextPSAppDEField
|
|
191
|
+
*/
|
|
192
|
+
groupTextAppDEFieldId?: string;
|
|
193
|
+
|
|
186
194
|
/**
|
|
187
195
|
* 附加排序方向
|
|
188
196
|
* @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
|
|
@@ -70,6 +70,14 @@ export interface IDEList extends IList, IMDControl2 {
|
|
|
70
70
|
*/
|
|
71
71
|
groupStyle?: string | 'DEFAULT' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
72
72
|
|
|
73
|
+
/**
|
|
74
|
+
* 分组应用实体属性
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* 来源 getGroupTextPSAppDEField
|
|
78
|
+
*/
|
|
79
|
+
groupTextAppDEFieldId?: string;
|
|
80
|
+
|
|
73
81
|
/**
|
|
74
82
|
* 默认排序方向
|
|
75
83
|
* @description 值模式 [字段排序方向] {ASC:升序、 DESC:降序 }
|