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