Livewire UI installed

This commit is contained in:
Benjamin Takats
2022-11-30 00:04:07 +01:00
parent 073473a9c8
commit ab19835b3d
516 changed files with 3973 additions and 8 deletions

View File

@@ -0,0 +1,46 @@
<?php
namespace App\Http\Livewire\Tables;
use App\Models\Lecturer;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
use Rappasoft\LaravelLivewireTables\Views\Columns\BooleanColumn;
use Rappasoft\LaravelLivewireTables\Views\Columns\ImageColumn;
class LecturerTable extends DataTableComponent
{
protected $model = Lecturer::class;
public function configure(): void
{
$this->setPrimaryKey('id');
}
public function columns(): array
{
return [
ImageColumn::make('')
->location(
fn($row) => 'https://avatars.dicebear.com/api/male/'.fake()->name().'.svg?background=%23000'
)
->attributes(fn($row) => [
'class' => 'rounded-full h-16 w-16',
'alt' => $row->name.' Avatar',
]),
Column::make("Name", "name")
->sortable(),
BooleanColumn::make("Aktiv", "active")
->sortable(),
Column::make('Kurse')
->label(
fn($row, Column $column) => random_int(0, 100)
),
Column::make('')
->label(
fn($row, Column $column) => view('columns.lectures.action')->withRow($row)
),
];
}
}

View File

@@ -16,7 +16,8 @@
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7",
"livewire/livewire": "^2.5",
"rappasoft/laravel-livewire-tables": "^2.8"
"rappasoft/laravel-livewire-tables": "^2.8",
"wireui/wireui": "^1.17"
},
"require-dev": {
"naoray/blueprint-nova-addon": "dev-master#a7791033d1cb68d4e82631305e26b64e18464494",

76
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "9431bb210b73ea7fa050c97f0d3456c1",
"content-hash": "4daae21e2c3373844f0d47811d6262c9",
"packages": [
{
"name": "bacon/bacon-qr-code",
@@ -7104,6 +7104,80 @@
"source": "https://github.com/webmozarts/assert/tree/1.11.0"
},
"time": "2022-06-03T18:03:27+00:00"
},
{
"name": "wireui/wireui",
"version": "v1.17.7",
"source": {
"type": "git",
"url": "https://github.com/wireui/wireui.git",
"reference": "a103617f9381cac002016be0d88bdac9dc551c7f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/wireui/wireui/zipball/a103617f9381cac002016be0d88bdac9dc551c7f",
"reference": "a103617f9381cac002016be0d88bdac9dc551c7f",
"shasum": ""
},
"require": {
"laravel/framework": "^8.83|^9.16",
"livewire/livewire": "^2.10",
"php": "^8.0|^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.0|^7.6",
"orchestra/testbench-dusk": "^6.0|^7.6",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-mock": "^1.0",
"phpunit/phpunit": "^9.5",
"psy/psysh": "@stable"
},
"type": "library",
"extra": {
"laravel": {
"providers": [
"WireUi\\Providers\\WireUiServiceProvider"
],
"aliases": []
}
},
"autoload": {
"psr-4": {
"WireUi\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Pedro Henrique",
"email": "pedrolivertwd@gmail.com"
}
],
"description": "TallStack components",
"keywords": [
"blade components",
"laravel components",
"livewire components",
"livewire-ui",
"wireui"
],
"support": {
"issues": "https://github.com/wireui/wireui/issues",
"source": "https://github.com/wireui/wireui/tree/v1.17.7"
},
"funding": [
{
"url": "https://github.com/PH7-Jack",
"type": "github"
}
],
"time": "2022-11-28T17:38:50+00:00"
}
],
"packages-dev": [

203
config/wireui.php Normal file
View File

@@ -0,0 +1,203 @@
<?php
use WireUi\View\Components;
return [
/*
|--------------------------------------------------------------------------
| Icons
|--------------------------------------------------------------------------
|
| The icons config will be used in icon component as default
| https://heroicons.com
|
*/
'icons' => [
'style' => env('WIREUI_ICONS_STYLE', 'outline'),
],
/*
|--------------------------------------------------------------------------
| Modal
|--------------------------------------------------------------------------
|
| The default modal preferences
|
*/
'modal' => [
'zIndex' => env('WIREUI_MODAL_Z_INDEX', 'z-50'),
'maxWidth' => env('WIREUI_MODAL_MAX_WIDTH', '2xl'),
'spacing' => env('WIREUI_MODAL_SPACING', 'p-4'),
'align' => env('WIREUI_MODAL_ALIGN', 'start'),
'blur' => env('WIREUI_MODAL_BLUR', false),
],
/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
|
| The default card preferences
|
*/
'card' => [
'padding' => env('WIREUI_CARD_PADDING', 'px-2 py-5 md:px-4'),
'shadow' => env('WIREUI_CARD_SHADOW', 'shadow-md'),
'rounded' => env('WIREUI_CARD_ROUNDED', 'rounded-lg'),
'color' => env('WIREUI_CARD_COLOR', 'bg-white dark:bg-secondary-800'),
],
/*
|--------------------------------------------------------------------------
| Components
|--------------------------------------------------------------------------
|
| List with WireUI components.
| Change the alias to call the component with a different name.
| Extend the component and replace your changes in this file.
| Remove the component from this file if you don't want to use.
|
*/
'components' => [
'avatar' => [
'class' => Components\Avatar::class,
'alias' => 'avatar',
],
'icon' => [
'class' => Components\Icon::class,
'alias' => 'icon',
],
'icon.spinner' => [
'class' => Components\Icons\Spinner::class,
'alias' => 'icon.spinner',
],
'color-picker' => [
'class' => Components\ColorPicker::class,
'alias' => 'color-picker',
],
'input' => [
'class' => Components\Input::class,
'alias' => 'input',
],
'textarea' => [
'class' => Components\Textarea::class,
'alias' => 'textarea',
],
'label' => [
'class' => Components\Label::class,
'alias' => 'label',
],
'error' => [
'class' => Components\Error::class,
'alias' => 'error',
],
'errors' => [
'class' => Components\Errors::class,
'alias' => 'errors',
],
'inputs.maskable' => [
'class' => Components\Inputs\MaskableInput::class,
'alias' => 'inputs.maskable',
],
'inputs.phone' => [
'class' => Components\Inputs\PhoneInput::class,
'alias' => 'inputs.phone',
],
'inputs.currency' => [
'class' => Components\Inputs\CurrencyInput::class,
'alias' => 'inputs.currency',
],
'inputs.number' => [
'class' => Components\Inputs\NumberInput::class,
'alias' => 'inputs.number',
],
'inputs.password' => [
'class' => Components\Inputs\PasswordInput::class,
'alias' => 'inputs.password',
],
'badge' => [
'class' => Components\Badge::class,
'alias' => 'badge',
],
'badge.circle' => [
'class' => Components\CircleBadge::class,
'alias' => 'badge.circle',
],
'button' => [
'class' => Components\Button::class,
'alias' => 'button',
],
'button.circle' => [
'class' => Components\CircleButton::class,
'alias' => 'button.circle',
],
'dropdown' => [
'class' => Components\Dropdown::class,
'alias' => 'dropdown',
],
'dropdown.item' => [
'class' => Components\Dropdown\DropdownItem::class,
'alias' => 'dropdown.item',
],
'dropdown.header' => [
'class' => Components\Dropdown\DropdownHeader::class,
'alias' => 'dropdown.header',
],
'notifications' => [
'class' => Components\Notifications::class,
'alias' => 'notifications',
],
'datetime-picker' => [
'class' => Components\DatetimePicker::class,
'alias' => 'datetime-picker',
],
'time-picker' => [
'class' => Components\TimePicker::class,
'alias' => 'time-picker',
],
'card' => [
'class' => Components\Card::class,
'alias' => 'card',
],
'native-select' => [
'class' => Components\NativeSelect::class,
'alias' => 'native-select',
],
'select' => [
'class' => Components\Select::class,
'alias' => 'select',
],
'select.option' => [
'class' => Components\Select\Option::class,
'alias' => 'select.option',
],
'select.user-option' => [
'class' => Components\Select\UserOption::class,
'alias' => 'select.user-option',
],
'toggle' => [
'class' => Components\Toggle::class,
'alias' => 'toggle',
],
'checkbox' => [
'class' => Components\Checkbox::class,
'alias' => 'checkbox',
],
'radio' => [
'class' => Components\Radio::class,
'alias' => 'radio',
],
'modal' => [
'class' => Components\Modal::class,
'alias' => 'modal',
],
'modal.card' => [
'class' => Components\ModalCard::class,
'alias' => 'modal.card',
],
'dialog' => [
'class' => Components\Dialog::class,
'alias' => 'dialog',
],
],
];

18
lang/vendor/wireui/af/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Kies tyd',
'empty_options' => 'Leë Opsies',
'loading' => 'Laai tans...',
'searchHere' => 'Soek hier',
'datePicker' => [
'months' => "['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember']",
'days' => "['Son', 'Ma', 'Di', 'Wo', 'Do', 'Vry', 'Sat']",
'tomorrow' => 'More',
'today' => 'Vandag',
'yesterday' => 'Gister',
],
'errors' => [
'title' => 'Daar was {errors} foute met jou indiening',
],
];

