@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 +5 -0
- package/package.json +2 -1
- package/src/list-render.jsx +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hzab/list-render",
|
|
3
|
-
"version": "1.9.
|
|
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"
|
package/src/list-render.jsx
CHANGED
|
@@ -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
|
|