@oliasoft-open-source/react-ui-library 4.19.2-beta-2 → 4.19.2-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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52181,7 +52181,7 @@ const TableDragWrapper = (props) => {
|
|
|
52181
52181
|
const cells = activeRow == null ? void 0 : activeRow.querySelectorAll("td");
|
|
52182
52182
|
if (!cells) return [];
|
|
52183
52183
|
const widths = Array.from(cells).map(
|
|
52184
|
-
(cell2) => `${
|
|
52184
|
+
(cell2) => `${cell2.getBoundingClientRect().width}px`
|
|
52185
52185
|
);
|
|
52186
52186
|
widths.shift();
|
|
52187
52187
|
return widths;
|