@ibiz/model-core 0.0.22 → 0.0.23

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.0.23] - 2023-12-04
11
+
12
+ ### Added
13
+
14
+ - 补表格编辑项重置项名称声明
15
+
10
16
  ## [0.0.22] - 2023-11-30
11
17
 
12
18
  ### Added
@@ -119,4 +119,12 @@ export interface IDEGridEditItem extends IEditorContainer {
119
119
  * 来源 isNeedCodeListConfig
120
120
  */
121
121
  needCodeListConfig?: boolean;
122
+ /**
123
+ * 重置项名称
124
+ *
125
+ * @author chitanda
126
+ * @date 2023-12-04 17:12:36
127
+ * @type {string}
128
+ */
129
+ resetItemName?: string;
122
130
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -156,4 +156,13 @@ export interface IDEGridEditItem extends IEditorContainer {
156
156
  * 来源 isNeedCodeListConfig
157
157
  */
158
158
  needCodeListConfig?: boolean;
159
+
160
+ /**
161
+ * 重置项名称
162
+ *
163
+ * @author chitanda
164
+ * @date 2023-12-04 17:12:36
165
+ * @type {string}
166
+ */
167
+ resetItemName?: string;
159
168
  }