16
lang/vendor/wireui/ar/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'لا توجد خيارات',
'searchHere' => 'ابحث هنا',
'datePicker' => [
'months' => "['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر']",
'days' => "['أحد', 'أثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت']",
'tomorrow' => 'غداً',
'today' => 'اليوم',
'yesterday' => 'أمس',
],
'errors' => [
'title' => 'يوجد {errors} أخطاء في مدخلاتك',
],
];

16
lang/vendor/wireui/bg/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'Опциите са празни',
'searchHere' => 'Търсене тук',
'datePicker' => [
'months' => "['Януари', 'Февруари', 'Март', 'Април', 'Май', 'Юни', 'Юли', 'Август', 'Септември', 'Октомври', 'Ноември', 'Декември']",
'days' => "['Нд', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб']",
'tomorrow' => 'Утре',
'today' => 'Днес',
'yesterday' => 'Вчера',
],
'errors' => [
'title' => 'Бяха открити {errors} грешки',
],
];

18
lang/vendor/wireui/bn/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'সময় নির্বাচন করুন',
'empty_options' => 'কোন ফলাফল নেই',
'loading' => 'লোড হচ্ছে...',
'searchHere' => 'এখানে অনুসন্ধান করুন',
'datePicker' => [
'months' => "['জানুয়ারি', 'ফেব্রুয়ারি', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর']",
'days' => "['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি']",
'tomorrow' => 'আগামীকাল',
'today' => 'আজ',
'yesterday' => 'গতকাল',
],
'errors' => [
'title' => 'আপনার জমা দেওয়ার ক্ষেত্রে {errors} ত্রুটি ছিল',
],
];

16
lang/vendor/wireui/ca/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'Opcions buides',
'searchHere' => 'Cerca aquí',
'datePicker' => [
'months' => "['gener', 'febrer', 'març', 'abril', 'maig', 'juny', 'juliol', 'agost', 'setembre', 'octubre', 'novembre', 'desembre']",
'days' => "['dg', 'dl', 'dt', 'dc', 'dj', 'dv', 'ds']",
'tomorrow' => 'Demà',
'today' => 'Avui',
'yesterday' => 'Ahir',
],
'errors' => [
'title' => "S'han trobat {errors} errors de validació",
],
];

17
lang/vendor/wireui/ckb/messages.php vendored Normal file
View File

@@ -0,0 +1,17 @@
<?php
return [
'empty_options' => 'هەڵبژاردنەکان بەتاڵە',
'datePicker' => [
'months' => "['ڕێبەندان', 'ڕەشەمە', 'نەورۆز', ' گوڵاننەورۆز', 'جۆزەردان', 'پووشپەڕ', 'گەلاوێژ', 'خەرمانان', 'ڕەزبەر', 'گەڵاڕێزان', 'سەرماوەز', 'بەفرانبار']",
'days' => "['یەکشەممە', 'دووشەممە', 'سێشەممە', 'چوارشەممە', 'پێنجشەممە', 'هەینی', 'شەممە']",
'tomorrow' => 'بەیانی',
'today' => 'ئەمڕۆ',
'yesterday' => 'دوێنێ',
],
'errors' => [
'title' => '{errors} هەڵە هەیە لەناردنی فۆرمەکەدا',
],
];

17
lang/vendor/wireui/de/messages.php vendored Normal file
View File

@@ -0,0 +1,17 @@
<?php
return [
'selectTime' => 'Zeit auswählen',
'empty_options' => 'Keine Ergebnisse',
'searchHere' => 'Suche',
'datePicker' => [
'months' => "['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember']",
'days' => "['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa']",
'tomorrow' => 'Morgen',
'today' => 'Heute',
'yesterday' => 'Gestern',
],
'errors' => [
'title' => 'Es sind {errors} Fehler aufgetreten',
],
];

18
lang/vendor/wireui/en/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Select time',
'empty_options' => 'Empty Options',
'loading' => 'Loading...',
'searchHere' => 'Search here',
'datePicker' => [
'months' => "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']",
'days' => "['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']",
'tomorrow' => 'Tomorrow',
'today' => 'Today',
'yesterday' => 'Yesterday',
],
'errors' => [
'title' => 'There were {errors} errors with your submission',
],
];

