2023-08-08 09:51:36 +00:00
|
|
|
<li @if($isUpgradeAvailable) title="New version available" @else title="No upgrade available"
|
|
|
|
@endif x-init="$wire.checkUpdate" x-data>
|
2023-06-15 09:39:15 +00:00
|
|
|
@if ($isUpgradeAvailable)
|
2023-08-08 09:51:36 +00:00
|
|
|
<button wire:key="upgrade" wire:click='upgrade' class="hover:bg-transparent focus:bg-transparent"
|
|
|
|
x-on:click="upgrade">
|
2023-06-15 09:39:15 +00:00
|
|
|
@if ($showProgress)
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
2023-08-08 09:51:36 +00:00
|
|
|
class="w-6 h-6 text-pink-500 transition-colors hover:text-pink-300 lds-heart" viewBox="0 0 24 24"
|
|
|
|
stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
|
|
|
<path d="M19.5 13.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"/>
|
2023-06-15 09:39:15 +00:00
|
|
|
</svg>
|
|
|
|
@else
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
2023-08-08 09:51:36 +00:00
|
|
|
class="w-6 h-6 text-pink-500 transition-colors hover:text-pink-300" viewBox="0 0 24 24"
|
|
|
|
stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
2023-06-15 09:39:15 +00:00
|
|
|
<path
|
2023-08-08 09:51:36 +00:00
|
|
|
d="M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"/>
|
|
|
|
<path d="M9 21h6"/>
|
|
|
|
<path d="M9 18h6"/>
|
2023-06-15 09:39:15 +00:00
|
|
|
</svg>
|
|
|
|
@endif
|
2023-06-16 19:16:30 +00:00
|
|
|
</button>
|
2023-07-05 19:26:21 +00:00
|
|
|
@else
|
2023-08-08 09:51:36 +00:00
|
|
|
<button class="hover:bg-transparent">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
|
|
class="w-6 h-6 transition-colors text-neutral-700" viewBox="0 0 24 24"
|
|
|
|
stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
|
|
|
<path
|
|
|
|
d="M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z"/>
|
|
|
|
<path d="M9 21h6"/>
|
|
|
|
<path d="M9 18h6"/>
|
|
|
|
</svg>
|
2023-07-05 19:26:21 +00:00
|
|
|
</button>
|
2023-06-15 09:39:15 +00:00
|
|
|
@endif
|
|
|
|
</li>
|