next-helios-fe 1.8.63 → 1.8.64
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 {
|
@@ -454,13 +454,14 @@ export const Table: TableComponentProps = ({
|
|
454
454
|
);
|
455
455
|
} else {
|
456
456
|
return (
|
457
|
-
<
|
457
|
+
<Tooltip
|
458
458
|
key={headerItem.key}
|
459
|
-
|
460
|
-
title={item[headerItem.key as keyof typeof item] || "-"}
|
459
|
+
content={item[headerItem.key as keyof typeof item] || "-"}
|
461
460
|
>
|
462
|
-
|
463
|
-
|
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>
|
464
465
|
);
|
465
466
|
}
|
466
467
|
})}
|