@hzab/list-render 1.9.10 → 1.9.11

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
@@ -1,6 +1,11 @@
1
+ # @hzab/list-render@1.9.11
2
+
3
+ fix: 修复 model query 被污染 2
4
+
1
5
  # @hzab/list-render@1.9.10
2
6
 
3
7
  fix: 修复 model query 被污染
8
+
4
9
  # @hzab/list-render@1.9.9
5
10
 
6
11
  fix: Tags、PrefixNode 使用 @hzab/formily-result-utils 组件 EnumRender 实现
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@hzab/list-render",
3
- "version": "1.9.10",
3
+ "version": "1.9.11",
4
4
  "description": "",
5
5
  "main": "src",
6
6
  "scripts": {
7
7
  "dev": "webpack serve -c ./config/webpack.config.js --env local",
8
8
  "build": "webpack -c ./config/webpack.config.js --env production",
9
+ "publish-beta": "npm publish --beta",
9
10
  "publish-patch": "npm version patch && npm publish --access public",
10
11
  "publish-minor": "npm version minor && npm publish --access public",
11
12
  "publish-major": "npm version major && npm publish --access public"
@@ -210,7 +210,7 @@ const ListRender = forwardRef(function (props, parentRef) {
210
210
  model.query.pageSize = pageSizeOptions[0];
211
211
  }
212
212
  formQueryRef.current = query;
213
- model.query = Object.assign(model.query, query);
213
+ // model.query = Object.assign(model.query, query);
214
214
  getList(query);
215
215
  }
216
216