@ibiz/model-core 0.1.32 → 0.1.34

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.
@@ -20,6 +20,13 @@ export interface ITextEditor extends IEditor {
20
20
  * 来源 getMinLength
21
21
  */
22
22
  minLength?: number;
23
+ /**
24
+ * 阈值应用代码表对象
25
+ *
26
+ * @type {string}
27
+ * 来源 getPSAppCodeList
28
+ */
29
+ appCodeListId?: string;
23
30
  /**
24
31
  * 值规则
25
32
  *
@@ -94,6 +94,13 @@ export interface IDEGridColumn extends IControlItem {
94
94
  * 来源 getHeaderPSSysCss
95
95
  */
96
96
  headerSysCss?: ISysCss;
97
+ /**
98
+ * 隐藏模式
99
+ * @type {number}
100
+ * @default 0
101
+ * 来源 getHideMode
102
+ */
103
+ hideMode?: number;
97
104
  /**
98
105
  * 无权限显示模式
99
106
  * @description 值模式 [应用无权限内容显示模式] {1:显示空或*内容、 2:隐藏 }
@@ -1,4 +1,5 @@
1
1
  import { IDEToolbarItem } from './idetoolbar-item';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
2
3
  /**
3
4
  *
4
5
  * 继承父接口类型值[ITEMS]
@@ -28,6 +29,13 @@ export interface IDETBGroupItem extends IDEToolbarItem {
28
29
  * 来源 getButtonStyle
29
30
  */
30
31
  buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
32
+ /**
33
+ * 界面行为组展开模式
34
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
35
+ * @type {( string | 'ITEM' | 'ITEMS')}
36
+ * 来源 getGroupExtractMode
37
+ */
38
+ groupExtractMode?: string | 'ITEM' | 'ITEMS';
31
39
  /**
32
40
  * 子项集合
33
41
  *
@@ -35,4 +43,11 @@ export interface IDETBGroupItem extends IDEToolbarItem {
35
43
  * 来源 getPSDEToolbarItems
36
44
  */
37
45
  detoolbarItems?: IDEToolbarItem[];
46
+ /**
47
+ * 界面行为组对象
48
+ *
49
+ * @type {IUIActionGroup}
50
+ * 来源 getPSUIActionGroup
51
+ */
52
+ uiactionGroup?: IUIActionGroup;
38
53
  }
@@ -68,6 +68,13 @@ export interface IDETreeColumn extends IControlItem {
68
68
  * 来源 getHeaderPSSysCss
69
69
  */
70
70
  headerSysCss?: ISysCss;
71
+ /**
72
+ * 隐藏模式
73
+ * @type {number}
74
+ * @default 0
75
+ * 来源 getHideMode
76
+ */
77
+ hideMode?: number;
71
78
  /**
72
79
  * 头部图片对象
73
80
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -6,4 +6,4 @@ import { IDBSysPortletPart } from './idbsys-portlet-part';
6
6
  * @export
7
7
  * @interface IDBReportPortlet
8
8
  */
9
- export type IDBReportPortlet = IDBSysPortletPart
9
+ export type IDBReportPortlet = IDBSysPortletPart;
@@ -23,6 +23,14 @@ export interface ITextEditor extends IEditor {
23
23
  */
24
24
  minLength?: number;
25
25
 
26
+ /**
27
+ * 阈值应用代码表对象
28
+ *
29
+ * @type {string}
30
+ * 来源 getPSAppCodeList
31
+ */
32
+ appCodeListId?: string;
33
+
26
34
  /**
27
35
  * 值规则
28
36
  *
@@ -118,6 +118,14 @@ export interface IDEGridColumn extends IControlItem {
118
118
  */
119
119
  headerSysCss?: ISysCss;
120
120
 
121
+ /**
122
+ * 隐藏模式
123
+ * @type {number}
124
+ * @default 0
125
+ * 来源 getHideMode
126
+ */
127
+ hideMode?: number;
128
+
121
129
  /**
122
130
  * 无权限显示模式
123
131
  * @description 值模式 [应用无权限内容显示模式] {1:显示空或*内容、 2:隐藏 }
@@ -1,4 +1,5 @@
1
1
  import { IDEToolbarItem } from './idetoolbar-item';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
2
3
 
3
4
  /**
4
5
  *
@@ -43,6 +44,14 @@ export interface IDETBGroupItem extends IDEToolbarItem {
43
44
  | 'STYLE3'
44
45
  | 'STYLE4';
45
46
 
47
+ /**
48
+ * 界面行为组展开模式
49
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
50
+ * @type {( string | 'ITEM' | 'ITEMS')}
51
+ * 来源 getGroupExtractMode
52
+ */
53
+ groupExtractMode?: string | 'ITEM' | 'ITEMS';
54
+
46
55
  /**
47
56
  * 子项集合
48
57
  *
@@ -50,4 +59,12 @@ export interface IDETBGroupItem extends IDEToolbarItem {
50
59
  * 来源 getPSDEToolbarItems
51
60
  */
52
61
  detoolbarItems?: IDEToolbarItem[];
62
+
63
+ /**
64
+ * 界面行为组对象
65
+ *
66
+ * @type {IUIActionGroup}
67
+ * 来源 getPSUIActionGroup
68
+ */
69
+ uiactionGroup?: IUIActionGroup;
53
70
  }
@@ -78,6 +78,14 @@ export interface IDETreeColumn extends IControlItem {
78
78
  */
79
79
  headerSysCss?: ISysCss;
80
80
 
81
+ /**
82
+ * 隐藏模式
83
+ * @type {number}
84
+ * @default 0
85
+ * 来源 getHideMode
86
+ */
87
+ hideMode?: number;
88
+
81
89
  /**
82
90
  * 头部图片对象
83
91
  *