material-react-table 0.7.0-alpha.3 → 0.7.0-alpha.4

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
- "version": "0.7.0-alpha.3",
2
+ "version": "0.7.0-alpha.4",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table",
5
- "description": "A fully featured Material-UI implementation of react-table, inspired by material-table and the mui DataGrid, written from the ground up in TypeScript.",
5
+ "description": "A fully featured Material UI implementation of react-table, inspired by material-table and the MUI X DataGrid, written from the ground up in TypeScript.",
6
6
  "author": "Kevin Vandy",
7
7
  "keywords": [
8
8
  "react-table",
@@ -688,7 +688,6 @@ export default <D extends Record<string, any> = {}>({
688
688
  enableSelectAll = true,
689
689
  enableSorting = true,
690
690
  enableStickyHeader = true,
691
- filterTypes,
692
691
  icons,
693
692
  localization,
694
693
  positionActionsColumn = 'first',
@@ -1,10 +1,9 @@
1
- import React, { FC, ReactNode, useState } from 'react';
1
+ import React, { FC, useState } from 'react';
2
2
  import { Button, Tooltip } from '@mui/material';
3
3
  import { MRT_Cell, MRT_TableInstance } from '..';
4
4
 
5
5
  interface Props {
6
6
  cell: MRT_Cell;
7
- children: ReactNode;
8
7
  tableInstance: MRT_TableInstance;
9
8
  }
10
9
 
@@ -94,7 +94,6 @@ export const MRT_DefaultLocalization_EN: MRT_Localization = {
94
94
  search: 'Search',
95
95
  selectedCountOfRowCountRowsSelected:
96
96
  '{selectedCount} of {rowCount} row(s) selected',
97
-
98
97
  select: 'Select',
99
98
  showAll: 'Show all',
100
99
  showAllColumns: 'Show all columns',
@@ -197,6 +197,7 @@ export const MRT_TableRoot = <D extends Record<string, any> = {}>(
197
197
  ...props,
198
198
  //@ts-ignore
199
199
  filterTypes: defaultFilterFNs,
200
+ debugAll: false,
200
201
  globalFilterType: currentGlobalFilterType,
201
202
  columnFilterRowsFn: columnFilterRowsFn,
202
203
  columns,