17
lang/vendor/wireui/es/messages.php vendored Normal file
View File

@@ -0,0 +1,17 @@
<?php
return [
'selectTime' => 'Seleccionar hora',
'empty_options' => 'Opciones vacías',
'searchHere' => 'Buscar aquí',
'datePicker' => [
'months' => "['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre']",
'days' => "['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab']",
'tomorrow' => 'Mañana',
'today' => 'Hoy',
'yesterday' => 'Ayer',
],
'errors' => [
'title' => 'Se encontraron {errors} errores de validación',
],
];

16
lang/vendor/wireui/fa/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'بدون گزینه',
'searchHere' => 'اینجا جستجو کنید',
'datePicker' => [
'months' => "['ژانویه', 'فوریه', 'مارس', 'آوریل', 'ماه مه', 'ژوئن', 'جولای', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر']",
'days' => "['یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنج شنبه', 'جمعه', 'شنبه']",
'tomorrow' => 'فردا',
'today' => 'امروز',
'yesterday' => 'دیروز',
],
'errors' => [
'title' => 'ارسال شما {errors} خطا داشت',
],
];

18
lang/vendor/wireui/fr/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Sélectionner l\'heure',
'empty_options' => 'Aucune Option',
'loading' => 'Chargement...',
'searchHere' => 'Cherchez ici',
'datePicker' => [
'months' => "['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre']",
'days' => "['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam']",
'tomorrow' => 'Demain',
'today' => 'Aujourd\'hui',
'yesterday' => 'Hier',
],
'errors' => [
'title' => 'Il y a eu {errors} erreurs durant votre soumission',
],
];

18
lang/vendor/wireui/id/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Pilih Waktu',
'empty_options' => 'Pilihan kosong',
'loading' => 'Sedang Memuat...',
'searchHere' => 'Cari disini',
'datePicker' => [
'months' => "['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember']",
'days' => "['Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab']",
'tomorrow' => 'Besok',
'today' => 'Hari Ini',
'yesterday' => 'Kemarin',
],
'errors' => [
'title' => 'Ada kesalahan {errors} dengan kiriman Anda',
],
];

16
lang/vendor/wireui/it/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'Nessuna Opzione',
'searchHere' => 'Cerca qui',
'datePicker' => [
'months' => "['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre']",
'days' => "['Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab']",
'tomorrow' => 'Domani',
'today' => 'Oggi',
'yesterday' => 'Ieri',
],
'errors' => [
'title' => 'Si sono verificati {errors} errori di validazione della form',
],
];

15
lang/vendor/wireui/ja/messages.php vendored Normal file
View File

@@ -0,0 +1,15 @@
<?php
return [
'empty_options' => '選択肢が登録されていません',
'datePicker' => [
'months' => "['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']",
'days' => "['日', '月', '火', '水', '木', '金', '土']",
'tomorrow' => '翌日',
'today' => '今日',
'yesterday' => '前日',
],
'errors' => [
'title' => 'エラーが{errors}件見つかりました',
],
];

18
lang/vendor/wireui/ms/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Pilih masa',
'empty_options' => 'Tiada rekod dijumpai.',
'loading' => 'Loading...',
'searchHere' => 'Cari',
'datePicker' => [
'months' => "['Januari', 'Februari', 'Mar', 'April', 'Mei', 'Jun', 'Julai', 'Ogos', 'September', 'Oktober', 'November', 'Disember']",
'days' => "['Ahd', 'Isn', 'Sel', 'Rab', 'Kha', 'Jum', 'Sab']",
'tomorrow' => 'Esok',
'today' => 'Hari Ini',
'yesterday' => 'Semalam',
],
'errors' => [
'title' => 'Terdapat ralat {errors} berlaku',
],
];

16
lang/vendor/wireui/nl_NL/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'Lege Opties',
'searchHere' => 'Zoek hier',
'datePicker' => [
'months' => "['Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December']",
'days' => "['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za']",
'tomorrow' => 'Morgen',
'today' => 'Vandaag',
'yesterday' => 'Gisteren',
],
'errors' => [
'title' => 'Er zaten {errors} fouten in uw inzending',
],
];

18
lang/vendor/wireui/pt_BR/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Selecione a hora',
'empty_options' => 'Opções vazias',
'searchHere' => 'Busca aqui',
'datePicker' => [
'months' => "['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro']",
'days' => "['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab']",
'tomorrow' => 'Amanhã',
'today' => 'Hoje',
'yesterday' => 'Ontem',
],
'errors' => [
'title' => 'Foram encontrados {errors} erros de validação',
],
];

16
lang/vendor/wireui/ru/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'Опции не указанны',
'searchHere' => 'Искать здесь',
'datePicker' => [
'months' => "['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь']",
'days' => "['ВС', 'ПН', 'ВТ', 'СР', 'ЧТ', 'ПТ', 'СБ']",
'tomorrow' => 'Завтра',
'today' => 'Сегодня',
'yesterday' => 'Вчера',
],
'errors' => [
'title' => 'В ваших данных {errors} ошибок',
],
];

16
lang/vendor/wireui/sk/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => 'Prázdne možnosti',
'searchHere' => 'Hľadajte tu',
'datePicker' => [
'months' => "['Január', 'Február', 'Marec', 'Apríl', 'Máj', 'Jún', 'Júl', 'August', 'September', 'Október', 'November', 'December']",
'days' => "['Ne', 'Po', 'Ut', 'St', 'Št', 'Pi', 'So']",
'tomorrow' => 'Zajtra',
'today' => 'Dnes',
'yesterday' => 'Včera',
],
'errors' => [
'title' => 'Vo vašom podaní sa vyskytlo {errors} chýb',
],
];

18
lang/vendor/wireui/vi/messages.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'selectTime' => 'Chọn giờ',
'empty_options' => 'Trống',
'loading' => 'Đang tải...',
'searchHere' => 'Tìm kiếm...',
'datePicker' => [
'months' => "['Tháng 1', 'Tháng 2', 'Tháng 3', 'Tháng 4', 'Tháng 5', 'Tháng 6', 'Tháng 7', 'Tháng 8', 'Tháng 9', 'Tháng 10', 'Tháng 11', 'Tháng 12']",
'days' => "['Chủ nhật', 'Thứ hai', 'Thứ ba', 'Thứ tư', 'Thứ năm', 'Thứ sáu', 'Thứ bảy']",
'tomorrow' => 'Ngày mai',
'today' => 'Hôm nay',
'yesterday' => 'Hôm qua',
],
'errors' => [
'title' => 'Có {errors} lỗi khi gửi',
],
];

