mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
refactor(ui/datatables): allow datatable to globally filter on object value [EE-5824] (#9955)
This commit is contained in:
parent
440f4e8dda
commit
cb7377ead6
34 changed files with 271 additions and 186 deletions
|
@ -3,9 +3,9 @@ import { Row, Table as TableInstance } from '@tanstack/react-table';
|
|||
import { AutomationTestingProps } from '@/types';
|
||||
|
||||
import { Table } from './Table';
|
||||
import { DefaultType } from './types';
|
||||
|
||||
interface Props<D extends Record<string, unknown>>
|
||||
extends AutomationTestingProps {
|
||||
interface Props<D extends DefaultType> extends AutomationTestingProps {
|
||||
tableInstance: TableInstance<D>;
|
||||
renderRow(row: Row<D>): React.ReactNode;
|
||||
onSortChange?(colId: string, desc: boolean): void;
|
||||
|
@ -13,7 +13,7 @@ interface Props<D extends Record<string, unknown>>
|
|||
emptyContentLabel?: string;
|
||||
}
|
||||
|
||||
export function DatatableContent<D extends Record<string, unknown>>({
|
||||
export function DatatableContent<D extends DefaultType>({
|
||||
tableInstance,
|
||||
renderRow,
|
||||
onSortChange,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue