next-helios-fe 1.8.64 → 1.8.65

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.64",
3
+ "version": "1.8.65",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -454,14 +454,19 @@ export const Table: TableComponentProps = ({
454
454
  );
455
455
  } else {
456
456
  return (
457
- <Tooltip
457
+ <td
458
458
  key={headerItem.key}
459
- content={item[headerItem.key as keyof typeof item] || "-"}
459
+ className="max-w-60 bg-secondary-bg truncate whitespace-nowrap"
460
460
  >
461
- <td className="max-w-60 px-4 py-1.5 bg-secondary-bg truncate whitespace-nowrap">
462
- {item[headerItem.key as keyof typeof item] || "-"}
463
- </td>
464
- </Tooltip>
461
+ <Tooltip
462
+ content={item[headerItem.key as keyof typeof item] || "-"}
463
+ options={{ position: "top" }}
464
+ >
465
+ <span className="px-4 py-1.5">
466
+ {item[headerItem.key as keyof typeof item] || "-"}
467
+ </span>
468
+ </Tooltip>
469
+ </td>
465
470
  );
466
471
  }
467
472
  })}