github robsontenorio/mary 2.3.0

latest releases: 2.4.8, 2.4.7, 2.4.6...
6 months ago

What's Changed

  • Choices/ChoicesOffline: fix select height for styling classes and vertical stretching by @lchevalot in #873
  • Choices/ChoicesOffline: fix badge height #879 by @akhmads in #888
  • Carousel: Added optional autoplay setting to carousels (#878) by @AtmoFX in #881
  • File: Set it w-full by @robsontenorio in #884
  • Table: stop click propagation for @row-selection. by @robsontenorio in #885
  • MenuSub: Add disabled property and rename enabled as hidden by @lchevalot in #886
  • MenuItem: Add disabled property and rename enabled as hidden by @lchevalot in #880**

Breaking change 💢

The <x-menu> and <x-menu-sub> property "enabled" was renamed to "hidden" for better naming consistency.

Before

<x-menu-item :enabled="false" >
<x-menu-sub  :enabled="false" >

After

<x-menu-item :hidden="true" />
<x-menu-sub :hidden="true" />

Because now we have a new property called disabled

<x-menu-item :disabled="true" />
<x-menu-item :hidden="true" />

<x-menu-sub :disabled="true" />
<x-menu-sub :hidden="true" />

New Contributors

Full Changelog: 2.2.3...2.3.0

Don't miss a new mary release

NewReleases is sending notifications on new releases.