Skip to content

Releases: mlaursen/react-md

react-md@7.0.4

29 Apr 20:39
react-md@7.0.4
e006dbe

Choose a tag to compare

7.0.4

Patch Changes

  • 8146223: Fixed the a11y scss file not being included correctly
  • Updated dependencies [72d4630]
    • @react-md/core@7.0.4

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

29 Apr 20:39
@react-md/vite-material-symbols-plugin@2.1.1
e006dbe

Choose a tag to compare

2.1.1

Patch Changes

  • 1f32a73: Fixed the publishing behavior to include this package in the build and release steps.
  • 72d4630: Fixed the material symbols URL when using multiple families
  • Updated dependencies [72d4630]
  • Updated dependencies [8146223]
    • @react-md/core@7.0.4
    • react-md@7.0.4

@react-md/core@7.0.4

29 Apr 20:39
@react-md/core@7.0.4
e006dbe

Choose a tag to compare

7.0.4

Patch Changes

  • 72d4630: Fixed the material symbols URL when using multiple families

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