16
lang/vendor/wireui/zh_CN/messages.php vendored Normal file
View File

@@ -0,0 +1,16 @@
<?php
return [
'empty_options' => '空白选项',
'searchHere' => '在这里搜索',
'datePicker' => [
'months' => "['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月']",
'days' => "['日', '一', '二', '三', '四', '五', '六']",
'tomorrow' => '明天',
'today' => '今天',
'yesterday' => '昨天',
],
'errors' => [
'title' => '您提交的信息包含 {errors} 处错误',
],
];

View File

@@ -0,0 +1 @@
<x-button amber>Termine ansehen</x-button>

View File

@@ -8,6 +8,7 @@
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.bunny.net/css2?family=Nunito:wght@400;600;700&display=swap">
<!-- Scripts -->
<wireui:scripts />
@vite(['resources/css/app.css', 'resources/js/app.js'])
<!-- Styles -->
@livewireStyles

View File

@@ -16,15 +16,17 @@
</nav>
</div>
<div class="inline-flex items-center ml-5 text-lg space-x-6 lg:justify-end">
<a href="#"
<a href="{{ route('nova.login') }}"
class="text-base font-medium leading-6 text-gray-400 hover:text-gray-300 whitespace-no-wrap transition duration-150 ease-in-out">
Login </a>
Login
</a>
<a href="#"
class="inline-flex items-center justify-center px-4 py-2 font-medium leading-6 text-gray-200 hover:text-white whitespace-no-wrap bg-gray-800 border border-transparent rounded shadow-sm hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-800">
Registrieren </a>
Registrieren
</a>
</div>
</div>
<div class="flex lg:flex-row flex-col pt-4 md:pt-40 lg:pt-4">
<div class="flex lg:flex-row flex-col pt-4 md:pt-4 lg:pt-4">
<div
class="w-full lg:w-1/2 flex lg:px-0 px-5 flex-col md:items-center lg:items-start justify-center -mt-12">
<h1 class="text-white text-3xl sm:text-5xl lg:max-w-none max-w-4xl lg:text-left text-left md:text-center xl:text-7xl font-black">
@@ -73,7 +75,7 @@
class="border-transparent text-gray-200 hover:text-gray-400 hover:border-gray-300 whitespace-nowrap pb-4 px-1 border-b-2 font-medium text-sm">Städte</a>
<a href="#"
class="border-transparent text-gray-200 hover:text-gray-400 hover:border-gray-300 whitespace-nowrap pb-4 px-1 border-b-2 font-medium text-sm">Dozenten</a>
class="border-amber-500 text-amber-500 hover:border-gray-300 whitespace-nowrap pb-4 px-1 border-b-2 font-medium text-sm">Dozenten</a>
<a href="#"
class="border-transparent text-gray-200 hover:text-gray-400 hover:border-gray-300 whitespace-nowrap pb-4 px-1 border-b-2 font-medium text-sm">Kurse</a>
@@ -84,7 +86,7 @@
</div>
</div>
</div>
<livewire:tables.city-table/>
<livewire:tables.lecturer-table/>
</div>
</section>

View File

@@ -0,0 +1,27 @@
<div {{ $attributes->class($avatarClasses) }}>
@if ($label)
<span class="font-medium text-white dark:text-gray-200">
{{ $label }}
</span>
@endif
@if ($src)
<img @class([
'shrink-0 object-cover object-center',
'rounded-sm' => $squared,
'rounded-full' => !$squared,
$size,
])
src="{{ $src }}"
/>
@endif
@if (!$src && !$label)
<svg
class="shrink-0 text-gray-300 bg-gray-100 dark:bg-gray-600"
fill="currentColor"
viewBox="0 0 24 24">
<path d="M24 20.993V24H0v-2.996A14.977 14.977 0 0112.004 15c4.904 0 9.26 2.354 11.996 5.993zM16.002 8.999a4 4 0 11-8 0 4 4 0 018 0z" />
</svg>
@endif
</div>

View File

