@oliasoft-open-source/react-ui-library 4.18.0-beta-1 → 4.18.0-beta-3
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.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -51923,6 +51923,7 @@ const Row = ({
|
|
|
51923
51923
|
hasRowActions: hasRowActions2,
|
|
51924
51924
|
draggableTable = false,
|
|
51925
51925
|
columnWidths,
|
|
51926
|
+
height: height2,
|
|
51926
51927
|
testId
|
|
51927
51928
|
//TODO: add testId
|
|
51928
51929
|
}) => {
|
|
@@ -51979,6 +51980,7 @@ const Row = ({
|
|
|
51979
51980
|
animateLayoutChanges: () => false
|
|
51980
51981
|
});
|
|
51981
51982
|
const style = {
|
|
51983
|
+
height: height2,
|
|
51982
51984
|
transform: CSS.Transform.toString(transform),
|
|
51983
51985
|
transition,
|
|
51984
51986
|
opacity: isDragging ? 0 : void 0
|
|
@@ -52136,7 +52138,8 @@ const TableScrollWrapper = ({
|
|
|
52136
52138
|
children
|
|
52137
52139
|
}) => {
|
|
52138
52140
|
var _a2, _b;
|
|
52139
|
-
|
|
52141
|
+
const { infiniteScroll = true } = table2;
|
|
52142
|
+
if (!infiniteScroll) {
|
|
52140
52143
|
return /* @__PURE__ */ jsx("div", { id: "scrollWrapper", className: styles$b.scroll, children: children({}) });
|
|
52141
52144
|
}
|
|
52142
52145
|
const containerRef = useRef(null);
|
|
@@ -52290,7 +52293,8 @@ const Table = (props) => {
|
|
|
52290
52293
|
colSpan,
|
|
52291
52294
|
hasRowActions: rowActions,
|
|
52292
52295
|
columnAlignment,
|
|
52293
|
-
draggableTable: draggable
|
|
52296
|
+
draggableTable: draggable,
|
|
52297
|
+
height: virtualRow2.size
|
|
52294
52298
|
},
|
|
52295
52299
|
`1_${virtualRow2.index}`
|
|
52296
52300
|
)) : rows.map((row2, index2) => /* @__PURE__ */ jsx(
|