Skip to content

v1.0.0-beta.16

Pre-release
Pre-release
Compare
Choose a tag to compare
@oliviertassinari oliviertassinari released this 08 Oct 20:51
· 19860 commits to master since this release
Oct 8, 2017

Big thanks to the 18 contributors who made this release possible.

Here are some highlights ✨:

Breaking change

             <TableFooter>
-              <TablePagination
-                count={data.length}
-                rowsPerPage={rowsPerPage}
-                page={page}
-                onChangePage={this.handleChangePage}
-                onChangeRowsPerPage={this.handleChangeRowsPerPage}
-              />
+              <TableRow>
+                <TablePagination
+                  count={data.length}
+                  rowsPerPage={rowsPerPage}
+                  page={page}
+                  onChangePage={this.handleChangePage}
+                  onChangeRowsPerPage={this.handleChangeRowsPerPage}
+                />
+              </TableRow>
             </TableFooter>
  • [typescript] Fix withStyles typing for class components; remove usage as TS decorator (#8561) @pelotom
    We drop the TypeScript decorator support.

Component Fixes / Enhancements

Docs

Core