@hzab/list-render 1.10.0 → 1.10.1

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,10 +1,10 @@
1
1
  # @hzab/list-render@1.10.1
2
2
 
3
- fix: editMode 修复行内编辑保存路由id为0的情况
3
+ fix: 拖动事件页码错误问题
4
4
 
5
5
  # @hzab/list-render@1.10.0
6
6
 
7
- feat: editMode 编辑模式。支持行内编辑、单元格编辑 modal 弹窗/抽屉编辑; line 编辑整行,编辑按钮在操作列; line-cell 编辑整行,操作按钮在单元格; cell 编辑指定单元格
7
+ feat: editMode 编辑模式。支持行内编辑、单元格编辑 modal 弹窗/抽屉编辑; line 编辑整行,编辑按钮在操作列; line-cell 编辑整行,操作按钮在单元格; cell 编辑指定单元格; 修复行内编辑保存路由id为0的情况
8
8
 
9
9
  # @hzab/list-render@1.9.16
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hzab/list-render",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "",
5
5
  "main": "src",
6
6
  "scripts": {
@@ -435,7 +435,7 @@ const ListRender = forwardRef(function (props, parentRef) {
435
435
  list={list}
436
436
  config={props.tableConf}
437
437
  hasAction={props.hasAction}
438
- query={model?.query}
438
+ query={{ ...model?.query, ...paginationQueryRef.current }}
439
439
  Slots={props.Slots}
440
440
  onEdit={onEdit}
441
441
  onDel={onDel}