erp-pos-ecommerce-shared 0.2.23 → 0.2.25

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.
@@ -1493,12 +1493,16 @@ var TableBody = ({
1493
1493
  row.getVisibleCells().map((cell) => /* @__PURE__ */ jsx(
1494
1494
  Table.Td,
1495
1495
  {
1496
- style: getColumnStyle(cell.column.getSize()),
1496
+ style: {
1497
+ ...getColumnStyle(cell.column.getSize()),
1498
+ overflow: "hidden"
1499
+ },
1497
1500
  onClick: () => onRowClick?.(row.original),
1498
1501
  children: /* @__PURE__ */ jsx(
1499
1502
  Text,
1500
1503
  {
1501
1504
  size: "sm",
1505
+ truncate: true,
1502
1506
  style: {
1503
1507
  color: "light-dark(var(--mantine-color-dark-7), var(--mantine-color-gray-1))"
1504
1508
  },