Skip to content

2.3.0

Latest
Compare
Choose a tag to compare
@robsontenorio robsontenorio released this 29 Apr 14:18
263e483

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