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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/table/index.tsx +11 -6
package/package.json
CHANGED
@@ -454,14 +454,19 @@ export const Table: TableComponentProps = ({
|
|
454
454
|
);
|
455
455
|
} else {
|
456
456
|
return (
|
457
|
-
<
|
457
|
+
<td
|
458
458
|
key={headerItem.key}
|
459
|
-
|
459
|
+
className="max-w-60 bg-secondary-bg truncate whitespace-nowrap"
|
460
460
|
>
|
461
|
-
<
|
462
|
-
{item[headerItem.key as keyof typeof item] || "-"}
|
463
|
-
|
464
|
-
|
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
|
})}
|