@ibiz/model-core 0.0.23 → 0.0.25
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 +8 -2
- package/out/app/iapplication.d.ts +16 -2
- package/out/app/isub-app-ref.d.ts +43 -0
- package/out/app/isub-app-ref.js +1 -0
- package/out/control/form/ideform-druipart.d.ts +6 -0
- package/out/control/grid/idegrid-edit-item.d.ts +6 -8
- package/out/control/searchbar/isearch-bar-filter.d.ts +6 -0
- package/out/exports.d.ts +1 -0
- package/package.json +1 -1
- package/src/app/iapplication.ts +18 -3
- package/src/app/isub-app-ref.ts +48 -0
- package/src/control/form/ideform-druipart.ts +7 -0
- package/src/control/grid/idegrid-edit-item.ts +7 -9
- package/src/control/searchbar/isearch-bar-filter.ts +7 -0
- package/src/exports.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,11 +7,17 @@
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.0.
|
|
10
|
+
## [0.0.25] - 2023-12-06
|
|
11
11
|
|
|
12
12
|
### Added
|
|
13
13
|
|
|
14
|
-
-
|
|
14
|
+
- 补充 subAppRefs 子应用引用
|
|
15
|
+
|
|
16
|
+
## [0.0.24] - 2023-12-04
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- 表格编辑列补充 resetItemNames 声明
|
|
15
21
|
|
|
16
22
|
## [0.0.22] - 2023-11-30
|
|
17
23
|
|
|
@@ -2,6 +2,7 @@ import { IAppMethodDTO } from './iapp-method-dto';
|
|
|
2
2
|
import { IAppResource } from './iapp-resource';
|
|
3
3
|
import { IAppUtilPage } from './iapp-util-page';
|
|
4
4
|
import { IApplicationLogic } from './iapplication-logic';
|
|
5
|
+
import { ISubAppRef } from './isub-app-ref';
|
|
5
6
|
import { IAppPortlet } from './control/iapp-portlet';
|
|
6
7
|
import { IAppPortletCat } from './control/iapp-portlet-cat';
|
|
7
8
|
import { IAppDEUIAction } from './dataentity/iapp-deuiaction';
|
|
@@ -9,6 +10,7 @@ import { IAppFunc } from './func/iapp-func';
|
|
|
9
10
|
import { IAppUILogic } from './logic/iapp-uilogic';
|
|
10
11
|
import { IAppMsgTempl } from './msg/iapp-msg-templ';
|
|
11
12
|
import { IAppPFPluginRef } from './res/iapp-pfplugin-ref';
|
|
13
|
+
import { IAppSubViewTypeRef } from './res/iapp-sub-view-type-ref';
|
|
12
14
|
import { IAppUITheme } from './theme/iapp-uitheme';
|
|
13
15
|
import { IAppUtil } from './util/iapp-util';
|
|
14
16
|
import { IAppViewMsg } from './view/iapp-view-msg';
|
|
@@ -16,7 +18,6 @@ import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
|
|
|
16
18
|
import { IAppWF } from './wf/iapp-wf';
|
|
17
19
|
import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
|
|
18
20
|
import { IModelObject } from '../imodel-object';
|
|
19
|
-
import { IAppSubViewTypeRef } from '../exports';
|
|
20
21
|
/**
|
|
21
22
|
*
|
|
22
23
|
* @export
|
|
@@ -85,6 +86,13 @@ export interface IApplication extends IModelObject {
|
|
|
85
86
|
* 来源 getAllPSAppResources
|
|
86
87
|
*/
|
|
87
88
|
appResources?: IAppResource[];
|
|
89
|
+
/**
|
|
90
|
+
* 应用视图子类型引用集合
|
|
91
|
+
*
|
|
92
|
+
* @type {IAppSubViewTypeRef[]}
|
|
93
|
+
* 来源 getAllPSAppSubViewTypeRefs
|
|
94
|
+
*/
|
|
95
|
+
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
88
96
|
/**
|
|
89
97
|
* 应用预置界面逻辑集合
|
|
90
98
|
*
|
|
@@ -127,7 +135,6 @@ export interface IApplication extends IModelObject {
|
|
|
127
135
|
* 来源 getAllPSAppViewMsgs
|
|
128
136
|
*/
|
|
129
137
|
appViewMsgs?: IAppViewMsg[];
|
|
130
|
-
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
131
138
|
/**
|
|
132
139
|
* 应用工作流集合
|
|
133
140
|
*
|
|
@@ -142,6 +149,13 @@ export interface IApplication extends IModelObject {
|
|
|
142
149
|
* 来源 getAllPSDEOPPrivs
|
|
143
150
|
*/
|
|
144
151
|
deopprivs?: IDEOPPriv[];
|
|
152
|
+
/**
|
|
153
|
+
* 子应用引用集合
|
|
154
|
+
*
|
|
155
|
+
* @type {ISubAppRef[]}
|
|
156
|
+
* 来源 getAllPSSubAppRefs
|
|
157
|
+
*/
|
|
158
|
+
subAppRefs?: ISubAppRef[];
|
|
145
159
|
/**
|
|
146
160
|
* 应用目录名称
|
|
147
161
|
* @type {string}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IAppMenuModel } from './appmenu/iapp-menu-model';
|
|
2
|
+
import { IModelObject } from '../imodel-object';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface ISubAppRef
|
|
7
|
+
*/
|
|
8
|
+
export interface ISubAppRef extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 应用实体界面行为组集合
|
|
11
|
+
*
|
|
12
|
+
* @type {string[]}
|
|
13
|
+
* 来源 getAllPSAppDEUIActionGroups
|
|
14
|
+
*/
|
|
15
|
+
appDEUIActionGroupIds?: string[];
|
|
16
|
+
/**
|
|
17
|
+
* 应用视图集合
|
|
18
|
+
*
|
|
19
|
+
* @type {string[]}
|
|
20
|
+
* 来源 getAllPSAppViews
|
|
21
|
+
*/
|
|
22
|
+
appViewIds?: string[];
|
|
23
|
+
/**
|
|
24
|
+
* 应用实体关系部件集合
|
|
25
|
+
*
|
|
26
|
+
* @type {string[]}
|
|
27
|
+
* 来源 getAllPSDEDRControls
|
|
28
|
+
*/
|
|
29
|
+
dedrcontrolIds?: string[];
|
|
30
|
+
/**
|
|
31
|
+
* 模型戳
|
|
32
|
+
* @type {string}
|
|
33
|
+
* 来源 getModelStamp
|
|
34
|
+
*/
|
|
35
|
+
modelStamp?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 应用菜单模型
|
|
38
|
+
*
|
|
39
|
+
* @type {IAppMenuModel}
|
|
40
|
+
* 来源 getPSAppMenuModel
|
|
41
|
+
*/
|
|
42
|
+
appMenuModel?: IAppMenuModel;
|
|
43
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -8,6 +8,12 @@ import { ILanguageRes } from '../../res/ilanguage-res';
|
|
|
8
8
|
* @interface IDEFormDRUIPart
|
|
9
9
|
*/
|
|
10
10
|
export interface IDEFormDRUIPart extends IDEFormDetail, INavigateParamContainer {
|
|
11
|
+
/**
|
|
12
|
+
* 实体关系项标记
|
|
13
|
+
* @type {string}
|
|
14
|
+
* 来源 getDRItemTag
|
|
15
|
+
*/
|
|
16
|
+
dritemTag?: string;
|
|
11
17
|
/**
|
|
12
18
|
* 自定义遮罩信息
|
|
13
19
|
* @type {string}
|
|
@@ -66,6 +66,12 @@ export interface IDEGridEditItem extends IEditorContainer {
|
|
|
66
66
|
* 来源 getPSDEGridEditItemUpdate
|
|
67
67
|
*/
|
|
68
68
|
degridEditItemUpdateId?: string;
|
|
69
|
+
/**
|
|
70
|
+
* 重置项集合
|
|
71
|
+
*
|
|
72
|
+
* 来源 getResetItemNames
|
|
73
|
+
*/
|
|
74
|
+
resetItemNames?: string[];
|
|
69
75
|
/**
|
|
70
76
|
* 单位名称
|
|
71
77
|
* @type {string}
|
|
@@ -119,12 +125,4 @@ export interface IDEGridEditItem extends IEditorContainer {
|
|
|
119
125
|
* 来源 isNeedCodeListConfig
|
|
120
126
|
*/
|
|
121
127
|
needCodeListConfig?: boolean;
|
|
122
|
-
/**
|
|
123
|
-
* 重置项名称
|
|
124
|
-
*
|
|
125
|
-
* @author chitanda
|
|
126
|
-
* @date 2023-12-04 17:12:36
|
|
127
|
-
* @type {string}
|
|
128
|
-
*/
|
|
129
|
-
resetItemName?: string;
|
|
130
128
|
}
|
|
@@ -112,6 +112,12 @@ export interface ISearchBarFilter extends ISearchBarItem, IEditorContainer {
|
|
|
112
112
|
* 来源 getPSSysImage
|
|
113
113
|
*/
|
|
114
114
|
sysImage?: ISysImage;
|
|
115
|
+
/**
|
|
116
|
+
* 重置项名称集合
|
|
117
|
+
*
|
|
118
|
+
* 来源 getResetItemNames
|
|
119
|
+
*/
|
|
120
|
+
resetItemNames?: string[];
|
|
115
121
|
/**
|
|
116
122
|
* 单位名称
|
|
117
123
|
* @type {string}
|
package/out/exports.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export { IAppResource } from './app/iapp-resource';
|
|
|
51
51
|
export { IAppUtilPage } from './app/iapp-util-page';
|
|
52
52
|
export { IApplication } from './app/iapplication';
|
|
53
53
|
export { IApplicationLogic } from './app/iapplication-logic';
|
|
54
|
+
export { ISubAppRef } from './app/isub-app-ref';
|
|
54
55
|
export { IAppUILogic } from './app/logic/iapp-uilogic';
|
|
55
56
|
export { IAppUILogicRefView } from './app/logic/iapp-uilogic-ref-view';
|
|
56
57
|
export { IAppUILogicRefViewBase } from './app/logic/iapp-uilogic-ref-view-base';
|
package/package.json
CHANGED
package/src/app/iapplication.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { IAppMethodDTO } from './iapp-method-dto';
|
|
|
2
2
|
import { IAppResource } from './iapp-resource';
|
|
3
3
|
import { IAppUtilPage } from './iapp-util-page';
|
|
4
4
|
import { IApplicationLogic } from './iapplication-logic';
|
|
5
|
+
import { ISubAppRef } from './isub-app-ref';
|
|
5
6
|
import { IAppPortlet } from './control/iapp-portlet';
|
|
6
7
|
import { IAppPortletCat } from './control/iapp-portlet-cat';
|
|
7
8
|
import { IAppDEUIAction } from './dataentity/iapp-deuiaction';
|
|
@@ -9,6 +10,7 @@ import { IAppFunc } from './func/iapp-func';
|
|
|
9
10
|
import { IAppUILogic } from './logic/iapp-uilogic';
|
|
10
11
|
import { IAppMsgTempl } from './msg/iapp-msg-templ';
|
|
11
12
|
import { IAppPFPluginRef } from './res/iapp-pfplugin-ref';
|
|
13
|
+
import { IAppSubViewTypeRef } from './res/iapp-sub-view-type-ref';
|
|
12
14
|
import { IAppUITheme } from './theme/iapp-uitheme';
|
|
13
15
|
import { IAppUtil } from './util/iapp-util';
|
|
14
16
|
import { IAppViewMsg } from './view/iapp-view-msg';
|
|
@@ -16,7 +18,6 @@ import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
|
|
|
16
18
|
import { IAppWF } from './wf/iapp-wf';
|
|
17
19
|
import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
|
|
18
20
|
import { IModelObject } from '../imodel-object';
|
|
19
|
-
import { IAppSubViewTypeRef } from '../exports';
|
|
20
21
|
|
|
21
22
|
/**
|
|
22
23
|
*
|
|
@@ -95,6 +96,14 @@ export interface IApplication extends IModelObject {
|
|
|
95
96
|
*/
|
|
96
97
|
appResources?: IAppResource[];
|
|
97
98
|
|
|
99
|
+
/**
|
|
100
|
+
* 应用视图子类型引用集合
|
|
101
|
+
*
|
|
102
|
+
* @type {IAppSubViewTypeRef[]}
|
|
103
|
+
* 来源 getAllPSAppSubViewTypeRefs
|
|
104
|
+
*/
|
|
105
|
+
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
106
|
+
|
|
98
107
|
/**
|
|
99
108
|
* 应用预置界面逻辑集合
|
|
100
109
|
*
|
|
@@ -143,8 +152,6 @@ export interface IApplication extends IModelObject {
|
|
|
143
152
|
*/
|
|
144
153
|
appViewMsgs?: IAppViewMsg[];
|
|
145
154
|
|
|
146
|
-
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
147
|
-
|
|
148
155
|
/**
|
|
149
156
|
* 应用工作流集合
|
|
150
157
|
*
|
|
@@ -161,6 +168,14 @@ export interface IApplication extends IModelObject {
|
|
|
161
168
|
*/
|
|
162
169
|
deopprivs?: IDEOPPriv[];
|
|
163
170
|
|
|
171
|
+
/**
|
|
172
|
+
* 子应用引用集合
|
|
173
|
+
*
|
|
174
|
+
* @type {ISubAppRef[]}
|
|
175
|
+
* 来源 getAllPSSubAppRefs
|
|
176
|
+
*/
|
|
177
|
+
subAppRefs?: ISubAppRef[];
|
|
178
|
+
|
|
164
179
|
/**
|
|
165
180
|
* 应用目录名称
|
|
166
181
|
* @type {string}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { IAppMenuModel } from './appmenu/iapp-menu-model';
|
|
2
|
+
import { IModelObject } from '../imodel-object';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @interface ISubAppRef
|
|
8
|
+
*/
|
|
9
|
+
export interface ISubAppRef extends IModelObject {
|
|
10
|
+
/**
|
|
11
|
+
* 应用实体界面行为组集合
|
|
12
|
+
*
|
|
13
|
+
* @type {string[]}
|
|
14
|
+
* 来源 getAllPSAppDEUIActionGroups
|
|
15
|
+
*/
|
|
16
|
+
appDEUIActionGroupIds?: string[];
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* 应用视图集合
|
|
20
|
+
*
|
|
21
|
+
* @type {string[]}
|
|
22
|
+
* 来源 getAllPSAppViews
|
|
23
|
+
*/
|
|
24
|
+
appViewIds?: string[];
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* 应用实体关系部件集合
|
|
28
|
+
*
|
|
29
|
+
* @type {string[]}
|
|
30
|
+
* 来源 getAllPSDEDRControls
|
|
31
|
+
*/
|
|
32
|
+
dedrcontrolIds?: string[];
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* 模型戳
|
|
36
|
+
* @type {string}
|
|
37
|
+
* 来源 getModelStamp
|
|
38
|
+
*/
|
|
39
|
+
modelStamp?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* 应用菜单模型
|
|
43
|
+
*
|
|
44
|
+
* @type {IAppMenuModel}
|
|
45
|
+
* 来源 getPSAppMenuModel
|
|
46
|
+
*/
|
|
47
|
+
appMenuModel?: IAppMenuModel;
|
|
48
|
+
}
|
|
@@ -11,6 +11,13 @@ import { ILanguageRes } from '../../res/ilanguage-res';
|
|
|
11
11
|
export interface IDEFormDRUIPart
|
|
12
12
|
extends IDEFormDetail,
|
|
13
13
|
INavigateParamContainer {
|
|
14
|
+
/**
|
|
15
|
+
* 实体关系项标记
|
|
16
|
+
* @type {string}
|
|
17
|
+
* 来源 getDRItemTag
|
|
18
|
+
*/
|
|
19
|
+
dritemTag?: string;
|
|
20
|
+
|
|
14
21
|
/**
|
|
15
22
|
* 自定义遮罩信息
|
|
16
23
|
* @type {string}
|
|
@@ -86,6 +86,13 @@ export interface IDEGridEditItem extends IEditorContainer {
|
|
|
86
86
|
*/
|
|
87
87
|
degridEditItemUpdateId?: string;
|
|
88
88
|
|
|
89
|
+
/**
|
|
90
|
+
* 重置项集合
|
|
91
|
+
*
|
|
92
|
+
* 来源 getResetItemNames
|
|
93
|
+
*/
|
|
94
|
+
resetItemNames?: string[];
|
|
95
|
+
|
|
89
96
|
/**
|
|
90
97
|
* 单位名称
|
|
91
98
|
* @type {string}
|
|
@@ -156,13 +163,4 @@ export interface IDEGridEditItem extends IEditorContainer {
|
|
|
156
163
|
* 来源 isNeedCodeListConfig
|
|
157
164
|
*/
|
|
158
165
|
needCodeListConfig?: boolean;
|
|
159
|
-
|
|
160
|
-
/**
|
|
161
|
-
* 重置项名称
|
|
162
|
-
*
|
|
163
|
-
* @author chitanda
|
|
164
|
-
* @date 2023-12-04 17:12:36
|
|
165
|
-
* @type {string}
|
|
166
|
-
*/
|
|
167
|
-
resetItemName?: string;
|
|
168
166
|
}
|
|
@@ -169,6 +169,13 @@ export interface ISearchBarFilter extends ISearchBarItem, IEditorContainer {
|
|
|
169
169
|
*/
|
|
170
170
|
sysImage?: ISysImage;
|
|
171
171
|
|
|
172
|
+
/**
|
|
173
|
+
* 重置项名称集合
|
|
174
|
+
*
|
|
175
|
+
* 来源 getResetItemNames
|
|
176
|
+
*/
|
|
177
|
+
resetItemNames?: string[];
|
|
178
|
+
|
|
172
179
|
/**
|
|
173
180
|
* 单位名称
|
|
174
181
|
* @type {string}
|
package/src/exports.ts
CHANGED
|
@@ -51,6 +51,7 @@ export { IAppResource } from './app/iapp-resource';
|
|
|
51
51
|
export { IAppUtilPage } from './app/iapp-util-page';
|
|
52
52
|
export { IApplication } from './app/iapplication';
|
|
53
53
|
export { IApplicationLogic } from './app/iapplication-logic';
|
|
54
|
+
export { ISubAppRef } from './app/isub-app-ref';
|
|
54
55
|
export { IAppUILogic } from './app/logic/iapp-uilogic';
|
|
55
56
|
export { IAppUILogicRefView } from './app/logic/iapp-uilogic-ref-view';
|
|
56
57
|
export { IAppUILogicRefViewBase } from './app/logic/iapp-uilogic-ref-view-base';
|