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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.8.63",
3
+ "version": "1.8.64",
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 {
@@ -454,13 +454,14 @@ export const Table: TableComponentProps = ({
454
454
  );
455
455
  } else {
456
456
  return (
457
- <td
457
+ <Tooltip
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
+ content={item[headerItem.key as keyof typeof item] || "-"}
461
460
  >
462
- {item[headerItem.key as keyof typeof item] || "-"}
463
- </td>
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
  })}
@@ -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
  >