Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.x] Use x-rapidez::tag #147

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions resources/views/components/button/base.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@props(['loader' => false, 'tag'])
<x-tag
<x-rapidez::tag
is="{{ $tag ?? ($attributes->has('href') || $attributes->has('v-bind:href') ? 'a' : 'button') }}"
{{ $attributes->class([
'relative inline-block self-start text-center text-sm transition cursor-pointer',
Expand All @@ -15,4 +15,4 @@
<span class="contents" @attributes([':class' => $loader ? '{ "invisible": $root.loading }' : false])>
{{ $slot }}
</span>
</x-tag>
</x-rapidez::tag>
4 changes: 2 additions & 2 deletions resources/views/components/button/link.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@props(['tag'])
<x-tag
<x-rapidez::tag
is="{{ $tag ?? ($attributes->has('href') || $attributes->has('v-bind:href') ? 'a' : 'button') }}"
{{ $attributes->merge(['class' => 'underline text-ct-inactive text-right disabled:no-underline disabled:cursor-not-allowed disabled:opacity-50']) }}
>
{{ $slot }}
</x-tag>
</x-rapidez::tag>
4 changes: 2 additions & 2 deletions resources/views/components/dashboard/item/index.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@props(['item' => [], 'key' => ''])
<x-tag {{ $attributes->merge([
<x-rapidez::tag {{ $attributes->merge([
'class' => 'flex flex-wrap items-center gap-x-6 rounded border bg-white px-8 py-4 text-left',
'href' => $item['href'] ?? '',
'is' => isset($item['href']) ? 'a' : 'button',
Expand Down Expand Up @@ -27,4 +27,4 @@
@endif
</div>
<x-heroicon-o-chevron-right class="ml-auto h-4" />
</x-tag>
</x-rapidez::tag>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@props(['item' => [], 'key' => ''])
<x-tag {{ $attributes->merge([
<x-rapidez::tag {{ $attributes->merge([
'class' => 'flex-1 text-left',
'is' => isset($item['href']) ? 'a' : 'button',
'href' => $item['href'] ?? '',
Expand All @@ -13,4 +13,4 @@
</graphql>
@endif
<x-heroicon-o-chevron-right class="h-4" />
</x-tag>
</x-rapidez::tag>
4 changes: 2 additions & 2 deletions resources/views/components/separated-listing/index.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@props(['tag' => 'ul'])
<x-tag is="{{ $tag }}" {{ $attributes->class('flex flex-col text-sm mt-1 divide-y [&>*]:py-4 [&>*:first-child]:pt-0 [&>*:last-child]:pb-0 [&>*]:flex [&>*]:flex-wrap [&>*]:justify-between') }}>
<x-rapidez::tag is="{{ $tag }}" {{ $attributes->class('flex flex-col text-sm mt-1 divide-y [&>*]:py-4 [&>*:first-child]:pt-0 [&>*:last-child]:pb-0 [&>*]:flex [&>*]:flex-wrap [&>*]:justify-between') }}>
{{ $slot }}
</x-tag>
</x-rapidez::tag>
Loading