next-helios-fe 1.8.63 → 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
@@ -191,6 +191,7 @@ export const MultipleSelect: React.FC<MultipleSelectProps> = ({
|
|
191
191
|
ref={inputRef}
|
192
192
|
type="text"
|
193
193
|
className="absolute bottom-0 -z-10 w-full border-0 focus:ring-0"
|
194
|
+
disabled={disabled ?? false}
|
194
195
|
/>
|
195
196
|
<div
|
196
197
|
className="absolute left-4 flex flex-wrap gap-2 h-min pointer-events-none"
|
@@ -3,7 +3,7 @@ import React, { useState, useEffect, useRef, useMemo } from "react";
|
|
3
3
|
import { Icon } from "@iconify/react";
|
4
4
|
import * as xlsx from "xlsx";
|
5
5
|
import dayjs from "dayjs";
|
6
|
-
import { Form, Button, Dropdown } from "../../components";
|
6
|
+
import { Form, Button, Dropdown, Tooltip } from "../../components";
|
7
7
|
import { Action, type ActionProps } from "./action";
|
8
8
|
|
9
9
|
interface TableProps {
|
@@ -456,10 +456,16 @@ export const Table: TableComponentProps = ({
|
|
456
456
|
return (
|
457
457
|
<td
|
458
458
|
key={headerItem.key}
|
459
|
-
className="max-w-60
|
460
|
-
title={item[headerItem.key as keyof typeof item] || "-"}
|
459
|
+
className="max-w-60 bg-secondary-bg truncate whitespace-nowrap"
|
461
460
|
>
|
462
|
-
|
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>
|
463
469
|
</td>
|
464
470
|
);
|
465
471
|
}
|