erp-pos-ecommerce-shared 0.2.24 → 0.2.26
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/components.js +5 -1
- package/dist/components.js.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +13 -14
package/dist/index.js
CHANGED
|
@@ -6340,12 +6340,16 @@ var TableBody = ({
|
|
|
6340
6340
|
row.getVisibleCells().map((cell) => /* @__PURE__ */ jsx(
|
|
6341
6341
|
Table.Td,
|
|
6342
6342
|
{
|
|
6343
|
-
style:
|
|
6343
|
+
style: {
|
|
6344
|
+
...getColumnStyle(cell.column.getSize()),
|
|
6345
|
+
overflow: "hidden"
|
|
6346
|
+
},
|
|
6344
6347
|
onClick: () => onRowClick?.(row.original),
|
|
6345
6348
|
children: /* @__PURE__ */ jsx(
|
|
6346
6349
|
Text,
|
|
6347
6350
|
{
|
|
6348
6351
|
size: "sm",
|
|
6352
|
+
truncate: true,
|
|
6349
6353
|
style: {
|
|
6350
6354
|
color: "light-dark(var(--mantine-color-dark-7), var(--mantine-color-gray-1))"
|
|
6351
6355
|
},
|