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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.8.63",
3
+ "version": "1.8.65",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 px-4 py-1.5 bg-secondary-bg truncate whitespace-nowrap"
460
- title={item[headerItem.key as keyof typeof item] || "-"}
459
+ className="max-w-60 bg-secondary-bg truncate whitespace-nowrap"
461
460
  >
462
- {item[headerItem.key as keyof typeof item] || "-"}
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
  }
@@ -205,6 +205,8 @@ export const Tooltip: React.FC<TooltipProps> = ({
205
205
  </div>
206
206
  )}
207
207
  <div
208
+
209
+
208
210
  className="w-fit px-3 py-1.5 rounded-md bg-black/75 text-sm text-white"
209
211
  style={{ maxWidth: "50dvw" }}
210
212
  >