Skip to content

Commit

Permalink
[Grid] Add auto to TypeScript definitions (#11933)
Browse files Browse the repository at this point in the history
  • Loading branch information
woobianca authored and oliviertassinari committed Jun 21, 2018
1 parent abb0b37 commit dce7801
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/material-ui/src/Grid/Grid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type GridJustification =

export type GridWrap = 'nowrap' | 'wrap' | 'wrap-reverse';

export type GridSize = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
export type GridSize = 'auto' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;

export interface GridProps
extends StandardProps<
Expand Down Expand Up @@ -70,7 +70,8 @@ export type GridClassKey =
| 'spacing-xs-16'
| 'spacing-xs-24'
| 'spacing-xs-40'
| 'grid-xs'
| 'grid-xs-auto'
| 'grid-xs-true'
| 'grid-xs-1'
| 'grid-xs-2'
| 'grid-xs-3'
Expand Down

0 comments on commit dce7801

Please sign in to comment.