robsontenorio/mary
Gorgeous Livewire UI components for Laravel, powered by Tailwind CSS and daisyUI. maryUI provides ready-to-use, polished components to build modern apps faster, with full documentation, community support, and MIT license.
no-css option by @robsontenorio in https://github.com/robsontenorio/mary/pull/1066progress-indicator by @robsontenorio in https://github.com/robsontenorio/mary/pull/1076open property by @robsontenorio in https://github.com/robsontenorio/mary/pull/1078icon and icon-right by @David-Crty in https://github.com/robsontenorio/mary/pull/1071popover option by @slam357 in https://github.com/robsontenorio/mary/pull/1073Full Changelog: https://github.com/robsontenorio/mary/compare/2.8.0...2.8.1
Upgrade to the latest VanillaCalendarPro v3 version.
<script src="https://cdn.jsdelivr.net/npm/vanilla-calendar-pro@3.1.0/index.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/vanilla-calendar-pro@3.1.0/styles/index.min.css" rel="stylesheet">
Actually you just need to update the CDN scripts.
Additionally if you use the $config object, take a look at VanillaCalendarPro api docs.
If you don't, you are good to go.
Full Changelog: https://github.com/robsontenorio/mary/compare/2.7.2...2.8.0
back/forward browser button by @robsontenorio in https://github.com/robsontenorio/mary/pull/1062Full Changelog: https://github.com/robsontenorio/mary/compare/2.7.1...2.7.2
content_css configuration by @robsontenorio in https://github.com/robsontenorio/mary/pull/1058Full Changelog: https://github.com/robsontenorio/mary/compare/2.7.0...2.7.1
Change the version to 2.7.0
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/robsontenorio/mary@2.7.0/libs/currency.js"></script>
Until now, we had a naive implementation using the Currency static class. This led to unexpected behavior during the blur events.
Now, currency.js is properly implemented by keeping its instances isolated through components.
Full Changelog: https://github.com/robsontenorio/mary/compare/2.6.0...2.7.0
Full Changelog: https://github.com/robsontenorio/mary/compare/2.5.1...2.6.0
x-ref by @robsontenorio in https://github.com/robsontenorio/mary/pull/1030alternative-shortcut by @robsontenorio in https://github.com/robsontenorio/mary/pull/1033fluent attribute by @robsontenorio in https://github.com/robsontenorio/mary/pull/1038w-0 by @robsontenorio in https://github.com/robsontenorio/mary/pull/1032Full Changelog: https://github.com/robsontenorio/mary/compare/2.5.0...2.5.1
use-h1 attribute by @josalzi in https://github.com/robsontenorio/mary/pull/1007Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.10...2.5.0
overflow-visible by @robsontenorio in https://github.com/robsontenorio/mary/pull/1015Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.9...2.4.10
scroll and max-height properties by @CaseMonster in https://github.com/robsontenorio/mary/pull/998popover attribute by @Almandeel in https://github.com/robsontenorio/mary/pull/999Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.8...2.4.9
without-backdrop-close attribute by @CaseMonster in https://github.com/robsontenorio/mary/pull/987no-progress attribute by @Almandeel in https://github.com/robsontenorio/mary/pull/994no-wire-navigate attribute by @Almandeel in https://github.com/robsontenorio/mary/pull/995Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.7...2.4.8
Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.6...2.4.7
Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.5...2.4.6
password-icon-tabindex by @AtmoFX in https://github.com/robsontenorio/mary/pull/958Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.4...2.4.5
no-gap attribute by @AtmoFX in https://github.com/robsontenorio/mary/pull/951fallback-avatar by @robsontenorio in https://github.com/robsontenorio/mary/pull/956fallback-image by @robsontenorio in https://github.com/robsontenorio/mary/pull/955fallback-avatar by @robsontenorio in https://github.com/robsontenorio/mary/pull/954Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.3...2.4.4
clear action by @robsontenorio in https://github.com/robsontenorio/mary/pull/940date formatter use correct locale by @robsontenorio in https://github.com/robsontenorio/mary/pull/938range mode by @robsontenorio in https://github.com/robsontenorio/mary/pull/941Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.2...2.4.3
[@open](https://github.com/open) event by @akhmads in https://github.com/robsontenorio/mary/pull/918.blur for money by @marcelcunha in https://github.com/robsontenorio/mary/pull/913wire:navigate by @robsontenorio in https://github.com/robsontenorio/mary/pull/924Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.1...2.4.2
disabled and readonly states by @mani-damirchilou in https://github.com/robsontenorio/mary/pull/908progress-indicator-class by @themegazord in https://github.com/robsontenorio/mary/pull/910close event by @amnesca in https://github.com/robsontenorio/mary/pull/905Full Changelog: https://github.com/robsontenorio/mary/compare/2.4.0...2.4.1
float values by @robsontenorio in https://github.com/robsontenorio/mary/pull/895footer slot by @akhmads in https://github.com/robsontenorio/mary/pull/889Full Changelog: https://github.com/robsontenorio/mary/compare/2.3.0...2.4.0
w-full by @robsontenorio in https://github.com/robsontenorio/mary/pull/884[@row-selection](https://github.com/row-selection). by @robsontenorio in https://github.com/robsontenorio/mary/pull/885The <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" />
Full Changelog: https://github.com/robsontenorio/mary/compare/2.2.3...2.3.0
Select All by @abduraim in https://github.com/robsontenorio/mary/pull/871Full Changelog: https://github.com/robsontenorio/mary/compare/2.2.2...2.2.3
Full Changelog: https://github.com/robsontenorio/mary/compare/2.2.1...2.2.2
Full Changelog: https://github.com/robsontenorio/mary/compare/2.2.0...2.2.1
Full Changelog: https://github.com/robsontenorio/mary/compare/2.1.0...2.2.0
alt HTML property. by @robsontenorio in https://github.com/robsontenorio/mary/pull/836hidden state by @robsontenorio in https://github.com/robsontenorio/mary/pull/838disable option by @robsontenorio in https://github.com/robsontenorio/mary/pull/840icon-classes by @anfeichtinger in https://github.com/robsontenorio/mary/pull/855$id property to all constructors where an $uuid property exists by @anfeichtinger in https://github.com/robsontenorio/mary/pull/842Full Changelog: https://github.com/robsontenorio/mary/compare/2.0.1...2.1.0
with-nav by @robsontenorio in https://github.com/robsontenorio/mary/pull/832live model by @robsontenorio in https://github.com/robsontenorio/mary/pull/833Full Changelog: https://github.com/robsontenorio/mary/compare/2.0.0...2.0.1
Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.7...1.41.8
actions slot by @robsontenorio in https://github.com/robsontenorio/mary/pull/779class handle. by @robsontenorio in https://github.com/robsontenorio/mary/pull/780Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.6...1.41.7
Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.5...1.41.6
id by @robsontenorio in https://github.com/robsontenorio/mary/pull/751x-cloak by @TobiasLounsbury in https://github.com/robsontenorio/mary/pull/746Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.4...1.41.5
Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.3...1.41.4
id by @robsontenorio in https://github.com/robsontenorio/mary/pull/704Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.2...1.41.3
gpl-license attribute by @ekrist1 in https://github.com/robsontenorio/mary/pull/674placeholder attribute by @zaxxo-dkraemer in https://github.com/robsontenorio/mary/pull/682disabled attribute by @marcelcunha in https://github.com/robsontenorio/mary/pull/681Full Changelog: https://github.com/robsontenorio/mary/compare/1.41.1...1.41.2
How can I help you explore Laravel packages today?