@@ -0,0 +1,23 @@
<span {{ $attributes }}>
@if ($icon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$icon"
class="{{ $iconSize }} shrink-0"
/>
@elseif (isset($prepend))
<div {{ $prepend->attributes }}>{{ $prepend }}</div>
@endif
{{ $label ?? $slot }}
@if ($rightIcon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$rightIcon"
class="{{ $iconSize }} shrink-0"
/>
@elseif (isset($append))
<div {{ $append->attributes }}>{{ $append }}</div>
@endif
</span>

View File

@@ -0,0 +1,48 @@
@php
$tag = $href ? 'a' : 'button';
$defaultAttributes = [
'wire:loading.attr' => 'disabled',
'wire:loading.class' => '!cursor-wait',
'wire:target' => ($spinner && strlen($spinner) > 1) ? $spinner : null,
];
$href === null
? $defaultAttributes['type'] = 'button'
: $defaultAttributes['href'] = $href;
@endphp
<{{ $tag }} {{ $attributes->merge($defaultAttributes) }}>
@if ($icon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$icon"
class="{{ $iconSize }} shrink-0"
/>
@endif
{{ $label ?? $slot }}
@if ($rightIcon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$rightIcon"
class="{{ $iconSize }} shrink-0"
:wire:loading.remove="(bool) $spinner"
/>
@endif
@if ($spinner)
<svg class="animate-spin {{ $iconSize }} shrink-0"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
@if (preg_replace('/[^a-zA-Z]+/', '', $spinner))
wire:target="{{ $spinner }}"
@endif
wire:loading.delay{{ $loadingDelay ? ".{$loadingDelay}":'' }}>
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
@endif
</{{ $tag }}>

View File

@@ -0,0 +1,23 @@
<div class="{{ $cardClasses }}">
@if ($header)
{{ $header }}
@elseif ($title || $action)
<div class="{{ $headerClasses }}">
<h3 class="font-medium whitespace-normal text-md text-secondary-700 dark:text-secondary-400">{{ $title }}</h3>
@if ($action)
{{ $action }}
@endif
</div>
@endif
<div {{ $attributes->merge(['class' => "{$padding} text-secondary-700 rounded-b-xl grow dark:text-secondary-400"]) }}>
{{ $slot }}
</div>
@if ($footer)
<div class="{{ $footerClasses }}">
{{ $footer }}
</div>
@endif
</div>

View File

@@ -0,0 +1,50 @@
<div>
<label for="{{ $id }}" class="flex items-center {{ $errors->has($name) ? 'text-negative-600':'' }}">
<div class="relative flex items-start">
@if ($leftLabel)
<div class="mr-2 text-sm text-right">
<x-dynamic-component
:component="WireUi::component('label')"
class=""
:for="$id"
:label="$leftLabel"
:has-error="$errors->has($name)"
/>
@if($description)
<div class="text-gray-500">{{ $description }}</div>
@endif
</div>
@endif
<div class="flex items-center h-5">
<input {{ $attributes->class([
$getClasses($errors->has($name)),
])->merge([
'type' => 'checkbox',
]) }} />
</div>
@if ($label)
<div class="ml-2 text-sm">
<x-dynamic-component
:component="WireUi::component('label')"
class=""
:for="$id"
:label="$label"
:has-error="$errors->has($name)"
/>
@if($description)
<div id="{{ $id }} . comments-description" class="text-gray-500">{{ $description }}</div>
@endif
</div>
@endif
</div>
</label>
@if ($name)
<x-dynamic-component
:component="WireUi::component('error')"
:name="$name"
/>
@endif
</div>

View File

@@ -0,0 +1,11 @@
<span {{ $attributes->merge() }}>
@if ($icon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$icon"
class="{{ $iconSize }} shrink-0"
/>
@else
{{ $label ?? $slot }}
@endif
</span>

View File

@@ -0,0 +1,45 @@
@php
$tag = $href ? 'a' : 'button';
$defaultAttributes = [
'wire:loading.attr' => 'disabled',
'wire:loading.class' => '!cursor-wait',
];
$href === null
? $defaultAttributes['type'] = 'button'
: $defaultAttributes['href'] = $href;
@endphp
<{{ $tag }} {{ $attributes->merge($defaultAttributes) }}>
<div @if($spinner)
@if (preg_replace('/[^a-zA-Z]+/', '', $spinner))
wire:target="{{ $spinner }}"
@endif
wire:loading.remove
@endif>
@if ($icon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$icon"
class="{{ $iconSize }} shrink-0"
/>
@else
{{ $label ?? $slot }}
@endif
</div>
@if ($spinner)
<svg class="animate-spin {{ $iconSize }} shrink-0"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
@if (preg_replace('/[^a-zA-Z]+/', '', $spinner))
wire:target="{{ $spinner }}"
@endif
wire:loading.delay{{ $loadingDelay ? ".{$loadingDelay}":'' }}>
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
@endif
</{{ $tag }}>

View File

@@ -0,0 +1,79 @@
<div x-data="wireui_color_picker({
colorNameAsValue: @boolean($colorNameAsValue),
@if ($attributes->wire('model')->value())
wireModifiers: @toJs($attributes->wireModifiers()),
wireModel: @entangle($attributes->wire('model')),
@endif
@if ($colors)
colors: @toJs($getColors())
@endif
})" {{ $attributes->only(['class', 'wire:key'])->class('relative') }}>
<x-dynamic-component
{{ $attributes->except(['class', 'wire:key'])->whereDoesntStartWith('wire:model') }}
:component="WireUi::component('input')"
x-model="{{ $colorNameAsValue ? 'selected.name' : 'selected.value' }}"
x-bind:class="{ 'pl-8': selected.value }"
x-on:input="setColor($event.target.value)"
x-ref="input"
:label="$label"
:prefix="null"
:icon="null">
<x-slot name="prefix">
<template x-if="selected.value">
<div
class="w-4 h-4 rounded shadow border"
:style="{ 'background-color': selected.value }"
></div>
</template>
</x-slot>
<x-slot name="append">
<div class="absolute inset-y-0 right-0 flex items-center p-0.5">
<x-dynamic-component
:component="WireUi::component('button')"
class="h-full rounded-r-md"
primary
flat
squared
x-on:click="toggle"
trigger
:disabled="$disabled">
<x-dynamic-component
:component="WireUi::component('icon')"
class="
w-4 h-4 group-focus:text-primary-700 text-gray-400 dark:text-gray-600
dark:group-hover:text-gray-500 dark:group-focus:text-primary-500
"
:name="$rightIcon"
/>
</x-dynamic-component>
</div>
</x-slot>
</x-dynamic-component>
<x-wireui::parts.popover
:margin="(bool) $label"
class="
max-h-56 py-3 px-2 sm:py-2 sm:px-1 sm:w-72 sm:rounded-xl
overflow-y-auto soft-scrollbar border border-secondary-200
">
<div class="flex flex-wrap items-center justify-center gap-1 sm:gap-0.5 max-w-[18rem] mx-auto">
<span class="sr-only">dropdown-open</span>
<template x-for="(color, index) in colors" :key="index">
<button class="
w-6 h-6 rounded shadow-lg border hover:scale-125 transition-all ease-in-out duration-100 cursor-pointer
hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-primary-600 sdark:focus:ring-gray-400
dark:border-0 dark:hover:ring-2 dark:hover:ring-gray-400
"
:style="{ 'background-color': color.value }"
x-on:click="select(color)"
:title="color.name"
type="button">
</button>
</template>
</div>
</x-wireui::parts.popover>
</div>

View File

@@ -0,0 +1,222 @@
<div
x-data="wireui_datetime_picker({
model: @entangleable($attributes->wire('model')),
})"
x-props="{
config: {
interval: @toJs($interval),
is12H: @boolean($timeFormat == '12'),
readonly: @boolean($readonly),
disabled: @boolean($disabled),
min: @toJs($min ? $min->format('Y-m-d\TH:i') : null),
max: @toJs($max ? $max->format('Y-m-d\TH:i') : null),
minTime: @toJs($minTime),
maxTime: @toJs($maxTime),
},
withoutTimezone: @boolean($withoutTimezone),
timezone: @toJs($timezone),
userTimezone: @toJs($userTimezone ?? ''),
parseFormat: @toJs($parseFormat ?? ''),
displayFormat: @toJs($displayFormat ?? ''),
weekDays: @lang('wireui::messages.datePicker.days'),
monthNames: @lang('wireui::messages.datePicker.months'),
withoutTime: @boolean($withoutTime),
}"
{{ $attributes
->only('wire:key')
->class('relative')
->merge(['wire:key' => "datepicker::{$name}"]) }}
>
<x-dynamic-component
:component="WireUi::component('input')"
{{ $attributes->whereDoesntStartWith(['wire:model', 'x-model', 'wire:key', 'readonly']) }}
:borderless="$borderless"
:shadowless="$shadowless"
:label="$label"
:hint="$hint"
:corner-hint="$cornerHint"
:icon="$icon"
:prefix="$prefix"
:prepend="$prepend"
readonly
x-on:click="toggle"
x-bind:value="model ? getDisplayValue() : null">
@if (!$readonly && !$disabled)
<x-slot name="append">
<div class="absolute inset-y-0 right-3 z-5 flex items-center justify-center">
<div class="flex items-center gap-x-2 my-auto
{{ $errors->has($name) ? 'text-negative-400 dark:text-negative-600' : 'text-secondary-400' }}">
@if ($clearable)
<x-dynamic-component
:component="WireUi::component('icon')"
class="cursor-pointer w-4 h-4 hover:text-negative-500 transition-colors ease-in-out duration-150"
x-cloak
name="x"
x-show="model"
x-on:click="clearDate()"
/>
@endif
<x-dynamic-component
:component="WireUi::component('icon')"
class="cursor-pointer w-5 h-5"
:name="$rightIcon"
x-on:click="toggle"
/>
</div>
</div>
</x-slot>
@endif
</x-dynamic-component>
<x-wireui::parts.popover :margin="(bool) $label" class="max-h-96 overflow-y-auto p-3 sm:w-72">
<div x-show="tab === 'date'" class="space-y-5">
@unless ($withoutTips)
<div class="grid grid-cols-3 gap-x-2 text-center text-secondary-600">
<x-dynamic-component
:component="WireUi::component('button')"
class="bg-secondary-100 border-none dark:bg-secondary-800"
x-on:click="selectYesterday"
:label="__('wireui::messages.datePicker.yesterday')"
/>
<x-dynamic-component
:component="WireUi::component('button')"
class="bg-secondary-100 border-none dark:bg-secondary-800"
x-on:click="selectToday"
:label="__('wireui::messages.datePicker.today')"
/>
<x-dynamic-component
:component="WireUi::component('button')"
class="bg-secondary-100 border-none dark:bg-secondary-800"
x-on:click="selectTomorrow"
:label="__('wireui::messages.datePicker.tomorrow')"
/>
</div>
@endunless
<div class="flex items-center justify-between">
<x-dynamic-component
:component="WireUi::component('button')"
class="rounded-lg shrink-0"
x-show="!monthsPicker"
x-on:click="previousMonth"
icon="chevron-left"
flat
/>
<div class="w-full flex items-center justify-center gap-x-2 text-secondary-600 dark:text-secondary-500">
<button class="focus:outline-none focus:underline"
x-text="monthNames[month]"
x-on:click="monthsPicker = !monthsPicker"
type="button">
</button>
<input class="w-14 appearance-none p-0 ring-0 border-none focus:ring-0 focus:outline-none dark:bg-secondary-800"
x-model="year"
x-on:input.debounce.500ms="fillPickerDates"
type="number"
/>
</div>
<x-dynamic-component
:component="WireUi::component('button')"
class="rounded-lg shrink-0"
x-show="!monthsPicker"
x-on:click="nextMonth"
icon="chevron-right"
flat
/>
</div>
<div class="relative">
<div class="absolute inset-0 bg-white dark:bg-secondary-800 grid grid-cols-3 gap-3"
x-show="monthsPicker"
x-transition>
<template x-for="(monthName, index) in monthNames" :key="`month.${monthName}`">
<x-dynamic-component
:component="WireUi::component('button')"
class="text-secondary-400 dark:border-0 dark:hover:bg-secondary-700 uppercase"
x-on:click="selectMonth(index)"
x-text="monthName"
xs
/>
</template>
</div>
<div class="grid grid-cols-7 gap-2">
<template x-for="day in weekDays" :key="`week-day.${day}`">
<span class="text-secondary-400 text-3xs text-center uppercase pointer-events-none"
x-text="day">
</span>
</template>
<template
x-for="date in dates"
:key="`date.${date.day}.${date.month}`"
>
<div class="flex justify-center picker-days">
<button class="text-sm w-7 h-6 focus:outline-none rounded-md focus:ring-2 focus:ring-ofsset-2 focus:ring-primary-600
hover:bg-primary-100 dark:hover:bg-secondary-700 dark:focus:ring-secondary-400
disabled:cursor-not-allowed"
:class="{
'text-secondary-600 dark:text-secondary-400': !date.isDisabled && !date.isSelected && date.month === month,
'text-secondary-400 dark:text-secondary-600': date.isDisabled || date.month !== month,
'text-primary-600 border border-primary-600 dark:border-gray-400': date.isToday && !date.isSelected,
'disabled:text-primary-400 disabled:border-primary-400': date.isToday && !date.isSelected,
'!text-white bg-primary-600 font-semibold border border-primary-600': date.isSelected,
'disabled:bg-primary-400 disabled:border-primary-400': date.isSelected,
'hover:bg-primary-600 dark:bg-secondary-700 dark:border-secondary-400': date.isSelected,
}"
:disabled="date.isDisabled"
x-on:click="selectDate(date)"
x-text="date.day"
type="button">
</button>
</div>
</template>
</div>
</div>
</div>
<div x-show="tab === 'time'" x-transition>
<x-dynamic-component
:component="WireUi::component('input')"
id="search.{{ $attributes->wire('model')->value() }}"
:label="__('wireui::messages.selectTime')"
x-model="searchTime"
x-bind:placeholder="getSearchPlaceholder"
x-ref="searchTime"
x-on:input.debounce.150ms="onSearchTime($event.target.value)"
/>
<div x-ref="timesContainer"
class="mt-1 w-full max-h-52 pb-1 pt-2 overflow-y-auto flex flex-col picker-times">
<template x-for="time in filteredTimes" :key="time.value">
<button class="group rounded-md focus:outline-none focus:bg-primary-100 dark:focus:bg-secondary-700
relative py-2 pl-2 pr-9 text-left transition-colors ease-in-out duration-100 cursor-pointer select-none
hover:text-white hover:bg-primary-600 dark:hover:bg-secondary-700 dark:text-secondary-400"
:class="{
'text-primary-600': modelTime === time.value,
'text-secondary-700': modelTime !== time.value,
}"
:name="`times.${time.value}`"
type="button"
x-on:click="selectTime(time)">
<span x-text="time.label"></span>
<span class="text-primary-600 dark:text-secondary-400 group-hover:text-white
absolute inset-y-0 right-0 flex items-center pr-4"
x-show="modelTime === time.value">
<x-dynamic-component
:component="WireUi::component('icon')"
name="check"
class="h-5 w-5"
/>
</span>
</button>
</template>
</div>
</div>
</x-wireui::parts.popover>
</div>

