next-helios-fe 1.8.29 → 1.8.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.8.29",
3
+ "version": "1.8.30",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -456,7 +456,8 @@ export const Table: TableComponentProps = ({
456
456
  return (
457
457
  <td
458
458
  key={headerItem.key}
459
- className="px-4 py-1.5 bg-secondary-bg whitespace-nowrap"
459
+ className="max-w-60 px-4 py-1.5 bg-secondary-bg truncate whitespace-nowrap"
460
+ title={item[headerItem.key as keyof typeof item] || "-"}
460
461
  >
461
462
  {item[headerItem.key as keyof typeof item] || "-"}
462
463
  </td>