remove blade-ui-kit/blade-heroicons

This commit is contained in:
Saeed Vaziry
2024-03-17 14:37:19 +01:00
parent 4f252caaf3
commit 3dc38bf56b
59 changed files with 465 additions and 212 deletions

View File

@ -61,14 +61,14 @@ class="ml-1"
<x-icon-button
x-on:click="restoreAction = '{{ route('servers.databases.backups.files.restore', ['server' => $server, 'backup' => $backup, 'backupFile' => $file]) }}'; $dispatch('open-modal', 'restore-backup')"
>
<x-heroicon-o-arrow-path class="h-5 w-5" />
<x-heroicon name="o-arrow-path" class="h-5 w-5" />
</x-icon-button>
@endif
<x-icon-button
x-on:click="deleteAction = '{{ route('servers.databases.backups.files.destroy', ['server' => $server, 'backup' => $backup, 'backupFile' => $file]) }}'; $dispatch('open-modal', 'delete-backup-file')"
>
<x-heroicon-o-trash class="h-5 w-5" />
<x-heroicon name="o-trash" class="h-5 w-5" />
</x-icon-button>
</x-td>
</tr>

View File

@ -36,12 +36,12 @@
<x-icon-button
:href="route('servers.databases.backups', ['server' => $server, 'backup' => $backup])"
>
<x-heroicon-o-circle-stack class="h-5 w-5" />
<x-heroicon name="o-circle-stack" class="h-5 w-5" />
</x-icon-button>
<x-icon-button
x-on:click="deleteAction = '{{ route('servers.databases.backups.destroy', ['server' => $server, 'backup' => $backup]) }}'; $dispatch('open-modal', 'delete-backup')"
>
<x-heroicon-o-trash class="h-5 w-5" />
<x-heroicon name="o-trash" class="h-5 w-5" />
</x-icon-button>
</x-td>
</tr>

View File

@ -37,7 +37,7 @@
<x-icon-button
x-on:click="deleteAction = '{{ route('servers.databases.destroy', ['server' => $server, 'database' => $database]) }}'; $dispatch('open-modal', 'delete-database')"
>
<x-heroicon-o-trash class="h-5 w-5" />
<x-heroicon name="o-trash" class="h-5 w-5" />
</x-icon-button>
</x-td>
</tr>

View File

@ -24,7 +24,7 @@
<x-th>{{ __("Username") }}</x-th>
<x-th>{{ __("Created") }}</x-th>
<x-th class="flex items-center">
<x-heroicon-o-link class="mr-1 h-5 w-5" />
<x-heroicon name="o-link" class="mr-1 h-5 w-5" />
{{ __("Linked Databases") }}
</x-th>
<x-th>{{ __("Status") }}</x-th>
@ -50,17 +50,17 @@
hx-select="#database-user-password-content"
hx-swap="outerHTML"
>
<x-heroicon-o-lock-closed class="h-5 w-5" />
<x-heroicon name="o-lock-closed" class="h-5 w-5" />
</x-icon-button>
<x-icon-button
x-on:click="linkAction = '{{ route('servers.databases.users.link', ['server' => $server, 'databaseUser' => $databaseUser]) }}';linkedDatabases = {{ json_encode($databaseUser->databases) }}; $dispatch('open-modal', 'link-database-user');"
>
<x-heroicon-o-link class="h-5 w-5" />
<x-heroicon name="o-link" class="h-5 w-5" />
</x-icon-button>
<x-icon-button
x-on:click="deleteAction = '{{ route('servers.databases.users.destroy', ['server' => $server, 'databaseUser' => $databaseUser]) }}'; $dispatch('open-modal', 'delete-database-user')"
>
<x-heroicon-o-trash class="h-5 w-5" />
<x-heroicon name="o-trash" class="h-5 w-5" />
</x-icon-button>
</x-td>
</tr>