@ibiz/model-core 0.0.8 → 0.0.10
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/control/editor/ipicker-editor.d.ts +5 -1
- package/out/dataentity/ac/ideacmode-data-item.d.ts +1 -0
- package/out/view/iuiaction-group-detail.d.ts +7 -0
- package/package.json +1 -1
- package/src/control/editor/ipicker-editor.ts +8 -1
- package/src/dataentity/ac/ideacmode-data-item.ts +2 -0
- package/src/view/iuiaction-group-detail.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { IEditor } from '../ieditor';
|
|
2
2
|
import { INavigateParamContainer } from '../inavigate-param-container';
|
|
3
|
+
import { IValueItemEditor } from './ivalue-item-editor';
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* @export
|
|
6
7
|
* @interface IPickerEditor
|
|
7
8
|
*/
|
|
8
|
-
export interface IPickerEditor extends IEditor, INavigateParamContainer {
|
|
9
|
+
export interface IPickerEditor extends IEditor, INavigateParamContainer, IValueItemEditor {
|
|
9
10
|
/**
|
|
10
11
|
* 附加上下文Json字符串
|
|
11
12
|
* @type {string}
|
|
@@ -37,4 +38,7 @@ export interface IPickerEditor extends IEditor, INavigateParamContainer {
|
|
|
37
38
|
* 来源 isEnablePickupView
|
|
38
39
|
*/
|
|
39
40
|
enablePickupView?: boolean;
|
|
41
|
+
appDEDataSetId?: string;
|
|
42
|
+
appDataEntityId?: string;
|
|
43
|
+
valueItemName?: string;
|
|
40
44
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ISysImage } from '../exports';
|
|
1
2
|
import { IModelObject } from '../imodel-object';
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
@@ -74,4 +75,10 @@ export interface IUIActionGroupDetail extends IModelObject {
|
|
|
74
75
|
* 来源 isShowIcon
|
|
75
76
|
*/
|
|
76
77
|
showIcon?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* 系统图片
|
|
80
|
+
* @type {ISysImage}
|
|
81
|
+
* 来源 getPSSysImage
|
|
82
|
+
*/
|
|
83
|
+
sysImage?: ISysImage;
|
|
77
84
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { IEditor } from '../ieditor';
|
|
2
2
|
import { INavigateParamContainer } from '../inavigate-param-container';
|
|
3
|
+
import { IValueItemEditor } from './ivalue-item-editor';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @export
|
|
7
8
|
* @interface IPickerEditor
|
|
8
9
|
*/
|
|
9
|
-
export interface IPickerEditor extends IEditor, INavigateParamContainer {
|
|
10
|
+
export interface IPickerEditor extends IEditor, INavigateParamContainer, IValueItemEditor {
|
|
10
11
|
/**
|
|
11
12
|
* 附加上下文Json字符串
|
|
12
13
|
* @type {string}
|
|
@@ -42,4 +43,10 @@ export interface IPickerEditor extends IEditor, INavigateParamContainer {
|
|
|
42
43
|
* 来源 isEnablePickupView
|
|
43
44
|
*/
|
|
44
45
|
enablePickupView?: boolean;
|
|
46
|
+
|
|
47
|
+
appDEDataSetId?: string;
|
|
48
|
+
|
|
49
|
+
appDataEntityId?: string;
|
|
50
|
+
|
|
51
|
+
valueItemName?: string;
|
|
45
52
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ISysImage } from '../exports';
|
|
1
2
|
import { IModelObject } from '../imodel-object';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -85,4 +86,11 @@ export interface IUIActionGroupDetail extends IModelObject {
|
|
|
85
86
|
* 来源 isShowIcon
|
|
86
87
|
*/
|
|
87
88
|
showIcon?: boolean;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* 系统图片
|
|
92
|
+
* @type {ISysImage}
|
|
93
|
+
* 来源 getPSSysImage
|
|
94
|
+
*/
|
|
95
|
+
sysImage?: ISysImage;
|
|
88
96
|
}
|