Skip to content

Releases: mlaursen/react-md

v1.2.7

09 Nov 18:25
Compare
Choose a tag to compare

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 the inlineIcon to null. #612
  • Updated the Dialog's autosizeContent 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

07 Nov 22:37
Compare
Choose a tag to compare

Changelog

  • Removed some Dialog code that shouldn't have been included. fb36c0e

v1.2.5

07 Nov 20:30
Compare
Choose a tag to compare

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 Sliders using the wrong ref. 34d26de
  • Fixed MenuButton's not opening with a space keypress. #601
  • Fixed the overlay prop on Drawer and NavigationDrawer. #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 surrounding DropdownMenu. #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

20 Oct 18:25
Compare
Choose a tag to compare

Changelog

  • Updated GridList to support false-ish children. e53e080
  • Fixed Grid and GridList not applying style. #596
  • Fixed Layovers that appear in centered dialogs. #580
  • Fixed TextField resizing for when icons are added or removed. d7b5cf0

v1.2.3

13 Oct 18:46
Compare
Choose a tag to compare

Changelog

  • Correctly passed disableScrollLocking for DatePicker and TimePicker. bc0423e
  • Fixed the React 15 Portal support. 589
  • Fixed the Slider step behavior where the min value is not zero. (@strickc - #585 and #588)
  • Updated the Drawer and NavigationDrawer to be able to apply manual zDepth. #590

Website changes

  • Fixed the search functionality for: media queries, colors, themes, and typography. adb8bad

Other Changes

v1.2.2

11 Oct 19:49
Compare
Choose a tag to compare

Changelog

  • Correctly published to npm with the Typescript definition files.

v1.2.1

11 Oct 18:04
Compare
Choose a tag to compare

Changelog

  • Correctly exported the new Grid, Cell, and GridList for non-ES6 module imports. 27c86e8

v1.2.0 - ES6 Modules, React 16, and Smaller Bundles

11 Oct 15:20
Compare
Choose a tag to compare

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 in componentWillUpdate since React 16 no longer supports it. a82d314
  • Created three new components: Grid, Cell, and GridList to easily make grids. #573
    • Related to #507 and #472. This implemented a "container" system for Grids.
  • 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

09 Oct 22:34
Compare
Choose a tag to compare

Release notes are also available at https://react-md.mlaursen.com/discover-more/whats-new#v1-1-9-released

Changelog

  • Fixed the order of the okProps and cancelProps on the EditDialogColumn. #581

v1.1.8

09 Oct 18:51
Compare
Choose a tag to compare

Release notes are also available at https://react-md.mlaursen.com/discover-more/whats-new#v1-1-8-released

Changelog

  • Fixed the Typescript definitions for DataTable checkbox callbacks. (@domszyn - #575)
  • Removed the unneeded range prop type validation on sliders. #570
  • Updated tooltips to work better in IE11. #574