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/README.md +7 -7
- package/dist/MaterialReactTable.d.ts +1 -1
- package/dist/buttons/MRT_CopyButton.d.ts +1 -2
- package/dist/material-react-table.cjs.development.js +2 -1
- package/dist/material-react-table.cjs.development.js.map +1 -1
- package/dist/material-react-table.cjs.production.min.js +1 -1
- package/dist/material-react-table.cjs.production.min.js.map +1 -1
- package/dist/material-react-table.esm.js +2 -1
- package/dist/material-react-table.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/MaterialReactTable.tsx +0 -1
- package/src/buttons/MRT_CopyButton.tsx +1 -2
- package/src/localization.ts +0 -1
- package/src/table/MRT_TableRoot.tsx +1 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.7.0-alpha.
|
|
2
|
+
"version": "0.7.0-alpha.4",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"name": "material-react-table",
|
|
5
|
-
"description": "A fully featured Material
|
|
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",
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import React, { FC,
|
|
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
|
|
package/src/localization.ts
CHANGED
|
@@ -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,
|