@ibiz/model-core 0.1.32 → 0.1.33

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.
@@ -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:隐藏 }
@@ -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.33",
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;
@@ -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:隐藏 }
@@ -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
  *