next-helios-fe 1.8.71 → 1.8.72
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/table/index.tsx +6 -15
package/package.json
CHANGED
@@ -585,27 +585,18 @@ export const Table: TableComponentProps = ({
|
|
585
585
|
<Dropdown
|
586
586
|
dismissOnClick={false}
|
587
587
|
trigger={
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
>
|
594
|
-
<button
|
595
|
-
type="button"
|
596
|
-
className="px-2 py-2 rounded-full hover:bg-secondary-light"
|
597
|
-
>
|
598
|
-
<Icon icon="mage:filter" className="text-xl" />
|
599
|
-
</button>
|
600
|
-
</Tooltip>
|
601
|
-
) : (
|
588
|
+
<Tooltip
|
589
|
+
content={
|
590
|
+
options?.toolbar?.filter?.tooltip || "column filter"
|
591
|
+
}
|
592
|
+
>
|
602
593
|
<button
|
603
594
|
type="button"
|
604
595
|
className="px-2 py-2 rounded-full hover:bg-secondary-light"
|
605
596
|
>
|
606
597
|
<Icon icon="mage:filter" className="text-xl" />
|
607
598
|
</button>
|
608
|
-
|
599
|
+
</Tooltip>
|
609
600
|
}
|
610
601
|
>
|
611
602
|
{header?.map((item) => {
|