Skip to content

Releases: robsontenorio/mary

2.4.8

26 Oct 13:47
da994de

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.7...2.4.8

2.4.7

05 Oct 15:54
442c005

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.6...2.4.7

2.4.6

26 Aug 13:58
983c733

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.5...2.4.6

2.4.5

23 Jul 15:35
4e02850

Choose a tag to compare

What's Changed

Full Changelog: 2.4.4...2.4.5

2.4.4

22 Jul 13:55
5abce0f

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.3...2.4.4

2.4.3

24 Jun 17:02
6161751

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.2...2.4.3

2.4.2

04 Jun 15:21
a6d42c9

Choose a tag to compare

What's Changed

Full Changelog: 2.4.1...2.4.2

2.4.1

28 May 21:29
17a5252

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.0...2.4.1

2.4.0

08 May 20:34
7c92f2a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.3.0...2.4.0

2.3.0

29 Apr 14:18
263e483

Choose a tag to compare

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