View File

@@ -0,0 +1,95 @@
<div class="fixed inset-0 flex items-end overflow-y-auto sm:pt-16 justify-center {{ $align }} {{ $zIndex }}"
x-data="wireui_dialog({ id: '{{ $dialog }}' })"
x-show="show"
x-on:wireui:{{ $dialog }}.window="showDialog($event.detail)"
x-on:wireui:confirm-{{ $dialog }}.window="confirmDialog($event.detail)"
x-on:keydown.escape.window="handleEscape"
style="display: none"
x-cloak>
<div class="fixed inset-0 bg-secondary-400 bg-opacity-60 transform transition-opacity
{{ $dialog }}-backdrop @if ($blur) {{ $blur }} @endif dark:bg-secondary-700 dark:bg-opacity-60"
x-show="show"
x-on:click="dismiss"
x-transition:enter="ease-out duration-300"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="ease-in duration-200"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0">
</div>
<div class="w-full transition-all p-4 sm:max-w-lg"
x-show="show"
x-transition:enter="ease-out duration-300"
x-transition:enter-start="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100"
x-transition:leave="ease-in duration-200"
x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100"
x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
x-on:mouseenter="pauseTimeout"
x-on:mouseleave="resumeTimeout">
<div class="relative shadow-md bg-white dark:bg-secondary-800 rounded-xl space-y-4 p-4"
:class="{
'sm:p-5 sm:pt-7': style === 'center',
'sm:p-0 sm:pt-1': style === 'inline',
}">
<div class="bg-secondary-300 dark:bg-secondary-600 rounded-full transition-all duration-150 ease-linear absolute top-0 left-0"
style="height: 2px; width: 100%;"
x-ref="progressbar"
x-show="dialog && dialog.progressbar && dialog.timeout">
</div>
<div x-show="dialog && dialog.closeButton" class="absolute right-2 -top-2">
<button class="{{ $dialog }}-button-close focus:outline-none p-1 focus:ring-2 focus:ring-secondary-200 rounded-full text-secondary-300"
x-on:click="close"
type="button">
<span class="sr-only">close</span>
<x-dynamic-component
:component="WireUi::component('icon')"
class="w-5 h-5"
name="x"
/>
</button>
</div>
<div class="space-y-4" :class="{ 'sm:space-x-4 sm:flex sm:items-center sm:space-y-0 sm:px-5 sm:py-2': style === 'inline' }">
<div class="mx-auto flex items-center self-start justify-center shrink-0"
:class="{ 'sm:items-start sm:mx-0': style === 'inline' }"
x-show="dialog && dialog.icon">
<div x-ref="iconContainer"></div>
</div>
<div class="mt-4 w-full" :class="{ 'sm:mt-5': style === 'center' }">
<h3 class="text-lg leading-6 font-medium text-secondary-900 dark:text-secondary-400 text-center"
:class="{ 'sm:text-left': style === 'inline' }"
@unless($title) x-ref="title" @endunless>
{{ $title }}
</h3>
<p class="mt-2 text-sm text-secondary-500 text-center"
:class="{ 'sm:text-left': style === 'inline' }"
@unless($description) x-ref="description" @endunless>
{{ $description }}
</p>
{{ $slot }}
</div>
</div>
<div class="grid grid-cols-1 gap-y-2 sm:gap-x-3 rounded-b-xl"
:class="{
'sm:grid-cols-2 sm:gap-y-0': style === 'center',
'sm:p-4 sm:bg-secondary-100 sm:dark:bg-secondary-800 sm:grid-cols-none sm:flex sm:justify-end': style === 'inline',
}"
x-show="dialog && (dialog.accept || dialog.reject)">
<div x-show="dialog && dialog.accept" class="sm:order-last" x-ref="accept"></div>
<div x-show="dialog && dialog.reject" x-ref="reject"></div>
</div>
<div class="flex justify-center"
x-show="dialog && dialog.close && !dialog.accept && !dialog.accept"
x-ref="close">
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,38 @@
<div class="relative inline-block text-left"
x-data="wireui_dropdown"
x-on:click.outside="close"
x-on:keydown.escape.window="close"
{{ $attributes->only('wire:key') }}>
<div class="cursor-pointer focus:outline-none" x-on:click="toggle">
@if (isset($trigger))
{{ $trigger }}
@else
<x-dynamic-component
:component="WireUi::component('icon')"
class="w-4 h-4 text-secondary-500 hover:text-secondary-700
dark:hover:text-secondary-600 transition duration-150 ease-in-out"
name="dots-vertical"
/>
@endif
</div>
<div x-show="status"
x-transition:enter="transition ease-out duration-200"
x-transition:enter-start="opacity-0 scale-95"
x-transition:enter-end="opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-95"
{{ $attributes->except('wire:key')->class([
$getAlign(),
$width,
'z-30 absolute mt-2 whitespace-nowrap'
]) }}
style="display: none;"
@unless($persistent) x-on:click="close" @endunless>
<div class="relative {{ $height }} soft-scrollbar overflow-auto border border-secondary-200
rounded-lg shadow-lg p-1 bg-white dark:bg-secondary-800 dark:border-secondary-600">
{{ $slot }}
</div>
</div>
</div>

