You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JSON objects to create the table and the table component will no longer generate the table for you.
The docs site provides a complete example of how a table might look: http://material-ui.com/#/components/table. The example also includes a 'super header' and 'super footer' row.
Upgrade Path: Instead of passing in the raw JSON data, you'll need to generate the appropriate
TableHeader/TableRow/TableHeaderColumn components and pass them in as children. The same should be applied
to the rowData and the footer.
Tabs can now be controlled. In order to make this work we had to change the parameters being passed back to
the onChange event to: onChange(value, e, tab). Where value is the value of the tab that it was changed
to, e is the event, and tab is the actual tab component. (#1232, #1235)
Added a new static flag to the ThemeManager that defaults to true. If you're mutating your theme variables
after the app initializes, set this flag to false. This will allow us to perform some optimizations to
components that require theme variables. (#1397)
Nested list items should no longer be passed in as children. Use the nestedItems prop instead.
The open prop has been renamed to initiallyOpen.
Removed classable mixin
This mixin was no longer used in the library. Removing it allowed us to get rid of the classnames dependency. If you were using this mixin in your own projects, you'll need to pull the source and manually include it.
Component Fixes / Enhancements
Buttons - Fixed a bug that caused buttons to not gain keyboard focus in some cases (#1485, #1453, #1458)
Card
Properly merge CardAction and CardExpandable styles. (#1376)
Added Right-To-Left support to CardExpandable. To use this, set isRtl to true in the theme. (#1408)
DatePicker - Fixed an error that occurred when using valueLink (#1400)