next-helios-fe 1.6.6 → 1.6.7

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.6.6",
3
+ "version": "1.6.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -418,7 +418,7 @@ export const Table: TableComponentProps = ({
418
418
  </td>
419
419
  )}
420
420
  {!options?.hideNumberColumn && (
421
- <td className="sticky left-0 w-0 px-4 py-1.5 bg-secondary-bg text-center">
421
+ <td className="sticky left-0 w-8 px-4 py-1.5 bg-secondary-bg text-center">
422
422
  {(page - 1) * maxRow + index + 1}
423
423
  </td>
424
424
  )}
@@ -446,7 +446,7 @@ export const Table: TableComponentProps = ({
446
446
  }
447
447
  })}
448
448
  {actionColumn && (
449
- <td className="sticky right-0 w-0 px-4 py-1.5 bg-secondary-bg text-center">
449
+ <td className="sticky right-0 w-8 px-4 py-1.5 bg-secondary-bg text-center">
450
450
  {actionColumn(item)}
451
451
  </td>
452
452
  )}
@@ -625,7 +625,7 @@ export const Table: TableComponentProps = ({
625
625
  </th>
626
626
  )}
627
627
  {!options?.hideNumberColumn && (
628
- <th className="sticky left-0 w-min px-4 py-2 z-10 bg-secondary-bg font-medium text-center whitespace-nowrap">
628
+ <th className="sticky left-0 w-8 px-4 py-2 z-10 bg-secondary-bg font-medium text-center whitespace-nowrap">
629
629
  <div className="flex flex-col">
630
630
  <span>No.</span>
631
631
  {options?.toolbar?.columnSearch?.show !== false && (
@@ -641,7 +641,7 @@ export const Table: TableComponentProps = ({
641
641
  )}
642
642
  {headerArr}
643
643
  {actionColumn && (
644
- <th className="sticky right-0 w-min px-4 py-2 z-10 bg-secondary-bg font-medium text-center whitespace-nowrap">
644
+ <th className="sticky right-0 w-8 px-4 py-2 z-10 bg-secondary-bg font-medium text-center whitespace-nowrap">
645
645
  <div className="flex flex-col">
646
646
  <span>Actions</span>
647
647
  {options?.toolbar?.columnSearch?.show !== false && (