Skip to content

Commit b0ea9d9

Browse files
authored
correct mantineFilterCheckboxProps type definition (#490)
1 parent c5150f4 commit b0ea9d9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/mantine-react-table/src

packages/mantine-react-table/src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,8 @@ export type MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown> = {
562562
| ((props: {
563563
column: MRT_Column<TData, TValue>;
564564
table: MRT_TableInstance<TData>;
565-
}) => HTMLPropsRef<HTMLInputElement> & Partial<TextInputProps>)
566-
| (HTMLPropsRef<HTMLInputElement> & Partial<TextInputProps>);
565+
}) => HTMLPropsRef<HTMLInputElement> & Partial<CheckboxProps>)
566+
| (HTMLPropsRef<HTMLInputElement> & Partial<CheckboxProps>);
567567
mantineFilterDateInputProps?:
568568
| ((props: {
569569
column: MRT_Column<TData, TValue>;

0 commit comments

Comments
 (0)