@ibiz/model-core 0.0.9 → 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.
@@ -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
  }
@@ -18,4 +18,5 @@ export interface IDEACModeDataItem extends IDataItem {
18
18
  * 来源 isCustomCode
19
19
  */
20
20
  customCode?: boolean;
21
+ appDEFieldId?: string;
21
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -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
  }
@@ -20,4 +20,6 @@ export interface IDEACModeDataItem extends IDataItem {
20
20
  * 来源 isCustomCode
21
21
  */
22
22
  customCode?: boolean;
23
+
24
+ appDEFieldId?: string;
23
25
  }