material-react-table 0.26.4 → 0.26.5

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.
@@ -4,6 +4,7 @@ import { MRT_TableInstance } from '..';
4
4
  export declare const commonToolbarStyles: ({ theme }: {
5
5
  theme: Theme;
6
6
  }) => {
7
+ alignItems: string;
7
8
  backgroundColor: string;
8
9
  backgroundImage: string;
9
10
  display: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.26.4",
2
+ "version": "0.26.5",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table",
5
5
  "description": "A fully featured Material UI implementation of TanStack React Table, inspired by material-table and the MUI X DataGrid, written from the ground up in TypeScript.",
@@ -1,13 +1,14 @@
1
1
  import React, { FC } from 'react';
2
2
  import { Box, lighten, Theme, Toolbar, useMediaQuery } from '@mui/material';
3
- import { MRT_ToolbarInternalButtons } from './MRT_ToolbarInternalButtons';
4
- import { MRT_TablePagination } from './MRT_TablePagination';
5
- import { MRT_ToolbarAlertBanner } from './MRT_ToolbarAlertBanner';
3
+ import { MRT_GlobalFilterTextField } from '../inputs/MRT_GlobalFilterTextField';
6
4
  import { MRT_LinearProgressBar } from './MRT_LinearProgressBar';
7
5
  import { MRT_TableInstance } from '..';
8
- import { MRT_GlobalFilterTextField } from '../inputs/MRT_GlobalFilterTextField';
6
+ import { MRT_TablePagination } from './MRT_TablePagination';
7
+ import { MRT_ToolbarAlertBanner } from './MRT_ToolbarAlertBanner';
8
+ import { MRT_ToolbarInternalButtons } from './MRT_ToolbarInternalButtons';
9
9
 
10
10
  export const commonToolbarStyles = ({ theme }: { theme: Theme }) => ({
11
+ alignItems: 'flex-start',
11
12
  backgroundColor: lighten(theme.palette.background.default, 0.04),
12
13
  backgroundImage: 'none',
13
14
  display: 'grid',