Skip to content

Commit

Permalink
releases 4.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Jan 8, 2025
1 parent a34a3b9 commit 19a6b0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-table",
"version": "4.10.2",
"version": "4.10.3",
"description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、拖拽排序,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down Expand Up @@ -28,7 +28,7 @@
"style": "lib/style.css",
"typings": "types/index.d.ts",
"dependencies": {
"vxe-pc-ui": "^4.3.66"
"vxe-pc-ui": "^4.3.67"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.11",
Expand Down
4 changes: 2 additions & 2 deletions packages/table/src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3072,7 +3072,7 @@ export default defineComponent({
if (startIndex !== offsetStartIndex || endIndex !== offsetEndIndex) {
scrollYStore.startIndex = offsetStartIndex
scrollYStore.endIndex = offsetEndIndex
tablePrivateMethods.updateScrollYData()
$xeTable.updateScrollYData()
}
}
}
Expand Down Expand Up @@ -6769,7 +6769,7 @@ export default defineComponent({
vLen++
})

const isSelected = sLen >= vLen
const isSelected = rootList.length > 0 && sLen >= vLen
const halfSelect = !isSelected && (sLen >= 1 || hLen >= 1)

reactData.isAllSelected = isSelected
Expand Down

0 comments on commit 19a6b0d

Please sign in to comment.