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.
- package/dist/components.js +5 -1
- package/dist/components.js.map +1 -1
- package/dist/hooks.d.ts +13 -2
- package/dist/hooks.js +21 -1
- package/dist/hooks.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +17 -2
- package/dist/index.js.map +1 -1
- package/dist/queries.d.ts +28 -1
- package/dist/queries.js +16 -0
- package/dist/queries.js.map +1 -1
- package/package.json +1 -1
package/dist/components.js
CHANGED
|
@@ -1493,12 +1493,16 @@ var TableBody = ({
|
|
|
1493
1493
|
row.getVisibleCells().map((cell) => /* @__PURE__ */ jsx(
|
|
1494
1494
|
Table.Td,
|
|
1495
1495
|
{
|
|
1496
|
-
style:
|
|
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
|
},
|