Skip to content

Releases: mlaursen/react-md

react-md@7.0.3

21 Mar 15:04
react-md@7.0.3
308dbee

Choose a tag to compare

7.0.3

Patch Changes

  • 0d1e580: Fixed the base react-md package to include missing exports
  • Updated dependencies [ed88576]
    • @react-md/core@7.0.3

@react-md/vite-material-symbols-plugin@2.1.0

21 Mar 15:04
@react-md/vite-material-symbols-plugin@2.1.0
308dbee

Choose a tag to compare

2.1.0

Minor Changes

  • cf6fa40: Automatically add any new icons while running the dev server by reloading the page. This used to require a full dev server restart to track new icons.

Patch Changes

  • Updated dependencies [ed88576]
  • Updated dependencies [0d1e580]
    • @react-md/core@7.0.3
    • react-md@7.0.3

@react-md/core@7.0.3

21 Mar 15:04
@react-md/core@7.0.3
308dbee

Choose a tag to compare

7.0.3

Patch Changes

  • ed88576: Updated the Select component to use inert over aria-hidden+tabindex=-1

@react-md/vite-material-symbols-plugin@2.0.0

13 Feb 03:31
@react-md/vite-material-symbols-plugin@2.0.0
0ccd9af

Choose a tag to compare

Initial Release

This is a very simple vite plugin to handle automatically include material symbols from the google fonts API when using the MaterialSymbol component from @react-md/core. This plugin searches all the included files for MaterialSymbol components and extracts the material symbol name from the name prop.

Setup

Add the plugin to the vite.config.ts:

 import { resolve } from 'node:path'
 import { defineConfig } from 'vite'
 import react from '@vitejs/plugin-react-swc'
+import { materialSymbolsPlugin } from "@react-md/vite-material-symbols-plugin";

 // https://vite.dev/config/
 export default defineConfig({
-  plugins: [react()],
+  plugins: [react(), materialSymbolsPlugin()],
   resolve: {
     alias: {
       everything: resolve(import.meta.dirname, 'src/_everything.scss'),
     },
   },
 })

@react-md/core@7.0.2

13 Feb 03:31
@react-md/core@7.0.2
0ccd9af

Choose a tag to compare

Patch Changes

  • 4b7fc3a: Fixed the MenuItemButton not applying the height prop correctly.
  • ecb35d3: Added support for a new color-scheme variable to help with light-dark() function usage.
  • 017f081: Updated the mutable config objects to be recognized as side-effects to not strip from builds.
  • 7daefe7: Fixed the custom css properties for window-splitter and max width transition.
  • 9630b94: Fix material icon font and material symbols by always enforcing the icon font size.

@react-md/material-icons@7.0.2

11 Jan 05:32
@react-md/material-icons@7.0.2
05aafc4

Choose a tag to compare

7.0.2

Patch Changes

  • 2eeac34: Updated the .npmignore after moving files to the dist folder

@react-md/core@7.0.1

11 Jan 03:35
@react-md/core@7.0.1
3a37285

Choose a tag to compare

7.0.1

Patch Changes

  • 168b9d9: Fixed peerDependencies to reflect React 19 requirement

@react-md/core@7.0.0

06 Jan 02:23
@react-md/core@7.0.0
c16a43f

Choose a tag to compare

7.0.0

Major Changes

  • e56a973: BREAKING CHANGE: v7 dropped support for React < 19. Upgrade to react 19 or continue using v6.x.x

@react-md/core@6.5.2

05 Jan 22:53
@react-md/core@6.5.2
7d3f728

Choose a tag to compare

6.5.2

Patch Changes

  • 1e0d118: Fixed material symbols not correctly applying the fill customization

@react-md/core@6.5.1

20 Dec 15:17
@react-md/core@6.5.1
abc1358

Choose a tag to compare

6.5.1

Patch Changes

  • f83cf31: Fixed the optional-css-module sass util to work with turbopack
  • b0306dd: Updated code for new eslint rules which mostly changed usage of window to globalThis. This should generally not require any changes on your end.