@ibiz/model-core 0.0.22 → 0.0.24
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 +6 -0
- package/out/app/iapplication.d.ts +8 -2
- package/out/control/form/ideform-druipart.d.ts +6 -0
- package/out/control/grid/idegrid-edit-item.d.ts +6 -0
- package/out/control/searchbar/isearch-bar-filter.d.ts +6 -0
- package/package.json +1 -1
- package/src/app/iapplication.ts +9 -3
- package/src/control/form/ideform-druipart.ts +7 -0
- package/src/control/grid/idegrid-edit-item.ts +7 -0
- package/src/control/searchbar/isearch-bar-filter.ts +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,7 @@ import { IAppFunc } from './func/iapp-func';
|
|
|
9
9
|
import { IAppUILogic } from './logic/iapp-uilogic';
|
|
10
10
|
import { IAppMsgTempl } from './msg/iapp-msg-templ';
|
|
11
11
|
import { IAppPFPluginRef } from './res/iapp-pfplugin-ref';
|
|
12
|
+
import { IAppSubViewTypeRef } from './res/iapp-sub-view-type-ref';
|
|
12
13
|
import { IAppUITheme } from './theme/iapp-uitheme';
|
|
13
14
|
import { IAppUtil } from './util/iapp-util';
|
|
14
15
|
import { IAppViewMsg } from './view/iapp-view-msg';
|
|
@@ -16,7 +17,6 @@ import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
|
|
|
16
17
|
import { IAppWF } from './wf/iapp-wf';
|
|
17
18
|
import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
|
|
18
19
|
import { IModelObject } from '../imodel-object';
|
|
19
|
-
import { IAppSubViewTypeRef } from '../exports';
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
22
|
* @export
|
|
@@ -85,6 +85,13 @@ export interface IApplication extends IModelObject {
|
|
|
85
85
|
* 来源 getAllPSAppResources
|
|
86
86
|
*/
|
|
87
87
|
appResources?: IAppResource[];
|
|
88
|
+
/**
|
|
89
|
+
* 应用视图子类型引用集合
|
|
90
|
+
*
|
|
91
|
+
* @type {IAppSubViewTypeRef[]}
|
|
92
|
+
* 来源 getAllPSAppSubViewTypeRefs
|
|
93
|
+
*/
|
|
94
|
+
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
88
95
|
/**
|
|
89
96
|
* 应用预置界面逻辑集合
|
|
90
97
|
*
|
|
@@ -127,7 +134,6 @@ export interface IApplication extends IModelObject {
|
|
|
127
134
|
* 来源 getAllPSAppViewMsgs
|
|
128
135
|
*/
|
|
129
136
|
appViewMsgs?: IAppViewMsg[];
|
|
130
|
-
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
131
137
|
/**
|
|
132
138
|
* 应用工作流集合
|
|
133
139
|
*
|
|
@@ -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}
|
|
@@ -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/package.json
CHANGED
package/src/app/iapplication.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { IAppFunc } from './func/iapp-func';
|
|
|
9
9
|
import { IAppUILogic } from './logic/iapp-uilogic';
|
|
10
10
|
import { IAppMsgTempl } from './msg/iapp-msg-templ';
|
|
11
11
|
import { IAppPFPluginRef } from './res/iapp-pfplugin-ref';
|
|
12
|
+
import { IAppSubViewTypeRef } from './res/iapp-sub-view-type-ref';
|
|
12
13
|
import { IAppUITheme } from './theme/iapp-uitheme';
|
|
13
14
|
import { IAppUtil } from './util/iapp-util';
|
|
14
15
|
import { IAppViewMsg } from './view/iapp-view-msg';
|
|
@@ -16,7 +17,6 @@ import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
|
|
|
16
17
|
import { IAppWF } from './wf/iapp-wf';
|
|
17
18
|
import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
|
|
18
19
|
import { IModelObject } from '../imodel-object';
|
|
19
|
-
import { IAppSubViewTypeRef } from '../exports';
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
*
|
|
@@ -95,6 +95,14 @@ export interface IApplication extends IModelObject {
|
|
|
95
95
|
*/
|
|
96
96
|
appResources?: IAppResource[];
|
|
97
97
|
|
|
98
|
+
/**
|
|
99
|
+
* 应用视图子类型引用集合
|
|
100
|
+
*
|
|
101
|
+
* @type {IAppSubViewTypeRef[]}
|
|
102
|
+
* 来源 getAllPSAppSubViewTypeRefs
|
|
103
|
+
*/
|
|
104
|
+
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
105
|
+
|
|
98
106
|
/**
|
|
99
107
|
* 应用预置界面逻辑集合
|
|
100
108
|
*
|
|
@@ -143,8 +151,6 @@ export interface IApplication extends IModelObject {
|
|
|
143
151
|
*/
|
|
144
152
|
appViewMsgs?: IAppViewMsg[];
|
|
145
153
|
|
|
146
|
-
appSubViewTypeRefs?: IAppSubViewTypeRef[];
|
|
147
|
-
|
|
148
154
|
/**
|
|
149
155
|
* 应用工作流集合
|
|
150
156
|
*
|
|
@@ -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}
|
|
@@ -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}
|