next-helios-fe 1.8.72 → 1.8.73

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.72",
3
+ "version": "1.8.73",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -464,7 +464,7 @@ export const Table: TableComponentProps = ({
464
464
  </td>
465
465
  )}
466
466
  {!options?.hideNumberColumn && (
467
- <td className="sticky left-0 w-8 px-4 py-1.5 bg-secondary-bg text-center">
467
+ <td className="sticky z-10 left-0 w-8 px-4 py-1.5 bg-secondary-bg text-center">
468
468
  {(page - 1) * maxRow + index + 1}
469
469
  </td>
470
470
  )}
@@ -741,7 +741,7 @@ export const Table: TableComponentProps = ({
741
741
  </th>
742
742
  )}
743
743
  {!options?.hideNumberColumn && (
744
- <th className="sticky left-0 w-8 px-4 py-2 z-10 bg-secondary-bg font-medium text-center whitespace-nowrap">
744
+ <th className="sticky left-0 z-10 w-8 px-4 py-2 bg-secondary-bg font-medium text-center whitespace-nowrap">
745
745
  <div className="flex flex-col">
746
746
  <span>No.</span>
747
747
  {options?.toolbar?.columnSearch?.show !== false && (
@@ -193,7 +193,7 @@ export const Tooltip: React.FC<TooltipProps> = ({
193
193
  createPortal(
194
194
  <div
195
195
  ref={tooltipRef}
196
- className={`absolute z-50 duration-200 transition-opacity ${
196
+ className={`absolute z-10 duration-200 transition-opacity ${
197
197
  visible ? "" : "hidden pointer-events-none"
198
198
  } ${options?.enableHover ? "" : "pointer-events-none"}`}
199
199
  style={getTooltipPosition()}