vue-devui 1.6.7 → 1.6.9
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/data-grid/index.es.js +2 -2
- package/data-grid/index.umd.js +4 -4
- package/editor-md/index.es.js +20 -3
- package/editor-md/index.umd.js +11 -11
- package/package.json +1 -1
- package/radio/style.css +1 -1
- package/splitter/index.es.js +20 -3
- package/splitter/index.umd.js +7 -7
- package/style.css +1 -1
- package/table/index.es.js +20 -3
- package/table/index.umd.js +11 -11
- package/tooltip/index.es.js +20 -3
- package/tooltip/index.umd.js +12 -12
- package/types/tooltip/src/tooltip-types.d.ts +14 -1
- package/types/tooltip/src/tooltip.d.ts +27 -0
- package/vue-devui.es.js +23 -6
- package/vue-devui.umd.js +11 -11
package/data-grid/index.es.js
CHANGED
|
@@ -11230,10 +11230,10 @@ function useDataGrid(props, ctx) {
|
|
|
11230
11230
|
scrollYParams.defaultSortRowData = scrollYParams.originRowData;
|
|
11231
11231
|
bodyContentHeight.value = bodyTotalHeight;
|
|
11232
11232
|
};
|
|
11233
|
-
const initVirtualRowData = (distance
|
|
11233
|
+
const initVirtualRowData = (distance) => {
|
|
11234
11234
|
scrollYParams.distance = distance;
|
|
11235
11235
|
scrollYParams.renderCountPerScreen = Math.ceil(scrollRef.value.clientHeight / rowHeight);
|
|
11236
|
-
scrollYParams.scrollScaleY = [
|
|
11236
|
+
scrollYParams.scrollScaleY = [distance, scrollYParams.renderCountPerScreen * rowHeight];
|
|
11237
11237
|
calcVirtualRowData(scrollYParams);
|
|
11238
11238
|
};
|
|
11239
11239
|
const initOriginColumnData = () => {
|