@ibiz/model-core 0.1.17 → 0.1.18

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 CHANGED
@@ -7,6 +7,12 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.18] - 2024-03-20
11
+
12
+ ### Added
13
+
14
+ - 树节点增加支持行编辑仅提交变化值
15
+
10
16
  ## [0.1.17] - 2024-03-19
11
17
 
12
18
  ### Added
@@ -68,11 +68,4 @@ export interface IDETreeNodeColumn extends IControlItem {
68
68
  * 来源 isEnableRowEdit
69
69
  */
70
70
  enableRowEdit?: boolean;
71
- /**
72
- * 行编辑仅提交变化值
73
- * @type {boolean}
74
- * @default false
75
- * 来源 isEnableRowEditChangedOnly
76
- */
77
- enableRowEditChangedOnly?: boolean;
78
71
  }
@@ -218,6 +218,20 @@ export interface IDETreeNode extends IControlItem, IControlXDataContainer, ICont
218
218
  * 来源 isEnableQuickSearch
219
219
  */
220
220
  enableQuickSearch?: boolean;
221
+ /**
222
+ * 支持行编辑
223
+ * @type {boolean}
224
+ * @default false
225
+ * 来源 isEnableRowEdit
226
+ */
227
+ enableRowEdit?: boolean;
228
+ /**
229
+ * 行编辑仅提交变化值
230
+ * @type {boolean}
231
+ * @default false
232
+ * 来源 isEnableRowEditChangedOnly
233
+ */
234
+ enableRowEditChangedOnly?: boolean;
221
235
  /**
222
236
  * 仅展开首节点
223
237
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -77,12 +77,4 @@ export interface IDETreeNodeColumn extends IControlItem {
77
77
  * 来源 isEnableRowEdit
78
78
  */
79
79
  enableRowEdit?: boolean;
80
-
81
- /**
82
- * 行编辑仅提交变化值
83
- * @type {boolean}
84
- * @default false
85
- * 来源 isEnableRowEditChangedOnly
86
- */
87
- enableRowEditChangedOnly?: boolean;
88
80
  }
@@ -253,6 +253,22 @@ export interface IDETreeNode
253
253
  */
254
254
  enableQuickSearch?: boolean;
255
255
 
256
+ /**
257
+ * 支持行编辑
258
+ * @type {boolean}
259
+ * @default false
260
+ * 来源 isEnableRowEdit
261
+ */
262
+ enableRowEdit?: boolean;
263
+
264
+ /**
265
+ * 行编辑仅提交变化值
266
+ * @type {boolean}
267
+ * @default false
268
+ * 来源 isEnableRowEditChangedOnly
269
+ */
270
+ enableRowEditChangedOnly?: boolean;
271
+
256
272
  /**
257
273
  * 仅展开首节点
258
274
  * @type {boolean}