Skip to content

Releases: mlaursen/react-md

v1.17.0

10 Sep 02:27
Compare
Choose a tag to compare

Changelog

  • Added componentRef and containerRef props to FocusContainer (@gamtiq - #947)

v2.3.0-alpha.2

05 Sep 01:56
Compare
Choose a tag to compare
v2.3.0-alpha.2 Pre-release
Pre-release

2.3.0-alpha.2 (2020-09-05)

Bug Fixes

Features

v2.3.0-alpha.1

03 Sep 17:26
Compare
Choose a tag to compare
v2.3.0-alpha.1 Pre-release
Pre-release

2.3.0-alpha.1 (2020-09-03)

This is technically a breaking change since the react-md package no longer supports the pre-compiled themes in the dist/css folder. You will now need to switch to using jsDelivr which is outlined in the new CDN Links documentation.

Bug Fixes

Features

v2.2.2

02 Sep 23:24
Compare
Choose a tag to compare

This release ended up dropping support for all the pre-compiled themes that use the 100, 400, and 700 weights due to react-md being too large for some CDNs to accept. I'm not sure how much this feature was used, so I'm applying it as a patch since it "fixes" the publishing issue even though it's technically a breaking change.

v2.2.1

02 Sep 23:20
Compare
Choose a tag to compare

This was a re-release of v2.2.0 that was attempting to fix a publishing error. There are no changes other than updating the version number for all packages.

v2.3.0-alpha.0

01 Sep 05:59
Compare
Choose a tag to compare
v2.3.0-alpha.0 Pre-release
Pre-release
v2.3.0-alpha.0

v2.2.0

11 Aug 18:49
Compare
Choose a tag to compare

Bug Fixes

  • @react-md/form: Listbox render 0 as a valid display value (d02b7a9)

Features

  • @react-md/avatar: Added ability to pass props to <img> (11848ee), closes #908
  • @react-md/form: Added props to style Checkbox and Radio input element (b6d2318)
  • @react-md/form: Updated toggle inactive and active colors to be configurable (49319e6)

Note: The Checkbox and Radio components have updated their default inactive color to be the rmd-theme-var(text-secondary-on-background) instead of rmd-theme-var(secondary) to better match the v1 styles.

v2.1.2

01 Aug 21:58
Compare
Choose a tag to compare

Bug Fixes

  • @react-md/transition: useCSSTransition now correctly forwards refs (36f832f)

    This fixes the Layout transition behavior with the useCrossFade hook.

v2.1.1

21 Jul 22:30
Compare
Choose a tag to compare

Bug Fixes

  • theme: Fixed rmd-theme-get-swatch to loop over all rmd-theme-colors instead of the primaries only (353de23), closes #884

Raising Dark Mode Elevation

12 Jul 01:26
Compare
Choose a tag to compare

Raising Dark Mode Elevation

This release is targeted towards creating a better dark mode theme by implementing the full dark theme specs from material design. Just in case this page disappears in the future, basically the idea is to use a base dark background color (#121212) and apply a white overlay with specific opacities depending on the current elevation.

To ensure backwards compatibility, the new dark theme will need to be opted-in by setting the new variable $rmd-theme-dark-elevation: true;. You can also check out the all elevations demo with the dark theme enabled on the documentation site to see how this all works.

Current Dark Theme

home_dark_theme
menu_dark_theme

Improved Dark Theme with Elevation

home_elevated_dark_theme
menu_elevated_dark_theme

Bug Fixes

  • AppBar text color now defaults to rmd-theme-var(text-primary-on-background) (2c3ea5e)
  • Booleans in dist/scssVariables (f6d43a3)
  • ListItem disabled states (7b37292)
  • Scroll active element into view while focusing (a9a0902)
  • Tree focused index after expanding all with asterisk (8547629)
  • Tree keyboard movement for child items that are expanded (fadddc7)
  • Tree scrolling elements into view (eef48dc)

Features

  • Added new mixin for optional css-modules (28ba828)
  • Exported the useAutoComplete hook (cac5cd1)
  • Improved Dark Mode using Raising Elevation (547877c), closes #860
  • Render non-searchable items in AutoComplete (e7a82ac)