View File

@@ -0,0 +1,7 @@
<div class="@if($separator) border-t border-secondary-200 dark:border-secondary-600 @endif">
<h6 {{ $attributes->merge(['class' => $classes]) }}>
{{ $label }}
</h6>
{{ $slot }}
</div>

View File

@@ -0,0 +1,15 @@
@if ($separator)
<div class="w-full my-1 border-t border-secondary-200 dark:border-secondary-600"></div>
@endif
<a {{ $attributes->merge(['class' => $getClasses()]) }}>
@if ($icon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$icon"
class="w-5 h-5 mr-2"
/>
@endif
{{ $label ?? $slot }}
</a>

View File

@@ -0,0 +1,5 @@
@error($name)
<p {{ $attributes->merge(['class' => 'mt-2 text-sm text-negative-600']) }}>
{{ $message }}
</p>
@enderror

View File

@@ -0,0 +1,26 @@
@if ($hasErrors($errors))
<div {{ $attributes->merge(['class' => 'rounded-lg bg-negative-50 dark:bg-secondary-800 dark:border dark:border-negative-600 p-4']) }}>
<div class="flex items-center pb-3 border-b-2 border-negative-200 dark:border-negative-700">
<x-dynamic-component
:component="WireUi::component('icon')"
class="w-5 h-5 text-negative-400 dark:text-negative-600 shrink-0 mr-3"
name="exclamation-circle"
/>
<span class="text-sm font-semibold text-negative-800 dark:text-negative-600">
{{ str_replace('{errors}', $count($errors), $title) }}
</span>
</div>
<div class="ml-5 pl-1 mt-2">
<ul class="list-disc space-y-1 text-sm text-negative-700 dark:text-negative-600">
@foreach ($getErrorMessages($errors) as $message)
<li>{{ head($message) }}</li>
@endforeach
</ul>
</div>
</div>
@else
<div class="hidden"></div>
@endif

View File

@@ -0,0 +1 @@
<x-dynamic-component component="wireui::icons.{{ $style }}.{{ $name }}" {{ $attributes }} />

View File

@@ -0,0 +1,5 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path fill="#fff" d="M12 14l9-5-9-5-9 5 9 5z" />
<path fill="#fff" d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 14l9-5-9-5-9 5 9 5zm0 0l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14zm-4 6v-7.5l4-2.222" />
</svg>

After

Width:  |  Height:  |  Size: 606 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4" />
</svg>

After

Width:  |  Height:  |  Size: 337 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z" />
</svg>

After

Width:  |  Height:  |  Size: 293 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 8h14M5 8a2 2 0 110-4h14a2 2 0 110 4M5 8v10a2 2 0 002 2h10a2 2 0 002-2V8m-9 4h4" />
</svg>

After

Width:  |  Height:  |  Size: 283 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 13l-3 3m0 0l-3-3m3 3V8m0 13a9 9 0 110-18 9 9 0 010 18z" />
</svg>

After

Width:  |  Height:  |  Size: 260 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 15l-3-3m0 0l3-3m-3 3h8M3 12a9 9 0 1118 0 9 9 0 01-18 0z" />
</svg>

After

Width:  |  Height:  |  Size: 261 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>

After

Width:  |  Height:  |  Size: 259 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 11l3-3m0 0l3 3m-3-3v8m0-13a9 9 0 110 18 9 9 0 010-18z" />
</svg>

After

Width:  |  Height:  |  Size: 258 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
</svg>

After

Width:  |  Height:  |  Size: 228 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" />
</svg>

After

Width:  |  Height:  |  Size: 229 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 17l-4 4m0 0l-4-4m4 4V3" />
</svg>

After

Width:  |  Height:  |  Size: 228 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18" />
</svg>

After

Width:  |  Height:  |  Size: 228 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>

After

Width:  |  Height:  |  Size: 226 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7l4-4m0 0l4 4m-4-4v18" />
</svg>

After

Width:  |  Height:  |  Size: 226 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3" />
</svg>

After

Width:  |  Height:  |  Size: 226 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 10l7-7m0 0l7 7m-7-7v18" />
</svg>

After

Width:  |  Height:  |  Size: 227 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5l-5-5m5 5v-4m0 4h-4" />
</svg>

After

Width:  |  Height:  |  Size: 291 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 12a4 4 0 10-8 0 4 4 0 008 0zm0 0v1.5a2.5 2.5 0 005 0V12a9 9 0 10-9 9m4.5-1.206a8.959 8.959 0 01-4.5 1.207" />
</svg>

After

Width:  |  Height:  |  Size: 311 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2M3 12l6.414 6.414a2 2 0 001.414.586H19a2 2 0 002-2V7a2 2 0 00-2-2h-8.172a2 2 0 00-1.414.586L3 12z" />
</svg>

After

Width:  |  Height:  |  Size: 335 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z" />
</svg>

After

Width:  |  Height:  |  Size: 625 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636" />
</svg>

After

Width:  |  Height:  |  Size: 296 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z" />
</svg>

After

Width:  |  Height:  |  Size: 463 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
</svg>

After

Width:  |  Height:  |  Size: 391 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253" />
</svg>

After

Width:  |  Height:  |  Size: 444 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 4v12l-4-2-4 2V4M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>

After

Width:  |  Height:  |  Size: 287 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z" />
</svg>

After

Width:  |  Height:  |  Size: 251 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>

After

Width:  |  Height:  |  Size: 374 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 15.546c-.523 0-1.046.151-1.5.454a2.704 2.704 0 01-3 0 2.704 2.704 0 00-3 0 2.704 2.704 0 01-3 0 2.704 2.704 0 00-3 0 2.704 2.704 0 01-3 0 2.701 2.701 0 00-1.5-.454M9 6v2m3-2v2m3-2v2M9 3h.01M12 3h.01M15 3h.01M21 21v-7a2 2 0 00-2-2H5a2 2 0 00-2 2v7h18zm-3-9v-2a2 2 0 00-2-2H8a2 2 0 00-2 2v2h12z" />
</svg>

After

Width:  |  Height:  |  Size: 498 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z" />
</svg>

After

Width:  |  Height:  |  Size: 348 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>

After

Width:  |  Height:  |  Size: 288 B

View File

@@ -0,0 +1,4 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 13a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>

After

Width:  |  Height:  |  Size: 476 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 9V7a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2m2 4h10a2 2 0 002-2v-6a2 2 0 00-2-2H9a2 2 0 00-2 2v6a2 2 0 002 2zm7-5a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>

After

Width:  |  Height:  |  Size: 348 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
</svg>

After

Width:  |  Height:  |  Size: 398 B

View File

@@ -0,0 +1,4 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z" />
</svg>

After

Width:  |  Height:  |  Size: 373 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 8v8m-4-5v5m-4-2v2m-2 4h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>

After

Width:  |  Height:  |  Size: 289 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4l-4-4H9a1.994 1.994 0 01-1.414-.586m0 0L11 14h4a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2v4l.586-.586z" />
</svg>

After

Width:  |  Height:  |  Size: 359 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z" />
</svg>

After

Width:  |  Height:  |  Size: 307 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z" />
</svg>

After

Width:  |  Height:  |  Size: 359 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>

After

Width:  |  Height:  |  Size: 247 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>

After

Width:  |  Height:  |  Size: 216 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 13l-7 7-7-7m14-8l-7 7-7-7" />
</svg>

After

Width:  |  Height:  |  Size: 231 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 19l-7-7 7-7m8 14l-7-7 7-7" />
</svg>

After

Width:  |  Height:  |  Size: 231 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 5l7 7-7 7M5 5l7 7-7 7" />
</svg>

After

Width:  |  Height:  |  Size: 227 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 11l7-7 7 7M5 19l7-7 7 7" />
</svg>

After

Width:  |  Height:  |  Size: 228 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>

After

Width:  |  Height:  |  Size: 216 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>

After

Width:  |  Height:  |  Size: 217 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>

After

Width:  |  Height:  |  Size: 214 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 15l7-7 7 7" />
</svg>

After

Width:  |  Height:  |  Size: 215 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z" />
</svg>

After

Width:  |  Height:  |  Size: 333 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4" />
</svg>

After

Width:  |  Height:  |  Size: 342 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3" />
</svg>

After

Width:  |  Height:  |  Size: 358 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" />
</svg>

After

Width:  |  Height:  |  Size: 361 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
</svg>

After

Width:  |  Height:  |  Size: 329 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>

After

Width:  |  Height:  |  Size: 245 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10" />
</svg>

After

Width:  |  Height:  |  Size: 285 B

View File

@@ -0,0 +1,3 @@
<svg {{ $attributes }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12" />
</svg>

After

Width:  |  Height:  |  Size: 287 B

Some files were not shown because too many files have changed in this diff Show More