Releases: mlaursen/react-md
v1.2.7
Release notes are also available at https://react-md.mlaursen.com/discover-more/whats-new#v1-2-7-released
Changelog
- Fixed the
Ink
TransitionGroup
issues when snapshot testing. #611 - Fixed the
EditDialogColumn
TypeError
when setting theinlineIcon
tonull
. #612 - Updated the
Dialog
'sautosizeContent
to work with some more use cases. 9573ef3
Website Changes
With the v1.2.7
release, I also finally documented the ResizeObserver component that has been exposed in the UMD
build for awhile now. I also disabled the service workers to see if that stops the weird React error whenever I update the website and causes a blank page to appear. Finally, I should have fixed the pages animating in when coming from server side rendering. It should only animate when changing routes now.
v1.2.6
v1.2.5
Release notes are also available at https://react-md.mlaursen.com/discover-more/whats-new#v1-2-5-released
Changelog
- Fixed a problem with editable
Slider
s using the wrong ref. 34d26de - Fixed
MenuButton
's not opening with a space keypress. #601 - Fixed the
overlay
prop onDrawer
andNavigationDrawer
. #602 - Fixed the
DatePicker
for timezone problems. (@hisapy - #605) - Exported the component interface Typescript definitions. (@noseglid - #606)
- Fixed the
EditDialogColumn
controlled PropTypes warning. #604 - Fixed the
MenuButton
not supplying event listeners to the surroundingDropdownMenu
. #610 - Fixed the weird
TextField
display bug in newer versions of Chrome. #565 - Fixed the Sass variables that the icon's color is derived from. #609
v1.2.4
v1.2.3
Changelog
- Correctly passed
disableScrollLocking
forDatePicker
andTimePicker
. bc0423e - Fixed the React 15
Portal
support. 589 - Fixed the
Slider
step behavior where themin
value is not zero. (@strickc - #585 and #588) - Updated the
Drawer
andNavigationDrawer
to be able to apply manualzDepth
. #590
Website changes
- Fixed the search functionality for: media queries, colors, themes, and typography. adb8bad
Other Changes
- Updated the with-create-react-app, with-react-router-v4, and with-typescript examples.
v1.2.2
v1.2.1
v1.2.0 - ES6 Modules, React 16, and Smaller Bundles
Release notes are also available at https://react-md.mlaursen.com/discover-more/whats-new#v1-2-0-released
This release was focused on making the entire react-md
library smaller, adding easier imports, and adding React 16 support. If your bundler supports ES6 modules (webpack 3+), you can now do:
import { NavigationDrawer, ...OtherComponents } from 'react-md';
without importing the entire library AND reducing the bundle size compared to:
import NavigationDrawer from 'react-md/lib/NavigationDrawers';
The initial update changed production UMD build from 705kB to 361kB as well as changing the entire documentation server size from 8MB to 5.7MB, so it is a pretty nice difference. Check the changelog below for all the information.
Changelog
- Added ES6 module support and switch build from webpack to rollup. #566
- Fully implemented React 16 support with React 15 fallback. #576
- Updated components to no longer do
this.setState
incomponentWillUpdate
since React 16 no longer supports it. a82d314 - Created three new components:
Grid
,Cell
, andGridList
to easily make grids. #573 - Update
TableColumn
so the sort icon can appear after the children. (@cpboone - #579) - Added a
Version
so that the current version of react-md can be determined easily. 32ecbc7
v1.1.9
v1.1.8
Release notes are also available at https://react-md.mlaursen.com/discover-more/whats-new#v1-1-8-released