n20-common-lib 2.22.47 → 2.22.48
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/package.json
CHANGED
|
@@ -180,7 +180,9 @@ function mapColumnOverflowForVxe(item) {
|
|
|
180
180
|
}
|
|
181
181
|
return applyTooltipToShowOverflow(item)
|
|
182
182
|
}
|
|
183
|
-
|
|
183
|
+
// vxe-table 3.6 在渲染行数超过 40 时会防抖更新虚拟滚动数据,快速滚动容易露出空白。
|
|
184
|
+
// 保持较小的默认缓冲,让常见高度下走同步更新路径;业务仍可通过 scroll-y.oSize 覆盖。
|
|
185
|
+
const DEFAULT_SCROLL_Y = { enabled: true, oSize: 6, gt: 30 }
|
|
184
186
|
const VXE_ROW_HEIGHT_MAP = {
|
|
185
187
|
default: 48,
|
|
186
188
|
medium: 44,
|