@oliasoft-open-source/react-ui-library 5.0.9-beta-1 → 5.0.9-beta-2
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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -169466,7 +169466,7 @@ const TableVirtualScrollWrapper = ({
|
|
|
169466
169466
|
const MIN_ITEM_HEIGHT = 30;
|
|
169467
169467
|
const BORDER_WIDTH = 1;
|
|
169468
169468
|
const virtualizer = useVirtualizer({
|
|
169469
|
-
count: ((_a2 = table2.rows) == null ? void 0 : _a2.length) ?? 0,
|
|
169469
|
+
count: (table2 == null ? void 0 : table2.rowCount) ?? ((_a2 = table2.rows) == null ? void 0 : _a2.length) ?? 0,
|
|
169470
169470
|
getScrollElement: () => containerRef.current,
|
|
169471
169471
|
estimateSize: () => MIN_ITEM_HEIGHT + BORDER_WIDTH,
|
|
169472
169472
|
overscan: 10
|