feat: implement server-side search, filter state management, and clearable inputs for data tables with associated API transformer updates.

This commit is contained in:
Firman Ramdhani
2026-07-23 15:12:49 +07:00
parent fa119deec2
commit d69549b747
3 changed files with 105 additions and 11 deletions
@@ -13,6 +13,7 @@ import {
Tooltip,
} from '@mantine/core';
import { useLocalStorage } from '@mantine/hooks';
import { Link } from 'react-router-dom';
import { ChevronRight, LucideIcon, Maximize2, Minimize2 } from 'lucide-react'; // <-- Update Import Icon
import { PageActions, PageActionsProps } from '../../../../components';
@@ -91,7 +92,7 @@ function BreadcrumbBar({ breadcrumbs }: BreadcrumbBarProps) {
};
return !isText ? (
<Anchor key={index} {...sharedProps} href={item.href}>
<Anchor component={Link} key={index} {...sharedProps} to={item.href || '#'}>
{item.label}
</Anchor>
) : (