@ackplus/react-tanstack-data-table
Version:
A powerful React data table component built with MUI and TanStack Table
18 lines • 701 B
TypeScript
import { ReactElement } from 'react';
import { FormControlProps, TextFieldProps, SelectProps, SxProps } from '@mui/material';
import { Column } from '@tanstack/react-table';
import { ColumnFilterRule } from '../../features';
interface FilterValueInputProps<T> {
filter: ColumnFilterRule;
column: Column<T, any>;
onValueChange: (value: any) => void;
formControlProps?: FormControlProps;
textFieldProps?: TextFieldProps;
selectProps?: SelectProps;
datePickerProps?: any;
containerSx?: SxProps;
[key: string]: any;
}
export declare function FilterValueInput<T>(props: FilterValueInputProps<T>): ReactElement;
export {};
//# sourceMappingURL=filter-value-input.d.ts.map