Skip to content

v5.0.0-beta.22

Pre-release
Pre-release

Choose a tag to compare

@LouisMazel LouisMazel released this 04 Jun 10:30
· 2 commits to master since this release

compare changes

🚀 Features

  • @maz-ui/themes: MazDialog - configurable max/min-width via preset (#1594)

    MazDialog width constraints can now be configured through theme presets, with per-instance overrides still supported.

    import { definePreset } from '@maz-ui/themes'
    const theme = definePreset({
      base: 'maz-ui',
      overrides: {
        components: {
          dialog: { 'max-width': '48rem', 'min-width': '36rem' },
        },
      },
    })
    <MazDialog v-model="open" max-width="50rem" min-width="40rem" />

🩹 Fixes

  • @maz-ui/nuxt: Color mode reverts to dark on client navigation (#1587)

❤️ Contributors