diff --git a/packages/material-ui/src/Grid/Grid.d.ts b/packages/material-ui/src/Grid/Grid.d.ts index 53fab3f82099b2..d73a84560b2e1b 100644 --- a/packages/material-ui/src/Grid/Grid.d.ts +++ b/packages/material-ui/src/Grid/Grid.d.ts @@ -31,8 +31,7 @@ export type GridSize = 'auto' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 export interface GridProps extends StandardProps< React.HTMLAttributes & Partial>, - GridClassKey, - 'hidden' + GridClassKey > { alignContent?: GridContentAlignment; alignItems?: GridItemsAlignment; diff --git a/packages/material-ui/src/TableCell/TableCell.d.ts b/packages/material-ui/src/TableCell/TableCell.d.ts index 9e1fb14f1fa14d..3b3797a01e6f7d 100644 --- a/packages/material-ui/src/TableCell/TableCell.d.ts +++ b/packages/material-ui/src/TableCell/TableCell.d.ts @@ -9,7 +9,8 @@ import { StandardProps } from '..'; * Since it is not decided via prop, we have create loose typings * here. */ -export interface TableCellProps extends StandardProps { +export interface TableCellProps + extends StandardProps { align?: 'inherit' | 'left' | 'center' | 'right' | 'justify'; component?: React.ReactType; numeric?: boolean; diff --git a/packages/material-ui/src/TablePagination/TablePagination.d.ts b/packages/material-ui/src/TablePagination/TablePagination.d.ts index ce7b6f380fd31f..032904e685bc0d 100644 --- a/packages/material-ui/src/TablePagination/TablePagination.d.ts +++ b/packages/material-ui/src/TablePagination/TablePagination.d.ts @@ -13,7 +13,7 @@ export interface LabelDisplayedRowsArgs { } export interface TablePaginationProps - extends StandardProps { + extends StandardProps { ActionsComponent?: React.ReactType; backIconButtonProps?: Partial; component?: React.ReactType;