@bsol-oss/react-datatable5 1.0.51 → 1.0.52
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 +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -436,12 +436,12 @@ const TableRowSelector = ({ index, row, hoveredRow, pinnedBgColor = { light: "gr
|
|
|
436
436
|
|
|
437
437
|
const TableFilterTags = () => {
|
|
438
438
|
const { table } = useDataTable();
|
|
439
|
-
return (jsxRuntime.jsx(react$1.Flex, { gap: "0.5rem", flexFlow:
|
|
440
|
-
return (jsxRuntime.jsxs(react$1.Tag, { children: [`${id}: ${value}
|
|
439
|
+
return (jsxRuntime.jsx(react$1.Flex, { gap: "0.5rem", flexFlow: "wrap", children: table.getState().columnFilters.map(({ id, value }, index) => {
|
|
440
|
+
return (jsxRuntime.jsxs(react$1.Tag, { display: "flex", gap: "0.5rem", alignItems: "center", children: [jsxRuntime.jsx(react$1.Text, { children: `${id}: ${value}` }), jsxRuntime.jsx(react$1.IconButton, { size: "xs", variant: "ghost", icon: jsxRuntime.jsx(icons.CloseIcon, {}), onClick: () => {
|
|
441
441
|
table.setColumnFilters(table.getState().columnFilters.filter((value, curIndex) => {
|
|
442
442
|
return curIndex != index;
|
|
443
443
|
}));
|
|
444
|
-
}, "aria-label": "" })] }));
|
|
444
|
+
}, "aria-label": "remove filter" })] }));
|
|
445
445
|
}) }));
|
|
446
446
|
};
|
|
447
447
|
|
package/dist/index.mjs
CHANGED
|
@@ -434,12 +434,12 @@ const TableRowSelector = ({ index, row, hoveredRow, pinnedBgColor = { light: "gr
|
|
|
434
434
|
|
|
435
435
|
const TableFilterTags = () => {
|
|
436
436
|
const { table } = useDataTable();
|
|
437
|
-
return (jsx(Flex, { gap: "0.5rem", flexFlow:
|
|
438
|
-
return (jsxs(Tag, { children: [`${id}: ${value}
|
|
437
|
+
return (jsx(Flex, { gap: "0.5rem", flexFlow: "wrap", children: table.getState().columnFilters.map(({ id, value }, index) => {
|
|
438
|
+
return (jsxs(Tag, { display: "flex", gap: "0.5rem", alignItems: "center", children: [jsx(Text, { children: `${id}: ${value}` }), jsx(IconButton, { size: "xs", variant: "ghost", icon: jsx(CloseIcon, {}), onClick: () => {
|
|
439
439
|
table.setColumnFilters(table.getState().columnFilters.filter((value, curIndex) => {
|
|
440
440
|
return curIndex != index;
|
|
441
441
|
}));
|
|
442
|
-
}, "aria-label": "" })] }));
|
|
442
|
+
}, "aria-label": "remove filter" })] }));
|
|
443
443
|
}) }));
|
|
444
444
|
};
|
|
445
445
|
|