diff --git a/app/Http/Controllers/CarController.php b/app/Http/Controllers/CarController.php index 671ac6c..7a3e6a4 100644 --- a/app/Http/Controllers/CarController.php +++ b/app/Http/Controllers/CarController.php @@ -4,6 +4,9 @@ namespace App\Http\Controllers; use App\Models\Car; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Redirect; +use Illuminate\Validation\Rule; +use Inertia\Inertia; class CarController extends Controller { @@ -15,10 +18,9 @@ class CarController extends Controller public function index() { return Inertia::render('Cars/Index', [ - 'filters' => Request::all('search', 'trashed'), + 'filters' => request()->all('search', 'trashed'), 'cars' => Car::all() - ->orderByName() - ->filter(Request::only('search', 'trashed')) + ->filter(request()->only('search', 'trashed')) ->paginate() ->withQueryString() ->through(function ($car) { @@ -28,8 +30,8 @@ class CarController extends Controller 'vin' => $car->vin, 'bought_at' => $car->bought_at, 'buy_price' => $car->buy_price, - 'seller' => $car->seller->only('name'); - 'buyer' => $car->buyer->only('name'); + 'seller' => $car->seller->only('name'), + 'buyer' => $car->buyer->only('name'), 'car_model' => $car->carModel->only('name'), 'name' => $car->name, 'phone' => $car->phone, diff --git a/app/Http/Controllers/ContactController.php b/app/Http/Controllers/ContactController.php index 0524141..a31bdf2 100644 --- a/app/Http/Controllers/ContactController.php +++ b/app/Http/Controllers/ContactController.php @@ -2,8 +2,12 @@ namespace App\Http\Controllers; +use Inertia\Inertia; use App\Models\Contact; +use App\Enums\InsuranceType; use Illuminate\Http\Request; +use Illuminate\Validation\Rule; +use Illuminate\Support\Facades\Redirect; class ContactController extends Controller { @@ -12,25 +16,22 @@ class ContactController extends Controller * * @return \Illuminate\Http\Response */ - public function index() + public function index(Request $request) { return Inertia::render('Contacts/Index', [ - 'filters' => Request::all('search', 'trashed'), - 'contacts' => Contact::all() + 'filters' => $request->all('search', 'trashed'), + 'contacts' => Contact::filter($request->only('search', 'trashed')) ->orderByName() - ->filter(Request::only('search', 'trashed')) - ->paginate() + ->paginate(50) ->withQueryString() - ->through(function ($contact) { - return [ - 'id' => $contact->id, - 'name' => $contact->name, - 'phone' => $contact->phone, - 'zipcode' => $contact->city, - 'city' => $contact->city, - 'deleted_at' => $contact->deleted_at, - ]; - }), + ->through(fn ($contact) => [ + 'id' => $contact->id, + 'name' => $contact->name, + 'company' => $contact->company, + 'phone' => $contact->phone, + 'fullCity' => $contact->fullCity, + 'deleted_at' => $contact->deleted_at, + ]), ]); } @@ -53,13 +54,13 @@ class ContactController extends Controller public function store(Request $request) { Contact::create( - Request::validate([ + $request->validate([ 'firstname' => ['required', 'max:75'], 'lastname' => ['required', 'max:75'], 'email' => ['nullable', 'max:75', 'email'], 'phone' => ['max:75'], 'address' => ['nullable', 'max:150'], - 'zipcode' => ['nullable', 'max:6'], + 'zip' => ['nullable', 'max:6'], 'city' => ['nullable', 'max:75'], 'country' => ['nullable', 'max:2'], 'company' => ['nullable', 'max:75'], @@ -80,15 +81,28 @@ class ContactController extends Controller return Inertia::render('Contacts/Edit', [ 'contact' => [ 'id' => $contact->id, - 'firstname' => $contact->first_name, - 'lastname' => $contact->last_name, + 'firstname' => $contact->firstname, + 'lastname' => $contact->lastname, + 'company' => $contact->company, + 'title' => $contact->title, 'email' => $contact->email, + 'notes' => $contact->notes, 'phone' => $contact->phone, 'address' => $contact->address, - 'zipcode' => $contact->postal_code, + 'zip' => $contact->zip, 'city' => $contact->city, 'country' => $contact->country, 'deleted_at' => $contact->deleted_at, + 'contracts' => $contact->contracts() + ->with('car') + ->paginate(10) + ->through(fn ($contract) => [ + 'sold_at' => $contract->sold_at, + 'sell_price' => $contract->sell_price, + 'car' => $contract->car->name, + 'link' => route('cars.edit', $contract->car), + 'insurance_type' => InsuranceType::fromValue((int)$contract->insurance_type)->key, + ]), ] ]); } @@ -103,20 +117,20 @@ class ContactController extends Controller public function update(Request $request, Contact $contact) { $contact->update( - Request::validate([ - 'firstname' => ['required', 'max:75'], - 'lastname' => ['required', 'max:75'], + $request->validate([ + 'firstname' => ['max:75'], + 'lastname' => ['max:75'], 'email' => ['nullable', 'max:75', 'email'], 'phone' => ['max:75'], 'address' => ['nullable', 'max:150'], - 'zipcode' => ['nullable', 'max:6'], + 'zip' => ['nullable', 'max:6'], 'city' => ['nullable', 'max:75'], 'country' => ['nullable', 'max:2'], 'company' => ['nullable', 'max:75'], ]) ); - return Redirect::route('contacts')->with('success', 'Kontakt geändert.'); + return Redirect::back()->with('success', 'Kontakt geändert.'); } /** diff --git a/app/Models/Car.php b/app/Models/Car.php index 1194d4e..8111717 100644 --- a/app/Models/Car.php +++ b/app/Models/Car.php @@ -26,12 +26,15 @@ class Car extends Model public function getNameAttribute() { - return $this->brand->name . ' ' . $this->carModel->car_model . $this->variation ? '(' . $this->variation . ')' : ''; + $out = $this->brand->name . ' ' . $this->carModel->name; + $out .= $this->variation ? ' (' . $this->variation . ')' : ''; + + return $out; } public function brand() { - return $this->hasOneThrough(Brand::class, CarModel::class); + return $this->carModel->brand(); } public function carModel() @@ -58,4 +61,9 @@ class Car extends Model { return $this->hasManyThrough(CarPayment::class, Contract::class); } + + public function scopeSoldThisYear($query) + { + return $query->whereDate('sold_at', \Carbon\Carbon::today()); + } } diff --git a/app/Models/Contact.php b/app/Models/Contact.php index a38083c..0eb2577 100644 --- a/app/Models/Contact.php +++ b/app/Models/Contact.php @@ -23,6 +23,25 @@ class Contact extends Model 'notes', ]; + public function getNameAttribute() + { + return $this->lastname . ' ' . $this->firstname; + } + + public function getTitleAttribute() + { + if ($this->company != '') { + return $this->company; + } + + return $this->name; + } + + public function getFullCityAttribute() + { + return $this->zip . ' ' . $this->city; + } + public function scopeOrderByName($query) { $query->orderBy('lastname')->orderBy('firstname'); @@ -30,12 +49,12 @@ class Contact extends Model public function contracts() { - return $this->hasMany(Contracts::class); + return $this->hasMany(Contract::class); } public function boughtCars() { - return $this->hasManyThrough(Car::class, Contracts::class); + return $this->hasManyThrough(Car::class, Contract::class); } public function soldCars() @@ -49,6 +68,7 @@ class Contact extends Model $query->where(function ($query) use ($search) { $query->where('firstname', 'like', '%' . $search . '%') ->orWhere('lastname', 'like', '%' . $search . '%') + ->orWhere('company', 'like', '%' . $search . '%') ->orWhere('email', 'like', '%' . $search . '%'); }); })->when($filters['trashed'] ?? null, function ($query, $trashed) { diff --git a/config/app.php b/config/app.php index 473e53b..b50506f 100644 --- a/config/app.php +++ b/config/app.php @@ -80,7 +80,7 @@ return [ | */ - 'locale' => 'en', + 'locale' => 'de', /* |-------------------------------------------------------------------------- @@ -106,7 +106,7 @@ return [ | */ - 'faker_locale' => 'en_US', + 'faker_locale' => 'de_CH', /* |-------------------------------------------------------------------------- diff --git a/config/jetstream.php b/config/jetstream.php index 7453c67..d8af587 100644 --- a/config/jetstream.php +++ b/config/jetstream.php @@ -43,10 +43,10 @@ return [ 'features' => [ // Features::termsAndPrivacyPolicy(), - // Features::profilePhotos(), + Features::profilePhotos(), // Features::api(), // Features::teams(['invitations' => true]), - Features::accountDeletion(), + // Features::accountDeletion(), ], /* diff --git a/database/factories/ContactFactory.php b/database/factories/ContactFactory.php index 453e46f..285f0da 100644 --- a/database/factories/ContactFactory.php +++ b/database/factories/ContactFactory.php @@ -29,6 +29,7 @@ class ContactFactory extends Factory 'firstname' => $this->faker->firstName(), 'lastname' => $this->faker->lastName(), 'phone' => $this->faker->PhoneNumber(), + 'email' => $this->faker->email(), 'address' => $this->faker->streetName() . ' ' . $this->faker->buildingNumber(), 'zip' => $this->faker->randomNumber(4, true), 'city' => $this->faker->city(), diff --git a/package-lock.json b/package-lock.json index 74b6c77..484787e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,16 +4,20 @@ "requires": true, "packages": { "": { + "dependencies": { + "vue-unicons": "^3.2.1" + }, "devDependencies": { "@inertiajs/inertia": "^0.8.4", "@inertiajs/inertia-vue3": "^0.3.5", "@inertiajs/progress": "^0.2.4", "@tailwindcss/forms": "^0.2.1", "@tailwindcss/typography": "^0.3.0", + "@types/lodash": "^4.14.168", "@vue/compiler-sfc": "^3.0.5", "axios": "^0.21", "laravel-mix": "^6.0.6", - "lodash": "^4.17.19", + "lodash": "^4.17.21", "postcss": "^8.1.14", "postcss-import": "^12.0.1", "tailwindcss": "^2.0.1", @@ -1457,6 +1461,143 @@ "purgecss": "^3.1.3" } }, + "node_modules/@iconscout/unicons": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@iconscout/unicons/-/unicons-3.0.6.tgz", + "integrity": "sha512-qSnFPrPKKsALyRdhq6MsllThURc0usa+U9gztiNg7W6EgAZgdo74HGiuGeLrPheE+c4S5oRXRHqKp6/Cv4W3WA==", + "dependencies": { + "async": "^2.6.1", + "axios": "^0.19.0", + "cheerio": "^1.0.0-rc.2", + "cross-env": "^7.0.2", + "fontello-cli": "^0.6.2", + "fs-plus": "^3.1.1", + "glob": "^7.1.3", + "lodash": "^4.17.20", + "parse-svg-path": "^0.1.2", + "scale-svg-path": "0.0.1", + "serialize-svg-path": "^0.1.0", + "svgo": "1.1.1", + "svgstore": "^3.0.0-2", + "uuid": "^3.3.2" + } + }, + "node_modules/@iconscout/unicons/node_modules/axios": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", + "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", + "deprecated": "Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410", + "dependencies": { + "follow-redirects": "1.5.10" + } + }, + "node_modules/@iconscout/unicons/node_modules/colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@iconscout/unicons/node_modules/css-tree": { + "version": "1.0.0-alpha.28", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz", + "integrity": "sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==", + "dependencies": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@iconscout/unicons/node_modules/csso": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", + "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", + "dependencies": { + "css-tree": "1.0.0-alpha.29" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@iconscout/unicons/node_modules/csso/node_modules/css-tree": { + "version": "1.0.0-alpha.29", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", + "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", + "dependencies": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@iconscout/unicons/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@iconscout/unicons/node_modules/follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "dependencies": { + "debug": "=3.1.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@iconscout/unicons/node_modules/mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==" + }, + "node_modules/@iconscout/unicons/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/@iconscout/unicons/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@iconscout/unicons/node_modules/svgo": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.1.1.tgz", + "integrity": "sha512-GBkJbnTuFpM4jFbiERHDWhZc/S/kpHToqmZag3aEBjPYK44JAN2QBjvrGIxLOoCyMZjuFQIfTO2eJd8uwLY/9g==", + "dependencies": { + "coa": "~2.0.1", + "colors": "~1.1.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "~0.1.0", + "css-tree": "1.0.0-alpha.28", + "css-url-regex": "^1.1.0", + "csso": "^3.5.0", + "js-yaml": "^3.12.0", + "mkdirp": "~0.5.1", + "object.values": "^1.0.4", + "sax": "~1.2.4", + "stable": "~0.1.6", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, "node_modules/@inertiajs/inertia": { "version": "0.8.7", "resolved": "https://registry.npmjs.org/@inertiajs/inertia/-/inertia-0.8.7.tgz", @@ -2101,6 +2242,12 @@ "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==", "dev": true }, + "node_modules/@types/lodash": { + "version": "4.14.168", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.168.tgz", + "integrity": "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==", + "dev": true + }, "node_modules/@types/micromatch": { "version": "2.3.30", "resolved": "https://registry.npmjs.org/@types/micromatch/-/micromatch-2.3.30.tgz", @@ -2143,8 +2290,7 @@ "node_modules/@types/q": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", - "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", - "dev": true + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" }, "node_modules/@types/retry": { "version": "0.12.0", @@ -2615,7 +2761,6 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, "dependencies": { "sprintf-js": "~1.0.2" } @@ -2727,7 +2872,6 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "dev": true, "dependencies": { "lodash": "^4.17.14" } @@ -2874,8 +3018,7 @@ "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/base": { "version": "0.11.2", @@ -2971,6 +3114,14 @@ "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", "dev": true }, + "node_modules/big-integer": { + "version": "1.6.48", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz", + "integrity": "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==", + "engines": { + "node": ">=0.6" + } + }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -2980,6 +3131,18 @@ "node": "*" } }, + "node_modules/binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", + "dependencies": { + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" + }, + "engines": { + "node": "*" + } + }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -3073,14 +3236,12 @@ "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -3257,12 +3418,28 @@ "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", "dev": true }, + "node_modules/buffer-indexof-polyfill": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", + "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==", + "engines": { + "node": ">=0.10" + } + }, "node_modules/buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", "dev": true }, + "node_modules/buffers": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=", + "engines": { + "node": ">=0.2.0" + } + }, "node_modules/builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", @@ -3302,7 +3479,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -3397,6 +3573,17 @@ "url": "https://opencollective.com/browserslist" } }, + "node_modules/chainsaw": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", + "dependencies": { + "traverse": ">=0.3.0 <0.4" + }, + "engines": { + "node": "*" + } + }, "node_modules/chalk": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", @@ -3422,6 +3609,124 @@ "node": "*" } }, + "node_modules/cheerio": { + "version": "1.0.0-rc.9", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.9.tgz", + "integrity": "sha512-QF6XVdrLONO6DXRF5iaolY+odmhj2CLj+xzNod7INPWMi/x9X4SOylH0S/vaPpX+AUU6t04s34SQNh7DbkuCng==", + "dependencies": { + "cheerio-select": "^1.4.0", + "dom-serializer": "^1.3.1", + "domhandler": "^4.2.0", + "htmlparser2": "^6.1.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.4.0.tgz", + "integrity": "sha512-sobR3Yqz27L553Qa7cK6rtJlMDbiKPdNywtR95Sj/YgfpLfy0u6CGJuaBKe5YE/vTc23SCRKxWSdlon/w6I/Ew==", + "dependencies": { + "css-select": "^4.1.2", + "css-what": "^5.0.0", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cheerio-select/node_modules/css-select": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.2.tgz", + "integrity": "sha512-nu5ye2Hg/4ISq4XqdLY2bEatAcLIdt3OYGFc9Tm9n7VSlFBcfRv0gBNksHRgSdUDQGtN3XrZ94ztW+NfzkFSUw==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cheerio-select/node_modules/css-what": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.0.0.tgz", + "integrity": "sha512-qxyKHQvgKwzwDWC/rGbT821eJalfupxYW2qbSJSAtdSTimsr/MlaGONoNLllaUPZWf8QnbcKM/kPVYUQuEKAFA==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cheerio-select/node_modules/domhandler": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", + "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/cheerio-select/node_modules/nth-check": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz", + "integrity": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/cheerio/node_modules/domhandler": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", + "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/cheerio/node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, "node_modules/chokidar": { "version": "3.5.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", @@ -3520,6 +3825,17 @@ "colors": "^1.1.2" } }, + "node_modules/clipboard": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz", + "integrity": "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==", + "optional": true, + "dependencies": { + "good-listener": "^1.2.2", + "select": "^1.1.2", + "tiny-emitter": "^2.0.0" + } + }, "node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -3549,7 +3865,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "dev": true, "dependencies": { "@types/q": "^1.5.1", "chalk": "^2.4.1", @@ -3563,7 +3878,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -3575,7 +3889,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -3589,7 +3902,6 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, "dependencies": { "color-name": "1.1.3" } @@ -3597,14 +3909,12 @@ "node_modules/coa/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "node_modules/coa/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true, "engines": { "node": ">=4" } @@ -3613,7 +3923,6 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -3703,8 +4012,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true, - "optional": true, "engines": { "node": ">=0.1.90" } @@ -3802,8 +4109,7 @@ "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "node_modules/concat/node_modules/commander": { "version": "2.20.3", @@ -3930,8 +4236,7 @@ "node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "node_modules/cosmiconfig": { "version": "5.2.1", @@ -3991,11 +4296,27 @@ "sha.js": "^2.4.8" } }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -4215,7 +4536,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "dev": true, "dependencies": { "boolbase": "^1.0.0", "css-what": "^3.2.1", @@ -4226,14 +4546,12 @@ "node_modules/css-select-base-adapter": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "dev": true + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" }, "node_modules/css-select/node_modules/dom-serializer": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dev": true, "dependencies": { "domelementtype": "^2.0.1", "entities": "^2.0.0" @@ -4243,7 +4561,6 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dev": true, "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -4252,8 +4569,7 @@ "node_modules/css-select/node_modules/domutils/node_modules/domelementtype": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" }, "node_modules/css-tree": { "version": "1.0.0-alpha.37", @@ -4274,11 +4590,15 @@ "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", "dev": true }, + "node_modules/css-url-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz", + "integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=" + }, "node_modules/css-what": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", - "dev": true, "engines": { "node": ">= 6" }, @@ -4774,7 +5094,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, "dependencies": { "object-keys": "^1.0.12" }, @@ -4842,6 +5161,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/delegate": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", + "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==", + "optional": true + }, "node_modules/depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", @@ -4960,7 +5285,6 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz", "integrity": "sha512-Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q==", - "dev": true, "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", @@ -4974,7 +5298,6 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", - "dev": true, "dependencies": { "domelementtype": "^2.2.0" }, @@ -4999,7 +5322,6 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", - "dev": true, "funding": [ { "type": "github", @@ -5026,7 +5348,6 @@ "version": "2.6.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz", "integrity": "sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==", - "dev": true, "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", @@ -5040,7 +5361,6 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", - "dev": true, "dependencies": { "domelementtype": "^2.2.0" }, @@ -5088,6 +5408,14 @@ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", "dev": true }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -5162,7 +5490,6 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } @@ -5192,7 +5519,6 @@ "version": "1.18.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", @@ -5228,7 +5554,6 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -5260,7 +5585,6 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true, "engines": { "node": ">=0.8.0" } @@ -5282,7 +5606,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -5812,6 +6135,41 @@ } } }, + "node_modules/fontello-cli": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/fontello-cli/-/fontello-cli-0.6.2.tgz", + "integrity": "sha512-/85DkJNgbGOu0sh7sUAxWLbzq0cytWQtvn7WuRzpn6mcla6TEQz1JbYmpkAjX/PJiW867ujgoaFqm4CUoBBgwA==", + "dependencies": { + "colors": "^1.4.0", + "commander": "^3.0.0", + "mkdirp": "^1.0.4", + "needle": "^2.4.0", + "open": "^7.0.0", + "unzipper": "^0.10.5" + }, + "bin": { + "fontello-cli": "bin/fontello-cli" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fontello-cli/node_modules/commander": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", + "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==" + }, + "node_modules/fontello-cli/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -5881,11 +6239,37 @@ "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, + "node_modules/fs-plus": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fs-plus/-/fs-plus-3.1.1.tgz", + "integrity": "sha512-Se2PJdOWXqos1qVTkvqqjb0CSnfBnwwD+pq+z4ksT+e97mEShod/hrNg0TRCCsXPbJzcIq+NuzQhigunMWMJUA==", + "dependencies": { + "async": "^1.5.2", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.2", + "underscore-plus": "1.x" + } + }, + "node_modules/fs-plus/node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + }, + "node_modules/fs-plus/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "node_modules/fsevents": { "version": "2.3.2", @@ -5901,11 +6285,35 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, + "node_modules/fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/fstream/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/generic-names": { "version": "2.0.1", @@ -5938,7 +6346,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -5973,7 +6380,6 @@ "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -6078,11 +6484,19 @@ "node": ">=8" } }, + "node_modules/good-listener": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", + "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", + "optional": true, + "dependencies": { + "delegate": "^3.1.2" + } + }, "node_modules/graceful-fs": { "version": "4.2.6", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", - "dev": true + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" }, "node_modules/growly": { "version": "1.3.0", @@ -6100,7 +6514,6 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, "dependencies": { "function-bind": "^1.1.1" }, @@ -6112,7 +6525,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -6130,7 +6542,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -6544,7 +6955,6 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -6710,7 +7120,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -6719,8 +7128,7 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/internal-ip": { "version": "6.2.0", @@ -6840,7 +7248,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -6861,7 +7268,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", - "dev": true, "dependencies": { "call-bind": "^1.0.2" }, @@ -6882,7 +7288,6 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -6944,7 +7349,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -6988,7 +7392,6 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, "bin": { "is-docker": "cli.js" }, @@ -7063,7 +7466,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -7084,7 +7486,6 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -7147,7 +7548,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "has-symbols": "^1.0.2" @@ -7178,7 +7578,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -7190,7 +7589,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, "dependencies": { "has-symbols": "^1.0.2" }, @@ -7214,7 +7612,6 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, "dependencies": { "is-docker": "^2.0.0" }, @@ -7225,14 +7622,12 @@ "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, "node_modules/isobject": { "version": "3.0.1", @@ -7267,7 +7662,6 @@ "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -7442,6 +7836,11 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", "dev": true }, + "node_modules/listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=" + }, "node_modules/loader-runner": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", @@ -7492,8 +7891,17 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.assignin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", + "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" + }, + "node_modules/lodash.bind": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", + "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" }, "node_modules/lodash.camelcase": { "version": "4.3.0", @@ -7513,12 +7921,62 @@ "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", "dev": true }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" + }, + "node_modules/lodash.filter": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", + "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" + }, + "node_modules/lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + }, + "node_modules/lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" + }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + }, + "node_modules/lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" + }, + "node_modules/lodash.reject": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", + "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" + }, + "node_modules/lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" + }, "node_modules/lodash.toarray": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", @@ -7883,7 +8341,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -7894,8 +8351,7 @@ "node_modules/minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" }, "node_modules/mixin-deep": { "version": "1.3.2", @@ -7926,7 +8382,6 @@ "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, "dependencies": { "minimist": "^1.2.5" }, @@ -7949,8 +8404,7 @@ "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/multicast-dns": { "version": "6.2.3", @@ -8088,6 +8542,30 @@ "node": ">=0.10.0" } }, + "node_modules/needle": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz", + "integrity": "sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg==", + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, "node_modules/negotiator": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", @@ -8240,7 +8718,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, "dependencies": { "boolbase": "~1.0.0" } @@ -8249,7 +8726,6 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -8293,7 +8769,6 @@ "version": "1.10.3", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -8318,7 +8793,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, "engines": { "node": ">= 0.4" } @@ -8339,7 +8813,6 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", @@ -8357,7 +8830,6 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -8386,7 +8858,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -8431,7 +8902,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "dependencies": { "wrappy": "1" } @@ -8455,7 +8925,6 @@ "version": "7.4.2", "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "dev": true, "dependencies": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" @@ -8693,6 +9162,24 @@ "node": ">=4" } }, + "node_modules/parse-svg-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz", + "integrity": "sha1-en7A0esG+lMlx9PgCbhZoJtdSes=" + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dependencies": { + "parse5": "^6.0.1" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -8746,7 +9233,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -8755,7 +9241,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, "engines": { "node": ">=8" } @@ -12387,6 +12872,14 @@ "node": ">=4" } }, + "node_modules/prismjs": { + "version": "1.23.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz", + "integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==", + "optionalDependencies": { + "clipboard": "^2.0.0" + } + }, "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", @@ -12399,8 +12892,7 @@ "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "node_modules/proxy-addr": { "version": "2.0.6", @@ -12478,7 +12970,6 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true, "engines": { "node": ">=0.6.0", "teleport": ">=0.2.0" @@ -12605,7 +13096,6 @@ "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -12620,7 +13110,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, "dependencies": { "safe-buffer": "~5.1.0" } @@ -12994,8 +13483,7 @@ "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "node_modules/safe-regex": { "version": "1.1.0", @@ -13009,14 +13497,17 @@ "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/scale-svg-path": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/scale-svg-path/-/scale-svg-path-0.0.1.tgz", + "integrity": "sha1-UpuNrKopTwejy0x582UbLxz1Go0=" }, "node_modules/schema-utils": { "version": "2.7.1", @@ -13036,6 +13527,12 @@ "url": "https://opencollective.com/webpack" } }, + "node_modules/select": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", + "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=", + "optional": true + }, "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", @@ -13138,6 +13635,11 @@ "randombytes": "^2.1.0" } }, + "node_modules/serialize-svg-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/serialize-svg-path/-/serialize-svg-path-0.1.0.tgz", + "integrity": "sha1-pyvxT9pp1vdjAWSBVNCR/8ByKZo=" + }, "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", @@ -13231,8 +13733,7 @@ "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" }, "node_modules/setprototypeof": { "version": "1.1.1", @@ -13269,7 +13770,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, @@ -13281,7 +13781,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "engines": { "node": ">=8" } @@ -13612,14 +14111,12 @@ "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "dev": true + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" }, "node_modules/static-extend": { "version": "0.1.2", @@ -13679,7 +14176,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, "dependencies": { "safe-buffer": "~5.2.0" } @@ -13688,7 +14184,6 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, "funding": [ { "type": "github", @@ -13728,7 +14223,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -13741,7 +14235,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -14044,6 +14537,125 @@ "node": ">=4" } }, + "node_modules/svgstore": { + "version": "3.0.0-2", + "resolved": "https://registry.npmjs.org/svgstore/-/svgstore-3.0.0-2.tgz", + "integrity": "sha512-qiR9MvGgCWLuuspa9wFkafE1BrwrtsoFwhsWHt6zFK7vq3TcYKPCKFOVDBa0rAflF7/GI3SFIE+h38l8vFCFgQ==", + "dependencies": { + "cheerio": "^0.22.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/svgstore/node_modules/cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "dependencies": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/svgstore/node_modules/css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "dependencies": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "node_modules/svgstore/node_modules/css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "engines": { + "node": "*" + } + }, + "node_modules/svgstore/node_modules/dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "dependencies": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "node_modules/svgstore/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgstore/node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dependencies": { + "domelementtype": "1" + } + }, + "node_modules/svgstore/node_modules/domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgstore/node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "node_modules/svgstore/node_modules/htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dependencies": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "node_modules/svgstore/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/tailwindcss": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.1.2.tgz", @@ -14218,6 +14830,12 @@ "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", "dev": true }, + "node_modules/tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==", + "optional": true + }, "node_modules/to-arraybuffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", @@ -14369,11 +14987,18 @@ "node": ">=0.6" } }, + "node_modules/traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=", + "engines": { + "node": "*" + } + }, "node_modules/tslib": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" }, "node_modules/tty-browserify": { "version": "0.0.0", @@ -14410,7 +15035,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", - "dev": true, "dependencies": { "function-bind": "^1.1.1", "has-bigints": "^1.0.1", @@ -14421,6 +15045,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/underscore": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.1.tgz", + "integrity": "sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g==" + }, + "node_modules/underscore-plus": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/underscore-plus/-/underscore-plus-1.7.0.tgz", + "integrity": "sha512-A3BEzkeicFLnr+U/Q3EyWwJAQPbA19mtZZ4h+lLq3ttm9kn8WC4R3YpuJZEXmWdLjYP47Zc8aLZm9kwdv+zzvA==", + "dependencies": { + "underscore": "^1.9.1" + } + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", @@ -14509,8 +15146,7 @@ "node_modules/unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", - "dev": true + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" }, "node_modules/unset-value": { "version": "1.0.0", @@ -14560,6 +15196,28 @@ "node": ">=0.10.0" } }, + "node_modules/unzipper": { + "version": "0.10.11", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.11.tgz", + "integrity": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==", + "dependencies": { + "big-integer": "^1.6.17", + "binary": "~0.3.0", + "bluebird": "~3.4.1", + "buffer-indexof-polyfill": "~1.0.0", + "duplexer2": "~0.1.4", + "fstream": "^1.0.12", + "graceful-fs": "^4.2.2", + "listenercount": "~1.0.1", + "readable-stream": "~2.3.6", + "setimmediate": "~1.0.4" + } + }, + "node_modules/unzipper/node_modules/bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM=" + }, "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", @@ -14632,14 +15290,12 @@ "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "node_modules/util.promisify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "dev": true, "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.2", @@ -14669,7 +15325,6 @@ "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true, "bin": { "uuid": "bin/uuid" } @@ -14716,6 +15371,12 @@ "@vue/shared": "3.0.11" } }, + "node_modules/vue-analytics": { + "version": "5.22.1", + "resolved": "https://registry.npmjs.org/vue-analytics/-/vue-analytics-5.22.1.tgz", + "integrity": "sha512-HPKQMN7gfcUqS5SxoO0VxqLRRSPkG1H1FqglsHccz6BatBatNtm/Vyy8brApktZxNCfnAkrSVDpxg3/FNDeOgQ==", + "deprecated": "Sorry but vue-analytics is no longer maintained. I would suggest you switch to vue-gtag, with love, the guy who made the package." + }, "node_modules/vue-loader": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.2.0.tgz", @@ -14757,6 +15418,22 @@ "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", "dev": true }, + "node_modules/vue-unicons": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/vue-unicons/-/vue-unicons-3.2.1.tgz", + "integrity": "sha512-ygl+SuhvUUKwfS+1L+sNXRNj9yeCzj1RwH6qbdJJ2j5TqF1PixiLIypHF7TPkcy/L1mM8uPv5c342QaCLoJt3Q==", + "dependencies": { + "@iconscout/unicons": "^3.0.6", + "prismjs": "^1.15.0", + "vue": "^2.5.22", + "vue-analytics": "^5.16.2" + } + }, + "node_modules/vue-unicons/node_modules/vue": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz", + "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==" + }, "node_modules/watchpack": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz", @@ -15112,7 +15789,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -15127,7 +15803,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -15165,8 +15840,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/ws": { "version": "7.4.5", @@ -16454,6 +17128,122 @@ "purgecss": "^3.1.3" } }, + "@iconscout/unicons": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@iconscout/unicons/-/unicons-3.0.6.tgz", + "integrity": "sha512-qSnFPrPKKsALyRdhq6MsllThURc0usa+U9gztiNg7W6EgAZgdo74HGiuGeLrPheE+c4S5oRXRHqKp6/Cv4W3WA==", + "requires": { + "async": "^2.6.1", + "axios": "^0.19.0", + "cheerio": "^1.0.0-rc.2", + "cross-env": "^7.0.2", + "fontello-cli": "^0.6.2", + "fs-plus": "^3.1.1", + "glob": "^7.1.3", + "lodash": "^4.17.20", + "parse-svg-path": "^0.1.2", + "scale-svg-path": "0.0.1", + "serialize-svg-path": "^0.1.0", + "svgo": "1.1.1", + "svgstore": "^3.0.0-2", + "uuid": "^3.3.2" + }, + "dependencies": { + "axios": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", + "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", + "requires": { + "follow-redirects": "1.5.10" + } + }, + "colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=" + }, + "css-tree": { + "version": "1.0.0-alpha.28", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz", + "integrity": "sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + } + }, + "csso": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", + "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", + "requires": { + "css-tree": "1.0.0-alpha.29" + }, + "dependencies": { + "css-tree": { + "version": "1.0.0-alpha.29", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", + "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + } + } + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "requires": { + "debug": "=3.1.0" + } + }, + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "svgo": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.1.1.tgz", + "integrity": "sha512-GBkJbnTuFpM4jFbiERHDWhZc/S/kpHToqmZag3aEBjPYK44JAN2QBjvrGIxLOoCyMZjuFQIfTO2eJd8uwLY/9g==", + "requires": { + "coa": "~2.0.1", + "colors": "~1.1.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "~0.1.0", + "css-tree": "1.0.0-alpha.28", + "css-url-regex": "^1.1.0", + "csso": "^3.5.0", + "js-yaml": "^3.12.0", + "mkdirp": "~0.5.1", + "object.values": "^1.0.4", + "sax": "~1.2.4", + "stable": "~0.1.6", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + } + } + } + }, "@inertiajs/inertia": { "version": "0.8.7", "resolved": "https://registry.npmjs.org/@inertiajs/inertia/-/inertia-0.8.7.tgz", @@ -17010,6 +17800,12 @@ "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==", "dev": true }, + "@types/lodash": { + "version": "4.14.168", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.168.tgz", + "integrity": "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==", + "dev": true + }, "@types/micromatch": { "version": "2.3.30", "resolved": "https://registry.npmjs.org/@types/micromatch/-/micromatch-2.3.30.tgz", @@ -17052,8 +17848,7 @@ "@types/q": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", - "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", - "dev": true + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" }, "@types/retry": { "version": "0.12.0", @@ -17463,7 +18258,6 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, "requires": { "sprintf-js": "~1.0.2" } @@ -17561,7 +18355,6 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "dev": true, "requires": { "lodash": "^4.17.14" } @@ -17669,8 +18462,7 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "base": { "version": "0.11.2", @@ -17739,12 +18531,26 @@ "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", "dev": true }, + "big-integer": { + "version": "1.6.48", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz", + "integrity": "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==" + }, "big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true }, + "binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", + "requires": { + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" + } + }, "binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -17831,14 +18637,12 @@ "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -17987,12 +18791,22 @@ "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", "dev": true }, + "buffer-indexof-polyfill": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", + "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" + }, "buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", "dev": true }, + "buffers": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=" + }, "builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", @@ -18026,7 +18840,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, "requires": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -18096,6 +18909,14 @@ "integrity": "sha512-HHZT4QpUw4Pf45IE3xxKAPgAN3q2aRai/x5TSHP8lrrKzARoH0IeBviwStcRi5lsFlscTkBbXC7gXyms43151A==", "dev": true }, + "chainsaw": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", + "requires": { + "traverse": ">=0.3.0 <0.4" + } + }, "chalk": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", @@ -18112,6 +18933,88 @@ "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", "dev": true }, + "cheerio": { + "version": "1.0.0-rc.9", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.9.tgz", + "integrity": "sha512-QF6XVdrLONO6DXRF5iaolY+odmhj2CLj+xzNod7INPWMi/x9X4SOylH0S/vaPpX+AUU6t04s34SQNh7DbkuCng==", + "requires": { + "cheerio-select": "^1.4.0", + "dom-serializer": "^1.3.1", + "domhandler": "^4.2.0", + "htmlparser2": "^6.1.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "tslib": "^2.2.0" + }, + "dependencies": { + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", + "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + } + } + }, + "cheerio-select": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.4.0.tgz", + "integrity": "sha512-sobR3Yqz27L553Qa7cK6rtJlMDbiKPdNywtR95Sj/YgfpLfy0u6CGJuaBKe5YE/vTc23SCRKxWSdlon/w6I/Ew==", + "requires": { + "css-select": "^4.1.2", + "css-what": "^5.0.0", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0" + }, + "dependencies": { + "css-select": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.2.tgz", + "integrity": "sha512-nu5ye2Hg/4ISq4XqdLY2bEatAcLIdt3OYGFc9Tm9n7VSlFBcfRv0gBNksHRgSdUDQGtN3XrZ94ztW+NfzkFSUw==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + } + }, + "css-what": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.0.0.tgz", + "integrity": "sha512-qxyKHQvgKwzwDWC/rGbT821eJalfupxYW2qbSJSAtdSTimsr/MlaGONoNLllaUPZWf8QnbcKM/kPVYUQuEKAFA==" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", + "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz", + "integrity": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==", + "requires": { + "boolbase": "^1.0.0" + } + } + } + }, "chokidar": { "version": "3.5.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", @@ -18188,6 +19091,17 @@ "string-width": "^4.2.0" } }, + "clipboard": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz", + "integrity": "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==", + "optional": true, + "requires": { + "good-listener": "^1.2.2", + "select": "^1.1.2", + "tiny-emitter": "^2.0.0" + } + }, "cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -18214,7 +19128,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "dev": true, "requires": { "@types/q": "^1.5.1", "chalk": "^2.4.1", @@ -18225,7 +19138,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -18234,7 +19146,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -18245,7 +19156,6 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, "requires": { "color-name": "1.1.3" } @@ -18253,20 +19163,17 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -18350,9 +19257,7 @@ "colors": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true, - "optional": true + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" }, "commander": { "version": "7.2.0", @@ -18439,8 +19344,7 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "connect-history-api-fallback": { "version": "1.6.0", @@ -18538,8 +19442,7 @@ "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "cosmiconfig": { "version": "5.2.1", @@ -18598,11 +19501,18 @@ "sha.js": "^2.4.8" } }, + "cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "requires": { + "cross-spawn": "^7.0.1" + } + }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -18771,7 +19681,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "dev": true, "requires": { "boolbase": "^1.0.0", "css-what": "^3.2.1", @@ -18783,7 +19692,6 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dev": true, "requires": { "domelementtype": "^2.0.1", "entities": "^2.0.0" @@ -18793,7 +19701,6 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dev": true, "requires": { "dom-serializer": "0", "domelementtype": "1" @@ -18802,8 +19709,7 @@ "domelementtype": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" } } } @@ -18812,8 +19718,7 @@ "css-select-base-adapter": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "dev": true + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" }, "css-tree": { "version": "1.0.0-alpha.37", @@ -18831,11 +19736,15 @@ "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", "dev": true }, + "css-url-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz", + "integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=" + }, "css-what": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", - "dev": true + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" }, "cssesc": { "version": "3.0.0", @@ -19223,7 +20132,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, "requires": { "object-keys": "^1.0.12" } @@ -19275,6 +20183,12 @@ } } }, + "delegate": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", + "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==", + "optional": true + }, "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", @@ -19383,7 +20297,6 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz", "integrity": "sha512-Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q==", - "dev": true, "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", @@ -19394,7 +20307,6 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", - "dev": true, "requires": { "domelementtype": "^2.2.0" } @@ -19410,8 +20322,7 @@ "domelementtype": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", - "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", - "dev": true + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" }, "domhandler": { "version": "3.3.0", @@ -19426,7 +20337,6 @@ "version": "2.6.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz", "integrity": "sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==", - "dev": true, "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", @@ -19437,7 +20347,6 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", - "dev": true, "requires": { "domelementtype": "^2.2.0" } @@ -19475,6 +20384,14 @@ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", "dev": true }, + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "requires": { + "readable-stream": "^2.0.2" + } + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -19541,8 +20458,7 @@ "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, "envinfo": { "version": "7.8.1", @@ -19563,7 +20479,6 @@ "version": "1.18.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "dev": true, "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", @@ -19593,7 +20508,6 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -19615,8 +20529,7 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "eslint-scope": { "version": "5.1.1", @@ -19631,8 +20544,7 @@ "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esrecurse": { "version": "4.3.0", @@ -20052,6 +20964,31 @@ "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==", "dev": true }, + "fontello-cli": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/fontello-cli/-/fontello-cli-0.6.2.tgz", + "integrity": "sha512-/85DkJNgbGOu0sh7sUAxWLbzq0cytWQtvn7WuRzpn6mcla6TEQz1JbYmpkAjX/PJiW867ujgoaFqm4CUoBBgwA==", + "requires": { + "colors": "^1.4.0", + "commander": "^3.0.0", + "mkdirp": "^1.0.4", + "needle": "^2.4.0", + "open": "^7.0.0", + "unzipper": "^0.10.5" + }, + "dependencies": { + "commander": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", + "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==" + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -20103,11 +21040,36 @@ "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, + "fs-plus": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fs-plus/-/fs-plus-3.1.1.tgz", + "integrity": "sha512-Se2PJdOWXqos1qVTkvqqjb0CSnfBnwwD+pq+z4ksT+e97mEShod/hrNg0TRCCsXPbJzcIq+NuzQhigunMWMJUA==", + "requires": { + "async": "^1.5.2", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.2", + "underscore-plus": "1.x" + }, + "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": { "version": "2.3.2", @@ -20116,11 +21078,31 @@ "dev": true, "optional": true }, + "fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "requires": { + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "generic-names": { "version": "2.0.1", @@ -20147,7 +21129,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -20170,7 +21151,6 @@ "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -20253,11 +21233,19 @@ "slash": "^3.0.0" } }, + "good-listener": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", + "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", + "optional": true, + "requires": { + "delegate": "^3.1.2" + } + }, "graceful-fs": { "version": "4.2.6", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", - "dev": true + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" }, "growly": { "version": "1.3.0", @@ -20275,7 +21263,6 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, "requires": { "function-bind": "^1.1.1" } @@ -20283,8 +21270,7 @@ "has-bigints": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", - "dev": true + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" }, "has-flag": { "version": "4.0.0", @@ -20295,8 +21281,7 @@ "has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" }, "has-value": { "version": "1.0.0", @@ -20627,7 +21612,6 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } @@ -20743,7 +21727,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -20752,8 +21735,7 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "internal-ip": { "version": "6.2.0", @@ -20843,8 +21825,7 @@ "is-bigint": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", - "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==", - "dev": true + "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" }, "is-binary-path": { "version": "2.1.0", @@ -20859,7 +21840,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", - "dev": true, "requires": { "call-bind": "^1.0.2" } @@ -20873,8 +21853,7 @@ "is-callable": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" }, "is-color-stop": { "version": "1.1.0", @@ -20922,8 +21901,7 @@ "is-date-object": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", - "dev": true + "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==" }, "is-descriptor": { "version": "0.1.6", @@ -20953,8 +21931,7 @@ "is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" }, "is-dotfile": { "version": "1.0.3", @@ -21001,8 +21978,7 @@ "is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" }, "is-number": { "version": "7.0.0", @@ -21013,8 +21989,7 @@ "is-number-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", - "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==", - "dev": true + "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" }, "is-obj": { "version": "2.0.0", @@ -21053,7 +22028,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, "requires": { "call-bind": "^1.0.2", "has-symbols": "^1.0.2" @@ -21074,14 +22048,12 @@ "is-string": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true + "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" }, "is-symbol": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, "requires": { "has-symbols": "^1.0.2" } @@ -21096,7 +22068,6 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, "requires": { "is-docker": "^2.0.0" } @@ -21104,14 +22075,12 @@ "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, "isobject": { "version": "3.0.1", @@ -21140,7 +22109,6 @@ "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -21279,6 +22247,11 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", "dev": true }, + "listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=" + }, "loader-runner": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", @@ -21319,8 +22292,17 @@ "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.assignin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", + "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" + }, + "lodash.bind": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", + "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" }, "lodash.camelcase": { "version": "4.3.0", @@ -21340,12 +22322,62 @@ "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", "dev": true }, + "lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" + }, + "lodash.filter": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", + "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" + }, + "lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + }, + "lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" + }, + "lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" + }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + }, + "lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" + }, + "lodash.reject": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", + "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" + }, + "lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" + }, "lodash.toarray": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", @@ -21638,7 +22670,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -21646,8 +22677,7 @@ "minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" }, "mixin-deep": { "version": "1.3.2", @@ -21674,7 +22704,6 @@ "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, "requires": { "minimist": "^1.2.5" } @@ -21688,8 +22717,7 @@ "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multicast-dns": { "version": "6.2.3", @@ -21799,6 +22827,26 @@ } } }, + "needle": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz", + "integrity": "sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg==", + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, "negotiator": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", @@ -21932,7 +22980,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, "requires": { "boolbase": "~1.0.0" } @@ -21940,8 +22987,7 @@ "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-copy": { "version": "0.1.0", @@ -21974,8 +23020,7 @@ "object-inspect": { "version": "1.10.3", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true + "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==" }, "object-is": { "version": "1.1.5", @@ -21990,8 +23035,7 @@ "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object-visit": { "version": "1.0.1", @@ -22006,7 +23050,6 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, "requires": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", @@ -22018,7 +23061,6 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", - "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -22038,7 +23080,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", - "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -22071,7 +23112,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "requires": { "wrappy": "1" } @@ -22089,7 +23129,6 @@ "version": "7.4.2", "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "dev": true, "requires": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" @@ -22265,6 +23304,24 @@ "json-parse-better-errors": "^1.0.1" } }, + "parse-svg-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz", + "integrity": "sha1-en7A0esG+lMlx9PgCbhZoJtdSes=" + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "requires": { + "parse5": "^6.0.1" + } + }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -22308,14 +23365,12 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" }, "path-parse": { "version": "1.0.6", @@ -25209,6 +26264,14 @@ "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", "dev": true }, + "prismjs": { + "version": "1.23.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz", + "integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==", + "requires": { + "clipboard": "^2.0.0" + } + }, "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", @@ -25218,8 +26281,7 @@ "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "proxy-addr": { "version": "2.0.6", @@ -25290,8 +26352,7 @@ "q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" }, "qs": { "version": "6.10.1", @@ -25376,7 +26437,6 @@ "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -25391,7 +26451,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -25684,8 +26743,7 @@ "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "safe-regex": { "version": "1.1.0", @@ -25699,14 +26757,17 @@ "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "scale-svg-path": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/scale-svg-path/-/scale-svg-path-0.0.1.tgz", + "integrity": "sha1-UpuNrKopTwejy0x582UbLxz1Go0=" }, "schema-utils": { "version": "2.7.1", @@ -25719,6 +26780,12 @@ "ajv-keywords": "^3.5.2" } }, + "select": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", + "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=", + "optional": true + }, "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", @@ -25815,6 +26882,11 @@ "randombytes": "^2.1.0" } }, + "serialize-svg-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/serialize-svg-path/-/serialize-svg-path-0.1.0.tgz", + "integrity": "sha1-pyvxT9pp1vdjAWSBVNCR/8ByKZo=" + }, "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", @@ -25898,8 +26970,7 @@ "setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" }, "setprototypeof": { "version": "1.1.1", @@ -25930,7 +27001,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "requires": { "shebang-regex": "^3.0.0" } @@ -25938,8 +27008,7 @@ "shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, "shellwords": { "version": "0.1.1", @@ -26228,14 +27297,12 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, "stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "dev": true + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" }, "static-extend": { "version": "0.1.2", @@ -26289,7 +27356,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, "requires": { "safe-buffer": "~5.2.0" }, @@ -26297,8 +27363,7 @@ "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -26323,7 +27388,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -26333,7 +27397,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -26566,6 +27629,115 @@ } } }, + "svgstore": { + "version": "3.0.0-2", + "resolved": "https://registry.npmjs.org/svgstore/-/svgstore-3.0.0-2.tgz", + "integrity": "sha512-qiR9MvGgCWLuuspa9wFkafE1BrwrtsoFwhsWHt6zFK7vq3TcYKPCKFOVDBa0rAflF7/GI3SFIE+h38l8vFCFgQ==", + "requires": { + "cheerio": "^0.22.0", + "object-assign": "^4.1.1" + }, + "dependencies": { + "cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + } + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" + }, + "dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "requires": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, "tailwindcss": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.1.2.tgz", @@ -26695,6 +27867,12 @@ "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", "dev": true }, + "tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==", + "optional": true + }, "to-arraybuffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", @@ -26814,11 +27992,15 @@ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", "dev": true }, + "traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=" + }, "tslib": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" }, "tty-browserify": { "version": "0.0.0", @@ -26846,7 +28028,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", - "dev": true, "requires": { "function-bind": "^1.1.1", "has-bigints": "^1.0.1", @@ -26854,6 +28035,19 @@ "which-boxed-primitive": "^1.0.2" } }, + "underscore": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.1.tgz", + "integrity": "sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g==" + }, + "underscore-plus": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/underscore-plus/-/underscore-plus-1.7.0.tgz", + "integrity": "sha512-A3BEzkeicFLnr+U/Q3EyWwJAQPbA19mtZZ4h+lLq3ttm9kn8WC4R3YpuJZEXmWdLjYP47Zc8aLZm9kwdv+zzvA==", + "requires": { + "underscore": "^1.9.1" + } + }, "unicode-canonical-property-names-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", @@ -26921,8 +28115,7 @@ "unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", - "dev": true + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" }, "unset-value": { "version": "1.0.0", @@ -26964,6 +28157,30 @@ } } }, + "unzipper": { + "version": "0.10.11", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.11.tgz", + "integrity": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==", + "requires": { + "big-integer": "^1.6.17", + "binary": "~0.3.0", + "bluebird": "~3.4.1", + "buffer-indexof-polyfill": "~1.0.0", + "duplexer2": "~0.1.4", + "fstream": "^1.0.12", + "graceful-fs": "^4.2.2", + "listenercount": "~1.0.1", + "readable-stream": "~2.3.6", + "setimmediate": "~1.0.4" + }, + "dependencies": { + "bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM=" + } + } + }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", @@ -27037,14 +28254,12 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "util.promisify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.2", @@ -27061,8 +28276,7 @@ "uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, "v8-compile-cache": { "version": "2.3.0", @@ -27099,6 +28313,11 @@ "@vue/shared": "3.0.11" } }, + "vue-analytics": { + "version": "5.22.1", + "resolved": "https://registry.npmjs.org/vue-analytics/-/vue-analytics-5.22.1.tgz", + "integrity": "sha512-HPKQMN7gfcUqS5SxoO0VxqLRRSPkG1H1FqglsHccz6BatBatNtm/Vyy8brApktZxNCfnAkrSVDpxg3/FNDeOgQ==" + }, "vue-loader": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.2.0.tgz", @@ -27141,6 +28360,24 @@ } } }, + "vue-unicons": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/vue-unicons/-/vue-unicons-3.2.1.tgz", + "integrity": "sha512-ygl+SuhvUUKwfS+1L+sNXRNj9yeCzj1RwH6qbdJJ2j5TqF1PixiLIypHF7TPkcy/L1mM8uPv5c342QaCLoJt3Q==", + "requires": { + "@iconscout/unicons": "^3.0.6", + "prismjs": "^1.15.0", + "vue": "^2.5.22", + "vue-analytics": "^5.16.2" + }, + "dependencies": { + "vue": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz", + "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==" + } + } + }, "watchpack": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz", @@ -27389,7 +28626,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "requires": { "isexe": "^2.0.0" } @@ -27398,7 +28634,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, "requires": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -27427,8 +28662,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "ws": { "version": "7.4.5", diff --git a/package.json b/package.json index c47f299..b6cdb6f 100644 --- a/package.json +++ b/package.json @@ -15,14 +15,18 @@ "@inertiajs/progress": "^0.2.4", "@tailwindcss/forms": "^0.2.1", "@tailwindcss/typography": "^0.3.0", + "@types/lodash": "^4.14.168", "@vue/compiler-sfc": "^3.0.5", "axios": "^0.21", "laravel-mix": "^6.0.6", - "lodash": "^4.17.19", + "lodash": "^4.17.21", "postcss": "^8.1.14", "postcss-import": "^12.0.1", "tailwindcss": "^2.0.1", "vue": "^3.0.5", "vue-loader": "^16.1.2" + }, + "dependencies": { + "vue-unicons": "^3.2.1" } } diff --git a/public/js/app.js b/public/js/app.js index 3c34515..af479c6 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -16604,6 +16604,95 @@ module.exports = { }; +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/BreadCrumb.vue?vue&type=script&lang=js": +/*!****************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/BreadCrumb.vue?vue&type=script&lang=js ***! + \****************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + props: { + href: String, + text: String + } +}); + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/Paginator.vue?vue&type=script&lang=js": +/*!***************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/Paginator.vue?vue&type=script&lang=js ***! + \***************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + props: { + links: Array + } +}); + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SearchFilter.vue?vue&type=script&lang=js": +/*!******************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SearchFilter.vue?vue&type=script&lang=js ***! + \******************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + components: {}, + props: { + value: String, + maxWidth: { + type: Number, + "default": 300 + } + } +}); + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SimpleTable.vue?vue&type=script&lang=js": +/*!*****************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SimpleTable.vue?vue&type=script&lang=js ***! + \*****************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _Components_Paginator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/Components/Paginator */ "./resources/js/Components/Paginator.vue"); + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + components: { + Paginator: _Components_Paginator__WEBPACK_IMPORTED_MODULE_0__.default + }, + props: { + data: Object, + columns: Array, + title: String + } +}); + /***/ }), /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ActionMessage.vue?vue&type=script&lang=js": @@ -17264,27 +17353,6 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/Welcome.vue?vue&type=script&lang=js": -/*!************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/Welcome.vue?vue&type=script&lang=js ***! - \************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _Jetstream_ApplicationLogo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/Jetstream/ApplicationLogo */ "./resources/js/Jetstream/ApplicationLogo.vue"); - -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ - components: { - JetApplicationLogo: _Jetstream_ApplicationLogo__WEBPACK_IMPORTED_MODULE_0__.default - } -}); - -/***/ }), - /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Layouts/AppLayout.vue?vue&type=script&lang=js": /*!************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Layouts/AppLayout.vue?vue&type=script&lang=js ***! @@ -17890,6 +17958,160 @@ __webpack_require__.r(__webpack_exports__); /***/ }), +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Edit.vue?vue&type=script&lang=js": +/*!**************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Edit.vue?vue&type=script&lang=js ***! + \**************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/Layouts/AppLayout */ "./resources/js/Layouts/AppLayout.vue"); +/* harmony import */ var _Jetstream_Button__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/Jetstream/Button */ "./resources/js/Jetstream/Button.vue"); +/* harmony import */ var _Components_BreadCrumb_vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/Components/BreadCrumb.vue */ "./resources/js/Components/BreadCrumb.vue"); +/* harmony import */ var _Components_SimpleTable_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/Components/SimpleTable.vue */ "./resources/js/Components/SimpleTable.vue"); +/* harmony import */ var _Jetstream_Label_vue__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/Jetstream/Label.vue */ "./resources/js/Jetstream/Label.vue"); +/* harmony import */ var _Jetstream_Input_vue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @/Jetstream/Input.vue */ "./resources/js/Jetstream/Input.vue"); +/* harmony import */ var _Jetstream_ActionMessage__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/Jetstream/ActionMessage */ "./resources/js/Jetstream/ActionMessage.vue"); +/* harmony import */ var _Jetstream_InputError__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @/Jetstream/InputError */ "./resources/js/Jetstream/InputError.vue"); +/* harmony import */ var _Jetstream_FormSection__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @/Jetstream/FormSection */ "./resources/js/Jetstream/FormSection.vue"); + + + + + + + + + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + components: { + JetButton: _Jetstream_Button__WEBPACK_IMPORTED_MODULE_1__.default, + JetFormSection: _Jetstream_FormSection__WEBPACK_IMPORTED_MODULE_8__.default, + AppLayout: _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_0__.default, + BreadCrumb: _Components_BreadCrumb_vue__WEBPACK_IMPORTED_MODULE_2__.default, + SimpleTable: _Components_SimpleTable_vue__WEBPACK_IMPORTED_MODULE_3__.default, + JetLabel: _Jetstream_Label_vue__WEBPACK_IMPORTED_MODULE_4__.default, + JetInput: _Jetstream_Input_vue__WEBPACK_IMPORTED_MODULE_5__.default, + JetInputError: _Jetstream_InputError__WEBPACK_IMPORTED_MODULE_7__.default, + JetActionMessage: _Jetstream_ActionMessage__WEBPACK_IMPORTED_MODULE_6__.default + }, + props: { + contact: Object + }, + data: function data() { + return { + form: this.$inertia.form({ + _method: 'PUT', + firstname: this.contact.firstname, + lastname: this.contact.lastname, + company: this.contact.company, + email: this.contact.email, + phone: this.contact.phone, + address: this.contact.address, + zip: this.contact.zip, + city: this.contact.city, + country: this.contact.country, + notes: this.contact.notes + }), + contractColumns: { + car: 'Auto', + sold_at: 'Verkaufsdatum', + sell_price: 'Verkaufspreis', + insurance_type: 'Versicherungstyp' + } + }; + }, + computed: { + title: function title() { + if (this.form.company) { + return this.form.company; + } + + return this.form.lastname + ' ' + this.form.firstname; + } + }, + methods: { + submitForm: function submitForm() { + this.form.post(route('contacts.update', this.contact), { + preserveScroll: true + }); + } + } +}); + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Index.vue?vue&type=script&lang=js": +/*!***************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Index.vue?vue&type=script&lang=js ***! + \***************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js"); +/* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lodash__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/Layouts/AppLayout */ "./resources/js/Layouts/AppLayout.vue"); +/* harmony import */ var _Components_Paginator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/Components/Paginator */ "./resources/js/Components/Paginator.vue"); +/* harmony import */ var _Components_SearchFilter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/Components/SearchFilter */ "./resources/js/Components/SearchFilter.vue"); +/* harmony import */ var _Jetstream_Button__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/Jetstream/Button */ "./resources/js/Jetstream/Button.vue"); + + + + + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + components: { + Paginator: _Components_Paginator__WEBPACK_IMPORTED_MODULE_2__.default, + SearchFilter: _Components_SearchFilter__WEBPACK_IMPORTED_MODULE_3__.default, + JetButton: _Jetstream_Button__WEBPACK_IMPORTED_MODULE_4__.default, + AppLayout: _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_1__.default + }, + props: { + filters: Object, + contacts: Object + }, + data: function data() { + return { + form: { + search: this.filters.search, + trashed: this.filters.trashed + } + }; + }, + watch: { + form: { + deep: true, + handler: (0,lodash__WEBPACK_IMPORTED_MODULE_0__.throttle)(function () { + this.$inertia.get(this.route('contacts'), (0,lodash__WEBPACK_IMPORTED_MODULE_0__.pickBy)(this.form), { + preserveState: false + }); // this.$refs.search.focus(); + }, 300) + } + }, + methods: { + reset: function reset() { + this.form = (0,lodash__WEBPACK_IMPORTED_MODULE_0__.mapValues)(this.form, function () { + return null; + }); + }, + createContact: function createContact() { + this.$inertia.visit(route('contacts.create'), { + method: 'get' + }); + } + } +}); + +/***/ }), + /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Dashboard.vue?vue&type=script&lang=js": /*!**********************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Dashboard.vue?vue&type=script&lang=js ***! @@ -17902,35 +18124,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/Layouts/AppLayout */ "./resources/js/Layouts/AppLayout.vue"); -/* harmony import */ var _Jetstream_Welcome__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/Jetstream/Welcome */ "./resources/js/Jetstream/Welcome.vue"); - /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ components: { - AppLayout: _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_0__.default, - Welcome: _Jetstream_Welcome__WEBPACK_IMPORTED_MODULE_1__.default - } -}); - -/***/ }), - -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/PrivacyPolicy.vue?vue&type=script&lang=js": -/*!**************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/PrivacyPolicy.vue?vue&type=script&lang=js ***! - \**************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _Jetstream_AuthenticationCardLogo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/Jetstream/AuthenticationCardLogo */ "./resources/js/Jetstream/AuthenticationCardLogo.vue"); - -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ - props: ['policy'], - components: { - JetAuthenticationCardLogo: _Jetstream_AuthenticationCardLogo__WEBPACK_IMPORTED_MODULE_0__.default + AppLayout: _Layouts_AppLayout__WEBPACK_IMPORTED_MODULE_0__.default } }); @@ -18717,47 +18914,231 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/TermsOfService.vue?vue&type=script&lang=js": -/*!***************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/TermsOfService.vue?vue&type=script&lang=js ***! - \***************************************************************************************************************************************************************************************************/ +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/BreadCrumb.vue?vue&type=template&id=df88ba24": +/*!********************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/BreadCrumb.vue?vue&type=template&id=df88ba24 ***! + \********************************************************************************************************************************************************************************************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ "render": () => (/* binding */ render) /* harmony export */ }); -/* harmony import */ var _Jetstream_AuthenticationCardLogo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/Jetstream/AuthenticationCardLogo */ "./resources/js/Jetstream/AuthenticationCardLogo.vue"); +/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ - props: ['terms'], - components: { - JetAuthenticationCardLogo: _Jetstream_AuthenticationCardLogo__WEBPACK_IMPORTED_MODULE_0__.default - } -}); +function render(_ctx, _cache, $props, $setup, $data, $options) { + var _component_inertia_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("inertia-link"); + + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_inertia_link, { + href: $props.href, + "class": "text-indigo-400 hover:text-indigo-600" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)($props.text) + " / ", 1 + /* TEXT */ + )]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["href"]); +} /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=script&lang=js": -/*!********************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=script&lang=js ***! - \********************************************************************************************************************************************************************************************/ +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/Paginator.vue?vue&type=template&id=4d98dc54": +/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/Paginator.vue?vue&type=template&id=4d98dc54 ***! + \*******************************************************************************************************************************************************************************************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ "render": () => (/* binding */ render) /* harmony export */ }); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ - props: { - canLogin: Boolean, - canRegister: Boolean, - laravelVersion: String, - phpVersion: String - } -}); +/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); + +var _hoisted_1 = { + key: 0 +}; +var _hoisted_2 = { + "class": "flex flex-wrap -mb-1" +}; +function render(_ctx, _cache, $props, $setup, $data, $options) { + var _component_inertia_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("inertia-link"); + + return $props.links.length > 3 ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)($props.links, function (link, key) { + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, [link.url === null ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", { + key: key, + "class": "mr-1 mb-1 px-4 py-3 text-sm leading-4 text-gray-400 border rounded", + innerHTML: link.label + }, null, 8 + /* PROPS */ + , ["innerHTML"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), link.url !== null ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_inertia_link, { + key: key, + "class": ["mr-1 mb-1 px-4 py-3 text-sm leading-4 border rounded hover:bg-white focus:border-indigo-500 focus:text-indigo-500", { + 'bg-white': link.active + }], + href: link.url, + innerHTML: link.label + }, null, 8 + /* PROPS */ + , ["class", "href", "innerHTML"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)], 64 + /* STABLE_FRAGMENT */ + ); + }), 256 + /* UNKEYED_FRAGMENT */ + ))])])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true); +} + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SearchFilter.vue?vue&type=template&id=64fefb0b": +/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SearchFilter.vue?vue&type=template&id=64fefb0b ***! + \**********************************************************************************************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* binding */ render) +/* harmony export */ }); +/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); + +var _hoisted_1 = { + "class": "flex items-center" +}; +function render(_ctx, _cache, $props, $setup, $data, $options) { + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("input", { + "class": "border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm block w-full", + autocomplete: "off", + type: "text", + name: "search", + placeholder: "Suchen...", + value: $props.value, + onInput: _cache[1] || (_cache[1] = function ($event) { + return _ctx.$emit('input', $event.target.value); + }) + }, null, 40 + /* PROPS, HYDRATE_EVENTS */ + , ["value"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", { + "class": "ml-3 text-sm text-gray-500 hover:text-gray-700 focus:text-indigo-500", + type: "button", + onClick: _cache[2] || (_cache[2] = function ($event) { + return _ctx.$emit('reset'); + }) + }, "zurücksetzen")]); +} + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SimpleTable.vue?vue&type=template&id=62481b7e": +/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SimpleTable.vue?vue&type=template&id=62481b7e ***! + \*********************************************************************************************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* binding */ render) +/* harmony export */ }); +/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); + +var _hoisted_1 = { + "class": "bg-grey overflow-hidden sm:rounded-lg" +}; +var _hoisted_2 = { + "class": "whitespace-nowrap" +}; +var _hoisted_3 = { + "class": "font-semibold text-xl m-3 text-gray-800 leading-tight" +}; +var _hoisted_4 = { + "class": "bg-white rounded-md shadow overflow-x-auto" +}; +var _hoisted_5 = { + "class": "w-full whitespace-nowrap" +}; +var _hoisted_6 = { + "class": "text-left font-bold" +}; +var _hoisted_7 = { + key: 0 +}; + +var _hoisted_8 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", { + "class": "border-t px-6 py-4", + colspan: "4" +}, "Keine Einträge gefunden", -1 +/* HOISTED */ +); + +function render(_ctx, _cache, $props, $setup, $data, $options) { + var _component_unicon = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("unicon"); + + var _component_inertia_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("inertia-link"); + + var _component_Paginator = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("Paginator"); + + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("h3", _hoisted_3, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)($props.title), 1 + /* TEXT */ + )]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_4, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("table", _hoisted_5, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("tr", _hoisted_6, [((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)($props.columns, function (col) { + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("th", { + key: col.key, + "class": "px-6 pt-4 pb-4" + }, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(col), 1 + /* TEXT */ + ); + }), 128 + /* KEYED_FRAGMENT */ + ))]), ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)($props.data.data, function (index, row) { + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("tr", { + key: row.link, + "class": "hover:bg-gray-100 focus-within:bg-gray-100" + }, [((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)($props.columns, function (val, col) { + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("td", { + key: col, + "class": "border-t" + }, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { + "class": "px-6 py-4 flex items-center focus:text-indigo-500", + href: row.link, + tabindex: "{ '-1': index !== 0 }" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(row[col]) + " ", 1 + /* TEXT */ + ), $props.columns[col] == $props.columns[$props.columns.length - 1] ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_unicon, { + key: 0, + "class": "m-2", + height: "22", + width: "22", + name: "angle-right" + })) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)]; + }), + _: 2 + /* DYNAMIC */ + + }, 1032 + /* PROPS, DYNAMIC_SLOTS */ + , ["href"])]); + }), 128 + /* KEYED_FRAGMENT */ + ))]); + }), 128 + /* KEYED_FRAGMENT */ + )), $props.data.total === 0 ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("tr", _hoisted_7, [_hoisted_8])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_Paginator, { + "class": "mt-6", + links: $props.data.links + }, null, 8 + /* PROPS */ + , ["links"])]); +} /***/ }), @@ -18836,52 +19217,6 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ApplicationLogo.vue?vue&type=template&id=4e07f5d2": -/*!************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ApplicationLogo.vue?vue&type=template&id=4e07f5d2 ***! - \************************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* binding */ render) -/* harmony export */ }); -/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); - -var _hoisted_1 = { - viewBox: "0 0 317 48", - fill: "none", - xmlns: "http://www.w3.org/2000/svg" -}; - -var _hoisted_2 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M74.09 30.04V13h-4.14v21H82.1v-3.96h-8.01zM95.379 19v1.77c-1.08-1.35-2.7-2.19-4.89-2.19-3.99 0-7.29 3.45-7.29 7.92s3.3 7.92 7.29 7.92c2.19 0 3.81-.84 4.89-2.19V34h3.87V19h-3.87zm-4.17 11.73c-2.37 0-4.14-1.71-4.14-4.23 0-2.52 1.77-4.23 4.14-4.23 2.4 0 4.17 1.71 4.17 4.23 0 2.52-1.77 4.23-4.17 4.23zM106.628 21.58V19h-3.87v15h3.87v-7.17c0-3.15 2.55-4.05 4.56-3.81V18.7c-1.89 0-3.78.84-4.56 2.88zM124.295 19v1.77c-1.08-1.35-2.7-2.19-4.89-2.19-3.99 0-7.29 3.45-7.29 7.92s3.3 7.92 7.29 7.92c2.19 0 3.81-.84 4.89-2.19V34h3.87V19h-3.87zm-4.17 11.73c-2.37 0-4.14-1.71-4.14-4.23 0-2.52 1.77-4.23 4.14-4.23 2.4 0 4.17 1.71 4.17 4.23 0 2.52-1.77 4.23-4.17 4.23zM141.544 19l-3.66 10.5-3.63-10.5h-4.26l5.7 15h4.41l5.7-15h-4.26zM150.354 28.09h11.31c.09-.51.15-1.02.15-1.59 0-4.41-3.15-7.92-7.59-7.92-4.71 0-7.92 3.45-7.92 7.92s3.18 7.92 8.22 7.92c2.88 0 5.13-1.17 6.54-3.21l-3.12-1.8c-.66.87-1.86 1.5-3.36 1.5-2.04 0-3.69-.84-4.23-2.82zm-.06-3c.45-1.92 1.86-3.03 3.93-3.03 1.62 0 3.24.87 3.72 3.03h-7.65zM164.516 34h3.87V12.1h-3.87V34zM185.248 34.36c3.69 0 6.9-2.01 6.9-6.3V13h-2.1v15.06c0 3.03-2.07 4.26-4.8 4.26-2.19 0-3.93-.78-4.62-2.61l-1.77 1.05c1.05 2.43 3.57 3.6 6.39 3.6zM203.124 18.64c-4.65 0-7.83 3.45-7.83 7.86 0 4.53 3.24 7.86 7.98 7.86 3.03 0 5.34-1.41 6.6-3.45l-1.74-1.02c-.81 1.44-2.46 2.55-4.83 2.55-3.18 0-5.55-1.89-5.97-4.95h13.17c.03-.3.06-.63.06-.93 0-4.11-2.85-7.92-7.44-7.92zm0 1.92c2.58 0 4.98 1.71 5.4 5.01h-11.19c.39-2.94 2.64-5.01 5.79-5.01zM221.224 20.92V19h-4.32v-4.2l-1.98.6V19h-3.15v1.92h3.15v9.09c0 3.6 2.25 4.59 6.3 3.99v-1.74c-2.91.12-4.32.33-4.32-2.25v-9.09h4.32zM225.176 22.93c0-1.62 1.59-2.37 3.15-2.37 1.44 0 2.97.57 3.6 2.1l1.65-.96c-.87-1.86-2.79-3.06-5.25-3.06-3 0-5.13 1.89-5.13 4.29 0 5.52 8.76 3.39 8.76 7.11 0 1.77-1.68 2.4-3.45 2.4-2.01 0-3.57-.99-4.11-2.52l-1.68.99c.75 1.92 2.79 3.45 5.79 3.45 3.21 0 5.43-1.77 5.43-4.32 0-5.52-8.76-3.39-8.76-7.11zM244.603 20.92V19h-4.32v-4.2l-1.98.6V19h-3.15v1.92h3.15v9.09c0 3.6 2.25 4.59 6.3 3.99v-1.74c-2.91.12-4.32.33-4.32-2.25v-9.09h4.32zM249.883 21.49V19h-1.98v15h1.98v-8.34c0-3.72 2.34-4.98 4.74-4.98v-1.92c-1.92 0-3.69.63-4.74 2.73zM263.358 18.64c-4.65 0-7.83 3.45-7.83 7.86 0 4.53 3.24 7.86 7.98 7.86 3.03 0 5.34-1.41 6.6-3.45l-1.74-1.02c-.81 1.44-2.46 2.55-4.83 2.55-3.18 0-5.55-1.89-5.97-4.95h13.17c.03-.3.06-.63.06-.93 0-4.11-2.85-7.92-7.44-7.92zm0 1.92c2.58 0 4.98 1.71 5.4 5.01h-11.19c.39-2.94 2.64-5.01 5.79-5.01zM286.848 19v2.94c-1.26-2.01-3.39-3.3-6.06-3.3-4.23 0-7.74 3.42-7.74 7.86s3.51 7.86 7.74 7.86c2.67 0 4.8-1.29 6.06-3.3V34h1.98V19h-1.98zm-5.91 13.44c-3.33 0-5.91-2.61-5.91-5.94 0-3.33 2.58-5.94 5.91-5.94s5.91 2.61 5.91 5.94c0 3.33-2.58 5.94-5.91 5.94zM309.01 18.64c-1.92 0-3.75.87-4.86 2.73-.84-1.74-2.46-2.73-4.56-2.73-1.8 0-3.42.72-4.59 2.55V19h-1.98v15H295v-8.31c0-3.72 2.16-5.13 4.32-5.13 2.13 0 3.51 1.41 3.51 4.08V34h1.98v-8.31c0-3.72 1.86-5.13 4.17-5.13 2.13 0 3.66 1.41 3.66 4.08V34h1.98v-9.36c0-3.75-2.31-6-5.61-6z", - fill: "#000" -}, null, -1 -/* HOISTED */ -); - -var _hoisted_3 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M11.395 44.428C4.557 40.198 0 32.632 0 24 0 10.745 10.745 0 24 0a23.891 23.891 0 0113.997 4.502c-.2 17.907-11.097 33.245-26.602 39.926z", - fill: "#6875F5" -}, null, -1 -/* HOISTED */ -); - -var _hoisted_4 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M14.134 45.885A23.914 23.914 0 0024 48c13.255 0 24-10.745 24-24 0-3.516-.756-6.856-2.115-9.866-4.659 15.143-16.608 27.092-31.75 31.751z", - fill: "#6875F5" -}, null, -1 -/* HOISTED */ -); - -function render(_ctx, _cache) { - return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_1, [_hoisted_2, _hoisted_3, _hoisted_4]); -} - -/***/ }), - /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ApplicationMark.vue?vue&type=template&id=6ed2e539": /*!************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ApplicationMark.vue?vue&type=template&id=6ed2e539 ***! @@ -19935,167 +20270,6 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/Welcome.vue?vue&type=template&id=70e39c44": -/*!****************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/Welcome.vue?vue&type=template&id=70e39c44 ***! - \****************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* binding */ render) -/* harmony export */ }); -/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); - -var _hoisted_1 = { - "class": "p-6 sm:px-20 bg-white border-b border-gray-200" -}; - -var _hoisted_2 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-8 text-2xl" -}, " Welcome to your Jetstream application! ", -1 -/* HOISTED */ -); - -var _hoisted_3 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-6 text-gray-500" -}, " Laravel Jetstream provides a beautiful, robust starting point for your next Laravel application. Laravel is designed to help you build your application using a development environment that is simple, powerful, and enjoyable. We believe you should love expressing your creativity through programming, so we have spent time carefully crafting the Laravel ecosystem to be a breath of fresh air. We hope you love it. ", -1 -/* HOISTED */ -); - -var _hoisted_4 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "bg-gray-200 bg-opacity-25 grid grid-cols-1 md:grid-cols-2" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-400" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - 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" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg text-gray-600 leading-7 font-semibold" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs" -}, "Documentation")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-sm text-gray-500" -}, " Laravel has wonderful documentation covering every aspect of the framework. Whether you're new to the framework or have previous experience, we recommend reading all of the documentation from beginning to end. "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-3 flex items-center text-sm font-semibold text-indigo-700" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, "Explore the documentation"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-1 text-indigo-500" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - viewBox: "0 0 20 20", - fill: "currentColor", - "class": "w-4 h-4" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - "fill-rule": "evenodd", - d: "M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z", - "clip-rule": "evenodd" -})])])])])])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6 border-t border-gray-200 md:border-t-0 md:border-l" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-400" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - 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" -}), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M15 13a3 3 0 11-6 0 3 3 0 016 0z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg text-gray-600 leading-7 font-semibold" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laracasts.com" -}, "Laracasts")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-sm text-gray-500" -}, " Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laracasts.com" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-3 flex items-center text-sm font-semibold text-indigo-700" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, "Start watching Laracasts"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-1 text-indigo-500" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - viewBox: "0 0 20 20", - fill: "currentColor", - "class": "w-4 h-4" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - "fill-rule": "evenodd", - d: "M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z", - "clip-rule": "evenodd" -})])])])])])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6 border-t border-gray-200" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-400" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg text-gray-600 leading-7 font-semibold" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://tailwindcss.com/" -}, "Tailwind")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-sm text-gray-500" -}, " Laravel Jetstream is built with Tailwind, an amazing utility first CSS framework that doesn't get in your way. You'll be amazed how easily you can build and maintain fresh, modern designs with this wonderful framework at your fingertips. ")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6 border-t border-gray-200 md:border-l" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-400" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg text-gray-600 leading-7 font-semibold" -}, "Authentication")]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-sm text-gray-500" -}, " Authentication and registration views are included with Laravel Jetstream, as well as support for user email verification and resetting forgotten passwords. So, you're free to get started what matters most: building your application. ")])])], -1 -/* HOISTED */ -); - -function render(_ctx, _cache, $props, $setup, $data, $options) { - var _component_jet_application_logo = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-application-logo"); - - return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_application_logo, { - "class": "block h-12 w-auto" - })]), _hoisted_2, _hoisted_3]), _hoisted_4]); -} - -/***/ }), - /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Layouts/AppLayout.vue?vue&type=template&id=5663af57": /*!****************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Layouts/AppLayout.vue?vue&type=template&id=5663af57 ***! @@ -20134,20 +20308,32 @@ var _hoisted_7 = { var _hoisted_8 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Dashboard "); var _hoisted_9 = { + "class": "hidden space-x-8 sm:-my-px sm:ml-10 sm:flex" +}; + +var _hoisted_10 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Kontakte "); + +var _hoisted_11 = { + "class": "hidden space-x-8 sm:-my-px sm:ml-10 sm:flex" +}; + +var _hoisted_12 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Autos "); + +var _hoisted_13 = { "class": "hidden sm:flex sm:items-center sm:ml-6" }; -var _hoisted_10 = { +var _hoisted_14 = { "class": "ml-3 relative" }; -var _hoisted_11 = { +var _hoisted_15 = { "class": "inline-flex rounded-md" }; -var _hoisted_12 = { +var _hoisted_16 = { type: "button", "class": "inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:bg-gray-50 hover:text-gray-700 focus:outline-none focus:bg-gray-50 active:bg-gray-50 transition" }; -var _hoisted_13 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { +var _hoisted_17 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { "class": "ml-2 -mr-0.5 h-4 w-4", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", @@ -20160,36 +20346,36 @@ var _hoisted_13 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)( /* HOISTED */ ); -var _hoisted_14 = { +var _hoisted_18 = { "class": "w-60" }; -var _hoisted_15 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { +var _hoisted_19 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "block px-4 py-2 text-xs text-gray-400" }, " Manage Team ", -1 /* HOISTED */ ); -var _hoisted_16 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Team Settings "); +var _hoisted_20 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Team Settings "); -var _hoisted_17 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Create New Team "); +var _hoisted_21 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Create New Team "); -var _hoisted_18 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { +var _hoisted_22 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "border-t border-gray-100" }, null, -1 /* HOISTED */ ); -var _hoisted_19 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { +var _hoisted_23 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "block px-4 py-2 text-xs text-gray-400" }, " Switch Teams ", -1 /* HOISTED */ ); -var _hoisted_20 = { +var _hoisted_24 = { "class": "flex items-center" }; -var _hoisted_21 = { +var _hoisted_25 = { key: 0, "class": "mr-2 h-5 w-5 text-green-400", fill: "none", @@ -20200,29 +20386,29 @@ var _hoisted_21 = { viewBox: "0 0 24 24" }; -var _hoisted_22 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { +var _hoisted_26 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { d: "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" }, null, -1 /* HOISTED */ ); -var _hoisted_23 = { +var _hoisted_27 = { "class": "ml-3 relative" }; -var _hoisted_24 = { +var _hoisted_28 = { key: 0, "class": "flex text-sm border-2 border-transparent rounded-full focus:outline-none focus:border-gray-300 transition" }; -var _hoisted_25 = { +var _hoisted_29 = { key: 1, "class": "inline-flex rounded-md" }; -var _hoisted_26 = { +var _hoisted_30 = { type: "button", "class": "inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:text-gray-700 focus:outline-none transition" }; -var _hoisted_27 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { +var _hoisted_31 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { "class": "ml-2 -mr-0.5 h-4 w-4", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", @@ -20235,80 +20421,64 @@ var _hoisted_27 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)( /* HOISTED */ ); -var _hoisted_28 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { +var _hoisted_32 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "block px-4 py-2 text-xs text-gray-400" }, " Manage Account ", -1 /* HOISTED */ ); -var _hoisted_29 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Profile "); +var _hoisted_33 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Profile "); -var _hoisted_30 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" API Tokens "); +var _hoisted_34 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" API Tokens "); -var _hoisted_31 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { +var _hoisted_35 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "border-t border-gray-100" }, null, -1 /* HOISTED */ ); -var _hoisted_32 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Log Out "); +var _hoisted_36 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Log Out "); -var _hoisted_33 = { +var _hoisted_37 = { "class": "-mr-2 flex items-center sm:hidden" }; -var _hoisted_34 = { +var _hoisted_38 = { "class": "h-6 w-6", stroke: "currentColor", fill: "none", viewBox: "0 0 24 24" }; -var _hoisted_35 = { +var _hoisted_39 = { "class": "pt-2 pb-3 space-y-1" }; -var _hoisted_36 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Dashboard "); +var _hoisted_40 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Dashboard "); -var _hoisted_37 = { +var _hoisted_41 = { "class": "pt-4 pb-1 border-t border-gray-200" }; -var _hoisted_38 = { +var _hoisted_42 = { "class": "flex items-center px-4" }; -var _hoisted_39 = { +var _hoisted_43 = { key: 0, "class": "flex-shrink-0 mr-3" }; -var _hoisted_40 = { +var _hoisted_44 = { "class": "font-medium text-base text-gray-800" }; -var _hoisted_41 = { +var _hoisted_45 = { "class": "font-medium text-sm text-gray-500" }; -var _hoisted_42 = { +var _hoisted_46 = { "class": "mt-3 space-y-1" }; -var _hoisted_43 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Profile "); +var _hoisted_47 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Profile "); -var _hoisted_44 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" API Tokens "); +var _hoisted_48 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" API Tokens "); -var _hoisted_45 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Log Out "); - -var _hoisted_46 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "border-t border-gray-200" -}, null, -1 -/* HOISTED */ -); - -var _hoisted_47 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "block px-4 py-2 text-xs text-gray-400" -}, " Manage Team ", -1 -/* HOISTED */ -); - -var _hoisted_48 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Team Settings "); - -var _hoisted_49 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Create New Team "); +var _hoisted_49 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Log Out "); var _hoisted_50 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "border-t border-gray-200" @@ -20318,14 +20488,30 @@ var _hoisted_50 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)( var _hoisted_51 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "block px-4 py-2 text-xs text-gray-400" +}, " Manage Team ", -1 +/* HOISTED */ +); + +var _hoisted_52 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Team Settings "); + +var _hoisted_53 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Create New Team "); + +var _hoisted_54 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { + "class": "border-t border-gray-200" +}, null, -1 +/* HOISTED */ +); + +var _hoisted_55 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { + "class": "block px-4 py-2 text-xs text-gray-400" }, " Switch Teams ", -1 /* HOISTED */ ); -var _hoisted_52 = { +var _hoisted_56 = { "class": "flex items-center" }; -var _hoisted_53 = { +var _hoisted_57 = { key: 0, "class": "mr-2 h-5 w-5 text-green-400", fill: "none", @@ -20336,17 +20522,17 @@ var _hoisted_53 = { viewBox: "0 0 24 24" }; -var _hoisted_54 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { +var _hoisted_58 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { d: "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" }, null, -1 /* HOISTED */ ); -var _hoisted_55 = { +var _hoisted_59 = { key: 0, "class": "bg-white shadow" }; -var _hoisted_56 = { +var _hoisted_60 = { "class": "max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8" }; function render(_ctx, _cache, $props, $setup, $data, $options) { @@ -20356,6 +20542,8 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { var _component_inertia_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("inertia-link"); + var _component_unicon = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("unicon"); + var _component_jet_nav_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-nav-link"); var _component_jet_dropdown_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-dropdown-link"); @@ -20382,31 +20570,70 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { active: _ctx.route().current('dashboard') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_8]; + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_unicon, { + "class": "m-2", + height: "22", + width: "22", + name: "dashboard" + }), _hoisted_8]; }), _: 1 /* STABLE */ }, 8 /* PROPS */ - , ["href", "active"])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_10, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Teams Dropdown "), _ctx.$page.props.jetstream.hasTeamFeatures ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_jet_dropdown, { + , ["href", "active"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_nav_link, { + href: _ctx.route('contacts'), + active: _ctx.route().current('contacts') + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_unicon, { + "class": "m-2", + height: "22", + width: "22", + name: "users-alt" + }), _hoisted_10]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["href", "active"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_11, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_nav_link, { + href: _ctx.route('cars'), + active: _ctx.route().current('cars') + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_unicon, { + "class": "m-2", + height: "22", + width: "22", + name: "car-sideview" + }), _hoisted_12]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["href", "active"])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_13, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_14, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Teams Dropdown "), _ctx.$page.props.jetstream.hasTeamFeatures ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_jet_dropdown, { key: 0, align: "right", width: "60" }, { trigger: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("span", _hoisted_11, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", _hoisted_12, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.current_team.name) + " ", 1 + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("span", _hoisted_15, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", _hoisted_16, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.current_team.name) + " ", 1 /* TEXT */ - ), _hoisted_13])])]; + ), _hoisted_17])])]; }), content: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_14, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Management "), _ctx.$page.props.jetstream.hasTeamFeatures ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_18, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Management "), _ctx.$page.props.jetstream.hasTeamFeatures ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, { key: 0 - }, [_hoisted_15, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Settings "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_dropdown_link, { + }, [_hoisted_19, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Settings "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_dropdown_link, { href: _ctx.route('teams.show', _ctx.$page.props.user.current_team) }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_16]; + return [_hoisted_20]; }), _: 1 /* STABLE */ @@ -20418,14 +20645,14 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { href: _ctx.route('teams.create') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_17]; + return [_hoisted_21]; }), _: 1 /* STABLE */ }, 8 /* PROPS */ - , ["href"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), _hoisted_18, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Switcher "), _hoisted_19, ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)(_ctx.$page.props.user.all_teams, function (team) { + , ["href"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), _hoisted_22, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Switcher "), _hoisted_23, ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)(_ctx.$page.props.user.all_teams, function (team) { return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("form", { key: team.id, onSubmit: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withModifiers)(function ($event) { @@ -20435,7 +20662,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { as: "button" }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_20, [team.id == _ctx.$page.props.user.current_team_id ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_21, [_hoisted_22])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(team.name), 1 + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_24, [team.id == _ctx.$page.props.user.current_team_id ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_25, [_hoisted_26])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(team.name), 1 /* TEXT */ )])]; }), @@ -20456,27 +20683,27 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { _: 1 /* STABLE */ - })) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Settings Dropdown "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_23, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_dropdown, { + })) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Settings Dropdown "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_27, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_dropdown, { align: "right", width: "48" }, { trigger: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_ctx.$page.props.jetstream.managesProfilePhotos ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("button", _hoisted_24, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("img", { + return [_ctx.$page.props.jetstream.managesProfilePhotos ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("button", _hoisted_28, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("img", { "class": "h-8 w-8 rounded-full object-cover", src: _ctx.$page.props.user.profile_photo_url, alt: _ctx.$page.props.user.name }, null, 8 /* PROPS */ - , ["src", "alt"])])) : ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("span", _hoisted_25, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", _hoisted_26, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.name) + " ", 1 + , ["src", "alt"])])) : ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("span", _hoisted_29, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", _hoisted_30, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.name) + " ", 1 /* TEXT */ - ), _hoisted_27])]))]; + ), _hoisted_31])]))]; }), content: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Account Management "), _hoisted_28, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_dropdown_link, { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Account Management "), _hoisted_32, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_dropdown_link, { href: _ctx.route('profile.show') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_29]; + return [_hoisted_33]; }), _: 1 /* STABLE */ @@ -20488,14 +20715,14 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { href: _ctx.route('api-tokens.index') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_30]; + return [_hoisted_34]; }), _: 1 /* STABLE */ }, 8 /* PROPS */ - , ["href"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), _hoisted_31, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Authentication "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("form", { + , ["href"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), _hoisted_35, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Authentication "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("form", { onSubmit: _cache[1] || (_cache[1] = (0,vue__WEBPACK_IMPORTED_MODULE_0__.withModifiers)(function () { return $options.logout && $options.logout.apply($options, arguments); }, ["prevent"])) @@ -20503,7 +20730,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { as: "button" }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_32]; + return [_hoisted_36]; }), _: 1 /* STABLE */ @@ -20515,12 +20742,12 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { _: 1 /* STABLE */ - })])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Hamburger "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_33, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", { + })])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Hamburger "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_37, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("button", { onClick: _cache[2] || (_cache[2] = function ($event) { return $data.showingNavigationDropdown = !$data.showingNavigationDropdown; }), "class": "inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition" - }, [((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_34, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { + }, [((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_38, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { "class": { 'hidden': $data.showingNavigationDropdown, 'inline-flex': !$data.showingNavigationDropdown @@ -20547,34 +20774,34 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { 'block': $data.showingNavigationDropdown, 'hidden': !$data.showingNavigationDropdown }, "sm:hidden"] - }, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_35, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_responsive_nav_link, { + }, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_39, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_responsive_nav_link, { href: _ctx.route('dashboard'), active: _ctx.route().current('dashboard') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_36]; + return [_hoisted_40]; }), _: 1 /* STABLE */ }, 8 /* PROPS */ - , ["href", "active"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Responsive Settings Options "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_37, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_38, [_ctx.$page.props.jetstream.managesProfilePhotos ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_39, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("img", { + , ["href", "active"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Responsive Settings Options "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_41, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_42, [_ctx.$page.props.jetstream.managesProfilePhotos ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_43, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("img", { "class": "h-10 w-10 rounded-full object-cover", src: _ctx.$page.props.user.profile_photo_url, alt: _ctx.$page.props.user.name }, null, 8 /* PROPS */ - , ["src", "alt"])])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_40, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.name), 1 + , ["src", "alt"])])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_44, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.name), 1 /* TEXT */ - ), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_41, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.email), 1 + ), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_45, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(_ctx.$page.props.user.email), 1 /* TEXT */ - )])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_42, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_responsive_nav_link, { + )])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_46, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_responsive_nav_link, { href: _ctx.route('profile.show'), active: _ctx.route().current('profile.show') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_43]; + return [_hoisted_47]; }), _: 1 /* STABLE */ @@ -20587,7 +20814,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { active: _ctx.route().current('api-tokens.index') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_44]; + return [_hoisted_48]; }), _: 1 /* STABLE */ @@ -20603,7 +20830,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { as: "button" }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_45]; + return [_hoisted_49]; }), _: 1 /* STABLE */ @@ -20612,12 +20839,12 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /* HYDRATE_EVENTS */ ), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Management "), _ctx.$page.props.jetstream.hasTeamFeatures ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, { key: 1 - }, [_hoisted_46, _hoisted_47, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Settings "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_responsive_nav_link, { + }, [_hoisted_50, _hoisted_51, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Settings "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_responsive_nav_link, { href: _ctx.route('teams.show', _ctx.$page.props.user.current_team), active: _ctx.route().current('teams.show') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_48]; + return [_hoisted_52]; }), _: 1 /* STABLE */ @@ -20629,14 +20856,14 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { active: _ctx.route().current('teams.create') }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [_hoisted_49]; + return [_hoisted_53]; }), _: 1 /* STABLE */ }, 8 /* PROPS */ - , ["href", "active"]), _hoisted_50, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Switcher "), _hoisted_51, ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)(_ctx.$page.props.user.all_teams, function (team) { + , ["href", "active"]), _hoisted_54, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Team Switcher "), _hoisted_55, ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)(_ctx.$page.props.user.all_teams, function (team) { return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("form", { key: team.id, onSubmit: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withModifiers)(function ($event) { @@ -20646,7 +20873,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { as: "button" }, { "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_52, [team.id == _ctx.$page.props.user.current_team_id ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_53, [_hoisted_54])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(team.name), 1 + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_56, [team.id == _ctx.$page.props.user.current_team_id ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("svg", _hoisted_57, [_hoisted_58])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(team.name), 1 /* TEXT */ )])]; }), @@ -20664,7 +20891,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /* STABLE_FRAGMENT */ )) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)])])], 2 /* CLASS */ - )]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Page Heading "), _ctx.$slots.header ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("header", _hoisted_55, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_56, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.renderSlot)(_ctx.$slots, "header")])])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Page Content "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("main", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.renderSlot)(_ctx.$slots, "default")])])]); + )]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Page Heading "), _ctx.$slots.header ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("header", _hoisted_59, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_60, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.renderSlot)(_ctx.$slots, "header")])])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" Page Content "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("main", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.renderSlot)(_ctx.$slots, "default")])])]); } /***/ }), @@ -22001,6 +22228,609 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /***/ }), +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Edit.vue?vue&type=template&id=1c2aec8d": +/*!******************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Edit.vue?vue&type=template&id=1c2aec8d ***! + \******************************************************************************************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* binding */ render) +/* harmony export */ }); +/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); + +var _hoisted_1 = { + "class": "font-semibold text-xl text-gray-800 leading-tight" +}; +var _hoisted_2 = { + "class": "max-w-7xl mx-auto py-10 sm:px-6 lg:px-8" +}; + +var _hoisted_3 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Kontaktinformationen "); + +var _hoisted_4 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Kontaktinformationen anschauen & anpassen "); + +var _hoisted_5 = { + "class": "col-span-6 sm:col-span-4" +}; +var _hoisted_6 = { + "class": "grid grid-cols-6 gap-6" +}; +var _hoisted_7 = { + "class": "col-span-6 sm:col-span-3" +}; +var _hoisted_8 = { + "class": "col-span-6 sm:col-span-3" +}; +var _hoisted_9 = { + "class": "col-span-6 sm:col-span-4" +}; +var _hoisted_10 = { + "class": "col-span-6 sm:col-span-4" +}; +var _hoisted_11 = { + "class": "col-span-6 sm:col-span-4" +}; +var _hoisted_12 = { + "class": "grid grid-cols-6 gap-6" +}; +var _hoisted_13 = { + "class": "col-span-6 sm:col-span-2" +}; +var _hoisted_14 = { + "class": "col-span-6 sm:col-span-3" +}; +var _hoisted_15 = { + "class": "col-span-6 sm:col-span-1" +}; +var _hoisted_16 = { + "class": "col-span-6 sm:col-span-4" +}; +var _hoisted_17 = { + "class": "grid grid-cols-6 gap-6" +}; +var _hoisted_18 = { + "class": "col-span-6 sm:col-span-3" +}; +var _hoisted_19 = { + "class": "col-span-6 sm:col-span-3" +}; +var _hoisted_20 = { + "class": "col-span-6 sm:col-span-4" +}; + +var _hoisted_21 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Änderungen gespeichert. "); + +var _hoisted_22 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Änderungen speichern "); + +var _hoisted_23 = { + "class": "py-12" +}; +var _hoisted_24 = { + "class": "max-w-7xl mx-auto sm:px-6 lg:px-8" +}; +function render(_ctx, _cache, $props, $setup, $data, $options) { + var _component_bread_crumb = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("bread-crumb"); + + var _component_jet_label = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-label"); + + var _component_jet_input = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-input"); + + var _component_jet_input_error = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-input-error"); + + var _component_jet_action_message = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-action-message"); + + var _component_jet_button = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-button"); + + var _component_jet_form_section = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-form-section"); + + var _component_simple_table = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("simple-table"); + + var _component_app_layout = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("app-layout"); + + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_app_layout, null, { + header: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("h2", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_bread_crumb, { + text: "Kontakte", + href: _ctx.route('contacts') + }, null, 8 + /* PROPS */ + , ["href"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" " + (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)($options.title), 1 + /* TEXT */ + )])]; + }), + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_form_section, { + onSubmitted: $options.submitForm + }, { + title: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [_hoisted_3]; + }), + description: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [_hoisted_4]; + }), + form: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_5, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_6, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_7, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "firstname", + value: "Vorname" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "firstname", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.firstname, + "onUpdate:modelValue": _cache[1] || (_cache[1] = function ($event) { + return $data.form.firstname = $event; + }), + ref: "firstname", + autocomplete: "firstname" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.firstname, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_8, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "lastname", + value: "Nachname" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "lastname", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.lastname, + "onUpdate:modelValue": _cache[2] || (_cache[2] = function ($event) { + return $data.form.lastname = $event; + }), + ref: "lastname", + autocomplete: "lastname" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.lastname, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "company", + value: "Firma" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "company", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.company, + "onUpdate:modelValue": _cache[3] || (_cache[3] = function ($event) { + return $data.form.company = $event; + }), + ref: "company", + autocomplete: "company" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.company, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_10, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "address", + value: "Strasse" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "address", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.address, + "onUpdate:modelValue": _cache[4] || (_cache[4] = function ($event) { + return $data.form.address = $event; + }), + ref: "address", + autocomplete: "address" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.address, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_11, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_12, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_13, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "zip", + value: "PLZ" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "zip", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.zip, + "onUpdate:modelValue": _cache[5] || (_cache[5] = function ($event) { + return $data.form.zip = $event; + }), + ref: "zip", + autocomplete: "zip" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.zip, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_14, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "city", + value: "Ort" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "city", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.city, + "onUpdate:modelValue": _cache[6] || (_cache[6] = function ($event) { + return $data.form.city = $event; + }), + ref: "city", + autocomplete: "city" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.city, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_15, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "country", + value: "Land" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "country", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.country, + "onUpdate:modelValue": _cache[7] || (_cache[7] = function ($event) { + return $data.form.country = $event; + }), + ref: "country", + autocomplete: "country" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.country, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_16, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_17, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_18, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "email", + value: "E-Mail" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "email", + type: "email", + "class": "mt-1 block w-full", + modelValue: $data.form.email, + "onUpdate:modelValue": _cache[8] || (_cache[8] = function ($event) { + return $data.form.email = $event; + }), + ref: "email", + autocomplete: "email" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.email, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_19, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "phone", + value: "Telefon" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input, { + id: "phone", + type: "text", + "class": "mt-1 block w-full", + modelValue: $data.form.phone, + "onUpdate:modelValue": _cache[9] || (_cache[9] = function ($event) { + return $data.form.phone = $event; + }), + ref: "phone", + autocomplete: "phone" + }, null, 8 + /* PROPS */ + , ["modelValue"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.phone, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_20, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_label, { + "for": "notes", + value: "Bemerkungen" + }), (0,vue__WEBPACK_IMPORTED_MODULE_0__.withDirectives)((0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("textarea", { + "class": "mt-1 block w-full border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm", + "onUpdate:modelValue": _cache[10] || (_cache[10] = function ($event) { + return $data.form.notes = $event; + }), + ref: "input" + }, "\n ", 512 + /* NEED_PATCH */ + ), [[vue__WEBPACK_IMPORTED_MODULE_0__.vModelText, $data.form.notes]]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_input_error, { + message: $data.form.errors.notes, + "class": "mt-2" + }, null, 8 + /* PROPS */ + , ["message"])])]; + }), + actions: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_action_message, { + on: $data.form.recentlySuccessful, + "class": "mr-3" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [_hoisted_21]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["on"]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_button, { + "class": { + 'opacity-25': $data.form.processing + }, + disabled: $data.form.processing + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [_hoisted_22]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["class", "disabled"])]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["onSubmitted"])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_23, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_24, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_simple_table, { + title: 'An \'' + $options.title + '\' verkaufte Autos', + data: $props.contact.contracts, + columns: Array.from($data.contractColumns) + }, null, 8 + /* PROPS */ + , ["title", "data", "columns"])])])]; + }), + _: 1 + /* STABLE */ + + }); +} + +/***/ }), + +/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Index.vue?vue&type=template&id=aa2b4242": +/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Index.vue?vue&type=template&id=aa2b4242 ***! + \*******************************************************************************************************************************************************************************************************************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* binding */ render) +/* harmony export */ }); +/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); + + +var _hoisted_1 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("h2", { + "class": "font-semibold text-xl text-gray-800 leading-tight" +}, " Kontakte ", -1 +/* HOISTED */ +); + +var _hoisted_2 = { + "class": "py-12" +}; +var _hoisted_3 = { + "class": "max-w-7xl mx-auto sm:px-6 lg:px-8" +}; +var _hoisted_4 = { + "class": "mb-6 flex justify-between items-center" +}; + +var _hoisted_5 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Kontakt erstellen "); + +var _hoisted_6 = { + "class": "bg-grey overflow-hidden sm:rounded-lg" +}; +var _hoisted_7 = { + "class": "whitespace-nowrap" +}; +var _hoisted_8 = { + "class": "font-semibold text-xl m-3 text-gray-800 leading-tight" +}; +var _hoisted_9 = { + "class": "bg-white rounded-md shadow overflow-x-auto" +}; +var _hoisted_10 = { + "class": "w-full whitespace-nowrap" +}; + +var _hoisted_11 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("tr", { + "class": "text-left font-bold" +}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("th", { + "class": "px-6 pt-4 pb-4" +}, "Name"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("th", { + "class": "px-6 pt-4 pb-4" +}, "Firma"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("th", { + "class": "px-6 pt-4 pb-4" +}, "Ort"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("th", { + "class": "px-6 pt-4 pb-4", + colspan: "2" +}, "Telefon")], -1 +/* HOISTED */ +); + +var _hoisted_12 = { + "class": "border-t" +}; +var _hoisted_13 = { + "class": "border-t" +}; +var _hoisted_14 = { + "class": "border-t" +}; +var _hoisted_15 = { + "class": "border-t" +}; +var _hoisted_16 = { + "class": "border-t w-px" +}; +var _hoisted_17 = { + key: 0 +}; + +var _hoisted_18 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", { + "class": "border-t px-6 py-4", + colspan: "4" +}, "Keine Kontakte gefunden", -1 +/* HOISTED */ +); + +function render(_ctx, _cache, $props, $setup, $data, $options) { + var _component_jet_button = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-button"); + + var _component_inertia_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("inertia-link"); + + var _component_unicon = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("unicon"); + + var _component_Paginator = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("Paginator"); + + var _component_app_layout = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("app-layout"); + + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_app_layout, null, { + header: (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [_hoisted_1]; + }), + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_3, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_4, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)(" "), (0,vue__WEBPACK_IMPORTED_MODULE_0__.withDirectives)((0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("input", { + type: "text", + ref: "search", + "onUpdate:modelValue": _cache[1] || (_cache[1] = function ($event) { + return $data.form.search = $event; + }), + autofocus: "true", + name: "search", + placeholder: "Suchen...", + "class": "border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm block w-full", + autocomplete: "off" + }, null, 512 + /* NEED_PATCH */ + ), [[vue__WEBPACK_IMPORTED_MODULE_0__.vModelText, $data.form.search]]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_button, { + "class": "ml-4", + onClick: $options.createContact + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [_hoisted_5]; + }), + _: 1 + /* STABLE */ + + }, 8 + /* PROPS */ + , ["onClick"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_6, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_7, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("h3", _hoisted_8, (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)($props.contacts.total) + " Kontakte", 1 + /* TEXT */ + )]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("table", _hoisted_10, [_hoisted_11, ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,vue__WEBPACK_IMPORTED_MODULE_0__.renderList)($props.contacts.data, function (contact) { + return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("tr", { + key: contact.id, + "class": "hover:bg-gray-100 focus-within:bg-gray-100" + }, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", _hoisted_12, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { + "class": "px-6 py-4 flex items-center focus:text-indigo-500", + href: _ctx.route('contacts.edit', contact.id) + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(contact.name), 1 + /* TEXT */ + )]; + }), + _: 2 + /* DYNAMIC */ + + }, 1032 + /* PROPS, DYNAMIC_SLOTS */ + , ["href"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", _hoisted_13, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { + "class": "px-6 py-4 flex items-center", + href: _ctx.route('contacts.edit', contact.id), + tabindex: "-1" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(contact.company), 1 + /* TEXT */ + )]; + }), + _: 2 + /* DYNAMIC */ + + }, 1032 + /* PROPS, DYNAMIC_SLOTS */ + , ["href"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", _hoisted_14, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { + "class": "px-6 py-4 flex items-center", + href: _ctx.route('contacts.edit', contact.id), + tabindex: "-1" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(contact.fullCity), 1 + /* TEXT */ + )]; + }), + _: 2 + /* DYNAMIC */ + + }, 1032 + /* PROPS, DYNAMIC_SLOTS */ + , ["href"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", _hoisted_15, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { + "class": "px-6 py-4 flex items-center", + href: _ctx.route('contacts.edit', contact.id), + tabindex: "-1" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)((0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)(contact.phone), 1 + /* TEXT */ + )]; + }), + _: 2 + /* DYNAMIC */ + + }, 1032 + /* PROPS, DYNAMIC_SLOTS */ + , ["href"])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("td", _hoisted_16, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { + "class": "px-4 flex items-center", + href: _ctx.route('contacts.edit', contact.id), + tabindex: "-1" + }, { + "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { + return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_unicon, { + "class": "m-2", + height: "22", + width: "22", + name: "angle-right" + })]; + }), + _: 2 + /* DYNAMIC */ + + }, 1032 + /* PROPS, DYNAMIC_SLOTS */ + , ["href"])])]); + }), 128 + /* KEYED_FRAGMENT */ + )), $props.contacts.length === 0 ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("tr", _hoisted_17, [_hoisted_18])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)])])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_Paginator, { + "class": "mt-6", + links: $props.contacts.links + }, null, 8 + /* PROPS */ + , ["links"])])])]; + }), + _: 1 + /* STABLE */ + + }); +} + +/***/ }), + /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Dashboard.vue?vue&type=template&id=097ba13b": /*!**************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Dashboard.vue?vue&type=template&id=097ba13b ***! @@ -22021,18 +22851,19 @@ var _hoisted_1 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(" /* HOISTED */ ); -var _hoisted_2 = { +var _hoisted_2 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "py-12" -}; -var _hoisted_3 = { +}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "max-w-7xl mx-auto sm:px-6 lg:px-8" -}; -var _hoisted_4 = { +}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { "class": "bg-white overflow-hidden shadow-xl sm:rounded-lg" -}; -function render(_ctx, _cache, $props, $setup, $data, $options) { - var _component_welcome = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("welcome"); +}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("p", { + "class": "font-semibold text-xl mt-3 ml-3 mb-3 text-gray-800 leading-tight" +}, "hallo")])])], -1 +/* HOISTED */ +); +function render(_ctx, _cache, $props, $setup, $data, $options) { var _component_app_layout = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("app-layout"); return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_app_layout, null, { @@ -22040,7 +22871,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { return [_hoisted_1]; }), "default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () { - return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_3, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_4, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_welcome)])])])]; + return [_hoisted_2]; }), _: 1 /* STABLE */ @@ -22050,41 +22881,6 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/PrivacyPolicy.vue?vue&type=template&id=41527301": -/*!******************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/PrivacyPolicy.vue?vue&type=template&id=41527301 ***! - \******************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* binding */ render) -/* harmony export */ }); -/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); - -var _hoisted_1 = { - "class": "font-sans text-gray-900 antialiased" -}; -var _hoisted_2 = { - "class": "pt-4 bg-gray-100" -}; -var _hoisted_3 = { - "class": "min-h-screen flex flex-col items-center pt-6 sm:pt-0" -}; -function render(_ctx, _cache, $props, $setup, $data, $options) { - var _component_jet_authentication_card_logo = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-authentication-card-logo"); - - return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_3, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_authentication_card_logo)]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - innerHTML: $props.policy, - "class": "w-full sm:max-w-2xl mt-6 p-6 bg-white shadow-md overflow-hidden sm:rounded-lg prose" - }, null, 8 - /* PROPS */ - , ["innerHTML"])])])]); -} - -/***/ }), - /***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Profile/DeleteUserForm.vue?vue&type=template&id=4ed1f029": /*!***************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Profile/DeleteUserForm.vue?vue&type=template&id=4ed1f029 ***! @@ -24169,316 +24965,6 @@ function render(_ctx, _cache, $props, $setup, $data, $options) { /***/ }), -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/TermsOfService.vue?vue&type=template&id=63d45180": -/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/TermsOfService.vue?vue&type=template&id=63d45180 ***! - \*******************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* binding */ render) -/* harmony export */ }); -/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); - -var _hoisted_1 = { - "class": "font-sans text-gray-900 antialiased" -}; -var _hoisted_2 = { - "class": "pt-4 bg-gray-100" -}; -var _hoisted_3 = { - "class": "min-h-screen flex flex-col items-center pt-6 sm:pt-0" -}; -function render(_ctx, _cache, $props, $setup, $data, $options) { - var _component_jet_authentication_card_logo = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("jet-authentication-card-logo"); - - return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_3, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", null, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_jet_authentication_card_logo)]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - innerHTML: $props.terms, - "class": "w-full sm:max-w-2xl mt-6 p-6 bg-white shadow-md overflow-hidden sm:rounded-lg prose" - }, null, 8 - /* PROPS */ - , ["innerHTML"])])])]); -} - -/***/ }), - -/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=template&id=317d1a6e&scoped=true": -/*!************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=template&id=317d1a6e&scoped=true ***! - \************************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* binding */ render) -/* harmony export */ }); -/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); - - -var _withId = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.withScopeId)("data-v-317d1a6e"); - -(0,vue__WEBPACK_IMPORTED_MODULE_0__.pushScopeId)("data-v-317d1a6e"); - -var _hoisted_1 = { - "class": "relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center sm:pt-0" -}; -var _hoisted_2 = { - key: 0, - "class": "hidden fixed top-0 right-0 px-6 py-4 sm:block" -}; - -var _hoisted_3 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Dashboard "); - -var _hoisted_4 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Log in "); - -var _hoisted_5 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Register "); - -var _hoisted_6 = { - "class": "max-w-6xl mx-auto sm:px-6 lg:px-8" -}; - -var _hoisted_7 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex justify-center pt-8 sm:justify-start sm:pt-0" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - viewBox: "0 0 651 192", - fill: "none", - xmlns: "http://www.w3.org/2000/svg", - "class": "h-16 w-auto text-gray-700 sm:h-20" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("g", { - "clip-path": "url(#clip0)", - fill: "#EF3B2D" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M248.032 44.676h-16.466v100.23h47.394v-14.748h-30.928V44.676zM337.091 87.202c-2.101-3.341-5.083-5.965-8.949-7.875-3.865-1.909-7.756-2.864-11.669-2.864-5.062 0-9.69.931-13.89 2.792-4.201 1.861-7.804 4.417-10.811 7.661-3.007 3.246-5.347 6.993-7.016 11.239-1.672 4.249-2.506 8.713-2.506 13.389 0 4.774.834 9.26 2.506 13.459 1.669 4.202 4.009 7.925 7.016 11.169 3.007 3.246 6.609 5.799 10.811 7.66 4.199 1.861 8.828 2.792 13.89 2.792 3.913 0 7.804-.955 11.669-2.863 3.866-1.908 6.849-4.533 8.949-7.875v9.021h15.607V78.182h-15.607v9.02zm-1.431 32.503c-.955 2.578-2.291 4.821-4.009 6.73-1.719 1.91-3.795 3.437-6.229 4.582-2.435 1.146-5.133 1.718-8.091 1.718-2.96 0-5.633-.572-8.019-1.718-2.387-1.146-4.438-2.672-6.156-4.582-1.719-1.909-3.032-4.152-3.938-6.73-.909-2.577-1.36-5.298-1.36-8.161 0-2.864.451-5.585 1.36-8.162.905-2.577 2.219-4.819 3.938-6.729 1.718-1.908 3.77-3.437 6.156-4.582 2.386-1.146 5.059-1.718 8.019-1.718 2.958 0 5.656.572 8.091 1.718 2.434 1.146 4.51 2.674 6.229 4.582 1.718 1.91 3.054 4.152 4.009 6.729.953 2.577 1.432 5.298 1.432 8.162-.001 2.863-.479 5.584-1.432 8.161zM463.954 87.202c-2.101-3.341-5.083-5.965-8.949-7.875-3.865-1.909-7.756-2.864-11.669-2.864-5.062 0-9.69.931-13.89 2.792-4.201 1.861-7.804 4.417-10.811 7.661-3.007 3.246-5.347 6.993-7.016 11.239-1.672 4.249-2.506 8.713-2.506 13.389 0 4.774.834 9.26 2.506 13.459 1.669 4.202 4.009 7.925 7.016 11.169 3.007 3.246 6.609 5.799 10.811 7.66 4.199 1.861 8.828 2.792 13.89 2.792 3.913 0 7.804-.955 11.669-2.863 3.866-1.908 6.849-4.533 8.949-7.875v9.021h15.607V78.182h-15.607v9.02zm-1.432 32.503c-.955 2.578-2.291 4.821-4.009 6.73-1.719 1.91-3.795 3.437-6.229 4.582-2.435 1.146-5.133 1.718-8.091 1.718-2.96 0-5.633-.572-8.019-1.718-2.387-1.146-4.438-2.672-6.156-4.582-1.719-1.909-3.032-4.152-3.938-6.73-.909-2.577-1.36-5.298-1.36-8.161 0-2.864.451-5.585 1.36-8.162.905-2.577 2.219-4.819 3.938-6.729 1.718-1.908 3.77-3.437 6.156-4.582 2.386-1.146 5.059-1.718 8.019-1.718 2.958 0 5.656.572 8.091 1.718 2.434 1.146 4.51 2.674 6.229 4.582 1.718 1.91 3.054 4.152 4.009 6.729.953 2.577 1.432 5.298 1.432 8.162 0 2.863-.479 5.584-1.432 8.161zM650.772 44.676h-15.606v100.23h15.606V44.676zM365.013 144.906h15.607V93.538h26.776V78.182h-42.383v66.724zM542.133 78.182l-19.616 51.096-19.616-51.096h-15.808l25.617 66.724h19.614l25.617-66.724h-15.808zM591.98 76.466c-19.112 0-34.239 15.706-34.239 35.079 0 21.416 14.641 35.079 36.239 35.079 12.088 0 19.806-4.622 29.234-14.688l-10.544-8.158c-.006.008-7.958 10.449-19.832 10.449-13.802 0-19.612-11.127-19.612-16.884h51.777c2.72-22.043-11.772-40.877-33.023-40.877zm-18.713 29.28c.12-1.284 1.917-16.884 18.589-16.884 16.671 0 18.697 15.598 18.813 16.884h-37.402zM184.068 43.892c-.024-.088-.073-.165-.104-.25-.058-.157-.108-.316-.191-.46-.056-.097-.137-.176-.203-.265-.087-.117-.161-.242-.265-.345-.085-.086-.194-.148-.29-.223-.109-.085-.206-.182-.327-.252l-.002-.001-.002-.002-35.648-20.524a2.971 2.971 0 00-2.964 0l-35.647 20.522-.002.002-.002.001c-.121.07-.219.167-.327.252-.096.075-.205.138-.29.223-.103.103-.178.228-.265.345-.066.089-.147.169-.203.265-.083.144-.133.304-.191.46-.031.085-.08.162-.104.25-.067.249-.103.51-.103.776v38.979l-29.706 17.103V24.493a3 3 0 00-.103-.776c-.024-.088-.073-.165-.104-.25-.058-.157-.108-.316-.191-.46-.056-.097-.137-.176-.203-.265-.087-.117-.161-.242-.265-.345-.085-.086-.194-.148-.29-.223-.109-.085-.206-.182-.327-.252l-.002-.001-.002-.002L40.098 1.396a2.971 2.971 0 00-2.964 0L1.487 21.919l-.002.002-.002.001c-.121.07-.219.167-.327.252-.096.075-.205.138-.29.223-.103.103-.178.228-.265.345-.066.089-.147.169-.203.265-.083.144-.133.304-.191.46-.031.085-.08.162-.104.25-.067.249-.103.51-.103.776v122.09c0 1.063.568 2.044 1.489 2.575l71.293 41.045c.156.089.324.143.49.202.078.028.15.074.23.095a2.98 2.98 0 001.524 0c.069-.018.132-.059.2-.083.176-.061.354-.119.519-.214l71.293-41.045a2.971 2.971 0 001.489-2.575v-38.979l34.158-19.666a2.971 2.971 0 001.489-2.575V44.666a3.075 3.075 0 00-.106-.774zM74.255 143.167l-29.648-16.779 31.136-17.926.001-.001 34.164-19.669 29.674 17.084-21.772 12.428-43.555 24.863zm68.329-76.259v33.841l-12.475-7.182-17.231-9.92V49.806l12.475 7.182 17.231 9.92zm2.97-39.335l29.693 17.095-29.693 17.095-29.693-17.095 29.693-17.095zM54.06 114.089l-12.475 7.182V46.733l17.231-9.92 12.475-7.182v74.537l-17.231 9.921zM38.614 7.398l29.693 17.095-29.693 17.095L8.921 24.493 38.614 7.398zM5.938 29.632l12.475 7.182 17.231 9.92v79.676l.001.005-.001.006c0 .114.032.221.045.333.017.146.021.294.059.434l.002.007c.032.117.094.222.14.334.051.124.088.255.156.371a.036.036 0 00.004.009c.061.105.149.191.222.288.081.105.149.22.244.314l.008.01c.084.083.19.142.284.215.106.083.202.178.32.247l.013.005.011.008 34.139 19.321v34.175L5.939 144.867V29.632h-.001zm136.646 115.235l-65.352 37.625V148.31l48.399-27.628 16.953-9.677v33.862zm35.646-61.22l-29.706 17.102V66.908l17.231-9.92 12.475-7.182v33.841z" -})])])], -1 -/* HOISTED */ -); - -var _hoisted_8 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "grid grid-cols-1 md:grid-cols-2" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-500" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - 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" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg leading-7 font-semibold" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs", - "class": "underline text-gray-900 dark:text-white" -}, "Documentation")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-gray-600 dark:text-gray-400 text-sm" -}, " Laravel has wonderful, thorough documentation covering every aspect of the framework. Whether you are new to the framework or have previous experience with Laravel, we recommend reading all of the documentation from beginning to end. ")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6 border-t border-gray-200 dark:border-gray-700 md:border-t-0 md:border-l" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-500" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - 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" -}), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M15 13a3 3 0 11-6 0 3 3 0 016 0z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg leading-7 font-semibold" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laracasts.com", - "class": "underline text-gray-900 dark:text-white" -}, "Laracasts")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-gray-600 dark:text-gray-400 text-sm" -}, " Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. ")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6 border-t border-gray-200 dark:border-gray-700" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-500" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - 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" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg leading-7 font-semibold" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel-news.com/", - "class": "underline text-gray-900 dark:text-white" -}, "Laravel News")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-gray-600 dark:text-gray-400 text-sm" -}, " Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials. ")])]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "p-6 border-t border-gray-200 dark:border-gray-700 md:border-l" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "w-8 h-8 text-gray-500" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-4 text-lg leading-7 font-semibold text-gray-900 dark:text-white" -}, "Vibrant Ecosystem")]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "ml-12" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "mt-2 text-gray-600 dark:text-gray-400 text-sm" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" Laravel's robust library of first-party tools and libraries, such as "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://forge.laravel.com", - "class": "underline" -}, "Forge"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://vapor.laravel.com", - "class": "underline" -}, "Vapor"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://nova.laravel.com", - "class": "underline" -}, "Nova"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", and "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://envoyer.io", - "class": "underline" -}, "Envoyer"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(" help you take your projects to the next level. Pair them with powerful open source libraries like "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs/billing", - "class": "underline" -}, "Cashier"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs/dusk", - "class": "underline" -}, "Dusk"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs/broadcasting", - "class": "underline" -}, "Echo"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs/horizon", - "class": "underline" -}, "Horizon"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs/sanctum", - "class": "underline" -}, "Sanctum"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.com/docs/telescope", - "class": "underline" -}, "Telescope"), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createTextVNode)(", and more. ")])])])])], -1 -/* HOISTED */ -); - -var _hoisted_9 = { - "class": "flex justify-center mt-4 sm:items-center sm:justify-between" -}; - -var _hoisted_10 = /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "text-center text-sm text-gray-500 sm:text-left" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", { - "class": "flex items-center" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - stroke: "currentColor", - "class": "-mt-px w-5 h-5 text-gray-400" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://laravel.bigcartel.com", - "class": "ml-1 underline" -}, " Shop "), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("svg", { - fill: "none", - stroke: "currentColor", - "stroke-linecap": "round", - "stroke-linejoin": "round", - "stroke-width": "2", - viewBox: "0 0 24 24", - "class": "ml-4 -mt-px w-5 h-5 text-gray-400" -}, [/*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("path", { - d: "M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" -})]), /*#__PURE__*/(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("a", { - href: "https://github.com/sponsors/taylorotwell", - "class": "ml-1 underline" -}, " Sponsor ")])], -1 -/* HOISTED */ -); - -var _hoisted_11 = { - "class": "ml-4 text-center text-sm text-gray-500 sm:text-right sm:ml-0" -}; - -(0,vue__WEBPACK_IMPORTED_MODULE_0__.popScopeId)(); - -var render = /*#__PURE__*/_withId(function (_ctx, _cache, $props, $setup, $data, $options) { - var _component_inertia_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("inertia-link"); - - return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_1, [$props.canLogin ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)("div", _hoisted_2, [_ctx.$page.props.user ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_inertia_link, { - key: 0, - href: "/dashboard", - "class": "text-sm text-gray-700 underline" - }, { - "default": _withId(function () { - return [_hoisted_3]; - }), - _: 1 - /* STABLE */ - - })) : ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(vue__WEBPACK_IMPORTED_MODULE_0__.Fragment, { - key: 1 - }, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_inertia_link, { - href: _ctx.route('login'), - "class": "text-sm text-gray-700 underline" - }, { - "default": _withId(function () { - return [_hoisted_4]; - }), - _: 1 - /* STABLE */ - - }, 8 - /* PROPS */ - , ["href"]), $props.canRegister ? ((0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createBlock)(_component_inertia_link, { - key: 0, - href: _ctx.route('register'), - "class": "ml-4 text-sm text-gray-700 underline" - }, { - "default": _withId(function () { - return [_hoisted_5]; - }), - _: 1 - /* STABLE */ - - }, 8 - /* PROPS */ - , ["href"])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true)], 64 - /* STABLE_FRAGMENT */ - ))])) : (0,vue__WEBPACK_IMPORTED_MODULE_0__.createCommentVNode)("v-if", true), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_6, [_hoisted_7, _hoisted_8, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_9, [_hoisted_10, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)("div", _hoisted_11, " Laravel v" + (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)($props.laravelVersion) + " (PHP v" + (0,vue__WEBPACK_IMPORTED_MODULE_0__.toDisplayString)($props.phpVersion) + ") ", 1 - /* TEXT */ - )])])]); -}); - -/***/ }), - /***/ "./resources/js/app.js": /*!*****************************!*\ !*** ./resources/js/app.js ***! @@ -24490,12 +24976,17 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.esm-bundler.js"); /* harmony import */ var _inertiajs_inertia_vue3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @inertiajs/inertia-vue3 */ "./node_modules/@inertiajs/inertia-vue3/dist/index.js"); /* harmony import */ var _inertiajs_progress__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @inertiajs/progress */ "./node_modules/@inertiajs/progress/dist/index.js"); +/* harmony import */ var vue_unicons__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vue-unicons */ "./node_modules/vue-unicons/dist/vue-unicons.es.js"); +/* harmony import */ var vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vue-unicons/dist/icons */ "./node_modules/vue-unicons/dist/icons.js"); __webpack_require__(/*! ./bootstrap */ "./resources/js/bootstrap.js"); // Import modules... + + +vue_unicons__WEBPACK_IMPORTED_MODULE_3__.default.add([vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniUsersAlt, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniCarSideview, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniDashboard, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniSearch, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniFilter, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniFilterSlash, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniTrashAlt, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniPen, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniExclamationTriangle, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniMapMarker, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniPhone, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniEnvelope, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniFileDownload, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniArrowDown, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniArrowUp, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniAngleRight, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniAngleUp, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniAngleDown, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniAngleLeft, vue_unicons_dist_icons__WEBPACK_IMPORTED_MODULE_4__.uniFileUploadAlt]); var el = document.getElementById('app'); (0,vue__WEBPACK_IMPORTED_MODULE_0__.createApp)({ render: function render() { @@ -24510,7 +25001,11 @@ var el = document.getElementById('app'); methods: { route: route } -}).use(_inertiajs_inertia_vue3__WEBPACK_IMPORTED_MODULE_1__.plugin).mount(el); +}).use(_inertiajs_inertia_vue3__WEBPACK_IMPORTED_MODULE_1__.plugin).use(vue_unicons__WEBPACK_IMPORTED_MODULE_3__.default, { + fill: '#4B5563', + height: 32, + width: 32 +}).mount(el); _inertiajs_progress__WEBPACK_IMPORTED_MODULE_2__.InertiaProgress.init({ color: '#4B5563' }); @@ -24630,106 +25125,6 @@ if ($defineProperty) { } -/***/ }), - -/***/ "./node_modules/css-loader/dist/cjs.js??clonedRuleSet-9.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-9.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css": -/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-9.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-9.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css ***! - \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js"); -/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__); -// Imports - -var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]}); -// Module -___CSS_LOADER_EXPORT___.push([module.id, "\n.bg-gray-100[data-v-317d1a6e] {\n background-color: #f7fafc;\n background-color: rgba(247, 250, 252, var(--tw-bg-opacity));\n}\n.border-gray-200[data-v-317d1a6e] {\n border-color: #edf2f7;\n border-color: rgba(237, 242, 247, var(--tw-border-opacity));\n}\n.text-gray-400[data-v-317d1a6e] {\n color: #cbd5e0;\n color: rgba(203, 213, 224, var(--tw-text-opacity));\n}\n.text-gray-500[data-v-317d1a6e] {\n color: #a0aec0;\n color: rgba(160, 174, 192, var(--tw-text-opacity));\n}\n.text-gray-600[data-v-317d1a6e] {\n color: #718096;\n color: rgba(113, 128, 150, var(--tw-text-opacity));\n}\n.text-gray-700[data-v-317d1a6e] {\n color: #4a5568;\n color: rgba(74, 85, 104, var(--tw-text-opacity));\n}\n.text-gray-900[data-v-317d1a6e] {\n color: #1a202c;\n color: rgba(26, 32, 44, var(--tw-text-opacity));\n}\n@media (prefers-color-scheme: dark) {\n.dark\\:bg-gray-800[data-v-317d1a6e] {\n background-color: #2d3748;\n background-color: rgba(45, 55, 72, var(--tw-bg-opacity));\n}\n.dark\\:bg-gray-900[data-v-317d1a6e] {\n background-color: #1a202c;\n background-color: rgba(26, 32, 44, var(--tw-bg-opacity));\n}\n.dark\\:border-gray-700[data-v-317d1a6e] {\n border-color: #4a5568;\n border-color: rgba(74, 85, 104, var(--tw-border-opacity));\n}\n.dark\\:text-white[data-v-317d1a6e] {\n color: #fff;\n color: rgba(255, 255, 255, var(--tw-text-opacity));\n}\n.dark\\:text-gray-400[data-v-317d1a6e] {\n color: #cbd5e0;\n color: rgba(203, 213, 224, var(--tw-text-opacity));\n}\n}\n", ""]); -// Exports -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___); - - -/***/ }), - -/***/ "./node_modules/css-loader/dist/runtime/api.js": -/*!*****************************************************!*\ - !*** ./node_modules/css-loader/dist/runtime/api.js ***! - \*****************************************************/ -/***/ ((module) => { - -"use strict"; - - -/* - MIT License http://www.opensource.org/licenses/mit-license.php - Author Tobias Koppers @sokra -*/ -// css base code, injected by the css-loader -// eslint-disable-next-line func-names -module.exports = function (cssWithMappingToString) { - var list = []; // return the list of modules as css string - - list.toString = function toString() { - return this.map(function (item) { - var content = cssWithMappingToString(item); - - if (item[2]) { - return "@media ".concat(item[2], " {").concat(content, "}"); - } - - return content; - }).join(""); - }; // import a list of modules into the list - // eslint-disable-next-line func-names - - - list.i = function (modules, mediaQuery, dedupe) { - if (typeof modules === "string") { - // eslint-disable-next-line no-param-reassign - modules = [[null, modules, ""]]; - } - - var alreadyImportedModules = {}; - - if (dedupe) { - for (var i = 0; i < this.length; i++) { - // eslint-disable-next-line prefer-destructuring - var id = this[i][0]; - - if (id != null) { - alreadyImportedModules[id] = true; - } - } - } - - for (var _i = 0; _i < modules.length; _i++) { - var item = [].concat(modules[_i]); - - if (dedupe && alreadyImportedModules[item[0]]) { - // eslint-disable-next-line no-continue - continue; - } - - if (mediaQuery) { - if (!item[2]) { - item[2] = mediaQuery; - } else { - item[2] = "".concat(mediaQuery, " and ").concat(item[2]); - } - } - - list.push(item); - } - }; - - return list; -}; - /***/ }), /***/ "./node_modules/deepmerge/dist/cjs.js": @@ -46557,6 +46952,110 @@ module.exports = function getSideChannel() { }; +/***/ }), + +/***/ "./resources/js/Components/BreadCrumb.vue": +/*!************************************************!*\ + !*** ./resources/js/Components/BreadCrumb.vue ***! + \************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _BreadCrumb_vue_vue_type_template_id_df88ba24__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BreadCrumb.vue?vue&type=template&id=df88ba24 */ "./resources/js/Components/BreadCrumb.vue?vue&type=template&id=df88ba24"); +/* harmony import */ var _BreadCrumb_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BreadCrumb.vue?vue&type=script&lang=js */ "./resources/js/Components/BreadCrumb.vue?vue&type=script&lang=js"); + + + +_BreadCrumb_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _BreadCrumb_vue_vue_type_template_id_df88ba24__WEBPACK_IMPORTED_MODULE_0__.render +/* hot reload */ +if (false) {} + +_BreadCrumb_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Components/BreadCrumb.vue" + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_BreadCrumb_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); + +/***/ }), + +/***/ "./resources/js/Components/Paginator.vue": +/*!***********************************************!*\ + !*** ./resources/js/Components/Paginator.vue ***! + \***********************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _Paginator_vue_vue_type_template_id_4d98dc54__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Paginator.vue?vue&type=template&id=4d98dc54 */ "./resources/js/Components/Paginator.vue?vue&type=template&id=4d98dc54"); +/* harmony import */ var _Paginator_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Paginator.vue?vue&type=script&lang=js */ "./resources/js/Components/Paginator.vue?vue&type=script&lang=js"); + + + +_Paginator_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _Paginator_vue_vue_type_template_id_4d98dc54__WEBPACK_IMPORTED_MODULE_0__.render +/* hot reload */ +if (false) {} + +_Paginator_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Components/Paginator.vue" + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_Paginator_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); + +/***/ }), + +/***/ "./resources/js/Components/SearchFilter.vue": +/*!**************************************************!*\ + !*** ./resources/js/Components/SearchFilter.vue ***! + \**************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _SearchFilter_vue_vue_type_template_id_64fefb0b__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SearchFilter.vue?vue&type=template&id=64fefb0b */ "./resources/js/Components/SearchFilter.vue?vue&type=template&id=64fefb0b"); +/* harmony import */ var _SearchFilter_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./SearchFilter.vue?vue&type=script&lang=js */ "./resources/js/Components/SearchFilter.vue?vue&type=script&lang=js"); + + + +_SearchFilter_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _SearchFilter_vue_vue_type_template_id_64fefb0b__WEBPACK_IMPORTED_MODULE_0__.render +/* hot reload */ +if (false) {} + +_SearchFilter_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Components/SearchFilter.vue" + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_SearchFilter_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); + +/***/ }), + +/***/ "./resources/js/Components/SimpleTable.vue": +/*!*************************************************!*\ + !*** ./resources/js/Components/SimpleTable.vue ***! + \*************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _SimpleTable_vue_vue_type_template_id_62481b7e__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SimpleTable.vue?vue&type=template&id=62481b7e */ "./resources/js/Components/SimpleTable.vue?vue&type=template&id=62481b7e"); +/* harmony import */ var _SimpleTable_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./SimpleTable.vue?vue&type=script&lang=js */ "./resources/js/Components/SimpleTable.vue?vue&type=script&lang=js"); + + + +_SimpleTable_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _SimpleTable_vue_vue_type_template_id_62481b7e__WEBPACK_IMPORTED_MODULE_0__.render +/* hot reload */ +if (false) {} + +_SimpleTable_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Components/SimpleTable.vue" + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_SimpleTable_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); + /***/ }), /***/ "./resources/js/Jetstream/ActionMessage.vue": @@ -46611,30 +47110,6 @@ _ActionSection_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default. /***/ }), -/***/ "./resources/js/Jetstream/ApplicationLogo.vue": -/*!****************************************************!*\ - !*** ./resources/js/Jetstream/ApplicationLogo.vue ***! - \****************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _ApplicationLogo_vue_vue_type_template_id_4e07f5d2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ApplicationLogo.vue?vue&type=template&id=4e07f5d2 */ "./resources/js/Jetstream/ApplicationLogo.vue?vue&type=template&id=4e07f5d2"); - -const script = {} -script.render = _ApplicationLogo_vue_vue_type_template_id_4e07f5d2__WEBPACK_IMPORTED_MODULE_0__.render -/* hot reload */ -if (false) {} - -script.__file = "resources/js/Jetstream/ApplicationLogo.vue" - -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (script); - -/***/ }), - /***/ "./resources/js/Jetstream/ApplicationMark.vue": /*!****************************************************!*\ !*** ./resources/js/Jetstream/ApplicationMark.vue ***! @@ -47223,32 +47698,6 @@ _ValidationErrors_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.defau /***/ }), -/***/ "./resources/js/Jetstream/Welcome.vue": -/*!********************************************!*\ - !*** ./resources/js/Jetstream/Welcome.vue ***! - \********************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _Welcome_vue_vue_type_template_id_70e39c44__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Welcome.vue?vue&type=template&id=70e39c44 */ "./resources/js/Jetstream/Welcome.vue?vue&type=template&id=70e39c44"); -/* harmony import */ var _Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Welcome.vue?vue&type=script&lang=js */ "./resources/js/Jetstream/Welcome.vue?vue&type=script&lang=js"); - - - -_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _Welcome_vue_vue_type_template_id_70e39c44__WEBPACK_IMPORTED_MODULE_0__.render -/* hot reload */ -if (false) {} - -_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Jetstream/Welcome.vue" - -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); - -/***/ }), - /***/ "./resources/js/Layouts/AppLayout.vue": /*!********************************************!*\ !*** ./resources/js/Layouts/AppLayout.vue ***! @@ -47538,10 +47987,18 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -const script = {} -script.__file = "resources/js/Pages/Contacts/Edit.vue" +/* harmony import */ var _Edit_vue_vue_type_template_id_1c2aec8d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Edit.vue?vue&type=template&id=1c2aec8d */ "./resources/js/Pages/Contacts/Edit.vue?vue&type=template&id=1c2aec8d"); +/* harmony import */ var _Edit_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Edit.vue?vue&type=script&lang=js */ "./resources/js/Pages/Contacts/Edit.vue?vue&type=script&lang=js"); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (script); + + +_Edit_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _Edit_vue_vue_type_template_id_1c2aec8d__WEBPACK_IMPORTED_MODULE_0__.render +/* hot reload */ +if (false) {} + +_Edit_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Pages/Contacts/Edit.vue" + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_Edit_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); /***/ }), @@ -47556,10 +48013,18 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -const script = {} -script.__file = "resources/js/Pages/Contacts/Index.vue" +/* harmony import */ var _Index_vue_vue_type_template_id_aa2b4242__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Index.vue?vue&type=template&id=aa2b4242 */ "./resources/js/Pages/Contacts/Index.vue?vue&type=template&id=aa2b4242"); +/* harmony import */ var _Index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Index.vue?vue&type=script&lang=js */ "./resources/js/Pages/Contacts/Index.vue?vue&type=script&lang=js"); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (script); + + +_Index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _Index_vue_vue_type_template_id_aa2b4242__WEBPACK_IMPORTED_MODULE_0__.render +/* hot reload */ +if (false) {} + +_Index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Pages/Contacts/Index.vue" + +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_Index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); /***/ }), @@ -47589,32 +48054,6 @@ _Dashboard_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__fi /***/ }), -/***/ "./resources/js/Pages/PrivacyPolicy.vue": -/*!**********************************************!*\ - !*** ./resources/js/Pages/PrivacyPolicy.vue ***! - \**********************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _PrivacyPolicy_vue_vue_type_template_id_41527301__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PrivacyPolicy.vue?vue&type=template&id=41527301 */ "./resources/js/Pages/PrivacyPolicy.vue?vue&type=template&id=41527301"); -/* harmony import */ var _PrivacyPolicy_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PrivacyPolicy.vue?vue&type=script&lang=js */ "./resources/js/Pages/PrivacyPolicy.vue?vue&type=script&lang=js"); - - - -_PrivacyPolicy_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _PrivacyPolicy_vue_vue_type_template_id_41527301__WEBPACK_IMPORTED_MODULE_0__.render -/* hot reload */ -if (false) {} - -_PrivacyPolicy_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Pages/PrivacyPolicy.vue" - -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_PrivacyPolicy_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); - -/***/ }), - /***/ "./resources/js/Pages/Profile/DeleteUserForm.vue": /*!*******************************************************!*\ !*** ./resources/js/Pages/Profile/DeleteUserForm.vue ***! @@ -47927,59 +48366,67 @@ _UpdateTeamNameForm_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.def /***/ }), -/***/ "./resources/js/Pages/TermsOfService.vue": -/*!***********************************************!*\ - !*** ./resources/js/Pages/TermsOfService.vue ***! - \***********************************************/ +/***/ "./resources/js/Components/BreadCrumb.vue?vue&type=script&lang=js": +/*!************************************************************************!*\ + !*** ./resources/js/Components/BreadCrumb.vue?vue&type=script&lang=js ***! + \************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_BreadCrumb_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) /* harmony export */ }); -/* harmony import */ var _TermsOfService_vue_vue_type_template_id_63d45180__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TermsOfService.vue?vue&type=template&id=63d45180 */ "./resources/js/Pages/TermsOfService.vue?vue&type=template&id=63d45180"); -/* harmony import */ var _TermsOfService_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TermsOfService.vue?vue&type=script&lang=js */ "./resources/js/Pages/TermsOfService.vue?vue&type=script&lang=js"); - - - -_TermsOfService_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _TermsOfService_vue_vue_type_template_id_63d45180__WEBPACK_IMPORTED_MODULE_0__.render -/* hot reload */ -if (false) {} - -_TermsOfService_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Pages/TermsOfService.vue" - -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_TermsOfService_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_BreadCrumb_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./BreadCrumb.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/BreadCrumb.vue?vue&type=script&lang=js"); + /***/ }), -/***/ "./resources/js/Pages/Welcome.vue": -/*!****************************************!*\ - !*** ./resources/js/Pages/Welcome.vue ***! - \****************************************/ +/***/ "./resources/js/Components/Paginator.vue?vue&type=script&lang=js": +/*!***********************************************************************!*\ + !*** ./resources/js/Components/Paginator.vue?vue&type=script&lang=js ***! + \***********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Paginator_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) /* harmony export */ }); -/* harmony import */ var _Welcome_vue_vue_type_template_id_317d1a6e_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Welcome.vue?vue&type=template&id=317d1a6e&scoped=true */ "./resources/js/Pages/Welcome.vue?vue&type=template&id=317d1a6e&scoped=true"); -/* harmony import */ var _Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Welcome.vue?vue&type=script&lang=js */ "./resources/js/Pages/Welcome.vue?vue&type=script&lang=js"); -/* harmony import */ var _Welcome_vue_vue_type_style_index_0_id_317d1a6e_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css */ "./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css"); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Paginator_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Paginator.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/Paginator.vue?vue&type=script&lang=js"); + +/***/ }), +/***/ "./resources/js/Components/SearchFilter.vue?vue&type=script&lang=js": +/*!**************************************************************************!*\ + !*** ./resources/js/Components/SearchFilter.vue?vue&type=script&lang=js ***! + \**************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SearchFilter_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SearchFilter_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./SearchFilter.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SearchFilter.vue?vue&type=script&lang=js"); + -; -_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.render = _Welcome_vue_vue_type_template_id_317d1a6e_scoped_true__WEBPACK_IMPORTED_MODULE_0__.render -_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__scopeId = "data-v-317d1a6e" -/* hot reload */ -if (false) {} +/***/ }), -_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default.__file = "resources/js/Pages/Welcome.vue" +/***/ "./resources/js/Components/SimpleTable.vue?vue&type=script&lang=js": +/*!*************************************************************************!*\ + !*** ./resources/js/Components/SimpleTable.vue?vue&type=script&lang=js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__.default); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SimpleTable_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SimpleTable_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./SimpleTable.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SimpleTable.vue?vue&type=script&lang=js"); + /***/ }), @@ -48301,22 +48748,6 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_ValidationErrors_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./ValidationErrors.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ValidationErrors.vue?vue&type=script&lang=js"); -/***/ }), - -/***/ "./resources/js/Jetstream/Welcome.vue?vue&type=script&lang=js": -/*!********************************************************************!*\ - !*** ./resources/js/Jetstream/Welcome.vue?vue&type=script&lang=js ***! - \********************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) -/* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Welcome.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/Welcome.vue?vue&type=script&lang=js"); - - /***/ }), /***/ "./resources/js/Layouts/AppLayout.vue?vue&type=script&lang=js": @@ -48477,6 +48908,38 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_VerifyEmail_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./VerifyEmail.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Auth/VerifyEmail.vue?vue&type=script&lang=js"); +/***/ }), + +/***/ "./resources/js/Pages/Contacts/Edit.vue?vue&type=script&lang=js": +/*!**********************************************************************!*\ + !*** ./resources/js/Pages/Contacts/Edit.vue?vue&type=script&lang=js ***! + \**********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Edit_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Edit_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Edit.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Edit.vue?vue&type=script&lang=js"); + + +/***/ }), + +/***/ "./resources/js/Pages/Contacts/Index.vue?vue&type=script&lang=js": +/*!***********************************************************************!*\ + !*** ./resources/js/Pages/Contacts/Index.vue?vue&type=script&lang=js ***! + \***********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Index.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Index.vue?vue&type=script&lang=js"); + + /***/ }), /***/ "./resources/js/Pages/Dashboard.vue?vue&type=script&lang=js": @@ -48493,22 +48956,6 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Dashboard_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Dashboard.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Dashboard.vue?vue&type=script&lang=js"); -/***/ }), - -/***/ "./resources/js/Pages/PrivacyPolicy.vue?vue&type=script&lang=js": -/*!**********************************************************************!*\ - !*** ./resources/js/Pages/PrivacyPolicy.vue?vue&type=script&lang=js ***! - \**********************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_PrivacyPolicy_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) -/* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_PrivacyPolicy_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./PrivacyPolicy.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/PrivacyPolicy.vue?vue&type=script&lang=js"); - - /***/ }), /***/ "./resources/js/Pages/Profile/DeleteUserForm.vue?vue&type=script&lang=js": @@ -48703,35 +49150,67 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ "./resources/js/Pages/TermsOfService.vue?vue&type=script&lang=js": -/*!***********************************************************************!*\ - !*** ./resources/js/Pages/TermsOfService.vue?vue&type=script&lang=js ***! - \***********************************************************************/ +/***/ "./resources/js/Components/BreadCrumb.vue?vue&type=template&id=df88ba24": +/*!******************************************************************************!*\ + !*** ./resources/js/Components/BreadCrumb.vue?vue&type=template&id=df88ba24 ***! + \******************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_TermsOfService_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) +/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_BreadCrumb_vue_vue_type_template_id_df88ba24__WEBPACK_IMPORTED_MODULE_0__.render) /* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_TermsOfService_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./TermsOfService.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/TermsOfService.vue?vue&type=script&lang=js"); - +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_BreadCrumb_vue_vue_type_template_id_df88ba24__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./BreadCrumb.vue?vue&type=template&id=df88ba24 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/BreadCrumb.vue?vue&type=template&id=df88ba24"); + /***/ }), -/***/ "./resources/js/Pages/Welcome.vue?vue&type=script&lang=js": -/*!****************************************************************!*\ - !*** ./resources/js/Pages/Welcome.vue?vue&type=script&lang=js ***! - \****************************************************************/ +/***/ "./resources/js/Components/Paginator.vue?vue&type=template&id=4d98dc54": +/*!*****************************************************************************!*\ + !*** ./resources/js/Components/Paginator.vue?vue&type=template&id=4d98dc54 ***! + \*****************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__.default) +/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Paginator_vue_vue_type_template_id_4d98dc54__WEBPACK_IMPORTED_MODULE_0__.render) /* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Welcome.vue?vue&type=script&lang=js */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=script&lang=js"); - +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Paginator_vue_vue_type_template_id_4d98dc54__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Paginator.vue?vue&type=template&id=4d98dc54 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/Paginator.vue?vue&type=template&id=4d98dc54"); + + +/***/ }), + +/***/ "./resources/js/Components/SearchFilter.vue?vue&type=template&id=64fefb0b": +/*!********************************************************************************!*\ + !*** ./resources/js/Components/SearchFilter.vue?vue&type=template&id=64fefb0b ***! + \********************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SearchFilter_vue_vue_type_template_id_64fefb0b__WEBPACK_IMPORTED_MODULE_0__.render) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SearchFilter_vue_vue_type_template_id_64fefb0b__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./SearchFilter.vue?vue&type=template&id=64fefb0b */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SearchFilter.vue?vue&type=template&id=64fefb0b"); + + +/***/ }), + +/***/ "./resources/js/Components/SimpleTable.vue?vue&type=template&id=62481b7e": +/*!*******************************************************************************!*\ + !*** ./resources/js/Components/SimpleTable.vue?vue&type=template&id=62481b7e ***! + \*******************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SimpleTable_vue_vue_type_template_id_62481b7e__WEBPACK_IMPORTED_MODULE_0__.render) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_SimpleTable_vue_vue_type_template_id_62481b7e__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./SimpleTable.vue?vue&type=template&id=62481b7e */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Components/SimpleTable.vue?vue&type=template&id=62481b7e"); + /***/ }), @@ -48765,22 +49244,6 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_ActionSection_vue_vue_type_template_id_1016a66a__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./ActionSection.vue?vue&type=template&id=1016a66a */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ActionSection.vue?vue&type=template&id=1016a66a"); -/***/ }), - -/***/ "./resources/js/Jetstream/ApplicationLogo.vue?vue&type=template&id=4e07f5d2": -/*!**********************************************************************************!*\ - !*** ./resources/js/Jetstream/ApplicationLogo.vue?vue&type=template&id=4e07f5d2 ***! - \**********************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_ApplicationLogo_vue_vue_type_template_id_4e07f5d2__WEBPACK_IMPORTED_MODULE_0__.render) -/* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_ApplicationLogo_vue_vue_type_template_id_4e07f5d2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./ApplicationLogo.vue?vue&type=template&id=4e07f5d2 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ApplicationLogo.vue?vue&type=template&id=4e07f5d2"); - - /***/ }), /***/ "./resources/js/Jetstream/ApplicationMark.vue?vue&type=template&id=6ed2e539": @@ -49149,22 +49612,6 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_ValidationErrors_vue_vue_type_template_id_0118f178__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./ValidationErrors.vue?vue&type=template&id=0118f178 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/ValidationErrors.vue?vue&type=template&id=0118f178"); -/***/ }), - -/***/ "./resources/js/Jetstream/Welcome.vue?vue&type=template&id=70e39c44": -/*!**************************************************************************!*\ - !*** ./resources/js/Jetstream/Welcome.vue?vue&type=template&id=70e39c44 ***! - \**************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_template_id_70e39c44__WEBPACK_IMPORTED_MODULE_0__.render) -/* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_template_id_70e39c44__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Welcome.vue?vue&type=template&id=70e39c44 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Jetstream/Welcome.vue?vue&type=template&id=70e39c44"); - - /***/ }), /***/ "./resources/js/Layouts/AppLayout.vue?vue&type=template&id=5663af57": @@ -49325,6 +49772,38 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_VerifyEmail_vue_vue_type_template_id_9f895776__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./VerifyEmail.vue?vue&type=template&id=9f895776 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Auth/VerifyEmail.vue?vue&type=template&id=9f895776"); +/***/ }), + +/***/ "./resources/js/Pages/Contacts/Edit.vue?vue&type=template&id=1c2aec8d": +/*!****************************************************************************!*\ + !*** ./resources/js/Pages/Contacts/Edit.vue?vue&type=template&id=1c2aec8d ***! + \****************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Edit_vue_vue_type_template_id_1c2aec8d__WEBPACK_IMPORTED_MODULE_0__.render) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Edit_vue_vue_type_template_id_1c2aec8d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Edit.vue?vue&type=template&id=1c2aec8d */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Edit.vue?vue&type=template&id=1c2aec8d"); + + +/***/ }), + +/***/ "./resources/js/Pages/Contacts/Index.vue?vue&type=template&id=aa2b4242": +/*!*****************************************************************************!*\ + !*** ./resources/js/Pages/Contacts/Index.vue?vue&type=template&id=aa2b4242 ***! + \*****************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Index_vue_vue_type_template_id_aa2b4242__WEBPACK_IMPORTED_MODULE_0__.render) +/* harmony export */ }); +/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Index_vue_vue_type_template_id_aa2b4242__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Index.vue?vue&type=template&id=aa2b4242 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Contacts/Index.vue?vue&type=template&id=aa2b4242"); + + /***/ }), /***/ "./resources/js/Pages/Dashboard.vue?vue&type=template&id=097ba13b": @@ -49341,22 +49820,6 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Dashboard_vue_vue_type_template_id_097ba13b__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Dashboard.vue?vue&type=template&id=097ba13b */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Dashboard.vue?vue&type=template&id=097ba13b"); -/***/ }), - -/***/ "./resources/js/Pages/PrivacyPolicy.vue?vue&type=template&id=41527301": -/*!****************************************************************************!*\ - !*** ./resources/js/Pages/PrivacyPolicy.vue?vue&type=template&id=41527301 ***! - \****************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_PrivacyPolicy_vue_vue_type_template_id_41527301__WEBPACK_IMPORTED_MODULE_0__.render) -/* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_PrivacyPolicy_vue_vue_type_template_id_41527301__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./PrivacyPolicy.vue?vue&type=template&id=41527301 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/PrivacyPolicy.vue?vue&type=template&id=41527301"); - - /***/ }), /***/ "./resources/js/Pages/Profile/DeleteUserForm.vue?vue&type=template&id=4ed1f029": @@ -49551,352 +50014,3026 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ "./resources/js/Pages/TermsOfService.vue?vue&type=template&id=63d45180": -/*!*****************************************************************************!*\ - !*** ./resources/js/Pages/TermsOfService.vue?vue&type=template&id=63d45180 ***! - \*****************************************************************************/ +/***/ "./node_modules/vue-unicons/dist/icons.js": +/*!************************************************!*\ + !*** ./node_modules/vue-unicons/dist/icons.js ***! + \************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_TermsOfService_vue_vue_type_template_id_63d45180__WEBPACK_IMPORTED_MODULE_0__.render) +/* harmony export */ "uni0Plus": () => (/* binding */ uni0Plus), +/* harmony export */ "uni10Plus": () => (/* binding */ uni10Plus), +/* harmony export */ "uni12Plus": () => (/* binding */ uni12Plus), +/* harmony export */ "uni13Plus": () => (/* binding */ uni13Plus), +/* harmony export */ "uni16Plus": () => (/* binding */ uni16Plus), +/* harmony export */ "uni17Plus": () => (/* binding */ uni17Plus), +/* harmony export */ "uni18Plus": () => (/* binding */ uni18Plus), +/* harmony export */ "uni21Plus": () => (/* binding */ uni21Plus), +/* harmony export */ "uni3Plus": () => (/* binding */ uni3Plus), +/* harmony export */ "uni500Px": () => (/* binding */ uni500Px), +/* harmony export */ "uni6Plus": () => (/* binding */ uni6Plus), +/* harmony export */ "uniAbacus": () => (/* binding */ uniAbacus), +/* harmony export */ "uniAccessibleIconAlt": () => (/* binding */ uniAccessibleIconAlt), +/* harmony export */ "uniAdjust": () => (/* binding */ uniAdjust), +/* harmony export */ "uniAdjustAlt": () => (/* binding */ uniAdjustAlt), +/* harmony export */ "uniAdjustCircle": () => (/* binding */ uniAdjustCircle), +/* harmony export */ "uniAdjustHalf": () => (/* binding */ uniAdjustHalf), +/* harmony export */ "uniAdobe": () => (/* binding */ uniAdobe), +/* harmony export */ "uniAdobeAlt": () => (/* binding */ uniAdobeAlt), +/* harmony export */ "uniAirplay": () => (/* binding */ uniAirplay), +/* harmony export */ "uniAlign": () => (/* binding */ uniAlign), +/* harmony export */ "uniAlignAlt": () => (/* binding */ uniAlignAlt), +/* harmony export */ "uniAlignCenter": () => (/* binding */ uniAlignCenter), +/* harmony export */ "uniAlignCenterAlt": () => (/* binding */ uniAlignCenterAlt), +/* harmony export */ "uniAlignCenterH": () => (/* binding */ uniAlignCenterH), +/* harmony export */ "uniAlignCenterJustify": () => (/* binding */ uniAlignCenterJustify), +/* harmony export */ "uniAlignCenterV": () => (/* binding */ uniAlignCenterV), +/* harmony export */ "uniAlignJustify": () => (/* binding */ uniAlignJustify), +/* harmony export */ "uniAlignLeft": () => (/* binding */ uniAlignLeft), +/* harmony export */ "uniAlignLeftJustify": () => (/* binding */ uniAlignLeftJustify), +/* harmony export */ "uniAlignLetterRight": () => (/* binding */ uniAlignLetterRight), +/* harmony export */ "uniAlignRight": () => (/* binding */ uniAlignRight), +/* harmony export */ "uniAlignRightJustify": () => (/* binding */ uniAlignRightJustify), +/* harmony export */ "uniAmazon": () => (/* binding */ uniAmazon), +/* harmony export */ "uniAmbulance": () => (/* binding */ uniAmbulance), +/* harmony export */ "uniAnalysis": () => (/* binding */ uniAnalysis), +/* harmony export */ "uniAnalytics": () => (/* binding */ uniAnalytics), +/* harmony export */ "uniAnchor": () => (/* binding */ uniAnchor), +/* harmony export */ "uniAndroid": () => (/* binding */ uniAndroid), +/* harmony export */ "uniAndroidAlt": () => (/* binding */ uniAndroidAlt), +/* harmony export */ "uniAndroidPhoneSlash": () => (/* binding */ uniAndroidPhoneSlash), +/* harmony export */ "uniAngleDoubleDown": () => (/* binding */ uniAngleDoubleDown), +/* harmony export */ "uniAngleDoubleLeft": () => (/* binding */ uniAngleDoubleLeft), +/* harmony export */ "uniAngleDoubleRight": () => (/* binding */ uniAngleDoubleRight), +/* harmony export */ "uniAngleDoubleUp": () => (/* binding */ uniAngleDoubleUp), +/* harmony export */ "uniAngleDown": () => (/* binding */ uniAngleDown), +/* harmony export */ "uniAngleLeft": () => (/* binding */ uniAngleLeft), +/* harmony export */ "uniAngleLeftB": () => (/* binding */ uniAngleLeftB), +/* harmony export */ "uniAngleRight": () => (/* binding */ uniAngleRight), +/* harmony export */ "uniAngleRightB": () => (/* binding */ uniAngleRightB), +/* harmony export */ "uniAngleUp": () => (/* binding */ uniAngleUp), +/* harmony export */ "uniAngry": () => (/* binding */ uniAngry), +/* harmony export */ "uniAnkh": () => (/* binding */ uniAnkh), +/* harmony export */ "uniAnnoyed": () => (/* binding */ uniAnnoyed), +/* harmony export */ "uniAnnoyedAlt": () => (/* binding */ uniAnnoyedAlt), +/* harmony export */ "uniApple": () => (/* binding */ uniApple), +/* harmony export */ "uniAppleAlt": () => (/* binding */ uniAppleAlt), +/* harmony export */ "uniApps": () => (/* binding */ uniApps), +/* harmony export */ "uniArchive": () => (/* binding */ uniArchive), +/* harmony export */ "uniArchiveAlt": () => (/* binding */ uniArchiveAlt), +/* harmony export */ "uniArchway": () => (/* binding */ uniArchway), +/* harmony export */ "uniArrow": () => (/* binding */ uniArrow), +/* harmony export */ "uniArrowBreak": () => (/* binding */ uniArrowBreak), +/* harmony export */ "uniArrowCircleDown": () => (/* binding */ uniArrowCircleDown), +/* harmony export */ "uniArrowCircleLeft": () => (/* binding */ uniArrowCircleLeft), +/* harmony export */ "uniArrowCircleRight": () => (/* binding */ uniArrowCircleRight), +/* harmony export */ "uniArrowCircleUp": () => (/* binding */ uniArrowCircleUp), +/* harmony export */ "uniArrowCompressH": () => (/* binding */ uniArrowCompressH), +/* harmony export */ "uniArrowDown": () => (/* binding */ uniArrowDown), +/* harmony export */ "uniArrowDownLeft": () => (/* binding */ uniArrowDownLeft), +/* harmony export */ "uniArrowDownRight": () => (/* binding */ uniArrowDownRight), +/* harmony export */ "uniArrowFromRight": () => (/* binding */ uniArrowFromRight), +/* harmony export */ "uniArrowFromTop": () => (/* binding */ uniArrowFromTop), +/* harmony export */ "uniArrowGrowth": () => (/* binding */ uniArrowGrowth), +/* harmony export */ "uniArrowLeft": () => (/* binding */ uniArrowLeft), +/* harmony export */ "uniArrowRandom": () => (/* binding */ uniArrowRandom), +/* harmony export */ "uniArrowResizeDiagonal": () => (/* binding */ uniArrowResizeDiagonal), +/* harmony export */ "uniArrowRight": () => (/* binding */ uniArrowRight), +/* harmony export */ "uniArrowToBottom": () => (/* binding */ uniArrowToBottom), +/* harmony export */ "uniArrowToRight": () => (/* binding */ uniArrowToRight), +/* harmony export */ "uniArrowUp": () => (/* binding */ uniArrowUp), +/* harmony export */ "uniArrowUpLeft": () => (/* binding */ uniArrowUpLeft), +/* harmony export */ "uniArrowUpRight": () => (/* binding */ uniArrowUpRight), +/* harmony export */ "uniArrowsH": () => (/* binding */ uniArrowsH), +/* harmony export */ "uniArrowsHAlt": () => (/* binding */ uniArrowsHAlt), +/* harmony export */ "uniArrowsLeftDown": () => (/* binding */ uniArrowsLeftDown), +/* harmony export */ "uniArrowsMaximize": () => (/* binding */ uniArrowsMaximize), +/* harmony export */ "uniArrowsMerge": () => (/* binding */ uniArrowsMerge), +/* harmony export */ "uniArrowsResize": () => (/* binding */ uniArrowsResize), +/* harmony export */ "uniArrowsResizeH": () => (/* binding */ uniArrowsResizeH), +/* harmony export */ "uniArrowsResizeV": () => (/* binding */ uniArrowsResizeV), +/* harmony export */ "uniArrowsRightDown": () => (/* binding */ uniArrowsRightDown), +/* harmony export */ "uniArrowsShrinkH": () => (/* binding */ uniArrowsShrinkH), +/* harmony export */ "uniArrowsShrinkV": () => (/* binding */ uniArrowsShrinkV), +/* harmony export */ "uniArrowsUpRight": () => (/* binding */ uniArrowsUpRight), +/* harmony export */ "uniArrowsV": () => (/* binding */ uniArrowsV), +/* harmony export */ "uniArrowsVAlt": () => (/* binding */ uniArrowsVAlt), +/* harmony export */ "uniAssistiveListeningSystems": () => (/* binding */ uniAssistiveListeningSystems), +/* harmony export */ "uniAsterisk": () => (/* binding */ uniAsterisk), +/* harmony export */ "uniAt": () => (/* binding */ uniAt), +/* harmony export */ "uniAtom": () => (/* binding */ uniAtom), +/* harmony export */ "uniAutoFlash": () => (/* binding */ uniAutoFlash), +/* harmony export */ "uniAward": () => (/* binding */ uniAward), +/* harmony export */ "uniAwardAlt": () => (/* binding */ uniAwardAlt), +/* harmony export */ "uniBabyCarriage": () => (/* binding */ uniBabyCarriage), +/* harmony export */ "uniBackpack": () => (/* binding */ uniBackpack), +/* harmony export */ "uniBackspace": () => (/* binding */ uniBackspace), +/* harmony export */ "uniBackward": () => (/* binding */ uniBackward), +/* harmony export */ "uniBag": () => (/* binding */ uniBag), +/* harmony export */ "uniBagAlt": () => (/* binding */ uniBagAlt), +/* harmony export */ "uniBagSlash": () => (/* binding */ uniBagSlash), +/* harmony export */ "uniBalanceScale": () => (/* binding */ uniBalanceScale), +/* harmony export */ "uniBan": () => (/* binding */ uniBan), +/* harmony export */ "uniBandAid": () => (/* binding */ uniBandAid), +/* harmony export */ "uniBars": () => (/* binding */ uniBars), +/* harmony export */ "uniBaseballBall": () => (/* binding */ uniBaseballBall), +/* harmony export */ "uniBasketball": () => (/* binding */ uniBasketball), +/* harmony export */ "uniBasketballHoop": () => (/* binding */ uniBasketballHoop), +/* harmony export */ "uniBath": () => (/* binding */ uniBath), +/* harmony export */ "uniBatteryBolt": () => (/* binding */ uniBatteryBolt), +/* harmony export */ "uniBatteryEmpty": () => (/* binding */ uniBatteryEmpty), +/* harmony export */ "uniBed": () => (/* binding */ uniBed), +/* harmony export */ "uniBedDouble": () => (/* binding */ uniBedDouble), +/* harmony export */ "uniBehance": () => (/* binding */ uniBehance), +/* harmony export */ "uniBehanceAlt": () => (/* binding */ uniBehanceAlt), +/* harmony export */ "uniBell": () => (/* binding */ uniBell), +/* harmony export */ "uniBellSchool": () => (/* binding */ uniBellSchool), +/* harmony export */ "uniBellSlash": () => (/* binding */ uniBellSlash), +/* harmony export */ "uniBill": () => (/* binding */ uniBill), +/* harmony export */ "uniBing": () => (/* binding */ uniBing), +/* harmony export */ "uniBitcoin": () => (/* binding */ uniBitcoin), +/* harmony export */ "uniBitcoinAlt": () => (/* binding */ uniBitcoinAlt), +/* harmony export */ "uniBitcoinCircle": () => (/* binding */ uniBitcoinCircle), +/* harmony export */ "uniBitcoinSign": () => (/* binding */ uniBitcoinSign), +/* harmony export */ "uniBlackBerry": () => (/* binding */ uniBlackBerry), +/* harmony export */ "uniBlogger": () => (/* binding */ uniBlogger), +/* harmony export */ "uniBloggerAlt": () => (/* binding */ uniBloggerAlt), +/* harmony export */ "uniBluetoothB": () => (/* binding */ uniBluetoothB), +/* harmony export */ "uniBold": () => (/* binding */ uniBold), +/* harmony export */ "uniBolt": () => (/* binding */ uniBolt), +/* harmony export */ "uniBoltAlt": () => (/* binding */ uniBoltAlt), +/* harmony export */ "uniBoltSlash": () => (/* binding */ uniBoltSlash), +/* harmony export */ "uniBook": () => (/* binding */ uniBook), +/* harmony export */ "uniBookAlt": () => (/* binding */ uniBookAlt), +/* harmony export */ "uniBookMedical": () => (/* binding */ uniBookMedical), +/* harmony export */ "uniBookOpen": () => (/* binding */ uniBookOpen), +/* harmony export */ "uniBookReader": () => (/* binding */ uniBookReader), +/* harmony export */ "uniBookmark": () => (/* binding */ uniBookmark), +/* harmony export */ "uniBookmarkFull": () => (/* binding */ uniBookmarkFull), +/* harmony export */ "uniBooks": () => (/* binding */ uniBooks), +/* harmony export */ "uniBoombox": () => (/* binding */ uniBoombox), +/* harmony export */ "uniBorderAlt": () => (/* binding */ uniBorderAlt), +/* harmony export */ "uniBorderBottom": () => (/* binding */ uniBorderBottom), +/* harmony export */ "uniBorderClear": () => (/* binding */ uniBorderClear), +/* harmony export */ "uniBorderHorizontal": () => (/* binding */ uniBorderHorizontal), +/* harmony export */ "uniBorderInner": () => (/* binding */ uniBorderInner), +/* harmony export */ "uniBorderLeft": () => (/* binding */ uniBorderLeft), +/* harmony export */ "uniBorderOut": () => (/* binding */ uniBorderOut), +/* harmony export */ "uniBorderRight": () => (/* binding */ uniBorderRight), +/* harmony export */ "uniBorderTop": () => (/* binding */ uniBorderTop), +/* harmony export */ "uniBorderVertical": () => (/* binding */ uniBorderVertical), +/* harmony export */ "uniBowlingBall": () => (/* binding */ uniBowlingBall), +/* harmony export */ "uniBox": () => (/* binding */ uniBox), +/* harmony export */ "uniBracketsCurly": () => (/* binding */ uniBracketsCurly), +/* harmony export */ "uniBrain": () => (/* binding */ uniBrain), +/* harmony export */ "uniBriefcase": () => (/* binding */ uniBriefcase), +/* harmony export */ "uniBriefcaseAlt": () => (/* binding */ uniBriefcaseAlt), +/* harmony export */ "uniBright": () => (/* binding */ uniBright), +/* harmony export */ "uniBrightness": () => (/* binding */ uniBrightness), +/* harmony export */ "uniBrightnessEmpty": () => (/* binding */ uniBrightnessEmpty), +/* harmony export */ "uniBrightnessHalf": () => (/* binding */ uniBrightnessHalf), +/* harmony export */ "uniBrightnessLow": () => (/* binding */ uniBrightnessLow), +/* harmony export */ "uniBrightnessMinus": () => (/* binding */ uniBrightnessMinus), +/* harmony export */ "uniBrightnessPlus": () => (/* binding */ uniBrightnessPlus), +/* harmony export */ "uniBringBottom": () => (/* binding */ uniBringBottom), +/* harmony export */ "uniBringFront": () => (/* binding */ uniBringFront), +/* harmony export */ "uniBrowser": () => (/* binding */ uniBrowser), +/* harmony export */ "uniBrushAlt": () => (/* binding */ uniBrushAlt), +/* harmony export */ "uniBug": () => (/* binding */ uniBug), +/* harmony export */ "uniBuilding": () => (/* binding */ uniBuilding), +/* harmony export */ "uniBullseye": () => (/* binding */ uniBullseye), +/* harmony export */ "uniBus": () => (/* binding */ uniBus), +/* harmony export */ "uniBusAlt": () => (/* binding */ uniBusAlt), +/* harmony export */ "uniBusSchool": () => (/* binding */ uniBusSchool), +/* harmony export */ "uniCalculator": () => (/* binding */ uniCalculator), +/* harmony export */ "uniCalculatorAlt": () => (/* binding */ uniCalculatorAlt), +/* harmony export */ "uniCalendarAlt": () => (/* binding */ uniCalendarAlt), +/* harmony export */ "uniCalendarSlash": () => (/* binding */ uniCalendarSlash), +/* harmony export */ "uniCalender": () => (/* binding */ uniCalender), +/* harmony export */ "uniCalling": () => (/* binding */ uniCalling), +/* harmony export */ "uniCamera": () => (/* binding */ uniCamera), +/* harmony export */ "uniCameraChange": () => (/* binding */ uniCameraChange), +/* harmony export */ "uniCameraPlus": () => (/* binding */ uniCameraPlus), +/* harmony export */ "uniCameraSlash": () => (/* binding */ uniCameraSlash), +/* harmony export */ "uniCancel": () => (/* binding */ uniCancel), +/* harmony export */ "uniCapsule": () => (/* binding */ uniCapsule), +/* harmony export */ "uniCapture": () => (/* binding */ uniCapture), +/* harmony export */ "uniCar": () => (/* binding */ uniCar), +/* harmony export */ "uniCarSideview": () => (/* binding */ uniCarSideview), +/* harmony export */ "uniCarSlash": () => (/* binding */ uniCarSlash), +/* harmony export */ "uniCarWash": () => (/* binding */ uniCarWash), +/* harmony export */ "uniCardAtm": () => (/* binding */ uniCardAtm), +/* harmony export */ "uniCaretRight": () => (/* binding */ uniCaretRight), +/* harmony export */ "uniCell": () => (/* binding */ uniCell), +/* harmony export */ "uniCelsius": () => (/* binding */ uniCelsius), +/* harmony export */ "uniChannel": () => (/* binding */ uniChannel), +/* harmony export */ "uniChannelAdd": () => (/* binding */ uniChannelAdd), +/* harmony export */ "uniChart": () => (/* binding */ uniChart), +/* harmony export */ "uniChartBar": () => (/* binding */ uniChartBar), +/* harmony export */ "uniChartBarAlt": () => (/* binding */ uniChartBarAlt), +/* harmony export */ "uniChartDown": () => (/* binding */ uniChartDown), +/* harmony export */ "uniChartGrowth": () => (/* binding */ uniChartGrowth), +/* harmony export */ "uniChartGrowthAlt": () => (/* binding */ uniChartGrowthAlt), +/* harmony export */ "uniChartLine": () => (/* binding */ uniChartLine), +/* harmony export */ "uniChartPie": () => (/* binding */ uniChartPie), +/* harmony export */ "uniChartPieAlt": () => (/* binding */ uniChartPieAlt), +/* harmony export */ "uniChat": () => (/* binding */ uniChat), +/* harmony export */ "uniChatBubbleUser": () => (/* binding */ uniChatBubbleUser), +/* harmony export */ "uniChatInfo": () => (/* binding */ uniChatInfo), +/* harmony export */ "uniCheck": () => (/* binding */ uniCheck), +/* harmony export */ "uniCheckCircle": () => (/* binding */ uniCheckCircle), +/* harmony export */ "uniCheckSquare": () => (/* binding */ uniCheckSquare), +/* harmony export */ "uniCircle": () => (/* binding */ uniCircle), +/* harmony export */ "uniCircleLayer": () => (/* binding */ uniCircleLayer), +/* harmony export */ "uniCircuit": () => (/* binding */ uniCircuit), +/* harmony export */ "uniClapperBoard": () => (/* binding */ uniClapperBoard), +/* harmony export */ "uniClinicMedical": () => (/* binding */ uniClinicMedical), +/* harmony export */ "uniClipboard": () => (/* binding */ uniClipboard), +/* harmony export */ "uniClipboardAlt": () => (/* binding */ uniClipboardAlt), +/* harmony export */ "uniClipboardBlank": () => (/* binding */ uniClipboardBlank), +/* harmony export */ "uniClipboardNotes": () => (/* binding */ uniClipboardNotes), +/* harmony export */ "uniClock": () => (/* binding */ uniClock), +/* harmony export */ "uniClockEight": () => (/* binding */ uniClockEight), +/* harmony export */ "uniClockFive": () => (/* binding */ uniClockFive), +/* harmony export */ "uniClockNine": () => (/* binding */ uniClockNine), +/* harmony export */ "uniClockSeven": () => (/* binding */ uniClockSeven), +/* harmony export */ "uniClockTen": () => (/* binding */ uniClockTen), +/* harmony export */ "uniClockThree": () => (/* binding */ uniClockThree), +/* harmony export */ "uniClockTwo": () => (/* binding */ uniClockTwo), +/* harmony export */ "uniClosedCaptioning": () => (/* binding */ uniClosedCaptioning), +/* harmony export */ "uniClosedCaptioningSlash": () => (/* binding */ uniClosedCaptioningSlash), +/* harmony export */ "uniCloud": () => (/* binding */ uniCloud), +/* harmony export */ "uniCloudBlock": () => (/* binding */ uniCloudBlock), +/* harmony export */ "uniCloudBookmark": () => (/* binding */ uniCloudBookmark), +/* harmony export */ "uniCloudCheck": () => (/* binding */ uniCloudCheck), +/* harmony export */ "uniCloudComputing": () => (/* binding */ uniCloudComputing), +/* harmony export */ "uniCloudDataConnection": () => (/* binding */ uniCloudDataConnection), +/* harmony export */ "uniCloudDatabaseTree": () => (/* binding */ uniCloudDatabaseTree), +/* harmony export */ "uniCloudDownload": () => (/* binding */ uniCloudDownload), +/* harmony export */ "uniCloudDrizzle": () => (/* binding */ uniCloudDrizzle), +/* harmony export */ "uniCloudExclamation": () => (/* binding */ uniCloudExclamation), +/* harmony export */ "uniCloudHail": () => (/* binding */ uniCloudHail), +/* harmony export */ "uniCloudHeart": () => (/* binding */ uniCloudHeart), +/* harmony export */ "uniCloudInfo": () => (/* binding */ uniCloudInfo), +/* harmony export */ "uniCloudLock": () => (/* binding */ uniCloudLock), +/* harmony export */ "uniCloudMeatball": () => (/* binding */ uniCloudMeatball), +/* harmony export */ "uniCloudMoon": () => (/* binding */ uniCloudMoon), +/* harmony export */ "uniCloudMoonHail": () => (/* binding */ uniCloudMoonHail), +/* harmony export */ "uniCloudMoonMeatball": () => (/* binding */ uniCloudMoonMeatball), +/* harmony export */ "uniCloudMoonRain": () => (/* binding */ uniCloudMoonRain), +/* harmony export */ "uniCloudMoonShowers": () => (/* binding */ uniCloudMoonShowers), +/* harmony export */ "uniCloudQuestion": () => (/* binding */ uniCloudQuestion), +/* harmony export */ "uniCloudRain": () => (/* binding */ uniCloudRain), +/* harmony export */ "uniCloudRainSun": () => (/* binding */ uniCloudRainSun), +/* harmony export */ "uniCloudRedo": () => (/* binding */ uniCloudRedo), +/* harmony export */ "uniCloudShare": () => (/* binding */ uniCloudShare), +/* harmony export */ "uniCloudShield": () => (/* binding */ uniCloudShield), +/* harmony export */ "uniCloudShowers": () => (/* binding */ uniCloudShowers), +/* harmony export */ "uniCloudShowersAlt": () => (/* binding */ uniCloudShowersAlt), +/* harmony export */ "uniCloudShowersHeavy": () => (/* binding */ uniCloudShowersHeavy), +/* harmony export */ "uniCloudSlash": () => (/* binding */ uniCloudSlash), +/* harmony export */ "uniCloudSun": () => (/* binding */ uniCloudSun), +/* harmony export */ "uniCloudSunHail": () => (/* binding */ uniCloudSunHail), +/* harmony export */ "uniCloudSunMeatball": () => (/* binding */ uniCloudSunMeatball), +/* harmony export */ "uniCloudSunRain": () => (/* binding */ uniCloudSunRain), +/* harmony export */ "uniCloudSunRainAlt": () => (/* binding */ uniCloudSunRainAlt), +/* harmony export */ "uniCloudSunTear": () => (/* binding */ uniCloudSunTear), +/* harmony export */ "uniCloudTimes": () => (/* binding */ uniCloudTimes), +/* harmony export */ "uniCloudUnlock": () => (/* binding */ uniCloudUnlock), +/* harmony export */ "uniCloudUpload": () => (/* binding */ uniCloudUpload), +/* harmony export */ "uniCloudWifi": () => (/* binding */ uniCloudWifi), +/* harmony export */ "uniCloudWind": () => (/* binding */ uniCloudWind), +/* harmony export */ "uniClouds": () => (/* binding */ uniClouds), +/* harmony export */ "uniClub": () => (/* binding */ uniClub), +/* harmony export */ "uniCodeBranch": () => (/* binding */ uniCodeBranch), +/* harmony export */ "uniCoffee": () => (/* binding */ uniCoffee), +/* harmony export */ "uniCog": () => (/* binding */ uniCog), +/* harmony export */ "uniCoins": () => (/* binding */ uniCoins), +/* harmony export */ "uniColumns": () => (/* binding */ uniColumns), +/* harmony export */ "uniComment": () => (/* binding */ uniComment), +/* harmony export */ "uniCommentAdd": () => (/* binding */ uniCommentAdd), +/* harmony export */ "uniCommentAlt": () => (/* binding */ uniCommentAlt), +/* harmony export */ "uniCommentAltBlock": () => (/* binding */ uniCommentAltBlock), +/* harmony export */ "uniCommentAltChartLines": () => (/* binding */ uniCommentAltChartLines), +/* harmony export */ "uniCommentAltCheck": () => (/* binding */ uniCommentAltCheck), +/* harmony export */ "uniCommentAltDots": () => (/* binding */ uniCommentAltDots), +/* harmony export */ "uniCommentAltDownload": () => (/* binding */ uniCommentAltDownload), +/* harmony export */ "uniCommentAltEdit": () => (/* binding */ uniCommentAltEdit), +/* harmony export */ "uniCommentAltExclamation": () => (/* binding */ uniCommentAltExclamation), +/* harmony export */ "uniCommentAltHeart": () => (/* binding */ uniCommentAltHeart), +/* harmony export */ "uniCommentAltImage": () => (/* binding */ uniCommentAltImage), +/* harmony export */ "uniCommentAltInfo": () => (/* binding */ uniCommentAltInfo), +/* harmony export */ "uniCommentAltLines": () => (/* binding */ uniCommentAltLines), +/* harmony export */ "uniCommentAltLock": () => (/* binding */ uniCommentAltLock), +/* harmony export */ "uniCommentAltMedical": () => (/* binding */ uniCommentAltMedical), +/* harmony export */ "uniCommentAltMessage": () => (/* binding */ uniCommentAltMessage), +/* harmony export */ "uniCommentAltNotes": () => (/* binding */ uniCommentAltNotes), +/* harmony export */ "uniCommentAltPlus": () => (/* binding */ uniCommentAltPlus), +/* harmony export */ "uniCommentAltQuestion": () => (/* binding */ uniCommentAltQuestion), +/* harmony export */ "uniCommentAltRedo": () => (/* binding */ uniCommentAltRedo), +/* harmony export */ "uniCommentAltSearch": () => (/* binding */ uniCommentAltSearch), +/* harmony export */ "uniCommentAltShare": () => (/* binding */ uniCommentAltShare), +/* harmony export */ "uniCommentAltShield": () => (/* binding */ uniCommentAltShield), +/* harmony export */ "uniCommentAltSlash": () => (/* binding */ uniCommentAltSlash), +/* harmony export */ "uniCommentAltUpload": () => (/* binding */ uniCommentAltUpload), +/* harmony export */ "uniCommentAltVerify": () => (/* binding */ uniCommentAltVerify), +/* harmony export */ "uniCommentBlock": () => (/* binding */ uniCommentBlock), +/* harmony export */ "uniCommentChartLine": () => (/* binding */ uniCommentChartLine), +/* harmony export */ "uniCommentCheck": () => (/* binding */ uniCommentCheck), +/* harmony export */ "uniCommentDots": () => (/* binding */ uniCommentDots), +/* harmony export */ "uniCommentDownload": () => (/* binding */ uniCommentDownload), +/* harmony export */ "uniCommentEdit": () => (/* binding */ uniCommentEdit), +/* harmony export */ "uniCommentExclamation": () => (/* binding */ uniCommentExclamation), +/* harmony export */ "uniCommentHeart": () => (/* binding */ uniCommentHeart), +/* harmony export */ "uniCommentImage": () => (/* binding */ uniCommentImage), +/* harmony export */ "uniCommentInfo": () => (/* binding */ uniCommentInfo), +/* harmony export */ "uniCommentInfoAlt": () => (/* binding */ uniCommentInfoAlt), +/* harmony export */ "uniCommentLines": () => (/* binding */ uniCommentLines), +/* harmony export */ "uniCommentLock": () => (/* binding */ uniCommentLock), +/* harmony export */ "uniCommentMedical": () => (/* binding */ uniCommentMedical), +/* harmony export */ "uniCommentMessage": () => (/* binding */ uniCommentMessage), +/* harmony export */ "uniCommentNotes": () => (/* binding */ uniCommentNotes), +/* harmony export */ "uniCommentPlus": () => (/* binding */ uniCommentPlus), +/* harmony export */ "uniCommentQuestion": () => (/* binding */ uniCommentQuestion), +/* harmony export */ "uniCommentRedo": () => (/* binding */ uniCommentRedo), +/* harmony export */ "uniCommentSearch": () => (/* binding */ uniCommentSearch), +/* harmony export */ "uniCommentShare": () => (/* binding */ uniCommentShare), +/* harmony export */ "uniCommentShield": () => (/* binding */ uniCommentShield), +/* harmony export */ "uniCommentSlash": () => (/* binding */ uniCommentSlash), +/* harmony export */ "uniCommentUpload": () => (/* binding */ uniCommentUpload), +/* harmony export */ "uniCommentVerify": () => (/* binding */ uniCommentVerify), +/* harmony export */ "uniComments": () => (/* binding */ uniComments), +/* harmony export */ "uniCommentsAlt": () => (/* binding */ uniCommentsAlt), +/* harmony export */ "uniCompactDisc": () => (/* binding */ uniCompactDisc), +/* harmony export */ "uniComparison": () => (/* binding */ uniComparison), +/* harmony export */ "uniCompass": () => (/* binding */ uniCompass), +/* harmony export */ "uniCompress": () => (/* binding */ uniCompress), +/* harmony export */ "uniCompressAlt": () => (/* binding */ uniCompressAlt), +/* harmony export */ "uniCompressAltLeft": () => (/* binding */ uniCompressAltLeft), +/* harmony export */ "uniCompressArrows": () => (/* binding */ uniCompressArrows), +/* harmony export */ "uniCompressLines": () => (/* binding */ uniCompressLines), +/* harmony export */ "uniCompressPoint": () => (/* binding */ uniCompressPoint), +/* harmony export */ "uniCompressV": () => (/* binding */ uniCompressV), +/* harmony export */ "uniConfused": () => (/* binding */ uniConfused), +/* harmony export */ "uniConstructor": () => (/* binding */ uniConstructor), +/* harmony export */ "uniCopy": () => (/* binding */ uniCopy), +/* harmony export */ "uniCopyAlt": () => (/* binding */ uniCopyAlt), +/* harmony export */ "uniCopyLandscape": () => (/* binding */ uniCopyLandscape), +/* harmony export */ "uniCopyright": () => (/* binding */ uniCopyright), +/* harmony export */ "uniCornerDownLeft": () => (/* binding */ uniCornerDownLeft), +/* harmony export */ "uniCornerDownRight": () => (/* binding */ uniCornerDownRight), +/* harmony export */ "uniCornerDownRightAlt": () => (/* binding */ uniCornerDownRightAlt), +/* harmony export */ "uniCornerLeftDown": () => (/* binding */ uniCornerLeftDown), +/* harmony export */ "uniCornerRightDown": () => (/* binding */ uniCornerRightDown), +/* harmony export */ "uniCornerUpLeft": () => (/* binding */ uniCornerUpLeft), +/* harmony export */ "uniCornerUpLeftAlt": () => (/* binding */ uniCornerUpLeftAlt), +/* harmony export */ "uniCornerUpRight": () => (/* binding */ uniCornerUpRight), +/* harmony export */ "uniCornerUpRightAlt": () => (/* binding */ uniCornerUpRightAlt), +/* harmony export */ "uniCoronavirus": () => (/* binding */ uniCoronavirus), +/* harmony export */ "uniCreateDashboard": () => (/* binding */ uniCreateDashboard), +/* harmony export */ "uniCreativeCommonsPd": () => (/* binding */ uniCreativeCommonsPd), +/* harmony export */ "uniCreditCard": () => (/* binding */ uniCreditCard), +/* harmony export */ "uniCreditCardSearch": () => (/* binding */ uniCreditCardSearch), +/* harmony export */ "uniCrockery": () => (/* binding */ uniCrockery), +/* harmony export */ "uniCropAlt": () => (/* binding */ uniCropAlt), +/* harmony export */ "uniCropAltRotateLeft": () => (/* binding */ uniCropAltRotateLeft), +/* harmony export */ "uniCropAltRotateRight": () => (/* binding */ uniCropAltRotateRight), +/* harmony export */ "uniCrosshair": () => (/* binding */ uniCrosshair), +/* harmony export */ "uniCrosshairAlt": () => (/* binding */ uniCrosshairAlt), +/* harmony export */ "uniCrosshairs": () => (/* binding */ uniCrosshairs), +/* harmony export */ "uniCss3Simple": () => (/* binding */ uniCss3Simple), +/* harmony export */ "uniCube": () => (/* binding */ uniCube), +/* harmony export */ "uniDashboard": () => (/* binding */ uniDashboard), +/* harmony export */ "uniDataSharing": () => (/* binding */ uniDataSharing), +/* harmony export */ "uniDatabase": () => (/* binding */ uniDatabase), +/* harmony export */ "uniDatabaseAlt": () => (/* binding */ uniDatabaseAlt), +/* harmony export */ "uniDesert": () => (/* binding */ uniDesert), +/* harmony export */ "uniDesktop": () => (/* binding */ uniDesktop), +/* harmony export */ "uniDesktopAlt": () => (/* binding */ uniDesktopAlt), +/* harmony export */ "uniDesktopAltSlash": () => (/* binding */ uniDesktopAltSlash), +/* harmony export */ "uniDesktopCloudAlt": () => (/* binding */ uniDesktopCloudAlt), +/* harmony export */ "uniDesktopSlash": () => (/* binding */ uniDesktopSlash), +/* harmony export */ "uniDialpad": () => (/* binding */ uniDialpad), +/* harmony export */ "uniDialpadAlt": () => (/* binding */ uniDialpadAlt), +/* harmony export */ "uniDiamond": () => (/* binding */ uniDiamond), +/* harmony export */ "uniDiary": () => (/* binding */ uniDiary), +/* harmony export */ "uniDiaryAlt": () => (/* binding */ uniDiaryAlt), +/* harmony export */ "uniDiceFive": () => (/* binding */ uniDiceFive), +/* harmony export */ "uniDiceFour": () => (/* binding */ uniDiceFour), +/* harmony export */ "uniDiceOne": () => (/* binding */ uniDiceOne), +/* harmony export */ "uniDiceSix": () => (/* binding */ uniDiceSix), +/* harmony export */ "uniDiceThree": () => (/* binding */ uniDiceThree), +/* harmony export */ "uniDiceTwo": () => (/* binding */ uniDiceTwo), +/* harmony export */ "uniDirection": () => (/* binding */ uniDirection), +/* harmony export */ "uniDirections": () => (/* binding */ uniDirections), +/* harmony export */ "uniDiscord": () => (/* binding */ uniDiscord), +/* harmony export */ "uniDizzyMeh": () => (/* binding */ uniDizzyMeh), +/* harmony export */ "uniDna": () => (/* binding */ uniDna), +/* harmony export */ "uniDocker": () => (/* binding */ uniDocker), +/* harmony export */ "uniDocumentInfo": () => (/* binding */ uniDocumentInfo), +/* harmony export */ "uniDocumentLayoutCenter": () => (/* binding */ uniDocumentLayoutCenter), +/* harmony export */ "uniDocumentLayoutLeft": () => (/* binding */ uniDocumentLayoutLeft), +/* harmony export */ "uniDocumentLayoutRight": () => (/* binding */ uniDocumentLayoutRight), +/* harmony export */ "uniDollarAlt": () => (/* binding */ uniDollarAlt), +/* harmony export */ "uniDollarSign": () => (/* binding */ uniDollarSign), +/* harmony export */ "uniDollarSignAlt": () => (/* binding */ uniDollarSignAlt), +/* harmony export */ "uniDownloadAlt": () => (/* binding */ uniDownloadAlt), +/* harmony export */ "uniDraggabledots": () => (/* binding */ uniDraggabledots), +/* harmony export */ "uniDribbble": () => (/* binding */ uniDribbble), +/* harmony export */ "uniDrill": () => (/* binding */ uniDrill), +/* harmony export */ "uniDropbox": () => (/* binding */ uniDropbox), +/* harmony export */ "uniDumbbell": () => (/* binding */ uniDumbbell), +/* harmony export */ "uniEar": () => (/* binding */ uniEar), +/* harmony export */ "uniEdit": () => (/* binding */ uniEdit), +/* harmony export */ "uniEditAlt": () => (/* binding */ uniEditAlt), +/* harmony export */ "uniElipsisDoubleVAlt": () => (/* binding */ uniElipsisDoubleVAlt), +/* harmony export */ "uniEllipsisH": () => (/* binding */ uniEllipsisH), +/* harmony export */ "uniEllipsisV": () => (/* binding */ uniEllipsisV), +/* harmony export */ "uniEmoji": () => (/* binding */ uniEmoji), +/* harmony export */ "uniEnglishToChinese": () => (/* binding */ uniEnglishToChinese), +/* harmony export */ "uniEnter": () => (/* binding */ uniEnter), +/* harmony export */ "uniEnvelope": () => (/* binding */ uniEnvelope), +/* harmony export */ "uniEnvelopeAdd": () => (/* binding */ uniEnvelopeAdd), +/* harmony export */ "uniEnvelopeAlt": () => (/* binding */ uniEnvelopeAlt), +/* harmony export */ "uniEnvelopeBlock": () => (/* binding */ uniEnvelopeBlock), +/* harmony export */ "uniEnvelopeBookmark": () => (/* binding */ uniEnvelopeBookmark), +/* harmony export */ "uniEnvelopeCheck": () => (/* binding */ uniEnvelopeCheck), +/* harmony export */ "uniEnvelopeDownload": () => (/* binding */ uniEnvelopeDownload), +/* harmony export */ "uniEnvelopeDownloadAlt": () => (/* binding */ uniEnvelopeDownloadAlt), +/* harmony export */ "uniEnvelopeEdit": () => (/* binding */ uniEnvelopeEdit), +/* harmony export */ "uniEnvelopeExclamation": () => (/* binding */ uniEnvelopeExclamation), +/* harmony export */ "uniEnvelopeHeart": () => (/* binding */ uniEnvelopeHeart), +/* harmony export */ "uniEnvelopeInfo": () => (/* binding */ uniEnvelopeInfo), +/* harmony export */ "uniEnvelopeLock": () => (/* binding */ uniEnvelopeLock), +/* harmony export */ "uniEnvelopeMinus": () => (/* binding */ uniEnvelopeMinus), +/* harmony export */ "uniEnvelopeOpen": () => (/* binding */ uniEnvelopeOpen), +/* harmony export */ "uniEnvelopeQuestion": () => (/* binding */ uniEnvelopeQuestion), +/* harmony export */ "uniEnvelopeReceive": () => (/* binding */ uniEnvelopeReceive), +/* harmony export */ "uniEnvelopeRedo": () => (/* binding */ uniEnvelopeRedo), +/* harmony export */ "uniEnvelopeSearch": () => (/* binding */ uniEnvelopeSearch), +/* harmony export */ "uniEnvelopeSend": () => (/* binding */ uniEnvelopeSend), +/* harmony export */ "uniEnvelopeShare": () => (/* binding */ uniEnvelopeShare), +/* harmony export */ "uniEnvelopeShield": () => (/* binding */ uniEnvelopeShield), +/* harmony export */ "uniEnvelopeStar": () => (/* binding */ uniEnvelopeStar), +/* harmony export */ "uniEnvelopeTimes": () => (/* binding */ uniEnvelopeTimes), +/* harmony export */ "uniEnvelopeUpload": () => (/* binding */ uniEnvelopeUpload), +/* harmony export */ "uniEnvelopeUploadAlt": () => (/* binding */ uniEnvelopeUploadAlt), +/* harmony export */ "uniEnvelopes": () => (/* binding */ uniEnvelopes), +/* harmony export */ "uniEqualCircle": () => (/* binding */ uniEqualCircle), +/* harmony export */ "uniEstate": () => (/* binding */ uniEstate), +/* harmony export */ "uniEuro": () => (/* binding */ uniEuro), +/* harmony export */ "uniEuroCircle": () => (/* binding */ uniEuroCircle), +/* harmony export */ "uniExchange": () => (/* binding */ uniExchange), +/* harmony export */ "uniExchangeAlt": () => (/* binding */ uniExchangeAlt), +/* harmony export */ "uniExclamation": () => (/* binding */ uniExclamation), +/* harmony export */ "uniExclamationCircle": () => (/* binding */ uniExclamationCircle), +/* harmony export */ "uniExclamationOctagon": () => (/* binding */ uniExclamationOctagon), +/* harmony export */ "uniExclamationTriangle": () => (/* binding */ uniExclamationTriangle), +/* harmony export */ "uniExclude": () => (/* binding */ uniExclude), +/* harmony export */ "uniExpandAlt": () => (/* binding */ uniExpandAlt), +/* harmony export */ "uniExpandArrows": () => (/* binding */ uniExpandArrows), +/* harmony export */ "uniExpandArrowsAlt": () => (/* binding */ uniExpandArrowsAlt), +/* harmony export */ "uniExpandFromCorner": () => (/* binding */ uniExpandFromCorner), +/* harmony export */ "uniExpandLeft": () => (/* binding */ uniExpandLeft), +/* harmony export */ "uniExpandRight": () => (/* binding */ uniExpandRight), +/* harmony export */ "uniExport": () => (/* binding */ uniExport), +/* harmony export */ "uniExposureAlt": () => (/* binding */ uniExposureAlt), +/* harmony export */ "uniExposureIncrease": () => (/* binding */ uniExposureIncrease), +/* harmony export */ "uniExternalLinkAlt": () => (/* binding */ uniExternalLinkAlt), +/* harmony export */ "uniEye": () => (/* binding */ uniEye), +/* harmony export */ "uniEyeSlash": () => (/* binding */ uniEyeSlash), +/* harmony export */ "uniFacebook": () => (/* binding */ uniFacebook), +/* harmony export */ "uniFacebookF": () => (/* binding */ uniFacebookF), +/* harmony export */ "uniFacebookMessenger": () => (/* binding */ uniFacebookMessenger), +/* harmony export */ "uniFacebookMessengerAlt": () => (/* binding */ uniFacebookMessengerAlt), +/* harmony export */ "uniFahrenheit": () => (/* binding */ uniFahrenheit), +/* harmony export */ "uniFastMail": () => (/* binding */ uniFastMail), +/* harmony export */ "uniFastMailAlt": () => (/* binding */ uniFastMailAlt), +/* harmony export */ "uniFavorite": () => (/* binding */ uniFavorite), +/* harmony export */ "uniFeedback": () => (/* binding */ uniFeedback), +/* harmony export */ "uniFidgetSpinner": () => (/* binding */ uniFidgetSpinner), +/* harmony export */ "uniFile": () => (/* binding */ uniFile), +/* harmony export */ "uniFileAlt": () => (/* binding */ uniFileAlt), +/* harmony export */ "uniFileBlank": () => (/* binding */ uniFileBlank), +/* harmony export */ "uniFileBlockAlt": () => (/* binding */ uniFileBlockAlt), +/* harmony export */ "uniFileBookmarkAlt": () => (/* binding */ uniFileBookmarkAlt), +/* harmony export */ "uniFileCheck": () => (/* binding */ uniFileCheck), +/* harmony export */ "uniFileCheckAlt": () => (/* binding */ uniFileCheckAlt), +/* harmony export */ "uniFileContract": () => (/* binding */ uniFileContract), +/* harmony export */ "uniFileContractDollar": () => (/* binding */ uniFileContractDollar), +/* harmony export */ "uniFileCopyAlt": () => (/* binding */ uniFileCopyAlt), +/* harmony export */ "uniFileDownload": () => (/* binding */ uniFileDownload), +/* harmony export */ "uniFileDownloadAlt": () => (/* binding */ uniFileDownloadAlt), +/* harmony export */ "uniFileEditAlt": () => (/* binding */ uniFileEditAlt), +/* harmony export */ "uniFileExclamation": () => (/* binding */ uniFileExclamation), +/* harmony export */ "uniFileExclamationAlt": () => (/* binding */ uniFileExclamationAlt), +/* harmony export */ "uniFileExport": () => (/* binding */ uniFileExport), +/* harmony export */ "uniFileGraph": () => (/* binding */ uniFileGraph), +/* harmony export */ "uniFileHeart": () => (/* binding */ uniFileHeart), +/* harmony export */ "uniFileImport": () => (/* binding */ uniFileImport), +/* harmony export */ "uniFileInfoAlt": () => (/* binding */ uniFileInfoAlt), +/* harmony export */ "uniFileLandscape": () => (/* binding */ uniFileLandscape), +/* harmony export */ "uniFileLandscapeAlt": () => (/* binding */ uniFileLandscapeAlt), +/* harmony export */ "uniFileLanscapeSlash": () => (/* binding */ uniFileLanscapeSlash), +/* harmony export */ "uniFileLockAlt": () => (/* binding */ uniFileLockAlt), +/* harmony export */ "uniFileMedical": () => (/* binding */ uniFileMedical), +/* harmony export */ "uniFileMedicalAlt": () => (/* binding */ uniFileMedicalAlt), +/* harmony export */ "uniFileMinus": () => (/* binding */ uniFileMinus), +/* harmony export */ "uniFileMinusAlt": () => (/* binding */ uniFileMinusAlt), +/* harmony export */ "uniFileNetwork": () => (/* binding */ uniFileNetwork), +/* harmony export */ "uniFilePlus": () => (/* binding */ uniFilePlus), +/* harmony export */ "uniFilePlusAlt": () => (/* binding */ uniFilePlusAlt), +/* harmony export */ "uniFileQuestion": () => (/* binding */ uniFileQuestion), +/* harmony export */ "uniFileQuestionAlt": () => (/* binding */ uniFileQuestionAlt), +/* harmony export */ "uniFileRedoAlt": () => (/* binding */ uniFileRedoAlt), +/* harmony export */ "uniFileSearchAlt": () => (/* binding */ uniFileSearchAlt), +/* harmony export */ "uniFileShareAlt": () => (/* binding */ uniFileShareAlt), +/* harmony export */ "uniFileShieldAlt": () => (/* binding */ uniFileShieldAlt), +/* harmony export */ "uniFileSlash": () => (/* binding */ uniFileSlash), +/* harmony export */ "uniFileTimes": () => (/* binding */ uniFileTimes), +/* harmony export */ "uniFileTimesAlt": () => (/* binding */ uniFileTimesAlt), +/* harmony export */ "uniFileUpload": () => (/* binding */ uniFileUpload), +/* harmony export */ "uniFileUploadAlt": () => (/* binding */ uniFileUploadAlt), +/* harmony export */ "uniFilesLandscapes": () => (/* binding */ uniFilesLandscapes), +/* harmony export */ "uniFilesLandscapesAlt": () => (/* binding */ uniFilesLandscapesAlt), +/* harmony export */ "uniFilm": () => (/* binding */ uniFilm), +/* harmony export */ "uniFilter": () => (/* binding */ uniFilter), +/* harmony export */ "uniFilterSlash": () => (/* binding */ uniFilterSlash), +/* harmony export */ "uniFire": () => (/* binding */ uniFire), +/* harmony export */ "uniFlask": () => (/* binding */ uniFlask), +/* harmony export */ "uniFlaskPotion": () => (/* binding */ uniFlaskPotion), +/* harmony export */ "uniFlipH": () => (/* binding */ uniFlipH), +/* harmony export */ "uniFlipHAlt": () => (/* binding */ uniFlipHAlt), +/* harmony export */ "uniFlipV": () => (/* binding */ uniFlipV), +/* harmony export */ "uniFlipVAlt": () => (/* binding */ uniFlipVAlt), +/* harmony export */ "uniFlower": () => (/* binding */ uniFlower), +/* harmony export */ "uniFocus": () => (/* binding */ uniFocus), +/* harmony export */ "uniFocusAdd": () => (/* binding */ uniFocusAdd), +/* harmony export */ "uniFocusTarget": () => (/* binding */ uniFocusTarget), +/* harmony export */ "uniFolder": () => (/* binding */ uniFolder), +/* harmony export */ "uniFolderCheck": () => (/* binding */ uniFolderCheck), +/* harmony export */ "uniFolderDownload": () => (/* binding */ uniFolderDownload), +/* harmony export */ "uniFolderExclamation": () => (/* binding */ uniFolderExclamation), +/* harmony export */ "uniFolderHeart": () => (/* binding */ uniFolderHeart), +/* harmony export */ "uniFolderInfo": () => (/* binding */ uniFolderInfo), +/* harmony export */ "uniFolderLock": () => (/* binding */ uniFolderLock), +/* harmony export */ "uniFolderMedical": () => (/* binding */ uniFolderMedical), +/* harmony export */ "uniFolderMinus": () => (/* binding */ uniFolderMinus), +/* harmony export */ "uniFolderNetwork": () => (/* binding */ uniFolderNetwork), +/* harmony export */ "uniFolderOpen": () => (/* binding */ uniFolderOpen), +/* harmony export */ "uniFolderPlus": () => (/* binding */ uniFolderPlus), +/* harmony export */ "uniFolderQuestion": () => (/* binding */ uniFolderQuestion), +/* harmony export */ "uniFolderSlash": () => (/* binding */ uniFolderSlash), +/* harmony export */ "uniFolderTimes": () => (/* binding */ uniFolderTimes), +/* harmony export */ "uniFolderUpload": () => (/* binding */ uniFolderUpload), +/* harmony export */ "uniFont": () => (/* binding */ uniFont), +/* harmony export */ "uniFootball": () => (/* binding */ uniFootball), +/* harmony export */ "uniFootballAmerican": () => (/* binding */ uniFootballAmerican), +/* harmony export */ "uniFootballBall": () => (/* binding */ uniFootballBall), +/* harmony export */ "uniForecastcloudMoonTear": () => (/* binding */ uniForecastcloudMoonTear), +/* harmony export */ "uniForwadedCall": () => (/* binding */ uniForwadedCall), +/* harmony export */ "uniForward": () => (/* binding */ uniForward), +/* harmony export */ "uniFrown": () => (/* binding */ uniFrown), +/* harmony export */ "uniGameStructure": () => (/* binding */ uniGameStructure), +/* harmony export */ "uniGift": () => (/* binding */ uniGift), +/* harmony export */ "uniGithub": () => (/* binding */ uniGithub), +/* harmony export */ "uniGithubAlt": () => (/* binding */ uniGithubAlt), +/* harmony export */ "uniGitlab": () => (/* binding */ uniGitlab), +/* harmony export */ "uniGlass": () => (/* binding */ uniGlass), +/* harmony export */ "uniGlassMartini": () => (/* binding */ uniGlassMartini), +/* harmony export */ "uniGlassMartiniAlt": () => (/* binding */ uniGlassMartiniAlt), +/* harmony export */ "uniGlassMartiniAltSlash": () => (/* binding */ uniGlassMartiniAltSlash), +/* harmony export */ "uniGlassTea": () => (/* binding */ uniGlassTea), +/* harmony export */ "uniGlobe": () => (/* binding */ uniGlobe), +/* harmony export */ "uniGold": () => (/* binding */ uniGold), +/* harmony export */ "uniGolfBall": () => (/* binding */ uniGolfBall), +/* harmony export */ "uniGoogle": () => (/* binding */ uniGoogle), +/* harmony export */ "uniGoogleDrive": () => (/* binding */ uniGoogleDrive), +/* harmony export */ "uniGoogleDriveAlt": () => (/* binding */ uniGoogleDriveAlt), +/* harmony export */ "uniGoogleHangouts": () => (/* binding */ uniGoogleHangouts), +/* harmony export */ "uniGoogleHangoutsAlt": () => (/* binding */ uniGoogleHangoutsAlt), +/* harmony export */ "uniGooglePlay": () => (/* binding */ uniGooglePlay), +/* harmony export */ "uniGraduationCap": () => (/* binding */ uniGraduationCap), +/* harmony export */ "uniGraphBar": () => (/* binding */ uniGraphBar), +/* harmony export */ "uniGrid": () => (/* binding */ uniGrid), +/* harmony export */ "uniGrids": () => (/* binding */ uniGrids), +/* harmony export */ "uniGrin": () => (/* binding */ uniGrin), +/* harmony export */ "uniGrinTongueWink": () => (/* binding */ uniGrinTongueWink), +/* harmony export */ "uniGrinTongueWinkAlt": () => (/* binding */ uniGrinTongueWinkAlt), +/* harmony export */ "uniGripHorizontalLine": () => (/* binding */ uniGripHorizontalLine), +/* harmony export */ "uniHardHat": () => (/* binding */ uniHardHat), +/* harmony export */ "uniHdd": () => (/* binding */ uniHdd), +/* harmony export */ "uniHeadSide": () => (/* binding */ uniHeadSide), +/* harmony export */ "uniHeadSideCough": () => (/* binding */ uniHeadSideCough), +/* harmony export */ "uniHeadSideMask": () => (/* binding */ uniHeadSideMask), +/* harmony export */ "uniHeadphoneSlash": () => (/* binding */ uniHeadphoneSlash), +/* harmony export */ "uniHeadphones": () => (/* binding */ uniHeadphones), +/* harmony export */ "uniHeadphonesAlt": () => (/* binding */ uniHeadphonesAlt), +/* harmony export */ "uniHeart": () => (/* binding */ uniHeart), +/* harmony export */ "uniHeartAlt": () => (/* binding */ uniHeartAlt), +/* harmony export */ "uniHeartBreak": () => (/* binding */ uniHeartBreak), +/* harmony export */ "uniHeartMedical": () => (/* binding */ uniHeartMedical), +/* harmony export */ "uniHeartRate": () => (/* binding */ uniHeartRate), +/* harmony export */ "uniHeartSign": () => (/* binding */ uniHeartSign), +/* harmony export */ "uniHeartbeat": () => (/* binding */ uniHeartbeat), +/* harmony export */ "uniHindiToChinese": () => (/* binding */ uniHindiToChinese), +/* harmony export */ "uniHipchat": () => (/* binding */ uniHipchat), +/* harmony export */ "uniHistory": () => (/* binding */ uniHistory), +/* harmony export */ "uniHistoryAlt": () => (/* binding */ uniHistoryAlt), +/* harmony export */ "uniHome": () => (/* binding */ uniHome), +/* harmony export */ "uniHorizontalAlignCenter": () => (/* binding */ uniHorizontalAlignCenter), +/* harmony export */ "uniHorizontalAlignLeft": () => (/* binding */ uniHorizontalAlignLeft), +/* harmony export */ "uniHorizontalAlignRight": () => (/* binding */ uniHorizontalAlignRight), +/* harmony export */ "uniHorizontalDistributionCenter": () => (/* binding */ uniHorizontalDistributionCenter), +/* harmony export */ "uniHorizontalDistributionLeft": () => (/* binding */ uniHorizontalDistributionLeft), +/* harmony export */ "uniHorizontalDistributionRight": () => (/* binding */ uniHorizontalDistributionRight), +/* harmony export */ "uniHospital": () => (/* binding */ uniHospital), +/* harmony export */ "uniHospitalSquareSign": () => (/* binding */ uniHospitalSquareSign), +/* harmony export */ "uniHospitalSymbol": () => (/* binding */ uniHospitalSymbol), +/* harmony export */ "uniHourglass": () => (/* binding */ uniHourglass), +/* harmony export */ "uniHouseUser": () => (/* binding */ uniHouseUser), +/* harmony export */ "uniHtml3": () => (/* binding */ uniHtml3), +/* harmony export */ "uniHtml3Alt": () => (/* binding */ uniHtml3Alt), +/* harmony export */ "uniHtml5": () => (/* binding */ uniHtml5), +/* harmony export */ "uniHtml5Alt": () => (/* binding */ uniHtml5Alt), +/* harmony export */ "uniHunting": () => (/* binding */ uniHunting), +/* harmony export */ "uniIcons": () => (/* binding */ uniIcons), +/* harmony export */ "uniIllustration": () => (/* binding */ uniIllustration), +/* harmony export */ "uniImage": () => (/* binding */ uniImage), +/* harmony export */ "uniImageAltSlash": () => (/* binding */ uniImageAltSlash), +/* harmony export */ "uniImageBlock": () => (/* binding */ uniImageBlock), +/* harmony export */ "uniImageBroken": () => (/* binding */ uniImageBroken), +/* harmony export */ "uniImageCheck": () => (/* binding */ uniImageCheck), +/* harmony export */ "uniImageDownload": () => (/* binding */ uniImageDownload), +/* harmony export */ "uniImageEdit": () => (/* binding */ uniImageEdit), +/* harmony export */ "uniImageLock": () => (/* binding */ uniImageLock), +/* harmony export */ "uniImageMinus": () => (/* binding */ uniImageMinus), +/* harmony export */ "uniImagePlus": () => (/* binding */ uniImagePlus), +/* harmony export */ "uniImageQuestion": () => (/* binding */ uniImageQuestion), +/* harmony export */ "uniImageRedo": () => (/* binding */ uniImageRedo), +/* harmony export */ "uniImageResizeLandscape": () => (/* binding */ uniImageResizeLandscape), +/* harmony export */ "uniImageResizeSquare": () => (/* binding */ uniImageResizeSquare), +/* harmony export */ "uniImageSearch": () => (/* binding */ uniImageSearch), +/* harmony export */ "uniImageShare": () => (/* binding */ uniImageShare), +/* harmony export */ "uniImageShield": () => (/* binding */ uniImageShield), +/* harmony export */ "uniImageSlash": () => (/* binding */ uniImageSlash), +/* harmony export */ "uniImageTimes": () => (/* binding */ uniImageTimes), +/* harmony export */ "uniImageUpload": () => (/* binding */ uniImageUpload), +/* harmony export */ "uniImageV": () => (/* binding */ uniImageV), +/* harmony export */ "uniImages": () => (/* binding */ uniImages), +/* harmony export */ "uniImport": () => (/* binding */ uniImport), +/* harmony export */ "uniInbox": () => (/* binding */ uniInbox), +/* harmony export */ "uniIncomingCall": () => (/* binding */ uniIncomingCall), +/* harmony export */ "uniInfo": () => (/* binding */ uniInfo), +/* harmony export */ "uniInfoCircle": () => (/* binding */ uniInfoCircle), +/* harmony export */ "uniInstagram": () => (/* binding */ uniInstagram), +/* harmony export */ "uniInstagramAlt": () => (/* binding */ uniInstagramAlt), +/* harmony export */ "uniIntercom": () => (/* binding */ uniIntercom), +/* harmony export */ "uniIntercomAlt": () => (/* binding */ uniIntercomAlt), +/* harmony export */ "uniInvoice": () => (/* binding */ uniInvoice), +/* harmony export */ "uniItalic": () => (/* binding */ uniItalic), +/* harmony export */ "uniJackhammer": () => (/* binding */ uniJackhammer), +/* harmony export */ "uniJavaScript": () => (/* binding */ uniJavaScript), +/* harmony export */ "uniKayak": () => (/* binding */ uniKayak), +/* harmony export */ "uniKeySkeleton": () => (/* binding */ uniKeySkeleton), +/* harmony export */ "uniKeySkeletonAlt": () => (/* binding */ uniKeySkeletonAlt), +/* harmony export */ "uniKeyboard": () => (/* binding */ uniKeyboard), +/* harmony export */ "uniKeyboardAlt": () => (/* binding */ uniKeyboardAlt), +/* harmony export */ "uniKeyboardHide": () => (/* binding */ uniKeyboardHide), +/* harmony export */ "uniKeyboardShow": () => (/* binding */ uniKeyboardShow), +/* harmony export */ "uniKeyholeCircle": () => (/* binding */ uniKeyholeCircle), +/* harmony export */ "uniKeyholeSquare": () => (/* binding */ uniKeyholeSquare), +/* harmony export */ "uniKeyholeSquareFull": () => (/* binding */ uniKeyholeSquareFull), +/* harmony export */ "uniKid": () => (/* binding */ uniKid), +/* harmony export */ "uniLabel": () => (/* binding */ uniLabel), +/* harmony export */ "uniLabelAlt": () => (/* binding */ uniLabelAlt), +/* harmony export */ "uniLamp": () => (/* binding */ uniLamp), +/* harmony export */ "uniLanguage": () => (/* binding */ uniLanguage), +/* harmony export */ "uniLaptop": () => (/* binding */ uniLaptop), +/* harmony export */ "uniLaptopCloud": () => (/* binding */ uniLaptopCloud), +/* harmony export */ "uniLaptopConnection": () => (/* binding */ uniLaptopConnection), +/* harmony export */ "uniLaughing": () => (/* binding */ uniLaughing), +/* harmony export */ "uniLayerGroup": () => (/* binding */ uniLayerGroup), +/* harmony export */ "uniLayerGroupSlash": () => (/* binding */ uniLayerGroupSlash), +/* harmony export */ "uniLayers": () => (/* binding */ uniLayers), +/* harmony export */ "uniLayersAlt": () => (/* binding */ uniLayersAlt), +/* harmony export */ "uniLayersSlash": () => (/* binding */ uniLayersSlash), +/* harmony export */ "uniLeftArrowFromLeft": () => (/* binding */ uniLeftArrowFromLeft), +/* harmony export */ "uniLeftArrowToLeft": () => (/* binding */ uniLeftArrowToLeft), +/* harmony export */ "uniLeftIndent": () => (/* binding */ uniLeftIndent), +/* harmony export */ "uniLeftIndentAlt": () => (/* binding */ uniLeftIndentAlt), +/* harmony export */ "uniLeftToRightTextDirection": () => (/* binding */ uniLeftToRightTextDirection), +/* harmony export */ "uniLetterChineseA": () => (/* binding */ uniLetterChineseA), +/* harmony export */ "uniLetterEnglishA": () => (/* binding */ uniLetterEnglishA), +/* harmony export */ "uniLetterHindiA": () => (/* binding */ uniLetterHindiA), +/* harmony export */ "uniLetterJapaneseA": () => (/* binding */ uniLetterJapaneseA), +/* harmony export */ "uniLifeRing": () => (/* binding */ uniLifeRing), +/* harmony export */ "uniLightbulb": () => (/* binding */ uniLightbulb), +/* harmony export */ "uniLightbulbAlt": () => (/* binding */ uniLightbulbAlt), +/* harmony export */ "uniLine": () => (/* binding */ uniLine), +/* harmony export */ "uniLineAlt": () => (/* binding */ uniLineAlt), +/* harmony export */ "uniLineSpacing": () => (/* binding */ uniLineSpacing), +/* harmony export */ "uniLink": () => (/* binding */ uniLink), +/* harmony export */ "uniLinkAdd": () => (/* binding */ uniLinkAdd), +/* harmony export */ "uniLinkAlt": () => (/* binding */ uniLinkAlt), +/* harmony export */ "uniLinkBroken": () => (/* binding */ uniLinkBroken), +/* harmony export */ "uniLinkH": () => (/* binding */ uniLinkH), +/* harmony export */ "uniLinkedin": () => (/* binding */ uniLinkedin), +/* harmony export */ "uniLinkedinAlt": () => (/* binding */ uniLinkedinAlt), +/* harmony export */ "uniLinux": () => (/* binding */ uniLinux), +/* harmony export */ "uniLiraSign": () => (/* binding */ uniLiraSign), +/* harmony export */ "uniListOl": () => (/* binding */ uniListOl), +/* harmony export */ "uniListOlAlt": () => (/* binding */ uniListOlAlt), +/* harmony export */ "uniListUiAlt": () => (/* binding */ uniListUiAlt), +/* harmony export */ "uniListUl": () => (/* binding */ uniListUl), +/* harmony export */ "uniLocationArrow": () => (/* binding */ uniLocationArrow), +/* harmony export */ "uniLocationArrowAlt": () => (/* binding */ uniLocationArrowAlt), +/* harmony export */ "uniLocationPinAlt": () => (/* binding */ uniLocationPinAlt), +/* harmony export */ "uniLocationPoint": () => (/* binding */ uniLocationPoint), +/* harmony export */ "uniLock": () => (/* binding */ uniLock), +/* harmony export */ "uniLockAccess": () => (/* binding */ uniLockAccess), +/* harmony export */ "uniLockAlt": () => (/* binding */ uniLockAlt), +/* harmony export */ "uniLockOpenAlt": () => (/* binding */ uniLockOpenAlt), +/* harmony export */ "uniLockSlash": () => (/* binding */ uniLockSlash), +/* harmony export */ "uniLottiefiles": () => (/* binding */ uniLottiefiles), +/* harmony export */ "uniLottiefilesAlt": () => (/* binding */ uniLottiefilesAlt), +/* harmony export */ "uniLuggageCart": () => (/* binding */ uniLuggageCart), +/* harmony export */ "uniMailbox": () => (/* binding */ uniMailbox), +/* harmony export */ "uniMailboxAlt": () => (/* binding */ uniMailboxAlt), +/* harmony export */ "uniMap": () => (/* binding */ uniMap), +/* harmony export */ "uniMapMarker": () => (/* binding */ uniMapMarker), +/* harmony export */ "uniMapMarkerAlt": () => (/* binding */ uniMapMarkerAlt), +/* harmony export */ "uniMapMarkerEdit": () => (/* binding */ uniMapMarkerEdit), +/* harmony export */ "uniMapMarkerInfo": () => (/* binding */ uniMapMarkerInfo), +/* harmony export */ "uniMapMarkerMinus": () => (/* binding */ uniMapMarkerMinus), +/* harmony export */ "uniMapMarkerPlus": () => (/* binding */ uniMapMarkerPlus), +/* harmony export */ "uniMapMarkerQuestion": () => (/* binding */ uniMapMarkerQuestion), +/* harmony export */ "uniMapMarkerShield": () => (/* binding */ uniMapMarkerShield), +/* harmony export */ "uniMapMarkerSlash": () => (/* binding */ uniMapMarkerSlash), +/* harmony export */ "uniMapPin": () => (/* binding */ uniMapPin), +/* harmony export */ "uniMapPinAlt": () => (/* binding */ uniMapPinAlt), +/* harmony export */ "uniMars": () => (/* binding */ uniMars), +/* harmony export */ "uniMasterCard": () => (/* binding */ uniMasterCard), +/* harmony export */ "uniMaximizeLeft": () => (/* binding */ uniMaximizeLeft), +/* harmony export */ "uniMedal": () => (/* binding */ uniMedal), +/* harmony export */ "uniMedicalDrip": () => (/* binding */ uniMedicalDrip), +/* harmony export */ "uniMedicalSquare": () => (/* binding */ uniMedicalSquare), +/* harmony export */ "uniMedicalSquareFull": () => (/* binding */ uniMedicalSquareFull), +/* harmony export */ "uniMediumM": () => (/* binding */ uniMediumM), +/* harmony export */ "uniMedkit": () => (/* binding */ uniMedkit), +/* harmony export */ "uniMeetingBoard": () => (/* binding */ uniMeetingBoard), +/* harmony export */ "uniMegaphone": () => (/* binding */ uniMegaphone), +/* harmony export */ "uniMeh": () => (/* binding */ uniMeh), +/* harmony export */ "uniMehAlt": () => (/* binding */ uniMehAlt), +/* harmony export */ "uniMehClosedEye": () => (/* binding */ uniMehClosedEye), +/* harmony export */ "uniMessage": () => (/* binding */ uniMessage), +/* harmony export */ "uniMetro": () => (/* binding */ uniMetro), +/* harmony export */ "uniMicrophone": () => (/* binding */ uniMicrophone), +/* harmony export */ "uniMicrophoneSlash": () => (/* binding */ uniMicrophoneSlash), +/* harmony export */ "uniMicroscope": () => (/* binding */ uniMicroscope), +/* harmony export */ "uniMicrosoft": () => (/* binding */ uniMicrosoft), +/* harmony export */ "uniMinus": () => (/* binding */ uniMinus), +/* harmony export */ "uniMinusCircle": () => (/* binding */ uniMinusCircle), +/* harmony export */ "uniMinusPath": () => (/* binding */ uniMinusPath), +/* harmony export */ "uniMinusSquare": () => (/* binding */ uniMinusSquare), +/* harmony export */ "uniMinusSquareFull": () => (/* binding */ uniMinusSquareFull), +/* harmony export */ "uniMissedCall": () => (/* binding */ uniMissedCall), +/* harmony export */ "uniMobileAndroid": () => (/* binding */ uniMobileAndroid), +/* harmony export */ "uniMobileAndroidAlt": () => (/* binding */ uniMobileAndroidAlt), +/* harmony export */ "uniMobileVibrate": () => (/* binding */ uniMobileVibrate), +/* harmony export */ "uniModem": () => (/* binding */ uniModem), +/* harmony export */ "uniMoneyBill": () => (/* binding */ uniMoneyBill), +/* harmony export */ "uniMoneyBillSlash": () => (/* binding */ uniMoneyBillSlash), +/* harmony export */ "uniMoneyBillStack": () => (/* binding */ uniMoneyBillStack), +/* harmony export */ "uniMoneyInsert": () => (/* binding */ uniMoneyInsert), +/* harmony export */ "uniMoneyStack": () => (/* binding */ uniMoneyStack), +/* harmony export */ "uniMoneyWithdraw": () => (/* binding */ uniMoneyWithdraw), +/* harmony export */ "uniMoneyWithdrawal": () => (/* binding */ uniMoneyWithdrawal), +/* harmony export */ "uniMoneybag": () => (/* binding */ uniMoneybag), +/* harmony export */ "uniMoneybagAlt": () => (/* binding */ uniMoneybagAlt), +/* harmony export */ "uniMonitor": () => (/* binding */ uniMonitor), +/* harmony export */ "uniMonitorHeartRate": () => (/* binding */ uniMonitorHeartRate), +/* harmony export */ "uniMoon": () => (/* binding */ uniMoon), +/* harmony export */ "uniMoonEclipse": () => (/* binding */ uniMoonEclipse), +/* harmony export */ "uniMoonset": () => (/* binding */ uniMoonset), +/* harmony export */ "uniMountains": () => (/* binding */ uniMountains), +/* harmony export */ "uniMountainsSun": () => (/* binding */ uniMountainsSun), +/* harmony export */ "uniMouse": () => (/* binding */ uniMouse), +/* harmony export */ "uniMouseAlt": () => (/* binding */ uniMouseAlt), +/* harmony export */ "uniMouseAlt2": () => (/* binding */ uniMouseAlt2), +/* harmony export */ "uniMultiply": () => (/* binding */ uniMultiply), +/* harmony export */ "uniMusic": () => (/* binding */ uniMusic), +/* harmony export */ "uniMusicNote": () => (/* binding */ uniMusicNote), +/* harmony export */ "uniMusicTuneSlash": () => (/* binding */ uniMusicTuneSlash), +/* harmony export */ "uniNA": () => (/* binding */ uniNA), +/* harmony export */ "uniNavigator": () => (/* binding */ uniNavigator), +/* harmony export */ "uniNerd": () => (/* binding */ uniNerd), +/* harmony export */ "uniNewspaper": () => (/* binding */ uniNewspaper), +/* harmony export */ "uniNinja": () => (/* binding */ uniNinja), +/* harmony export */ "uniNoEntry": () => (/* binding */ uniNoEntry), +/* harmony export */ "uniNotebooks": () => (/* binding */ uniNotebooks), +/* harmony export */ "uniNotes": () => (/* binding */ uniNotes), +/* harmony export */ "uniObjectGroup": () => (/* binding */ uniObjectGroup), +/* harmony export */ "uniObjectUngroup": () => (/* binding */ uniObjectUngroup), +/* harmony export */ "uniOctagon": () => (/* binding */ uniOctagon), +/* harmony export */ "uniOkta": () => (/* binding */ uniOkta), +/* harmony export */ "uniOpera": () => (/* binding */ uniOpera), +/* harmony export */ "uniOperaAlt": () => (/* binding */ uniOperaAlt), +/* harmony export */ "uniOutgoingCall": () => (/* binding */ uniOutgoingCall), +/* harmony export */ "uniPackage": () => (/* binding */ uniPackage), +/* harmony export */ "uniPadlock": () => (/* binding */ uniPadlock), +/* harmony export */ "uniPagelines": () => (/* binding */ uniPagelines), +/* harmony export */ "uniPagerduty": () => (/* binding */ uniPagerduty), +/* harmony export */ "uniPaintTool": () => (/* binding */ uniPaintTool), +/* harmony export */ "uniPalette": () => (/* binding */ uniPalette), +/* harmony export */ "uniPanelAdd": () => (/* binding */ uniPanelAdd), +/* harmony export */ "uniPanoramaH": () => (/* binding */ uniPanoramaH), +/* harmony export */ "uniPanoramaHAlt": () => (/* binding */ uniPanoramaHAlt), +/* harmony export */ "uniPanoramaV": () => (/* binding */ uniPanoramaV), +/* harmony export */ "uniPaperclip": () => (/* binding */ uniPaperclip), +/* harmony export */ "uniParagraph": () => (/* binding */ uniParagraph), +/* harmony export */ "uniParcel": () => (/* binding */ uniParcel), +/* harmony export */ "uniParkingCircle": () => (/* binding */ uniParkingCircle), +/* harmony export */ "uniParkingSquare": () => (/* binding */ uniParkingSquare), +/* harmony export */ "uniPathfinder": () => (/* binding */ uniPathfinder), +/* harmony export */ "uniPathfinderUnite": () => (/* binding */ uniPathfinderUnite), +/* harmony export */ "uniPause": () => (/* binding */ uniPause), +/* harmony export */ "uniPauseCircle": () => (/* binding */ uniPauseCircle), +/* harmony export */ "uniPaypal": () => (/* binding */ uniPaypal), +/* harmony export */ "uniPen": () => (/* binding */ uniPen), +/* harmony export */ "uniPentagon": () => (/* binding */ uniPentagon), +/* harmony export */ "uniPercentage": () => (/* binding */ uniPercentage), +/* harmony export */ "uniPhone": () => (/* binding */ uniPhone), +/* harmony export */ "uniPhoneAlt": () => (/* binding */ uniPhoneAlt), +/* harmony export */ "uniPhonePause": () => (/* binding */ uniPhonePause), +/* harmony export */ "uniPhoneSlash": () => (/* binding */ uniPhoneSlash), +/* harmony export */ "uniPhoneTimes": () => (/* binding */ uniPhoneTimes), +/* harmony export */ "uniPhoneVolume": () => (/* binding */ uniPhoneVolume), +/* harmony export */ "uniPicture": () => (/* binding */ uniPicture), +/* harmony export */ "uniPizzaSlice": () => (/* binding */ uniPizzaSlice), +/* harmony export */ "uniPlane": () => (/* binding */ uniPlane), +/* harmony export */ "uniPlaneArrival": () => (/* binding */ uniPlaneArrival), +/* harmony export */ "uniPlaneDeparture": () => (/* binding */ uniPlaneDeparture), +/* harmony export */ "uniPlaneFly": () => (/* binding */ uniPlaneFly), +/* harmony export */ "uniPlay": () => (/* binding */ uniPlay), +/* harmony export */ "uniPlayCircle": () => (/* binding */ uniPlayCircle), +/* harmony export */ "uniPlug": () => (/* binding */ uniPlug), +/* harmony export */ "uniPlus": () => (/* binding */ uniPlus), +/* harmony export */ "uniPlusCircle": () => (/* binding */ uniPlusCircle), +/* harmony export */ "uniPlusSquare": () => (/* binding */ uniPlusSquare), +/* harmony export */ "uniPodium": () => (/* binding */ uniPodium), +/* harmony export */ "uniPolygon": () => (/* binding */ uniPolygon), +/* harmony export */ "uniPostStamp": () => (/* binding */ uniPostStamp), +/* harmony export */ "uniPostcard": () => (/* binding */ uniPostcard), +/* harmony export */ "uniPound": () => (/* binding */ uniPound), +/* harmony export */ "uniPoundCircle": () => (/* binding */ uniPoundCircle), +/* harmony export */ "uniPower": () => (/* binding */ uniPower), +/* harmony export */ "uniPrescriptionBottle": () => (/* binding */ uniPrescriptionBottle), +/* harmony export */ "uniPresentation": () => (/* binding */ uniPresentation), +/* harmony export */ "uniPresentationCheck": () => (/* binding */ uniPresentationCheck), +/* harmony export */ "uniPresentationEdit": () => (/* binding */ uniPresentationEdit), +/* harmony export */ "uniPresentationLine": () => (/* binding */ uniPresentationLine), +/* harmony export */ "uniPresentationLinesAlt": () => (/* binding */ uniPresentationLinesAlt), +/* harmony export */ "uniPresentationMinus": () => (/* binding */ uniPresentationMinus), +/* harmony export */ "uniPresentationPlay": () => (/* binding */ uniPresentationPlay), +/* harmony export */ "uniPresentationPlus": () => (/* binding */ uniPresentationPlus), +/* harmony export */ "uniPresentationTimes": () => (/* binding */ uniPresentationTimes), +/* harmony export */ "uniPrevious": () => (/* binding */ uniPrevious), +/* harmony export */ "uniPricetagAlt": () => (/* binding */ uniPricetagAlt), +/* harmony export */ "uniPrint": () => (/* binding */ uniPrint), +/* harmony export */ "uniPrintSlash": () => (/* binding */ uniPrintSlash), +/* harmony export */ "uniProcess": () => (/* binding */ uniProcess), +/* harmony export */ "uniProcessor": () => (/* binding */ uniProcessor), +/* harmony export */ "uniProgrammingLanguage": () => (/* binding */ uniProgrammingLanguage), +/* harmony export */ "uniPump": () => (/* binding */ uniPump), +/* harmony export */ "uniPuzzlePiece": () => (/* binding */ uniPuzzlePiece), +/* harmony export */ "uniQrcodeScan": () => (/* binding */ uniQrcodeScan), +/* harmony export */ "uniQuestion": () => (/* binding */ uniQuestion), +/* harmony export */ "uniQuestionCircle": () => (/* binding */ uniQuestionCircle), +/* harmony export */ "uniRainbow": () => (/* binding */ uniRainbow), +/* harmony export */ "uniRaindrops": () => (/* binding */ uniRaindrops), +/* harmony export */ "uniRaindropsAlt": () => (/* binding */ uniRaindropsAlt), +/* harmony export */ "uniReact": () => (/* binding */ uniReact), +/* harmony export */ "uniReceipt": () => (/* binding */ uniReceipt), +/* harmony export */ "uniReceiptAlt": () => (/* binding */ uniReceiptAlt), +/* harmony export */ "uniRecordAudio": () => (/* binding */ uniRecordAudio), +/* harmony export */ "uniRedditAlienAlt": () => (/* binding */ uniRedditAlienAlt), +/* harmony export */ "uniRedo": () => (/* binding */ uniRedo), +/* harmony export */ "uniRefresh": () => (/* binding */ uniRefresh), +/* harmony export */ "uniRegistered": () => (/* binding */ uniRegistered), +/* harmony export */ "uniRepeat": () => (/* binding */ uniRepeat), +/* harmony export */ "uniRestaurant": () => (/* binding */ uniRestaurant), +/* harmony export */ "uniRightIndentAlt": () => (/* binding */ uniRightIndentAlt), +/* harmony export */ "uniRightToLeftTextDirection": () => (/* binding */ uniRightToLeftTextDirection), +/* harmony export */ "uniRobot": () => (/* binding */ uniRobot), +/* harmony export */ "uniRocket": () => (/* binding */ uniRocket), +/* harmony export */ "uniRopeWay": () => (/* binding */ uniRopeWay), +/* harmony export */ "uniRotate360": () => (/* binding */ uniRotate360), +/* harmony export */ "uniRss": () => (/* binding */ uniRss), +/* harmony export */ "uniRssAlt": () => (/* binding */ uniRssAlt), +/* harmony export */ "uniRssInterface": () => (/* binding */ uniRssInterface), +/* harmony export */ "uniRuler": () => (/* binding */ uniRuler), +/* harmony export */ "uniRulerCombined": () => (/* binding */ uniRulerCombined), +/* harmony export */ "uniRupeeSign": () => (/* binding */ uniRupeeSign), +/* harmony export */ "uniSad": () => (/* binding */ uniSad), +/* harmony export */ "uniSadCry": () => (/* binding */ uniSadCry), +/* harmony export */ "uniSadCrying": () => (/* binding */ uniSadCrying), +/* harmony export */ "uniSadDizzy": () => (/* binding */ uniSadDizzy), +/* harmony export */ "uniSadSquint": () => (/* binding */ uniSadSquint), +/* harmony export */ "uniSanitizer": () => (/* binding */ uniSanitizer), +/* harmony export */ "uniSanitizerAlt": () => (/* binding */ uniSanitizerAlt), +/* harmony export */ "uniSave": () => (/* binding */ uniSave), +/* harmony export */ "uniScalingLeft": () => (/* binding */ uniScalingLeft), +/* harmony export */ "uniScalingRight": () => (/* binding */ uniScalingRight), +/* harmony export */ "uniScenery": () => (/* binding */ uniScenery), +/* harmony export */ "uniSchedule": () => (/* binding */ uniSchedule), +/* harmony export */ "uniScrew": () => (/* binding */ uniScrew), +/* harmony export */ "uniScroll": () => (/* binding */ uniScroll), +/* harmony export */ "uniScrollH": () => (/* binding */ uniScrollH), +/* harmony export */ "uniSearch": () => (/* binding */ uniSearch), +/* harmony export */ "uniSearchAlt": () => (/* binding */ uniSearchAlt), +/* harmony export */ "uniSearchMinus": () => (/* binding */ uniSearchMinus), +/* harmony export */ "uniSearchPlus": () => (/* binding */ uniSearchPlus), +/* harmony export */ "uniSelfie": () => (/* binding */ uniSelfie), +/* harmony export */ "uniServer": () => (/* binding */ uniServer), +/* harmony export */ "uniServerAlt": () => (/* binding */ uniServerAlt), +/* harmony export */ "uniServerConnection": () => (/* binding */ uniServerConnection), +/* harmony export */ "uniServerNetwork": () => (/* binding */ uniServerNetwork), +/* harmony export */ "uniServerNetworkAlt": () => (/* binding */ uniServerNetworkAlt), +/* harmony export */ "uniServers": () => (/* binding */ uniServers), +/* harmony export */ "uniServicemark": () => (/* binding */ uniServicemark), +/* harmony export */ "uniSetting": () => (/* binding */ uniSetting), +/* harmony export */ "uniShare": () => (/* binding */ uniShare), +/* harmony export */ "uniShareAlt": () => (/* binding */ uniShareAlt), +/* harmony export */ "uniShield": () => (/* binding */ uniShield), +/* harmony export */ "uniShieldCheck": () => (/* binding */ uniShieldCheck), +/* harmony export */ "uniShieldExclamation": () => (/* binding */ uniShieldExclamation), +/* harmony export */ "uniShieldPlus": () => (/* binding */ uniShieldPlus), +/* harmony export */ "uniShieldQuestion": () => (/* binding */ uniShieldQuestion), +/* harmony export */ "uniShieldSlash": () => (/* binding */ uniShieldSlash), +/* harmony export */ "uniShip": () => (/* binding */ uniShip), +/* harmony export */ "uniShop": () => (/* binding */ uniShop), +/* harmony export */ "uniShoppingBag": () => (/* binding */ uniShoppingBag), +/* harmony export */ "uniShoppingBasket": () => (/* binding */ uniShoppingBasket), +/* harmony export */ "uniShoppingCart": () => (/* binding */ uniShoppingCart), +/* harmony export */ "uniShoppingCartAlt": () => (/* binding */ uniShoppingCartAlt), +/* harmony export */ "uniShovel": () => (/* binding */ uniShovel), +/* harmony export */ "uniShrink": () => (/* binding */ uniShrink), +/* harmony export */ "uniShuffle": () => (/* binding */ uniShuffle), +/* harmony export */ "uniShutter": () => (/* binding */ uniShutter), +/* harmony export */ "uniShutterAlt": () => (/* binding */ uniShutterAlt), +/* harmony export */ "uniSick": () => (/* binding */ uniSick), +/* harmony export */ "uniSigma": () => (/* binding */ uniSigma), +/* harmony export */ "uniSignAlt": () => (/* binding */ uniSignAlt), +/* harmony export */ "uniSignInAlt": () => (/* binding */ uniSignInAlt), +/* harmony export */ "uniSignLeft": () => (/* binding */ uniSignLeft), +/* harmony export */ "uniSignOutAlt": () => (/* binding */ uniSignOutAlt), +/* harmony export */ "uniSignRight": () => (/* binding */ uniSignRight), +/* harmony export */ "uniSignal": () => (/* binding */ uniSignal), +/* harmony export */ "uniSignalAlt": () => (/* binding */ uniSignalAlt), +/* harmony export */ "uniSignalAlt3": () => (/* binding */ uniSignalAlt3), +/* harmony export */ "uniSignin": () => (/* binding */ uniSignin), +/* harmony export */ "uniSignout": () => (/* binding */ uniSignout), +/* harmony export */ "uniSilence": () => (/* binding */ uniSilence), +/* harmony export */ "uniSilentSquint": () => (/* binding */ uniSilentSquint), +/* harmony export */ "uniSimCard": () => (/* binding */ uniSimCard), +/* harmony export */ "uniSitemap": () => (/* binding */ uniSitemap), +/* harmony export */ "uniSkipForward": () => (/* binding */ uniSkipForward), +/* harmony export */ "uniSkipForwardAlt": () => (/* binding */ uniSkipForwardAlt), +/* harmony export */ "uniSkipForwardCircle": () => (/* binding */ uniSkipForwardCircle), +/* harmony export */ "uniSkype": () => (/* binding */ uniSkype), +/* harmony export */ "uniSkypeAlt": () => (/* binding */ uniSkypeAlt), +/* harmony export */ "uniSlack": () => (/* binding */ uniSlack), +/* harmony export */ "uniSlackAlt": () => (/* binding */ uniSlackAlt), +/* harmony export */ "uniSliderH": () => (/* binding */ uniSliderH), +/* harmony export */ "uniSliderHRange": () => (/* binding */ uniSliderHRange), +/* harmony export */ "uniSlidersV": () => (/* binding */ uniSlidersV), +/* harmony export */ "uniSlidersVAlt": () => (/* binding */ uniSlidersVAlt), +/* harmony export */ "uniSmile": () => (/* binding */ uniSmile), +/* harmony export */ "uniSmileBeam": () => (/* binding */ uniSmileBeam), +/* harmony export */ "uniSmileDizzy": () => (/* binding */ uniSmileDizzy), +/* harmony export */ "uniSmileSquintWink": () => (/* binding */ uniSmileSquintWink), +/* harmony export */ "uniSmileSquintWinkAlt": () => (/* binding */ uniSmileSquintWinkAlt), +/* harmony export */ "uniSmileWink": () => (/* binding */ uniSmileWink), +/* harmony export */ "uniSmileWinkAlt": () => (/* binding */ uniSmileWinkAlt), +/* harmony export */ "uniSnapchatAlt": () => (/* binding */ uniSnapchatAlt), +/* harmony export */ "uniSnapchatGhost": () => (/* binding */ uniSnapchatGhost), +/* harmony export */ "uniSnapchatSquare": () => (/* binding */ uniSnapchatSquare), +/* harmony export */ "uniSnowFlake": () => (/* binding */ uniSnowFlake), +/* harmony export */ "uniSnowflake": () => (/* binding */ uniSnowflake), +/* harmony export */ "uniSnowflakeAlt": () => (/* binding */ uniSnowflakeAlt), +/* harmony export */ "uniSocialDistancing": () => (/* binding */ uniSocialDistancing), +/* harmony export */ "uniSort": () => (/* binding */ uniSort), +/* harmony export */ "uniSortAmountDown": () => (/* binding */ uniSortAmountDown), +/* harmony export */ "uniSortAmountUp": () => (/* binding */ uniSortAmountUp), +/* harmony export */ "uniSorting": () => (/* binding */ uniSorting), +/* harmony export */ "uniSpaceKey": () => (/* binding */ uniSpaceKey), +/* harmony export */ "uniSpade": () => (/* binding */ uniSpade), +/* harmony export */ "uniSperms": () => (/* binding */ uniSperms), +/* harmony export */ "uniSpin": () => (/* binding */ uniSpin), +/* harmony export */ "uniSpinner": () => (/* binding */ uniSpinner), +/* harmony export */ "uniSpinnerAlt": () => (/* binding */ uniSpinnerAlt), +/* harmony export */ "uniSquare": () => (/* binding */ uniSquare), +/* harmony export */ "uniSquareFull": () => (/* binding */ uniSquareFull), +/* harmony export */ "uniSquareShape": () => (/* binding */ uniSquareShape), +/* harmony export */ "uniSquint": () => (/* binding */ uniSquint), +/* harmony export */ "uniStar": () => (/* binding */ uniStar), +/* harmony export */ "uniStarHalfAlt": () => (/* binding */ uniStarHalfAlt), +/* harmony export */ "uniStepBackward": () => (/* binding */ uniStepBackward), +/* harmony export */ "uniStepBackwardAlt": () => (/* binding */ uniStepBackwardAlt), +/* harmony export */ "uniStepBackwardCircle": () => (/* binding */ uniStepBackwardCircle), +/* harmony export */ "uniStepForward": () => (/* binding */ uniStepForward), +/* harmony export */ "uniStethoscope": () => (/* binding */ uniStethoscope), +/* harmony export */ "uniStethoscopeAlt": () => (/* binding */ uniStethoscopeAlt), +/* harmony export */ "uniStopCircle": () => (/* binding */ uniStopCircle), +/* harmony export */ "uniStopwatch": () => (/* binding */ uniStopwatch), +/* harmony export */ "uniStopwatchSlash": () => (/* binding */ uniStopwatchSlash), +/* harmony export */ "uniStore": () => (/* binding */ uniStore), +/* harmony export */ "uniStoreAlt": () => (/* binding */ uniStoreAlt), +/* harmony export */ "uniStoreSlash": () => (/* binding */ uniStoreSlash), +/* harmony export */ "uniStreering": () => (/* binding */ uniStreering), +/* harmony export */ "uniStretcher": () => (/* binding */ uniStretcher), +/* harmony export */ "uniSubject": () => (/* binding */ uniSubject), +/* harmony export */ "uniSubway": () => (/* binding */ uniSubway), +/* harmony export */ "uniSubwayAlt": () => (/* binding */ uniSubwayAlt), +/* harmony export */ "uniSuitcase": () => (/* binding */ uniSuitcase), +/* harmony export */ "uniSuitcaseAlt": () => (/* binding */ uniSuitcaseAlt), +/* harmony export */ "uniSun": () => (/* binding */ uniSun), +/* harmony export */ "uniSunset": () => (/* binding */ uniSunset), +/* harmony export */ "uniSurprise": () => (/* binding */ uniSurprise), +/* harmony export */ "uniSwatchbook": () => (/* binding */ uniSwatchbook), +/* harmony export */ "uniSwiggy": () => (/* binding */ uniSwiggy), +/* harmony export */ "uniSwimmer": () => (/* binding */ uniSwimmer), +/* harmony export */ "uniSync": () => (/* binding */ uniSync), +/* harmony export */ "uniSyncExclamation": () => (/* binding */ uniSyncExclamation), +/* harmony export */ "uniSyncSlash": () => (/* binding */ uniSyncSlash), +/* harmony export */ "uniSyringe": () => (/* binding */ uniSyringe), +/* harmony export */ "uniTable": () => (/* binding */ uniTable), +/* harmony export */ "uniTableTennis": () => (/* binding */ uniTableTennis), +/* harmony export */ "uniTablet": () => (/* binding */ uniTablet), +/* harmony export */ "uniTablets": () => (/* binding */ uniTablets), +/* harmony export */ "uniTachometerFast": () => (/* binding */ uniTachometerFast), +/* harmony export */ "uniTachometerFastAlt": () => (/* binding */ uniTachometerFastAlt), +/* harmony export */ "uniTag": () => (/* binding */ uniTag), +/* harmony export */ "uniTagAlt": () => (/* binding */ uniTagAlt), +/* harmony export */ "uniTape": () => (/* binding */ uniTape), +/* harmony export */ "uniTaxi": () => (/* binding */ uniTaxi), +/* harmony export */ "uniTear": () => (/* binding */ uniTear), +/* harmony export */ "uniTelegram": () => (/* binding */ uniTelegram), +/* harmony export */ "uniTelegramAlt": () => (/* binding */ uniTelegramAlt), +/* harmony export */ "uniTelescope": () => (/* binding */ uniTelescope), +/* harmony export */ "uniTemperature": () => (/* binding */ uniTemperature), +/* harmony export */ "uniTemperatureEmpty": () => (/* binding */ uniTemperatureEmpty), +/* harmony export */ "uniTemperatureHalf": () => (/* binding */ uniTemperatureHalf), +/* harmony export */ "uniTemperatureMinus": () => (/* binding */ uniTemperatureMinus), +/* harmony export */ "uniTemperaturePlus": () => (/* binding */ uniTemperaturePlus), +/* harmony export */ "uniTemperatureQuarter": () => (/* binding */ uniTemperatureQuarter), +/* harmony export */ "uniTemperatureThreeQuarter": () => (/* binding */ uniTemperatureThreeQuarter), +/* harmony export */ "uniTennisBall": () => (/* binding */ uniTennisBall), +/* harmony export */ "uniText": () => (/* binding */ uniText), +/* harmony export */ "uniTextFields": () => (/* binding */ uniTextFields), +/* harmony export */ "uniTextSize": () => (/* binding */ uniTextSize), +/* harmony export */ "uniTextStrikeThrough": () => (/* binding */ uniTextStrikeThrough), +/* harmony export */ "uniTh": () => (/* binding */ uniTh), +/* harmony export */ "uniThLarge": () => (/* binding */ uniThLarge), +/* harmony export */ "uniThSlash": () => (/* binding */ uniThSlash), +/* harmony export */ "uniThermometer": () => (/* binding */ uniThermometer), +/* harmony export */ "uniThumbsDown": () => (/* binding */ uniThumbsDown), +/* harmony export */ "uniThumbsUp": () => (/* binding */ uniThumbsUp), +/* harmony export */ "uniThunderstorm": () => (/* binding */ uniThunderstorm), +/* harmony export */ "uniThunderstormMoon": () => (/* binding */ uniThunderstormMoon), +/* harmony export */ "uniThunderstormSun": () => (/* binding */ uniThunderstormSun), +/* harmony export */ "uniTicket": () => (/* binding */ uniTicket), +/* harmony export */ "uniTimes": () => (/* binding */ uniTimes), +/* harmony export */ "uniTimesCircle": () => (/* binding */ uniTimesCircle), +/* harmony export */ "uniTimesSquare": () => (/* binding */ uniTimesSquare), +/* harmony export */ "uniToggleOff": () => (/* binding */ uniToggleOff), +/* harmony export */ "uniToggleOn": () => (/* binding */ uniToggleOn), +/* harmony export */ "uniToiletPaper": () => (/* binding */ uniToiletPaper), +/* harmony export */ "uniTopArrowFromTop": () => (/* binding */ uniTopArrowFromTop), +/* harmony export */ "uniTopArrowToTop": () => (/* binding */ uniTopArrowToTop), +/* harmony export */ "uniTornado": () => (/* binding */ uniTornado), +/* harmony export */ "uniTrademark": () => (/* binding */ uniTrademark), +/* harmony export */ "uniTrademarkCircle": () => (/* binding */ uniTrademarkCircle), +/* harmony export */ "uniTrafficBarrier": () => (/* binding */ uniTrafficBarrier), +/* harmony export */ "uniTrafficLight": () => (/* binding */ uniTrafficLight), +/* harmony export */ "uniTransaction": () => (/* binding */ uniTransaction), +/* harmony export */ "uniTrash": () => (/* binding */ uniTrash), +/* harmony export */ "uniTrashAlt": () => (/* binding */ uniTrashAlt), +/* harmony export */ "uniTrees": () => (/* binding */ uniTrees), +/* harmony export */ "uniTriangle": () => (/* binding */ uniTriangle), +/* harmony export */ "uniTrophy": () => (/* binding */ uniTrophy), +/* harmony export */ "uniTrowel": () => (/* binding */ uniTrowel), +/* harmony export */ "uniTruck": () => (/* binding */ uniTruck), +/* harmony export */ "uniTruckLoading": () => (/* binding */ uniTruckLoading), +/* harmony export */ "uniTumblr": () => (/* binding */ uniTumblr), +/* harmony export */ "uniTumblrAlt": () => (/* binding */ uniTumblrAlt), +/* harmony export */ "uniTumblrSquare": () => (/* binding */ uniTumblrSquare), +/* harmony export */ "uniTvRetro": () => (/* binding */ uniTvRetro), +/* harmony export */ "uniTvRetroSlash": () => (/* binding */ uniTvRetroSlash), +/* harmony export */ "uniTwitter": () => (/* binding */ uniTwitter), +/* harmony export */ "uniTwitterAlt": () => (/* binding */ uniTwitterAlt), +/* harmony export */ "uniUmbrella": () => (/* binding */ uniUmbrella), +/* harmony export */ "uniUnamused": () => (/* binding */ uniUnamused), +/* harmony export */ "uniUnderline": () => (/* binding */ uniUnderline), +/* harmony export */ "uniUniversity": () => (/* binding */ uniUniversity), +/* harmony export */ "uniUnlock": () => (/* binding */ uniUnlock), +/* harmony export */ "uniUnlockAlt": () => (/* binding */ uniUnlockAlt), +/* harmony export */ "uniUpload": () => (/* binding */ uniUpload), +/* harmony export */ "uniUploadAlt": () => (/* binding */ uniUploadAlt), +/* harmony export */ "uniUsdCircle": () => (/* binding */ uniUsdCircle), +/* harmony export */ "uniUsdSquare": () => (/* binding */ uniUsdSquare), +/* harmony export */ "uniUser": () => (/* binding */ uniUser), +/* harmony export */ "uniUserArrows": () => (/* binding */ uniUserArrows), +/* harmony export */ "uniUserCheck": () => (/* binding */ uniUserCheck), +/* harmony export */ "uniUserCircle": () => (/* binding */ uniUserCircle), +/* harmony export */ "uniUserExclamation": () => (/* binding */ uniUserExclamation), +/* harmony export */ "uniUserLocation": () => (/* binding */ uniUserLocation), +/* harmony export */ "uniUserMd": () => (/* binding */ uniUserMd), +/* harmony export */ "uniUserMinus": () => (/* binding */ uniUserMinus), +/* harmony export */ "uniUserNurse": () => (/* binding */ uniUserNurse), +/* harmony export */ "uniUserPlus": () => (/* binding */ uniUserPlus), +/* harmony export */ "uniUserSquare": () => (/* binding */ uniUserSquare), +/* harmony export */ "uniUserTimes": () => (/* binding */ uniUserTimes), +/* harmony export */ "uniUsersAlt": () => (/* binding */ uniUsersAlt), +/* harmony export */ "uniUtensils": () => (/* binding */ uniUtensils), +/* harmony export */ "uniUtensilsAlt": () => (/* binding */ uniUtensilsAlt), +/* harmony export */ "uniVectorSquare": () => (/* binding */ uniVectorSquare), +/* harmony export */ "uniVectorSquareAlt": () => (/* binding */ uniVectorSquareAlt), +/* harmony export */ "uniVenus": () => (/* binding */ uniVenus), +/* harmony export */ "uniVerticalAlignBottom": () => (/* binding */ uniVerticalAlignBottom), +/* harmony export */ "uniVerticalAlignCenter": () => (/* binding */ uniVerticalAlignCenter), +/* harmony export */ "uniVerticalAlignTop": () => (/* binding */ uniVerticalAlignTop), +/* harmony export */ "uniVerticalDistributeBottom": () => (/* binding */ uniVerticalDistributeBottom), +/* harmony export */ "uniVerticalDistributionCenter": () => (/* binding */ uniVerticalDistributionCenter), +/* harmony export */ "uniVerticalDistributionTop": () => (/* binding */ uniVerticalDistributionTop), +/* harmony export */ "uniVideo": () => (/* binding */ uniVideo), +/* harmony export */ "uniVideoQuestion": () => (/* binding */ uniVideoQuestion), +/* harmony export */ "uniVideoSlash": () => (/* binding */ uniVideoSlash), +/* harmony export */ "uniVirusSlash": () => (/* binding */ uniVirusSlash), +/* harmony export */ "uniVisualStudio": () => (/* binding */ uniVisualStudio), +/* harmony export */ "uniVk": () => (/* binding */ uniVk), +/* harmony export */ "uniVkAlt": () => (/* binding */ uniVkAlt), +/* harmony export */ "uniVoicemail": () => (/* binding */ uniVoicemail), +/* harmony export */ "uniVoicemailRectangle": () => (/* binding */ uniVoicemailRectangle), +/* harmony export */ "uniVolleyball": () => (/* binding */ uniVolleyball), +/* harmony export */ "uniVolume": () => (/* binding */ uniVolume), +/* harmony export */ "uniVolumeDown": () => (/* binding */ uniVolumeDown), +/* harmony export */ "uniVolumeMute": () => (/* binding */ uniVolumeMute), +/* harmony export */ "uniVolumeOff": () => (/* binding */ uniVolumeOff), +/* harmony export */ "uniVolumeUp": () => (/* binding */ uniVolumeUp), +/* harmony export */ "uniVuejs": () => (/* binding */ uniVuejs), +/* harmony export */ "uniVuejsAlt": () => (/* binding */ uniVuejsAlt), +/* harmony export */ "uniWall": () => (/* binding */ uniWall), +/* harmony export */ "uniWallet": () => (/* binding */ uniWallet), +/* harmony export */ "uniWatch": () => (/* binding */ uniWatch), +/* harmony export */ "uniWatchAlt": () => (/* binding */ uniWatchAlt), +/* harmony export */ "uniWater": () => (/* binding */ uniWater), +/* harmony export */ "uniWaterDropSlash": () => (/* binding */ uniWaterDropSlash), +/* harmony export */ "uniWaterGlass": () => (/* binding */ uniWaterGlass), +/* harmony export */ "uniWebGrid": () => (/* binding */ uniWebGrid), +/* harmony export */ "uniWebGridAlt": () => (/* binding */ uniWebGridAlt), +/* harmony export */ "uniWebSection": () => (/* binding */ uniWebSection), +/* harmony export */ "uniWebSectionAlt": () => (/* binding */ uniWebSectionAlt), +/* harmony export */ "uniWebcam": () => (/* binding */ uniWebcam), +/* harmony export */ "uniWeight": () => (/* binding */ uniWeight), +/* harmony export */ "uniWhatsapp": () => (/* binding */ uniWhatsapp), +/* harmony export */ "uniWhatsappAlt": () => (/* binding */ uniWhatsappAlt), +/* harmony export */ "uniWheelBarrow": () => (/* binding */ uniWheelBarrow), +/* harmony export */ "uniWheelchair": () => (/* binding */ uniWheelchair), +/* harmony export */ "uniWheelchairAlt": () => (/* binding */ uniWheelchairAlt), +/* harmony export */ "uniWifi": () => (/* binding */ uniWifi), +/* harmony export */ "uniWifiRouter": () => (/* binding */ uniWifiRouter), +/* harmony export */ "uniWifiSlash": () => (/* binding */ uniWifiSlash), +/* harmony export */ "uniWind": () => (/* binding */ uniWind), +/* harmony export */ "uniWindMoon": () => (/* binding */ uniWindMoon), +/* harmony export */ "uniWindSun": () => (/* binding */ uniWindSun), +/* harmony export */ "uniWindow": () => (/* binding */ uniWindow), +/* harmony export */ "uniWindowGrid": () => (/* binding */ uniWindowGrid), +/* harmony export */ "uniWindowMaximize": () => (/* binding */ uniWindowMaximize), +/* harmony export */ "uniWindowSection": () => (/* binding */ uniWindowSection), +/* harmony export */ "uniWindows": () => (/* binding */ uniWindows), +/* harmony export */ "uniWindsock": () => (/* binding */ uniWindsock), +/* harmony export */ "uniWindy": () => (/* binding */ uniWindy), +/* harmony export */ "uniWordpress": () => (/* binding */ uniWordpress), +/* harmony export */ "uniWordpressSimple": () => (/* binding */ uniWordpressSimple), +/* harmony export */ "uniWrapText": () => (/* binding */ uniWrapText), +/* harmony export */ "uniWrench": () => (/* binding */ uniWrench), +/* harmony export */ "uniX": () => (/* binding */ uniX), +/* harmony export */ "uniXAdd": () => (/* binding */ uniXAdd), +/* harmony export */ "uniYen": () => (/* binding */ uniYen), +/* harmony export */ "uniYenCircle": () => (/* binding */ uniYenCircle), +/* harmony export */ "uniYinYang": () => (/* binding */ uniYinYang), +/* harmony export */ "uniYoutube": () => (/* binding */ uniYoutube), +/* harmony export */ "uni500PxMonochrome": () => (/* binding */ uni500PxMonochrome), +/* harmony export */ "uniAdobeMonochrome": () => (/* binding */ uniAdobeMonochrome), +/* harmony export */ "uniAdobeAltMonochrome": () => (/* binding */ uniAdobeAltMonochrome), +/* harmony export */ "uniAirplayMonochrome": () => (/* binding */ uniAirplayMonochrome), +/* harmony export */ "uniAlignMonochrome": () => (/* binding */ uniAlignMonochrome), +/* harmony export */ "uniAlignAltMonochrome": () => (/* binding */ uniAlignAltMonochrome), +/* harmony export */ "uniAlignCenterMonochrome": () => (/* binding */ uniAlignCenterMonochrome), +/* harmony export */ "uniAlignCenterJustifyMonochrome": () => (/* binding */ uniAlignCenterJustifyMonochrome), +/* harmony export */ "uniAlignJustifyMonochrome": () => (/* binding */ uniAlignJustifyMonochrome), +/* harmony export */ "uniAlignLeftMonochrome": () => (/* binding */ uniAlignLeftMonochrome), +/* harmony export */ "uniAlignLeftJustifyMonochrome": () => (/* binding */ uniAlignLeftJustifyMonochrome), +/* harmony export */ "uniAlignLetterRightMonochrome": () => (/* binding */ uniAlignLetterRightMonochrome), +/* harmony export */ "uniAlignRightMonochrome": () => (/* binding */ uniAlignRightMonochrome), +/* harmony export */ "uniAlignRightJustifyMonochrome": () => (/* binding */ uniAlignRightJustifyMonochrome), +/* harmony export */ "uniAmazonMonochrome": () => (/* binding */ uniAmazonMonochrome), +/* harmony export */ "uniAnalysisMonochrome": () => (/* binding */ uniAnalysisMonochrome), +/* harmony export */ "uniAnalyticsMonochrome": () => (/* binding */ uniAnalyticsMonochrome), +/* harmony export */ "uniAnchorMonochrome": () => (/* binding */ uniAnchorMonochrome), +/* harmony export */ "uniAndroidMonochrome": () => (/* binding */ uniAndroidMonochrome), +/* harmony export */ "uniAndroidAltMonochrome": () => (/* binding */ uniAndroidAltMonochrome), +/* harmony export */ "uniAngleDoubleDownMonochrome": () => (/* binding */ uniAngleDoubleDownMonochrome), +/* harmony export */ "uniAngleDoubleLeftMonochrome": () => (/* binding */ uniAngleDoubleLeftMonochrome), +/* harmony export */ "uniAngleDoubleRightMonochrome": () => (/* binding */ uniAngleDoubleRightMonochrome), +/* harmony export */ "uniAngleDoubleUpMonochrome": () => (/* binding */ uniAngleDoubleUpMonochrome), +/* harmony export */ "uniAngleDownMonochrome": () => (/* binding */ uniAngleDownMonochrome), +/* harmony export */ "uniAngleLeftMonochrome": () => (/* binding */ uniAngleLeftMonochrome), +/* harmony export */ "uniAngleRightMonochrome": () => (/* binding */ uniAngleRightMonochrome), +/* harmony export */ "uniAngleRightBMonochrome": () => (/* binding */ uniAngleRightBMonochrome), +/* harmony export */ "uniAngleUpMonochrome": () => (/* binding */ uniAngleUpMonochrome), +/* harmony export */ "uniAppleMonochrome": () => (/* binding */ uniAppleMonochrome), +/* harmony export */ "uniAppleAltMonochrome": () => (/* binding */ uniAppleAltMonochrome), +/* harmony export */ "uniAppsMonochrome": () => (/* binding */ uniAppsMonochrome), +/* harmony export */ "uniArrowCircleDownMonochrome": () => (/* binding */ uniArrowCircleDownMonochrome), +/* harmony export */ "uniArrowCircleLeftMonochrome": () => (/* binding */ uniArrowCircleLeftMonochrome), +/* harmony export */ "uniArrowCircleRightMonochrome": () => (/* binding */ uniArrowCircleRightMonochrome), +/* harmony export */ "uniArrowCircleUpMonochrome": () => (/* binding */ uniArrowCircleUpMonochrome), +/* harmony export */ "uniArrowDownLeftMonochrome": () => (/* binding */ uniArrowDownLeftMonochrome), +/* harmony export */ "uniArrowDownRightMonochrome": () => (/* binding */ uniArrowDownRightMonochrome), +/* harmony export */ "uniArrowUpLeftMonochrome": () => (/* binding */ uniArrowUpLeftMonochrome), +/* harmony export */ "uniArrowUpRightMonochrome": () => (/* binding */ uniArrowUpRightMonochrome), +/* harmony export */ "uniAtMonochrome": () => (/* binding */ uniAtMonochrome), +/* harmony export */ "uniBagMonochrome": () => (/* binding */ uniBagMonochrome), +/* harmony export */ "uniBarsMonochrome": () => (/* binding */ uniBarsMonochrome), +/* harmony export */ "uniBatteryBoltMonochrome": () => (/* binding */ uniBatteryBoltMonochrome), +/* harmony export */ "uniBatteryEmptyMonochrome": () => (/* binding */ uniBatteryEmptyMonochrome), +/* harmony export */ "uniBehanceMonochrome": () => (/* binding */ uniBehanceMonochrome), +/* harmony export */ "uniBehanceAltMonochrome": () => (/* binding */ uniBehanceAltMonochrome), +/* harmony export */ "uniBingMonochrome": () => (/* binding */ uniBingMonochrome), +/* harmony export */ "uniBitcoinMonochrome": () => (/* binding */ uniBitcoinMonochrome), +/* harmony export */ "uniBitcoinAltMonochrome": () => (/* binding */ uniBitcoinAltMonochrome), +/* harmony export */ "uniBlackberryMonochrome": () => (/* binding */ uniBlackberryMonochrome), +/* harmony export */ "uniBloggerMonochrome": () => (/* binding */ uniBloggerMonochrome), +/* harmony export */ "uniBloggerAltMonochrome": () => (/* binding */ uniBloggerAltMonochrome), +/* harmony export */ "uniBookmarkMonochrome": () => (/* binding */ uniBookmarkMonochrome), +/* harmony export */ "uniBorderAltMonochrome": () => (/* binding */ uniBorderAltMonochrome), +/* harmony export */ "uniBorderBottomMonochrome": () => (/* binding */ uniBorderBottomMonochrome), +/* harmony export */ "uniBorderClearMonochrome": () => (/* binding */ uniBorderClearMonochrome), +/* harmony export */ "uniBorderHorizontalMonochrome": () => (/* binding */ uniBorderHorizontalMonochrome), +/* harmony export */ "uniBorderInnerMonochrome": () => (/* binding */ uniBorderInnerMonochrome), +/* harmony export */ "uniBorderLeftMonochrome": () => (/* binding */ uniBorderLeftMonochrome), +/* harmony export */ "uniBorderOutMonochrome": () => (/* binding */ uniBorderOutMonochrome), +/* harmony export */ "uniBorderRightMonochrome": () => (/* binding */ uniBorderRightMonochrome), +/* harmony export */ "uniBorderTopMonochrome": () => (/* binding */ uniBorderTopMonochrome), +/* harmony export */ "uniBorderVerticalMonochrome": () => (/* binding */ uniBorderVerticalMonochrome), +/* harmony export */ "uniBoxMonochrome": () => (/* binding */ uniBoxMonochrome), +/* harmony export */ "uniBriefcaseMonochrome": () => (/* binding */ uniBriefcaseMonochrome), +/* harmony export */ "uniCalenderMonochrome": () => (/* binding */ uniCalenderMonochrome), +/* harmony export */ "uniChartMonochrome": () => (/* binding */ uniChartMonochrome), +/* harmony export */ "uniChartPieMonochrome": () => (/* binding */ uniChartPieMonochrome), +/* harmony export */ "uniCheckMonochrome": () => (/* binding */ uniCheckMonochrome), +/* harmony export */ "uniCheckCircleMonochrome": () => (/* binding */ uniCheckCircleMonochrome), +/* harmony export */ "uniCheckSquareMonochrome": () => (/* binding */ uniCheckSquareMonochrome), +/* harmony export */ "uniCircleMonochrome": () => (/* binding */ uniCircleMonochrome), +/* harmony export */ "uniCircleLayerMonochrome": () => (/* binding */ uniCircleLayerMonochrome), +/* harmony export */ "uniClinicMedicalMonochrome": () => (/* binding */ uniClinicMedicalMonochrome), +/* harmony export */ "uniClockMonochrome": () => (/* binding */ uniClockMonochrome), +/* harmony export */ "uniClockEightMonochrome": () => (/* binding */ uniClockEightMonochrome), +/* harmony export */ "uniClockFiveMonochrome": () => (/* binding */ uniClockFiveMonochrome), +/* harmony export */ "uniClockNineMonochrome": () => (/* binding */ uniClockNineMonochrome), +/* harmony export */ "uniClockSevenMonochrome": () => (/* binding */ uniClockSevenMonochrome), +/* harmony export */ "uniClockTenMonochrome": () => (/* binding */ uniClockTenMonochrome), +/* harmony export */ "uniClockThreeMonochrome": () => (/* binding */ uniClockThreeMonochrome), +/* harmony export */ "uniClockTwoMonochrome": () => (/* binding */ uniClockTwoMonochrome), +/* harmony export */ "uniColumnsMonochrome": () => (/* binding */ uniColumnsMonochrome), +/* harmony export */ "uniCommentMonochrome": () => (/* binding */ uniCommentMonochrome), +/* harmony export */ "uniCommentAltMonochrome": () => (/* binding */ uniCommentAltMonochrome), +/* harmony export */ "uniCommentAltDotsMonochrome": () => (/* binding */ uniCommentAltDotsMonochrome), +/* harmony export */ "uniCommentAltMessageMonochrome": () => (/* binding */ uniCommentAltMessageMonochrome), +/* harmony export */ "uniCommentAltPlusMonochrome": () => (/* binding */ uniCommentAltPlusMonochrome), +/* harmony export */ "uniCommentDotsMonochrome": () => (/* binding */ uniCommentDotsMonochrome), +/* harmony export */ "uniCommentMessageMonochrome": () => (/* binding */ uniCommentMessageMonochrome), +/* harmony export */ "uniCommentPlusMonochrome": () => (/* binding */ uniCommentPlusMonochrome), +/* harmony export */ "uniCompressMonochrome": () => (/* binding */ uniCompressMonochrome), +/* harmony export */ "uniCornerDownLeftMonochrome": () => (/* binding */ uniCornerDownLeftMonochrome), +/* harmony export */ "uniCornerDownRightMonochrome": () => (/* binding */ uniCornerDownRightMonochrome), +/* harmony export */ "uniCornerLeftDownMonochrome": () => (/* binding */ uniCornerLeftDownMonochrome), +/* harmony export */ "uniCornerRightDownMonochrome": () => (/* binding */ uniCornerRightDownMonochrome), +/* harmony export */ "uniCornerUpLeftMonochrome": () => (/* binding */ uniCornerUpLeftMonochrome), +/* harmony export */ "uniCornerUpRightMonochrome": () => (/* binding */ uniCornerUpRightMonochrome), +/* harmony export */ "uniCoronavirusMonochrome": () => (/* binding */ uniCoronavirusMonochrome), +/* harmony export */ "uniCss3Monochrome": () => (/* binding */ uniCss3Monochrome), +/* harmony export */ "uniCss3SimpleMonochrome": () => (/* binding */ uniCss3SimpleMonochrome), +/* harmony export */ "uniCubeMonochrome": () => (/* binding */ uniCubeMonochrome), +/* harmony export */ "uniDialpadMonochrome": () => (/* binding */ uniDialpadMonochrome), +/* harmony export */ "uniDialpadAltMonochrome": () => (/* binding */ uniDialpadAltMonochrome), +/* harmony export */ "uniDirectionMonochrome": () => (/* binding */ uniDirectionMonochrome), +/* harmony export */ "uniDiscordMonochrome": () => (/* binding */ uniDiscordMonochrome), +/* harmony export */ "uniDockerMonochrome": () => (/* binding */ uniDockerMonochrome), +/* harmony export */ "uniDocumentLayoutCenterMonochrome": () => (/* binding */ uniDocumentLayoutCenterMonochrome), +/* harmony export */ "uniDocumentLayoutLeftMonochrome": () => (/* binding */ uniDocumentLayoutLeftMonochrome), +/* harmony export */ "uniDocumentLayoutRightMonochrome": () => (/* binding */ uniDocumentLayoutRightMonochrome), +/* harmony export */ "uniDownloadAltMonochrome": () => (/* binding */ uniDownloadAltMonochrome), +/* harmony export */ "uniDribbbleMonochrome": () => (/* binding */ uniDribbbleMonochrome), +/* harmony export */ "uniDropboxMonochrome": () => (/* binding */ uniDropboxMonochrome), +/* harmony export */ "uniEllipsisHMonochrome": () => (/* binding */ uniEllipsisHMonochrome), +/* harmony export */ "uniEllipsisVMonochrome": () => (/* binding */ uniEllipsisVMonochrome), +/* harmony export */ "uniExclamationCircleMonochrome": () => (/* binding */ uniExclamationCircleMonochrome), +/* harmony export */ "uniExclamationOctagonMonochrome": () => (/* binding */ uniExclamationOctagonMonochrome), +/* harmony export */ "uniExclamationTriangleMonochrome": () => (/* binding */ uniExclamationTriangleMonochrome), +/* harmony export */ "uniFacebookMonochrome": () => (/* binding */ uniFacebookMonochrome), +/* harmony export */ "uniFacebookFMonochrome": () => (/* binding */ uniFacebookFMonochrome), +/* harmony export */ "uniFacebookMessengerMonochrome": () => (/* binding */ uniFacebookMessengerMonochrome), +/* harmony export */ "uniFacebookMessengerAltMonochrome": () => (/* binding */ uniFacebookMessengerAltMonochrome), +/* harmony export */ "uniFavoriteMonochrome": () => (/* binding */ uniFavoriteMonochrome), +/* harmony export */ "uniFlipHMonochrome": () => (/* binding */ uniFlipHMonochrome), +/* harmony export */ "uniFlipHAltMonochrome": () => (/* binding */ uniFlipHAltMonochrome), +/* harmony export */ "uniFlipVMonochrome": () => (/* binding */ uniFlipVMonochrome), +/* harmony export */ "uniFlipVAltMonochrome": () => (/* binding */ uniFlipVAltMonochrome), +/* harmony export */ "uniGithubMonochrome": () => (/* binding */ uniGithubMonochrome), +/* harmony export */ "uniGithubAltMonochrome": () => (/* binding */ uniGithubAltMonochrome), +/* harmony export */ "uniGitlabMonochrome": () => (/* binding */ uniGitlabMonochrome), +/* harmony export */ "uniGitlabAltMonochrome": () => (/* binding */ uniGitlabAltMonochrome), +/* harmony export */ "uniGoogleMonochrome": () => (/* binding */ uniGoogleMonochrome), +/* harmony export */ "uniGoogleDriveMonochrome": () => (/* binding */ uniGoogleDriveMonochrome), +/* harmony export */ "uniGoogleDriveAltMonochrome": () => (/* binding */ uniGoogleDriveAltMonochrome), +/* harmony export */ "uniGoogleHangoutsMonochrome": () => (/* binding */ uniGoogleHangoutsMonochrome), +/* harmony export */ "uniGoogleHangoutsAltMonochrome": () => (/* binding */ uniGoogleHangoutsAltMonochrome), +/* harmony export */ "uniGooglePlayMonochrome": () => (/* binding */ uniGooglePlayMonochrome), +/* harmony export */ "uniGraphBarMonochrome": () => (/* binding */ uniGraphBarMonochrome), +/* harmony export */ "uniGridMonochrome": () => (/* binding */ uniGridMonochrome), +/* harmony export */ "uniGridsMonochrome": () => (/* binding */ uniGridsMonochrome), +/* harmony export */ "uniGripHorizontalLineMonochrome": () => (/* binding */ uniGripHorizontalLineMonochrome), +/* harmony export */ "uniHeadSideMonochrome": () => (/* binding */ uniHeadSideMonochrome), +/* harmony export */ "uniHeadSideCoughMonochrome": () => (/* binding */ uniHeadSideCoughMonochrome), +/* harmony export */ "uniHeadSideMaskMonochrome": () => (/* binding */ uniHeadSideMaskMonochrome), +/* harmony export */ "uniHipchatMonochrome": () => (/* binding */ uniHipchatMonochrome), +/* harmony export */ "uniHistoryMonochrome": () => (/* binding */ uniHistoryMonochrome), +/* harmony export */ "uniHistoryAltMonochrome": () => (/* binding */ uniHistoryAltMonochrome), +/* harmony export */ "uniHorizontalAlignLeftMonochrome": () => (/* binding */ uniHorizontalAlignLeftMonochrome), +/* harmony export */ "uniHospitalMonochrome": () => (/* binding */ uniHospitalMonochrome), +/* harmony export */ "uniHospitalSquareSignMonochrome": () => (/* binding */ uniHospitalSquareSignMonochrome), +/* harmony export */ "uniHospitalSymbolMonochrome": () => (/* binding */ uniHospitalSymbolMonochrome), +/* harmony export */ "uniHouseUserMonochrome": () => (/* binding */ uniHouseUserMonochrome), +/* harmony export */ "uniHtml3Monochrome": () => (/* binding */ uniHtml3Monochrome), +/* harmony export */ "uniHtml3AltMonochrome": () => (/* binding */ uniHtml3AltMonochrome), +/* harmony export */ "uniHtml5Monochrome": () => (/* binding */ uniHtml5Monochrome), +/* harmony export */ "uniHtml5AltMonochrome": () => (/* binding */ uniHtml5AltMonochrome), +/* harmony export */ "uniImageVMonochrome": () => (/* binding */ uniImageVMonochrome), +/* harmony export */ "uniInstagramMonochrome": () => (/* binding */ uniInstagramMonochrome), +/* harmony export */ "uniInstagramAltMonochrome": () => (/* binding */ uniInstagramAltMonochrome), +/* harmony export */ "uniIntercomMonochrome": () => (/* binding */ uniIntercomMonochrome), +/* harmony export */ "uniIntercomAltMonochrome": () => (/* binding */ uniIntercomAltMonochrome), +/* harmony export */ "uniJavaScriptMonochrome": () => (/* binding */ uniJavaScriptMonochrome), +/* harmony export */ "uniKeySkeletonMonochrome": () => (/* binding */ uniKeySkeletonMonochrome), +/* harmony export */ "uniKeySkeletonAltMonochrome": () => (/* binding */ uniKeySkeletonAltMonochrome), +/* harmony export */ "uniKeyholeCircleMonochrome": () => (/* binding */ uniKeyholeCircleMonochrome), +/* harmony export */ "uniKeyholeSquareMonochrome": () => (/* binding */ uniKeyholeSquareMonochrome), +/* harmony export */ "uniKeyholeSquareFullMonochrome": () => (/* binding */ uniKeyholeSquareFullMonochrome), +/* harmony export */ "uniLayerGroupMonochrome": () => (/* binding */ uniLayerGroupMonochrome), +/* harmony export */ "uniLayersAltMonochrome": () => (/* binding */ uniLayersAltMonochrome), +/* harmony export */ "uniLeftIndentMonochrome": () => (/* binding */ uniLeftIndentMonochrome), +/* harmony export */ "uniLeftIndentAltMonochrome": () => (/* binding */ uniLeftIndentAltMonochrome), +/* harmony export */ "uniLineMonochrome": () => (/* binding */ uniLineMonochrome), +/* harmony export */ "uniLineSpacingMonochrome": () => (/* binding */ uniLineSpacingMonochrome), +/* harmony export */ "uniLinkHMonochrome": () => (/* binding */ uniLinkHMonochrome), +/* harmony export */ "uniLinkedinMonochrome": () => (/* binding */ uniLinkedinMonochrome), +/* harmony export */ "uniLinkedinAltMonochrome": () => (/* binding */ uniLinkedinAltMonochrome), +/* harmony export */ "uniLinuxMonochrome": () => (/* binding */ uniLinuxMonochrome), +/* harmony export */ "uniListUiAltMonochrome": () => (/* binding */ uniListUiAltMonochrome), +/* harmony export */ "uniListUlMonochrome": () => (/* binding */ uniListUlMonochrome), +/* harmony export */ "uniLockMonochrome": () => (/* binding */ uniLockMonochrome), +/* harmony export */ "uniLockAccessMonochrome": () => (/* binding */ uniLockAccessMonochrome), +/* harmony export */ "uniLockAltMonochrome": () => (/* binding */ uniLockAltMonochrome), +/* harmony export */ "uniLockOpenAltMonochrome": () => (/* binding */ uniLockOpenAltMonochrome), +/* harmony export */ "uniLottiefilesMonochrome": () => (/* binding */ uniLottiefilesMonochrome), +/* harmony export */ "uniMasterCardMonochrome": () => (/* binding */ uniMasterCardMonochrome), +/* harmony export */ "uniMediumMMonochrome": () => (/* binding */ uniMediumMMonochrome), +/* harmony export */ "uniMicroscopeMonochrome": () => (/* binding */ uniMicroscopeMonochrome), +/* harmony export */ "uniMicrosoftMonochrome": () => (/* binding */ uniMicrosoftMonochrome), +/* harmony export */ "uniMinusSquareFullMonochrome": () => (/* binding */ uniMinusSquareFullMonochrome), +/* harmony export */ "uniMultiplyMonochrome": () => (/* binding */ uniMultiplyMonochrome), +/* harmony export */ "uniObjectGroupMonochrome": () => (/* binding */ uniObjectGroupMonochrome), +/* harmony export */ "uniObjectUngroupMonochrome": () => (/* binding */ uniObjectUngroupMonochrome), +/* harmony export */ "uniOktaMonochrome": () => (/* binding */ uniOktaMonochrome), +/* harmony export */ "uniOperaMonochrome": () => (/* binding */ uniOperaMonochrome), +/* harmony export */ "uniOperaAltMonochrome": () => (/* binding */ uniOperaAltMonochrome), +/* harmony export */ "uniPadlockMonochrome": () => (/* binding */ uniPadlockMonochrome), +/* harmony export */ "uniPagelinesMonochrome": () => (/* binding */ uniPagelinesMonochrome), +/* harmony export */ "uniPagerdutyMonochrome": () => (/* binding */ uniPagerdutyMonochrome), +/* harmony export */ "uniPaperclipMonochrome": () => (/* binding */ uniPaperclipMonochrome), +/* harmony export */ "uniParagraphMonochrome": () => (/* binding */ uniParagraphMonochrome), +/* harmony export */ "uniPaypalMonochrome": () => (/* binding */ uniPaypalMonochrome), +/* harmony export */ "uniPentagonMonochrome": () => (/* binding */ uniPentagonMonochrome), +/* harmony export */ "uniPlusSquareMonochrome": () => (/* binding */ uniPlusSquareMonochrome), +/* harmony export */ "uniPolygonMonochrome": () => (/* binding */ uniPolygonMonochrome), +/* harmony export */ "uniPreviousMonochrome": () => (/* binding */ uniPreviousMonochrome), +/* harmony export */ "uniProcessMonochrome": () => (/* binding */ uniProcessMonochrome), +/* harmony export */ "uniReactMonochrome": () => (/* binding */ uniReactMonochrome), +/* harmony export */ "uniRecordAudioMonochrome": () => (/* binding */ uniRecordAudioMonochrome), +/* harmony export */ "uniRedditAlienAltMonochrome": () => (/* binding */ uniRedditAlienAltMonochrome), +/* harmony export */ "uniRedoMonochrome": () => (/* binding */ uniRedoMonochrome), +/* harmony export */ "uniRefreshMonochrome": () => (/* binding */ uniRefreshMonochrome), +/* harmony export */ "uniRepeatMonochrome": () => (/* binding */ uniRepeatMonochrome), +/* harmony export */ "uniRightIndentAltMonochrome": () => (/* binding */ uniRightIndentAltMonochrome), +/* harmony export */ "uniRocketMonochrome": () => (/* binding */ uniRocketMonochrome), +/* harmony export */ "uniRulerMonochrome": () => (/* binding */ uniRulerMonochrome), +/* harmony export */ "uniRulerCombinedMonochrome": () => (/* binding */ uniRulerCombinedMonochrome), +/* harmony export */ "uniSanitizerMonochrome": () => (/* binding */ uniSanitizerMonochrome), +/* harmony export */ "uniSanitizerAltMonochrome": () => (/* binding */ uniSanitizerAltMonochrome), +/* harmony export */ "uniSceneryMonochrome": () => (/* binding */ uniSceneryMonochrome), +/* harmony export */ "uniScheduleMonochrome": () => (/* binding */ uniScheduleMonochrome), +/* harmony export */ "uniShieldPlusMonochrome": () => (/* binding */ uniShieldPlusMonochrome), +/* harmony export */ "uniSignInAltMonochrome": () => (/* binding */ uniSignInAltMonochrome), +/* harmony export */ "uniSignOutAltMonochrome": () => (/* binding */ uniSignOutAltMonochrome), +/* harmony export */ "uniSignalAltMonochrome": () => (/* binding */ uniSignalAltMonochrome), +/* harmony export */ "uniSignalAlt3Monochrome": () => (/* binding */ uniSignalAlt3Monochrome), +/* harmony export */ "uniSigninMonochrome": () => (/* binding */ uniSigninMonochrome), +/* harmony export */ "uniSignoutMonochrome": () => (/* binding */ uniSignoutMonochrome), +/* harmony export */ "uniSkypeMonochrome": () => (/* binding */ uniSkypeMonochrome), +/* harmony export */ "uniSkypeAltMonochrome": () => (/* binding */ uniSkypeAltMonochrome), +/* harmony export */ "uniSlackMonochrome": () => (/* binding */ uniSlackMonochrome), +/* harmony export */ "uniSlackAltMonochrome": () => (/* binding */ uniSlackAltMonochrome), +/* harmony export */ "uniSnapchatAltMonochrome": () => (/* binding */ uniSnapchatAltMonochrome), +/* harmony export */ "uniSnapchatGhostMonochrome": () => (/* binding */ uniSnapchatGhostMonochrome), +/* harmony export */ "uniSnapchatSquareMonochrome": () => (/* binding */ uniSnapchatSquareMonochrome), +/* harmony export */ "uniSocialDistancingMonochrome": () => (/* binding */ uniSocialDistancingMonochrome), +/* harmony export */ "uniSortingMonochrome": () => (/* binding */ uniSortingMonochrome), +/* harmony export */ "uniSpaceKeyMonochrome": () => (/* binding */ uniSpaceKeyMonochrome), +/* harmony export */ "uniSquareMonochrome": () => (/* binding */ uniSquareMonochrome), +/* harmony export */ "uniSquareFullMonochrome": () => (/* binding */ uniSquareFullMonochrome), +/* harmony export */ "uniSqureShapeMonochrome": () => (/* binding */ uniSqureShapeMonochrome), +/* harmony export */ "uniStarMonochrome": () => (/* binding */ uniStarMonochrome), +/* harmony export */ "uniStarHalfAltMonochrome": () => (/* binding */ uniStarHalfAltMonochrome), +/* harmony export */ "uniStepForwardMonochrome": () => (/* binding */ uniStepForwardMonochrome), +/* harmony export */ "uniStethoscopeMonochrome": () => (/* binding */ uniStethoscopeMonochrome), +/* harmony export */ "uniStethoscopeAltMonochrome": () => (/* binding */ uniStethoscopeAltMonochrome), +/* harmony export */ "uniStoreSlashMonochrome": () => (/* binding */ uniStoreSlashMonochrome), +/* harmony export */ "uniSubjectMonochrome": () => (/* binding */ uniSubjectMonochrome), +/* harmony export */ "uniSwiggyMonochrome": () => (/* binding */ uniSwiggyMonochrome), +/* harmony export */ "uniSyncExclamationMonochrome": () => (/* binding */ uniSyncExclamationMonochrome), +/* harmony export */ "uniSyncSlashMonochrome": () => (/* binding */ uniSyncSlashMonochrome), +/* harmony export */ "uniTableMonochrome": () => (/* binding */ uniTableMonochrome), +/* harmony export */ "uniTelegramMonochrome": () => (/* binding */ uniTelegramMonochrome), +/* harmony export */ "uniTelegramAltMonochrome": () => (/* binding */ uniTelegramAltMonochrome), +/* harmony export */ "uniThLargeMonochrome": () => (/* binding */ uniThLargeMonochrome), +/* harmony export */ "uniTimesCircleMonochrome": () => (/* binding */ uniTimesCircleMonochrome), +/* harmony export */ "uniToggleOffMonochrome": () => (/* binding */ uniToggleOffMonochrome), +/* harmony export */ "uniToggleOnMonochrome": () => (/* binding */ uniToggleOnMonochrome), +/* harmony export */ "uniToiletPaperMonochrome": () => (/* binding */ uniToiletPaperMonochrome), +/* harmony export */ "uniTriangleMonochrome": () => (/* binding */ uniTriangleMonochrome), +/* harmony export */ "uniTumblrMonochrome": () => (/* binding */ uniTumblrMonochrome), +/* harmony export */ "uniTumblrAltMonochrome": () => (/* binding */ uniTumblrAltMonochrome), +/* harmony export */ "uniTumblrSquareMonochrome": () => (/* binding */ uniTumblrSquareMonochrome), +/* harmony export */ "uniTwitterMonochrome": () => (/* binding */ uniTwitterMonochrome), +/* harmony export */ "uniTwitterAltMonochrome": () => (/* binding */ uniTwitterAltMonochrome), +/* harmony export */ "uniUnlockMonochrome": () => (/* binding */ uniUnlockMonochrome), +/* harmony export */ "uniUnlockAltMonochrome": () => (/* binding */ uniUnlockAltMonochrome), +/* harmony export */ "uniUploadAltMonochrome": () => (/* binding */ uniUploadAltMonochrome), +/* harmony export */ "uniUserArrowsMonochrome": () => (/* binding */ uniUserArrowsMonochrome), +/* harmony export */ "uniUserMdMonochrome": () => (/* binding */ uniUserMdMonochrome), +/* harmony export */ "uniUserNurseMonochrome": () => (/* binding */ uniUserNurseMonochrome), +/* harmony export */ "uniVectorSquareMonochrome": () => (/* binding */ uniVectorSquareMonochrome), +/* harmony export */ "uniVectorSquareAltMonochrome": () => (/* binding */ uniVectorSquareAltMonochrome), +/* harmony export */ "uniVirusSlashMonochrome": () => (/* binding */ uniVirusSlashMonochrome), +/* harmony export */ "uniVisualStudioMonochrome": () => (/* binding */ uniVisualStudioMonochrome), +/* harmony export */ "uniVkMonochrome": () => (/* binding */ uniVkMonochrome), +/* harmony export */ "uniVkAltMonochrome": () => (/* binding */ uniVkAltMonochrome), +/* harmony export */ "uniVuejsMonochrome": () => (/* binding */ uniVuejsMonochrome), +/* harmony export */ "uniVuejsAltMonochrome": () => (/* binding */ uniVuejsAltMonochrome), +/* harmony export */ "uniWebGridMonochrome": () => (/* binding */ uniWebGridMonochrome), +/* harmony export */ "uniWebGridAltMonochrome": () => (/* binding */ uniWebGridAltMonochrome), +/* harmony export */ "uniWebSectionMonochrome": () => (/* binding */ uniWebSectionMonochrome), +/* harmony export */ "uniWebSectionAltMonochrome": () => (/* binding */ uniWebSectionAltMonochrome), +/* harmony export */ "uniWhatsappMonochrome": () => (/* binding */ uniWhatsappMonochrome), +/* harmony export */ "uniWindowGridMonochrome": () => (/* binding */ uniWindowGridMonochrome), +/* harmony export */ "uniWindowMaximizeMonochrome": () => (/* binding */ uniWindowMaximizeMonochrome), +/* harmony export */ "uniWindowSectionMonochrome": () => (/* binding */ uniWindowSectionMonochrome), +/* harmony export */ "uniWindowsMonochrome": () => (/* binding */ uniWindowsMonochrome), +/* harmony export */ "uniWordpressMonochrome": () => (/* binding */ uniWordpressMonochrome), +/* harmony export */ "uniWordpressSimpleMonochrome": () => (/* binding */ uniWordpressSimpleMonochrome), +/* harmony export */ "uniWrapTextMonochrome": () => (/* binding */ uniWrapTextMonochrome), +/* harmony export */ "uniYoutubeMonochrome": () => (/* binding */ uniYoutubeMonochrome) /* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_TermsOfService_vue_vue_type_template_id_63d45180__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./TermsOfService.vue?vue&type=template&id=63d45180 */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/TermsOfService.vue?vue&type=template&id=63d45180"); +const uni0Plus = { name: '0-plus', style: 'line', path: '' } +const uni10Plus = { name: '10-plus', style: 'line', path: '' } +const uni12Plus = { name: '12-plus', style: 'line', path: '' } +const uni13Plus = { name: '13-plus', style: 'line', path: '' } +const uni16Plus = { name: '16-plus', style: 'line', path: '' } +const uni17Plus = { name: '17-plus', style: 'line', path: '' } +const uni18Plus = { name: '18-plus', style: 'line', path: '' } +const uni21Plus = { name: '21-plus', style: 'line', path: '' } +const uni3Plus = { name: '3-plus', style: 'line', path: '' } +const uni500Px = { name: '500px', style: 'line', path: '' } +const uni6Plus = { name: '6-plus', style: 'line', path: '' } +const uniAbacus = { name: 'abacus', style: 'line', path: '' } +const uniAccessibleIconAlt = { name: 'accessible-icon-alt', style: 'line', path: '' } +const uniAdjust = { name: 'adjust', style: 'line', path: '' } +const uniAdjustAlt = { name: 'adjust-alt', style: 'line', path: '' } +const uniAdjustCircle = { name: 'adjust-circle', style: 'line', path: '' } +const uniAdjustHalf = { name: 'adjust-half', style: 'line', path: '' } +const uniAdobe = { name: 'adobe', style: 'line', path: '' } +const uniAdobeAlt = { name: 'adobe-alt', style: 'line', path: '' } +const uniAirplay = { name: 'airplay', style: 'line', path: '' } +const uniAlign = { name: 'align', style: 'line', path: '' } +const uniAlignAlt = { name: 'align-alt', style: 'line', path: '' } +const uniAlignCenter = { name: 'align-center', style: 'line', path: '' } +const uniAlignCenterAlt = { name: 'align-center-alt', style: 'line', path: '' } +const uniAlignCenterH = { name: 'align-center-h', style: 'line', path: '' } +const uniAlignCenterJustify = { name: 'align-center-justify', style: 'line', path: '' } +const uniAlignCenterV = { name: 'align-center-v', style: 'line', path: '' } +const uniAlignJustify = { name: 'align-justify', style: 'line', path: '' } +const uniAlignLeft = { name: 'align-left', style: 'line', path: '' } +const uniAlignLeftJustify = { name: 'align-left-justify', style: 'line', path: '' } +const uniAlignLetterRight = { name: 'align-letter-right', style: 'line', path: '' } +const uniAlignRight = { name: 'align-right', style: 'line', path: '' } +const uniAlignRightJustify = { name: 'align-right-justify', style: 'line', path: '' } +const uniAmazon = { name: 'amazon', style: 'line', path: '' } +const uniAmbulance = { name: 'ambulance', style: 'line', path: '' } +const uniAnalysis = { name: 'analysis', style: 'line', path: '' } +const uniAnalytics = { name: 'analytics', style: 'line', path: '' } +const uniAnchor = { name: 'anchor', style: 'line', path: '' } +const uniAndroid = { name: 'android', style: 'line', path: '' } +const uniAndroidAlt = { name: 'android-alt', style: 'line', path: '' } +const uniAndroidPhoneSlash = { name: 'android-phone-slash', style: 'line', path: '' } +const uniAngleDoubleDown = { name: 'angle-double-down', style: 'line', path: '' } +const uniAngleDoubleLeft = { name: 'angle-double-left', style: 'line', path: '' } +const uniAngleDoubleRight = { name: 'angle-double-right', style: 'line', path: '' } +const uniAngleDoubleUp = { name: 'angle-double-up', style: 'line', path: '' } +const uniAngleDown = { name: 'angle-down', style: 'line', path: '' } +const uniAngleLeft = { name: 'angle-left', style: 'line', path: '' } +const uniAngleLeftB = { name: 'angle-left-b', style: 'line', path: '' } +const uniAngleRight = { name: 'angle-right', style: 'line', path: '' } +const uniAngleRightB = { name: 'angle-right-b', style: 'line', path: '' } +const uniAngleUp = { name: 'angle-up', style: 'line', path: '' } +const uniAngry = { name: 'angry', style: 'line', path: '' } +const uniAnkh = { name: 'ankh', style: 'line', path: '' } +const uniAnnoyed = { name: 'annoyed', style: 'line', path: '' } +const uniAnnoyedAlt = { name: 'annoyed-alt', style: 'line', path: '' } +const uniApple = { name: 'apple', style: 'line', path: '' } +const uniAppleAlt = { name: 'apple-alt', style: 'line', path: '' } +const uniApps = { name: 'apps', style: 'line', path: '' } +const uniArchive = { name: 'archive', style: 'line', path: '' } +const uniArchiveAlt = { name: 'archive-alt', style: 'line', path: '' } +const uniArchway = { name: 'archway', style: 'line', path: '' } +const uniArrow = { name: 'arrow', style: 'line', path: '' } +const uniArrowBreak = { name: 'arrow-break', style: 'line', path: '' } +const uniArrowCircleDown = { name: 'arrow-circle-down', style: 'line', path: '' } +const uniArrowCircleLeft = { name: 'arrow-circle-left', style: 'line', path: '' } +const uniArrowCircleRight = { name: 'arrow-circle-right', style: 'line', path: '' } +const uniArrowCircleUp = { name: 'arrow-circle-up', style: 'line', path: '' } +const uniArrowCompressH = { name: 'arrow-compress-h', style: 'line', path: '' } +const uniArrowDown = { name: 'arrow-down', style: 'line', path: '' } +const uniArrowDownLeft = { name: 'arrow-down-left', style: 'line', path: '' } +const uniArrowDownRight = { name: 'arrow-down-right', style: 'line', path: '' } +const uniArrowFromRight = { name: 'arrow-from-right', style: 'line', path: '' } +const uniArrowFromTop = { name: 'arrow-from-top', style: 'line', path: '' } +const uniArrowGrowth = { name: 'arrow-growth', style: 'line', path: '' } +const uniArrowLeft = { name: 'arrow-left', style: 'line', path: '' } +const uniArrowRandom = { name: 'arrow-random', style: 'line', path: '' } +const uniArrowResizeDiagonal = { name: 'arrow-resize-diagonal', style: 'line', path: '' } +const uniArrowRight = { name: 'arrow-right', style: 'line', path: '' } +const uniArrowToBottom = { name: 'arrow-to-bottom', style: 'line', path: '' } +const uniArrowToRight = { name: 'arrow-to-right', style: 'line', path: '' } +const uniArrowUp = { name: 'arrow-up', style: 'line', path: '' } +const uniArrowUpLeft = { name: 'arrow-up-left', style: 'line', path: '' } +const uniArrowUpRight = { name: 'arrow-up-right', style: 'line', path: '' } +const uniArrowsH = { name: 'arrows-h', style: 'line', path: '' } +const uniArrowsHAlt = { name: 'arrows-h-alt', style: 'line', path: '' } +const uniArrowsLeftDown = { name: 'arrows-left-down', style: 'line', path: '' } +const uniArrowsMaximize = { name: 'arrows-maximize', style: 'line', path: '' } +const uniArrowsMerge = { name: 'arrows-merge', style: 'line', path: '' } +const uniArrowsResize = { name: 'arrows-resize', style: 'line', path: '' } +const uniArrowsResizeH = { name: 'arrows-resize-h', style: 'line', path: '' } +const uniArrowsResizeV = { name: 'arrows-resize-v', style: 'line', path: '' } +const uniArrowsRightDown = { name: 'arrows-right-down', style: 'line', path: '' } +const uniArrowsShrinkH = { name: 'arrows-shrink-h', style: 'line', path: '' } +const uniArrowsShrinkV = { name: 'arrows-shrink-v', style: 'line', path: '' } +const uniArrowsUpRight = { name: 'arrows-up-right', style: 'line', path: '' } +const uniArrowsV = { name: 'arrows-v', style: 'line', path: '' } +const uniArrowsVAlt = { name: 'arrows-v-alt', style: 'line', path: '' } +const uniAssistiveListeningSystems = { name: 'assistive-listening-systems', style: 'line', path: '' } +const uniAsterisk = { name: 'asterisk', style: 'line', path: '' } +const uniAt = { name: 'at', style: 'line', path: '' } +const uniAtom = { name: 'atom', style: 'line', path: '' } +const uniAutoFlash = { name: 'auto-flash', style: 'line', path: '' } +const uniAward = { name: 'award', style: 'line', path: '' } +const uniAwardAlt = { name: 'award-alt', style: 'line', path: '' } +const uniBabyCarriage = { name: 'baby-carriage', style: 'line', path: '' } +const uniBackpack = { name: 'backpack', style: 'line', path: '' } +const uniBackspace = { name: 'backspace', style: 'line', path: '' } +const uniBackward = { name: 'backward', style: 'line', path: '' } +const uniBag = { name: 'bag', style: 'line', path: '' } +const uniBagAlt = { name: 'bag-alt', style: 'line', path: '' } +const uniBagSlash = { name: 'bag-slash', style: 'line', path: '' } +const uniBalanceScale = { name: 'balance-scale', style: 'line', path: '' } +const uniBan = { name: 'ban', style: 'line', path: '' } +const uniBandAid = { name: 'band-aid', style: 'line', path: '' } +const uniBars = { name: 'bars', style: 'line', path: '' } +const uniBaseballBall = { name: 'baseball-ball', style: 'line', path: '' } +const uniBasketball = { name: 'basketball', style: 'line', path: '' } +const uniBasketballHoop = { name: 'basketball-hoop', style: 'line', path: '' } +const uniBath = { name: 'bath', style: 'line', path: '' } +const uniBatteryBolt = { name: 'battery-bolt', style: 'line', path: '' } +const uniBatteryEmpty = { name: 'battery-empty', style: 'line', path: '' } +const uniBed = { name: 'bed', style: 'line', path: '' } +const uniBedDouble = { name: 'bed-double', style: 'line', path: '' } +const uniBehance = { name: 'behance', style: 'line', path: '' } +const uniBehanceAlt = { name: 'behance-alt', style: 'line', path: '' } +const uniBell = { name: 'bell', style: 'line', path: '' } +const uniBellSchool = { name: 'bell-school', style: 'line', path: '' } +const uniBellSlash = { name: 'bell-slash', style: 'line', path: '' } +const uniBill = { name: 'bill', style: 'line', path: '' } +const uniBing = { name: 'bing', style: 'line', path: '' } +const uniBitcoin = { name: 'bitcoin', style: 'line', path: 'Artboard 5 copy 21' } +const uniBitcoinAlt = { name: 'bitcoin-alt', style: 'line', path: '' } +const uniBitcoinCircle = { name: 'bitcoin-circle', style: 'line', path: '' } +const uniBitcoinSign = { name: 'bitcoin-sign', style: 'line', path: '' } +const uniBlackBerry = { name: 'black-berry', style: 'line', path: '' } +const uniBlogger = { name: 'blogger', style: 'line', path: '' } +const uniBloggerAlt = { name: 'blogger-alt', style: 'line', path: '' } +const uniBluetoothB = { name: 'bluetooth-b', style: 'line', path: '' } +const uniBold = { name: 'bold', style: 'line', path: '' } +const uniBolt = { name: 'bolt', style: 'line', path: '' } +const uniBoltAlt = { name: 'bolt-alt', style: 'line', path: '' } +const uniBoltSlash = { name: 'bolt-slash', style: 'line', path: '' } +const uniBook = { name: 'book', style: 'line', path: '' } +const uniBookAlt = { name: 'book-alt', style: 'line', path: '' } +const uniBookMedical = { name: 'book-medical', style: 'line', path: '' } +const uniBookOpen = { name: 'book-open', style: 'line', path: '' } +const uniBookReader = { name: 'book-reader', style: 'line', path: '' } +const uniBookmark = { name: 'bookmark', style: 'line', path: '' } +const uniBookmarkFull = { name: 'bookmark-full', style: 'line', path: '' } +const uniBooks = { name: 'books', style: 'line', path: '' } +const uniBoombox = { name: 'boombox', style: 'line', path: '' } +const uniBorderAlt = { name: 'border-alt', style: 'line', path: '' } +const uniBorderBottom = { name: 'border-bottom', style: 'line', path: '' } +const uniBorderClear = { name: 'border-clear', style: 'line', path: '' } +const uniBorderHorizontal = { name: 'border-horizontal', style: 'line', path: '' } +const uniBorderInner = { name: 'border-inner', style: 'line', path: '' } +const uniBorderLeft = { name: 'border-left', style: 'line', path: '' } +const uniBorderOut = { name: 'border-out', style: 'line', path: '' } +const uniBorderRight = { name: 'border-right', style: 'line', path: '' } +const uniBorderTop = { name: 'border-top', style: 'line', path: '' } +const uniBorderVertical = { name: 'border-vertical', style: 'line', path: '' } +const uniBowlingBall = { name: 'bowling-ball', style: 'line', path: '' } +const uniBox = { name: 'box', style: 'line', path: '' } +const uniBracketsCurly = { name: 'brackets-curly', style: 'line', path: '' } +const uniBrain = { name: 'brain', style: 'line', path: '' } +const uniBriefcase = { name: 'briefcase', style: 'line', path: '' } +const uniBriefcaseAlt = { name: 'briefcase-alt', style: 'line', path: '' } +const uniBright = { name: 'bright', style: 'line', path: '' } +const uniBrightness = { name: 'brightness', style: 'line', path: '' } +const uniBrightnessEmpty = { name: 'brightness-empty', style: 'line', path: '' } +const uniBrightnessHalf = { name: 'brightness-half', style: 'line', path: '' } +const uniBrightnessLow = { name: 'brightness-low', style: 'line', path: '' } +const uniBrightnessMinus = { name: 'brightness-minus', style: 'line', path: '' } +const uniBrightnessPlus = { name: 'brightness-plus', style: 'line', path: '' } +const uniBringBottom = { name: 'bring-bottom', style: 'line', path: '' } +const uniBringFront = { name: 'bring-front', style: 'line', path: '' } +const uniBrowser = { name: 'browser', style: 'line', path: '' } +const uniBrushAlt = { name: 'brush-alt', style: 'line', path: '' } +const uniBug = { name: 'bug', style: 'line', path: '' } +const uniBuilding = { name: 'building', style: 'line', path: '' } +const uniBullseye = { name: 'bullseye', style: 'line', path: '' } +const uniBus = { name: 'bus', style: 'line', path: '' } +const uniBusAlt = { name: 'bus-alt', style: 'line', path: '' } +const uniBusSchool = { name: 'bus-school', style: 'line', path: '' } +const uniCalculator = { name: 'calculator', style: 'line', path: '' } +const uniCalculatorAlt = { name: 'calculator-alt', style: 'line', path: '' } +const uniCalendarAlt = { name: 'calendar-alt', style: 'line', path: '' } +const uniCalendarSlash = { name: 'calendar-slash', style: 'line', path: '' } +const uniCalender = { name: 'calender', style: 'line', path: '' } +const uniCalling = { name: 'calling', style: 'line', path: '' } +const uniCamera = { name: 'camera', style: 'line', path: '' } +const uniCameraChange = { name: 'camera-change', style: 'line', path: '' } +const uniCameraPlus = { name: 'camera-plus', style: 'line', path: '' } +const uniCameraSlash = { name: 'camera-slash', style: 'line', path: '' } +const uniCancel = { name: 'cancel', style: 'line', path: '' } +const uniCapsule = { name: 'capsule', style: 'line', path: '' } +const uniCapture = { name: 'capture', style: 'line', path: '' } +const uniCar = { name: 'car', style: 'line', path: '' } +const uniCarSideview = { name: 'car-sideview', style: 'line', path: '' } +const uniCarSlash = { name: 'car-slash', style: 'line', path: '' } +const uniCarWash = { name: 'car-wash', style: 'line', path: '' } +const uniCardAtm = { name: 'card-atm', style: 'line', path: '' } +const uniCaretRight = { name: 'caret-right', style: 'line', path: '' } +const uniCell = { name: 'cell', style: 'line', path: '' } +const uniCelsius = { name: 'celsius', style: 'line', path: '' } +const uniChannel = { name: 'channel', style: 'line', path: '' } +const uniChannelAdd = { name: 'channel-add', style: 'line', path: '' } +const uniChart = { name: 'chart', style: 'line', path: '' } +const uniChartBar = { name: 'chart-bar', style: 'line', path: '' } +const uniChartBarAlt = { name: 'chart-bar-alt', style: 'line', path: '' } +const uniChartDown = { name: 'chart-down', style: 'line', path: '' } +const uniChartGrowth = { name: 'chart-growth', style: 'line', path: '' } +const uniChartGrowthAlt = { name: 'chart-growth-alt', style: 'line', path: '' } +const uniChartLine = { name: 'chart-line', style: 'line', path: '' } +const uniChartPie = { name: 'chart-pie', style: 'line', path: '' } +const uniChartPieAlt = { name: 'chart-pie-alt', style: 'line', path: '' } +const uniChat = { name: 'chat', style: 'line', path: '' } +const uniChatBubbleUser = { name: 'chat-bubble-user', style: 'line', path: '' } +const uniChatInfo = { name: 'chat-info', style: 'line', path: '' } +const uniCheck = { name: 'check', style: 'line', path: '' } +const uniCheckCircle = { name: 'check-circle', style: 'line', path: '' } +const uniCheckSquare = { name: 'check-square', style: 'line', path: '' } +const uniCircle = { name: 'circle', style: 'line', path: '' } +const uniCircleLayer = { name: 'circle-layer', style: 'line', path: '' } +const uniCircuit = { name: 'circuit', style: 'line', path: '' } +const uniClapperBoard = { name: 'clapper-board', style: 'line', path: '' } +const uniClinicMedical = { name: 'clinic-medical', style: 'line', path: '' } +const uniClipboard = { name: 'clipboard', style: 'line', path: '' } +const uniClipboardAlt = { name: 'clipboard-alt', style: 'line', path: '' } +const uniClipboardBlank = { name: 'clipboard-blank', style: 'line', path: '' } +const uniClipboardNotes = { name: 'clipboard-notes', style: 'line', path: '' } +const uniClock = { name: 'clock', style: 'line', path: '' } +const uniClockEight = { name: 'clock-eight', style: 'line', path: '' } +const uniClockFive = { name: 'clock-five', style: 'line', path: '' } +const uniClockNine = { name: 'clock-nine', style: 'line', path: '' } +const uniClockSeven = { name: 'clock-seven', style: 'line', path: '' } +const uniClockTen = { name: 'clock-ten', style: 'line', path: '' } +const uniClockThree = { name: 'clock-three', style: 'line', path: '' } +const uniClockTwo = { name: 'clock-two', style: 'line', path: '' } +const uniClosedCaptioning = { name: 'closed-captioning', style: 'line', path: '' } +const uniClosedCaptioningSlash = { name: 'closed-captioning-slash', style: 'line', path: '' } +const uniCloud = { name: 'cloud', style: 'line', path: '' } +const uniCloudBlock = { name: 'cloud-block', style: 'line', path: '' } +const uniCloudBookmark = { name: 'cloud-bookmark', style: 'line', path: '' } +const uniCloudCheck = { name: 'cloud-check', style: 'line', path: '' } +const uniCloudComputing = { name: 'cloud-computing', style: 'line', path: '' } +const uniCloudDataConnection = { name: 'cloud-data-connection', style: 'line', path: '' } +const uniCloudDatabaseTree = { name: 'cloud-database-tree', style: 'line', path: '' } +const uniCloudDownload = { name: 'cloud-download', style: 'line', path: '' } +const uniCloudDrizzle = { name: 'cloud-drizzle', style: 'line', path: '' } +const uniCloudExclamation = { name: 'cloud-exclamation', style: 'line', path: '' } +const uniCloudHail = { name: 'cloud-hail', style: 'line', path: '' } +const uniCloudHeart = { name: 'cloud-heart', style: 'line', path: '' } +const uniCloudInfo = { name: 'cloud-info', style: 'line', path: '' } +const uniCloudLock = { name: 'cloud-lock', style: 'line', path: '' } +const uniCloudMeatball = { name: 'cloud-meatball', style: 'line', path: '' } +const uniCloudMoon = { name: 'cloud-moon', style: 'line', path: '' } +const uniCloudMoonHail = { name: 'cloud-moon-hail', style: 'line', path: '' } +const uniCloudMoonMeatball = { name: 'cloud-moon-meatball', style: 'line', path: '' } +const uniCloudMoonRain = { name: 'cloud-moon-rain', style: 'line', path: '' } +const uniCloudMoonShowers = { name: 'cloud-moon-showers', style: 'line', path: '' } +const uniCloudQuestion = { name: 'cloud-question', style: 'line', path: '' } +const uniCloudRain = { name: 'cloud-rain', style: 'line', path: '' } +const uniCloudRainSun = { name: 'cloud-rain-sun', style: 'line', path: '' } +const uniCloudRedo = { name: 'cloud-redo', style: 'line', path: '' } +const uniCloudShare = { name: 'cloud-share', style: 'line', path: '' } +const uniCloudShield = { name: 'cloud-shield', style: 'line', path: '' } +const uniCloudShowers = { name: 'cloud-showers', style: 'line', path: '' } +const uniCloudShowersAlt = { name: 'cloud-showers-alt', style: 'line', path: '' } +const uniCloudShowersHeavy = { name: 'cloud-showers-heavy', style: 'line', path: '' } +const uniCloudSlash = { name: 'cloud-slash', style: 'line', path: '' } +const uniCloudSun = { name: 'cloud-sun', style: 'line', path: '' } +const uniCloudSunHail = { name: 'cloud-sun-hail', style: 'line', path: '' } +const uniCloudSunMeatball = { name: 'cloud-sun-meatball', style: 'line', path: '' } +const uniCloudSunRain = { name: 'cloud-sun-rain', style: 'line', path: '' } +const uniCloudSunRainAlt = { name: 'cloud-sun-rain-alt', style: 'line', path: '' } +const uniCloudSunTear = { name: 'cloud-sun-tear', style: 'line', path: '' } +const uniCloudTimes = { name: 'cloud-times', style: 'line', path: '' } +const uniCloudUnlock = { name: 'cloud-unlock', style: 'line', path: '' } +const uniCloudUpload = { name: 'cloud-upload', style: 'line', path: '' } +const uniCloudWifi = { name: 'cloud-wifi', style: 'line', path: '' } +const uniCloudWind = { name: 'cloud-wind', style: 'line', path: '' } +const uniClouds = { name: 'clouds', style: 'line', path: '' } +const uniClub = { name: 'club', style: 'line', path: '' } +const uniCodeBranch = { name: 'code-branch', style: 'line', path: '' } +const uniCoffee = { name: 'coffee', style: 'line', path: '' } +const uniCog = { name: 'cog', style: 'line', path: '' } +const uniCoins = { name: 'coins', style: 'line', path: '' } +const uniColumns = { name: 'columns', style: 'line', path: '' } +const uniComment = { name: 'comment', style: 'line', path: '' } +const uniCommentAdd = { name: 'comment-add', style: 'line', path: '' } +const uniCommentAlt = { name: 'comment-alt', style: 'line', path: '' } +const uniCommentAltBlock = { name: 'comment-alt-block', style: 'line', path: '' } +const uniCommentAltChartLines = { name: 'comment-alt-chart-lines', style: 'line', path: '' } +const uniCommentAltCheck = { name: 'comment-alt-check', style: 'line', path: '' } +const uniCommentAltDots = { name: 'comment-alt-dots', style: 'line', path: '' } +const uniCommentAltDownload = { name: 'comment-alt-download', style: 'line', path: '' } +const uniCommentAltEdit = { name: 'comment-alt-edit', style: 'line', path: '' } +const uniCommentAltExclamation = { name: 'comment-alt-exclamation', style: 'line', path: '' } +const uniCommentAltHeart = { name: 'comment-alt-heart', style: 'line', path: '' } +const uniCommentAltImage = { name: 'comment-alt-image', style: 'line', path: '' } +const uniCommentAltInfo = { name: 'comment-alt-info', style: 'line', path: '' } +const uniCommentAltLines = { name: 'comment-alt-lines', style: 'line', path: '' } +const uniCommentAltLock = { name: 'comment-alt-lock', style: 'line', path: '' } +const uniCommentAltMedical = { name: 'comment-alt-medical', style: 'line', path: '' } +const uniCommentAltMessage = { name: 'comment-alt-message', style: 'line', path: '' } +const uniCommentAltNotes = { name: 'comment-alt-notes', style: 'line', path: '' } +const uniCommentAltPlus = { name: 'comment-alt-plus', style: 'line', path: '' } +const uniCommentAltQuestion = { name: 'comment-alt-question', style: 'line', path: '' } +const uniCommentAltRedo = { name: 'comment-alt-redo', style: 'line', path: '' } +const uniCommentAltSearch = { name: 'comment-alt-search', style: 'line', path: '' } +const uniCommentAltShare = { name: 'comment-alt-share', style: 'line', path: '' } +const uniCommentAltShield = { name: 'comment-alt-shield', style: 'line', path: '' } +const uniCommentAltSlash = { name: 'comment-alt-slash', style: 'line', path: '' } +const uniCommentAltUpload = { name: 'comment-alt-upload', style: 'line', path: '' } +const uniCommentAltVerify = { name: 'comment-alt-verify', style: 'line', path: '' } +const uniCommentBlock = { name: 'comment-block', style: 'line', path: '' } +const uniCommentChartLine = { name: 'comment-chart-line', style: 'line', path: '' } +const uniCommentCheck = { name: 'comment-check', style: 'line', path: '' } +const uniCommentDots = { name: 'comment-dots', style: 'line', path: '' } +const uniCommentDownload = { name: 'comment-download', style: 'line', path: '' } +const uniCommentEdit = { name: 'comment-edit', style: 'line', path: '' } +const uniCommentExclamation = { name: 'comment-exclamation', style: 'line', path: '' } +const uniCommentHeart = { name: 'comment-heart', style: 'line', path: '' } +const uniCommentImage = { name: 'comment-image', style: 'line', path: '' } +const uniCommentInfo = { name: 'comment-info', style: 'line', path: '' } +const uniCommentInfoAlt = { name: 'comment-info-alt', style: 'line', path: '' } +const uniCommentLines = { name: 'comment-lines', style: 'line', path: '' } +const uniCommentLock = { name: 'comment-lock', style: 'line', path: '' } +const uniCommentMedical = { name: 'comment-medical', style: 'line', path: '' } +const uniCommentMessage = { name: 'comment-message', style: 'line', path: '' } +const uniCommentNotes = { name: 'comment-notes', style: 'line', path: '' } +const uniCommentPlus = { name: 'comment-plus', style: 'line', path: '' } +const uniCommentQuestion = { name: 'comment-question', style: 'line', path: '' } +const uniCommentRedo = { name: 'comment-redo', style: 'line', path: '' } +const uniCommentSearch = { name: 'comment-search', style: 'line', path: '' } +const uniCommentShare = { name: 'comment-share', style: 'line', path: '' } +const uniCommentShield = { name: 'comment-shield', style: 'line', path: '' } +const uniCommentSlash = { name: 'comment-slash', style: 'line', path: '' } +const uniCommentUpload = { name: 'comment-upload', style: 'line', path: '' } +const uniCommentVerify = { name: 'comment-verify', style: 'line', path: '' } +const uniComments = { name: 'comments', style: 'line', path: '' } +const uniCommentsAlt = { name: 'comments-alt', style: 'line', path: '' } +const uniCompactDisc = { name: 'compact-disc', style: 'line', path: '' } +const uniComparison = { name: 'comparison', style: 'line', path: '' } +const uniCompass = { name: 'compass', style: 'line', path: '' } +const uniCompress = { name: 'compress', style: 'line', path: '' } +const uniCompressAlt = { name: 'compress-alt', style: 'line', path: '' } +const uniCompressAltLeft = { name: 'compress-alt-left', style: 'line', path: '' } +const uniCompressArrows = { name: 'compress-arrows', style: 'line', path: '' } +const uniCompressLines = { name: 'compress-lines', style: 'line', path: '' } +const uniCompressPoint = { name: 'compress-point', style: 'line', path: '' } +const uniCompressV = { name: 'compress-v', style: 'line', path: '' } +const uniConfused = { name: 'confused', style: 'line', path: '' } +const uniConstructor = { name: 'constructor', style: 'line', path: '' } +const uniCopy = { name: 'copy', style: 'line', path: '' } +const uniCopyAlt = { name: 'copy-alt', style: 'line', path: '' } +const uniCopyLandscape = { name: 'copy-landscape', style: 'line', path: '' } +const uniCopyright = { name: 'copyright', style: 'line', path: '' } +const uniCornerDownLeft = { name: 'corner-down-left', style: 'line', path: '' } +const uniCornerDownRight = { name: 'corner-down-right', style: 'line', path: '' } +const uniCornerDownRightAlt = { name: 'corner-down-right-alt', style: 'line', path: '' } +const uniCornerLeftDown = { name: 'corner-left-down', style: 'line', path: '' } +const uniCornerRightDown = { name: 'corner-right-down', style: 'line', path: '' } +const uniCornerUpLeft = { name: 'corner-up-left', style: 'line', path: '' } +const uniCornerUpLeftAlt = { name: 'corner-up-left-alt', style: 'line', path: '' } +const uniCornerUpRight = { name: 'corner-up-right', style: 'line', path: '' } +const uniCornerUpRightAlt = { name: 'corner-up-right-alt', style: 'line', path: '' } +const uniCoronavirus = { name: 'coronavirus', style: 'line', path: '' } +const uniCreateDashboard = { name: 'create-dashboard', style: 'line', path: '' } +const uniCreativeCommonsPd = { name: 'creative-commons-pd', style: 'line', path: '' } +const uniCreditCard = { name: 'credit-card', style: 'line', path: '' } +const uniCreditCardSearch = { name: 'credit-card-search', style: 'line', path: '' } +const uniCrockery = { name: 'crockery', style: 'line', path: '' } +const uniCropAlt = { name: 'crop-alt', style: 'line', path: '' } +const uniCropAltRotateLeft = { name: 'crop-alt-rotate-left', style: 'line', path: '' } +const uniCropAltRotateRight = { name: 'crop-alt-rotate-right', style: 'line', path: '' } +const uniCrosshair = { name: 'crosshair', style: 'line', path: '' } +const uniCrosshairAlt = { name: 'crosshair-alt', style: 'line', path: '' } +const uniCrosshairs = { name: 'crosshairs', style: 'line', path: '' } +const uniCss3Simple = { name: 'css3-simple', style: 'line', path: '' } +const uniCube = { name: 'cube', style: 'line', path: '' } +const uniDashboard = { name: 'dashboard', style: 'line', path: '' } +const uniDataSharing = { name: 'data-sharing', style: 'line', path: '' } +const uniDatabase = { name: 'database', style: 'line', path: '' } +const uniDatabaseAlt = { name: 'database-alt', style: 'line', path: '' } +const uniDesert = { name: 'desert', style: 'line', path: '' } +const uniDesktop = { name: 'desktop', style: 'line', path: '' } +const uniDesktopAlt = { name: 'desktop-alt', style: 'line', path: '' } +const uniDesktopAltSlash = { name: 'desktop-alt-slash', style: 'line', path: '' } +const uniDesktopCloudAlt = { name: 'desktop-cloud-alt', style: 'line', path: '' } +const uniDesktopSlash = { name: 'desktop-slash', style: 'line', path: '' } +const uniDialpad = { name: 'dialpad', style: 'line', path: '' } +const uniDialpadAlt = { name: 'dialpad-alt', style: 'line', path: '' } +const uniDiamond = { name: 'diamond', style: 'line', path: '' } +const uniDiary = { name: 'diary', style: 'line', path: '' } +const uniDiaryAlt = { name: 'diary-alt', style: 'line', path: '' } +const uniDiceFive = { name: 'dice-five', style: 'line', path: '' } +const uniDiceFour = { name: 'dice-four', style: 'line', path: '' } +const uniDiceOne = { name: 'dice-one', style: 'line', path: '' } +const uniDiceSix = { name: 'dice-six', style: 'line', path: '' } +const uniDiceThree = { name: 'dice-three', style: 'line', path: '' } +const uniDiceTwo = { name: 'dice-two', style: 'line', path: '' } +const uniDirection = { name: 'direction', style: 'line', path: '' } +const uniDirections = { name: 'directions', style: 'line', path: '' } +const uniDiscord = { name: 'discord', style: 'line', path: '' } +const uniDizzyMeh = { name: 'dizzy-meh', style: 'line', path: '' } +const uniDna = { name: 'dna', style: 'line', path: '' } +const uniDocker = { name: 'docker', style: 'line', path: '' } +const uniDocumentInfo = { name: 'document-info', style: 'line', path: '' } +const uniDocumentLayoutCenter = { name: 'document-layout-center', style: 'line', path: '' } +const uniDocumentLayoutLeft = { name: 'document-layout-left', style: 'line', path: '' } +const uniDocumentLayoutRight = { name: 'document-layout-right', style: 'line', path: '' } +const uniDollarAlt = { name: 'dollar-alt', style: 'line', path: '' } +const uniDollarSign = { name: 'dollar-sign', style: 'line', path: '' } +const uniDollarSignAlt = { name: 'dollar-sign-alt', style: 'line', path: '' } +const uniDownloadAlt = { name: 'download-alt', style: 'line', path: '' } +const uniDraggabledots = { name: 'draggabledots', style: 'line', path: '' } +const uniDribbble = { name: 'dribbble', style: 'line', path: '' } +const uniDrill = { name: 'drill', style: 'line', path: '' } +const uniDropbox = { name: 'dropbox', style: 'line', path: '' } +const uniDumbbell = { name: 'dumbbell', style: 'line', path: '' } +const uniEar = { name: 'ear', style: 'line', path: 'Ear' } +const uniEdit = { name: 'edit', style: 'line', path: '' } +const uniEditAlt = { name: 'edit-alt', style: 'line', path: '' } +const uniElipsisDoubleVAlt = { name: 'elipsis-double-v-alt', style: 'line', path: '' } +const uniEllipsisH = { name: 'ellipsis-h', style: 'line', path: '' } +const uniEllipsisV = { name: 'ellipsis-v', style: 'line', path: '' } +const uniEmoji = { name: 'emoji', style: 'line', path: '' } +const uniEnglishToChinese = { name: 'english-to-chinese', style: 'line', path: '' } +const uniEnter = { name: 'enter', style: 'line', path: '' } +const uniEnvelope = { name: 'envelope', style: 'line', path: '' } +const uniEnvelopeAdd = { name: 'envelope-add', style: 'line', path: '' } +const uniEnvelopeAlt = { name: 'envelope-alt', style: 'line', path: '' } +const uniEnvelopeBlock = { name: 'envelope-block', style: 'line', path: '' } +const uniEnvelopeBookmark = { name: 'envelope-bookmark', style: 'line', path: '' } +const uniEnvelopeCheck = { name: 'envelope-check', style: 'line', path: '' } +const uniEnvelopeDownload = { name: 'envelope-download', style: 'line', path: '' } +const uniEnvelopeDownloadAlt = { name: 'envelope-download-alt', style: 'line', path: '' } +const uniEnvelopeEdit = { name: 'envelope-edit', style: 'line', path: '' } +const uniEnvelopeExclamation = { name: 'envelope-exclamation', style: 'line', path: '' } +const uniEnvelopeHeart = { name: 'envelope-heart', style: 'line', path: '' } +const uniEnvelopeInfo = { name: 'envelope-info', style: 'line', path: '' } +const uniEnvelopeLock = { name: 'envelope-lock', style: 'line', path: '' } +const uniEnvelopeMinus = { name: 'envelope-minus', style: 'line', path: '' } +const uniEnvelopeOpen = { name: 'envelope-open', style: 'line', path: '' } +const uniEnvelopeQuestion = { name: 'envelope-question', style: 'line', path: '' } +const uniEnvelopeReceive = { name: 'envelope-receive', style: 'line', path: '' } +const uniEnvelopeRedo = { name: 'envelope-redo', style: 'line', path: '' } +const uniEnvelopeSearch = { name: 'envelope-search', style: 'line', path: '' } +const uniEnvelopeSend = { name: 'envelope-send', style: 'line', path: '' } +const uniEnvelopeShare = { name: 'envelope-share', style: 'line', path: '' } +const uniEnvelopeShield = { name: 'envelope-shield', style: 'line', path: '' } +const uniEnvelopeStar = { name: 'envelope-star', style: 'line', path: '' } +const uniEnvelopeTimes = { name: 'envelope-times', style: 'line', path: '' } +const uniEnvelopeUpload = { name: 'envelope-upload', style: 'line', path: '' } +const uniEnvelopeUploadAlt = { name: 'envelope-upload-alt', style: 'line', path: '' } +const uniEnvelopes = { name: 'envelopes', style: 'line', path: '' } +const uniEqualCircle = { name: 'equal-circle', style: 'line', path: '' } +const uniEstate = { name: 'estate', style: 'line', path: '' } +const uniEuro = { name: 'euro', style: 'line', path: '' } +const uniEuroCircle = { name: 'euro-circle', style: 'line', path: '' } +const uniExchange = { name: 'exchange', style: 'line', path: '' } +const uniExchangeAlt = { name: 'exchange-alt', style: 'line', path: '' } +const uniExclamation = { name: 'exclamation', style: 'line', path: '' } +const uniExclamationCircle = { name: 'exclamation-circle', style: 'line', path: '' } +const uniExclamationOctagon = { name: 'exclamation-octagon', style: 'line', path: '' } +const uniExclamationTriangle = { name: 'exclamation-triangle', style: 'line', path: '' } +const uniExclude = { name: 'exclude', style: 'line', path: '' } +const uniExpandAlt = { name: 'expand-alt', style: 'line', path: '' } +const uniExpandArrows = { name: 'expand-arrows', style: 'line', path: '' } +const uniExpandArrowsAlt = { name: 'expand-arrows-alt', style: 'line', path: '' } +const uniExpandFromCorner = { name: 'expand-from-corner', style: 'line', path: '' } +const uniExpandLeft = { name: 'expand-left', style: 'line', path: '' } +const uniExpandRight = { name: 'expand-right', style: 'line', path: '' } +const uniExport = { name: 'export', style: 'line', path: '' } +const uniExposureAlt = { name: 'exposure-alt', style: 'line', path: '' } +const uniExposureIncrease = { name: 'exposure-increase', style: 'line', path: '' } +const uniExternalLinkAlt = { name: 'external-link-alt', style: 'line', path: '' } +const uniEye = { name: 'eye', style: 'line', path: '' } +const uniEyeSlash = { name: 'eye-slash', style: 'line', path: '' } +const uniFacebook = { name: 'facebook', style: 'line', path: '' } +const uniFacebookF = { name: 'facebook-f', style: 'line', path: '' } +const uniFacebookMessenger = { name: 'facebook-messenger', style: 'line', path: '' } +const uniFacebookMessengerAlt = { name: 'facebook-messenger-alt', style: 'line', path: '' } +const uniFahrenheit = { name: 'fahrenheit', style: 'line', path: '' } +const uniFastMail = { name: 'fast-mail', style: 'line', path: '' } +const uniFastMailAlt = { name: 'fast-mail-alt', style: 'line', path: '' } +const uniFavorite = { name: 'favorite', style: 'line', path: '' } +const uniFeedback = { name: 'feedback', style: 'line', path: '' } +const uniFidgetSpinner = { name: 'fidget-spinner', style: 'line', path: '' } +const uniFile = { name: 'file', style: 'line', path: '' } +const uniFileAlt = { name: 'file-alt', style: 'line', path: '' } +const uniFileBlank = { name: 'file-blank', style: 'line', path: '' } +const uniFileBlockAlt = { name: 'file-block-alt', style: 'line', path: '' } +const uniFileBookmarkAlt = { name: 'file-bookmark-alt', style: 'line', path: '' } +const uniFileCheck = { name: 'file-check', style: 'line', path: '' } +const uniFileCheckAlt = { name: 'file-check-alt', style: 'line', path: '' } +const uniFileContract = { name: 'file-contract', style: 'line', path: '' } +const uniFileContractDollar = { name: 'file-contract-dollar', style: 'line', path: '' } +const uniFileCopyAlt = { name: 'file-copy-alt', style: 'line', path: '' } +const uniFileDownload = { name: 'file-download', style: 'line', path: '' } +const uniFileDownloadAlt = { name: 'file-download-alt', style: 'line', path: '' } +const uniFileEditAlt = { name: 'file-edit-alt', style: 'line', path: '' } +const uniFileExclamation = { name: 'file-exclamation', style: 'line', path: '' } +const uniFileExclamationAlt = { name: 'file-exclamation-alt', style: 'line', path: '' } +const uniFileExport = { name: 'file-export', style: 'line', path: '' } +const uniFileGraph = { name: 'file-graph', style: 'line', path: '' } +const uniFileHeart = { name: 'file-heart', style: 'line', path: '' } +const uniFileImport = { name: 'file-import', style: 'line', path: '' } +const uniFileInfoAlt = { name: 'file-info-alt', style: 'line', path: '' } +const uniFileLandscape = { name: 'file-landscape', style: 'line', path: '' } +const uniFileLandscapeAlt = { name: 'file-landscape-alt', style: 'line', path: '' } +const uniFileLanscapeSlash = { name: 'file-lanscape-slash', style: 'line', path: '' } +const uniFileLockAlt = { name: 'file-lock-alt', style: 'line', path: '' } +const uniFileMedical = { name: 'file-medical', style: 'line', path: '' } +const uniFileMedicalAlt = { name: 'file-medical-alt', style: 'line', path: '' } +const uniFileMinus = { name: 'file-minus', style: 'line', path: '' } +const uniFileMinusAlt = { name: 'file-minus-alt', style: 'line', path: '' } +const uniFileNetwork = { name: 'file-network', style: 'line', path: '' } +const uniFilePlus = { name: 'file-plus', style: 'line', path: '' } +const uniFilePlusAlt = { name: 'file-plus-alt', style: 'line', path: '' } +const uniFileQuestion = { name: 'file-question', style: 'line', path: '' } +const uniFileQuestionAlt = { name: 'file-question-alt', style: 'line', path: '' } +const uniFileRedoAlt = { name: 'file-redo-alt', style: 'line', path: '' } +const uniFileSearchAlt = { name: 'file-search-alt', style: 'line', path: '' } +const uniFileShareAlt = { name: 'file-share-alt', style: 'line', path: '' } +const uniFileShieldAlt = { name: 'file-shield-alt', style: 'line', path: '' } +const uniFileSlash = { name: 'file-slash', style: 'line', path: '' } +const uniFileTimes = { name: 'file-times', style: 'line', path: '' } +const uniFileTimesAlt = { name: 'file-times-alt', style: 'line', path: '' } +const uniFileUpload = { name: 'file-upload', style: 'line', path: '' } +const uniFileUploadAlt = { name: 'file-upload-alt', style: 'line', path: '' } +const uniFilesLandscapes = { name: 'files-landscapes', style: 'line', path: '' } +const uniFilesLandscapesAlt = { name: 'files-landscapes-alt', style: 'line', path: '' } +const uniFilm = { name: 'film', style: 'line', path: '' } +const uniFilter = { name: 'filter', style: 'line', path: '' } +const uniFilterSlash = { name: 'filter-slash', style: 'line', path: '' } +const uniFire = { name: 'fire', style: 'line', path: '' } +const uniFlask = { name: 'flask', style: 'line', path: '' } +const uniFlaskPotion = { name: 'flask-potion', style: 'line', path: '' } +const uniFlipH = { name: 'flip-h', style: 'line', path: '' } +const uniFlipHAlt = { name: 'flip-h-alt', style: 'line', path: '' } +const uniFlipV = { name: 'flip-v', style: 'line', path: '' } +const uniFlipVAlt = { name: 'flip-v-alt', style: 'line', path: '' } +const uniFlower = { name: 'flower', style: 'line', path: '' } +const uniFocus = { name: 'focus', style: 'line', path: '' } +const uniFocusAdd = { name: 'focus-add', style: 'line', path: '' } +const uniFocusTarget = { name: 'focus-target', style: 'line', path: '' } +const uniFolder = { name: 'folder', style: 'line', path: '' } +const uniFolderCheck = { name: 'folder-check', style: 'line', path: '' } +const uniFolderDownload = { name: 'folder-download', style: 'line', path: '' } +const uniFolderExclamation = { name: 'folder-exclamation', style: 'line', path: '' } +const uniFolderHeart = { name: 'folder-heart', style: 'line', path: '' } +const uniFolderInfo = { name: 'folder-info', style: 'line', path: '' } +const uniFolderLock = { name: 'folder-lock', style: 'line', path: '' } +const uniFolderMedical = { name: 'folder-medical', style: 'line', path: '' } +const uniFolderMinus = { name: 'folder-minus', style: 'line', path: '' } +const uniFolderNetwork = { name: 'folder-network', style: 'line', path: '' } +const uniFolderOpen = { name: 'folder-open', style: 'line', path: '' } +const uniFolderPlus = { name: 'folder-plus', style: 'line', path: '' } +const uniFolderQuestion = { name: 'folder-question', style: 'line', path: '' } +const uniFolderSlash = { name: 'folder-slash', style: 'line', path: '' } +const uniFolderTimes = { name: 'folder-times', style: 'line', path: '' } +const uniFolderUpload = { name: 'folder-upload', style: 'line', path: '' } +const uniFont = { name: 'font', style: 'line', path: '' } +const uniFootball = { name: 'football', style: 'line', path: '' } +const uniFootballAmerican = { name: 'football-american', style: 'line', path: '' } +const uniFootballBall = { name: 'football-ball', style: 'line', path: '' } +const uniForecastcloudMoonTear = { name: 'forecastcloud-moon-tear', style: 'line', path: '' } +const uniForwadedCall = { name: 'forwaded-call', style: 'line', path: '' } +const uniForward = { name: 'forward', style: 'line', path: '' } +const uniFrown = { name: 'frown', style: 'line', path: '' } +const uniGameStructure = { name: 'game-structure', style: 'line', path: '' } +const uniGift = { name: 'gift', style: 'line', path: '' } +const uniGithub = { name: 'github', style: 'line', path: '' } +const uniGithubAlt = { name: 'github-alt', style: 'line', path: '' } +const uniGitlab = { name: 'gitlab', style: 'line', path: '' } +const uniGlass = { name: 'glass', style: 'line', path: '' } +const uniGlassMartini = { name: 'glass-martini', style: 'line', path: '' } +const uniGlassMartiniAlt = { name: 'glass-martini-alt', style: 'line', path: '' } +const uniGlassMartiniAltSlash = { name: 'glass-martini-alt-slash', style: 'line', path: '' } +const uniGlassTea = { name: 'glass-tea', style: 'line', path: '' } +const uniGlobe = { name: 'globe', style: 'line', path: '' } +const uniGold = { name: 'gold', style: 'line', path: '' } +const uniGolfBall = { name: 'golf-ball', style: 'line', path: '' } +const uniGoogle = { name: 'google', style: 'line', path: '' } +const uniGoogleDrive = { name: 'google-drive', style: 'line', path: '' } +const uniGoogleDriveAlt = { name: 'google-drive-alt', style: 'line', path: '' } +const uniGoogleHangouts = { name: 'google-hangouts', style: 'line', path: '' } +const uniGoogleHangoutsAlt = { name: 'google-hangouts-alt', style: 'line', path: '' } +const uniGooglePlay = { name: 'google-play', style: 'line', path: '' } +const uniGraduationCap = { name: 'graduation-cap', style: 'line', path: '' } +const uniGraphBar = { name: 'graph-bar', style: 'line', path: '' } +const uniGrid = { name: 'grid', style: 'line', path: '' } +const uniGrids = { name: 'grids', style: 'line', path: '' } +const uniGrin = { name: 'grin', style: 'line', path: '' } +const uniGrinTongueWink = { name: 'grin-tongue-wink', style: 'line', path: '' } +const uniGrinTongueWinkAlt = { name: 'grin-tongue-wink-alt', style: 'line', path: '' } +const uniGripHorizontalLine = { name: 'grip-horizontal-line', style: 'line', path: '' } +const uniHardHat = { name: 'hard-hat', style: 'line', path: '' } +const uniHdd = { name: 'hdd', style: 'line', path: '' } +const uniHeadSide = { name: 'head-side', style: 'line', path: '' } +const uniHeadSideCough = { name: 'head-side-cough', style: 'line', path: '' } +const uniHeadSideMask = { name: 'head-side-mask', style: 'line', path: '' } +const uniHeadphoneSlash = { name: 'headphone-slash', style: 'line', path: '' } +const uniHeadphones = { name: 'headphones', style: 'line', path: '' } +const uniHeadphonesAlt = { name: 'headphones-alt', style: 'line', path: '' } +const uniHeart = { name: 'heart', style: 'line', path: '' } +const uniHeartAlt = { name: 'heart-alt', style: 'line', path: '' } +const uniHeartBreak = { name: 'heart-break', style: 'line', path: '' } +const uniHeartMedical = { name: 'heart-medical', style: 'line', path: '' } +const uniHeartRate = { name: 'heart-rate', style: 'line', path: '' } +const uniHeartSign = { name: 'heart-sign', style: 'line', path: '' } +const uniHeartbeat = { name: 'heartbeat', style: 'line', path: '' } +const uniHindiToChinese = { name: 'hindi-to-chinese', style: 'line', path: '' } +const uniHipchat = { name: 'hipchat', style: 'line', path: '' } +const uniHistory = { name: 'history', style: 'line', path: '' } +const uniHistoryAlt = { name: 'history-alt', style: 'line', path: '' } +const uniHome = { name: 'home', style: 'line', path: '' } +const uniHorizontalAlignCenter = { name: 'horizontal-align-center', style: 'line', path: '' } +const uniHorizontalAlignLeft = { name: 'horizontal-align-left', style: 'line', path: '' } +const uniHorizontalAlignRight = { name: 'horizontal-align-right', style: 'line', path: '' } +const uniHorizontalDistributionCenter = { name: 'horizontal-distribution-center', style: 'line', path: '' } +const uniHorizontalDistributionLeft = { name: 'horizontal-distribution-left', style: 'line', path: '' } +const uniHorizontalDistributionRight = { name: 'horizontal-distribution-right', style: 'line', path: '' } +const uniHospital = { name: 'hospital', style: 'line', path: '' } +const uniHospitalSquareSign = { name: 'hospital-square-sign', style: 'line', path: '' } +const uniHospitalSymbol = { name: 'hospital-symbol', style: 'line', path: '' } +const uniHourglass = { name: 'hourglass', style: 'line', path: '' } +const uniHouseUser = { name: 'house-user', style: 'line', path: '' } +const uniHtml3 = { name: 'html3', style: 'line', path: '' } +const uniHtml3Alt = { name: 'html3-alt', style: 'line', path: '' } +const uniHtml5 = { name: 'html5', style: 'line', path: '' } +const uniHtml5Alt = { name: 'html5-alt', style: 'line', path: '' } +const uniHunting = { name: 'hunting', style: 'line', path: '' } +const uniIcons = { name: 'icons', style: 'line', path: '' } +const uniIllustration = { name: 'illustration', style: 'line', path: '' } +const uniImage = { name: 'image', style: 'line', path: '' } +const uniImageAltSlash = { name: 'image-alt-slash', style: 'line', path: '' } +const uniImageBlock = { name: 'image-block', style: 'line', path: '' } +const uniImageBroken = { name: 'image-broken', style: 'line', path: '' } +const uniImageCheck = { name: 'image-check', style: 'line', path: '' } +const uniImageDownload = { name: 'image-download', style: 'line', path: '' } +const uniImageEdit = { name: 'image-edit', style: 'line', path: '' } +const uniImageLock = { name: 'image-lock', style: 'line', path: '' } +const uniImageMinus = { name: 'image-minus', style: 'line', path: '' } +const uniImagePlus = { name: 'image-plus', style: 'line', path: '' } +const uniImageQuestion = { name: 'image-question', style: 'line', path: '' } +const uniImageRedo = { name: 'image-redo', style: 'line', path: '' } +const uniImageResizeLandscape = { name: 'image-resize-landscape', style: 'line', path: '' } +const uniImageResizeSquare = { name: 'image-resize-square', style: 'line', path: '' } +const uniImageSearch = { name: 'image-search', style: 'line', path: '' } +const uniImageShare = { name: 'image-share', style: 'line', path: '' } +const uniImageShield = { name: 'image-shield', style: 'line', path: '' } +const uniImageSlash = { name: 'image-slash', style: 'line', path: '' } +const uniImageTimes = { name: 'image-times', style: 'line', path: '' } +const uniImageUpload = { name: 'image-upload', style: 'line', path: '' } +const uniImageV = { name: 'image-v', style: 'line', path: '' } +const uniImages = { name: 'images', style: 'line', path: '' } +const uniImport = { name: 'import', style: 'line', path: '' } +const uniInbox = { name: 'inbox', style: 'line', path: '' } +const uniIncomingCall = { name: 'incoming-call', style: 'line', path: '' } +const uniInfo = { name: 'info', style: 'line', path: '' } +const uniInfoCircle = { name: 'info-circle', style: 'line', path: '' } +const uniInstagram = { name: 'instagram', style: 'line', path: '' } +const uniInstagramAlt = { name: 'instagram-alt', style: 'line', path: '' } +const uniIntercom = { name: 'intercom', style: 'line', path: '' } +const uniIntercomAlt = { name: 'intercom-alt', style: 'line', path: '' } +const uniInvoice = { name: 'invoice', style: 'line', path: '' } +const uniItalic = { name: 'italic', style: 'line', path: '' } +const uniJackhammer = { name: 'jackhammer', style: 'line', path: '' } +const uniJavaScript = { name: 'java-script', style: 'line', path: '' } +const uniKayak = { name: 'kayak', style: 'line', path: '' } +const uniKeySkeleton = { name: 'key-skeleton', style: 'line', path: '' } +const uniKeySkeletonAlt = { name: 'key-skeleton-alt', style: 'line', path: '' } +const uniKeyboard = { name: 'keyboard', style: 'line', path: '' } +const uniKeyboardAlt = { name: 'keyboard-alt', style: 'line', path: '' } +const uniKeyboardHide = { name: 'keyboard-hide', style: 'line', path: '' } +const uniKeyboardShow = { name: 'keyboard-show', style: 'line', path: '' } +const uniKeyholeCircle = { name: 'keyhole-circle', style: 'line', path: '' } +const uniKeyholeSquare = { name: 'keyhole-square', style: 'line', path: '' } +const uniKeyholeSquareFull = { name: 'keyhole-square-full', style: 'line', path: '' } +const uniKid = { name: 'kid', style: 'line', path: '' } +const uniLabel = { name: 'label', style: 'line', path: '' } +const uniLabelAlt = { name: 'label-alt', style: 'line', path: '' } +const uniLamp = { name: 'lamp', style: 'line', path: '' } +const uniLanguage = { name: 'language', style: 'line', path: '' } +const uniLaptop = { name: 'laptop', style: 'line', path: '' } +const uniLaptopCloud = { name: 'laptop-cloud', style: 'line', path: '' } +const uniLaptopConnection = { name: 'laptop-connection', style: 'line', path: '' } +const uniLaughing = { name: 'laughing', style: 'line', path: '' } +const uniLayerGroup = { name: 'layer-group', style: 'line', path: '' } +const uniLayerGroupSlash = { name: 'layer-group-slash', style: 'line', path: '' } +const uniLayers = { name: 'layers', style: 'line', path: '' } +const uniLayersAlt = { name: 'layers-alt', style: 'line', path: '' } +const uniLayersSlash = { name: 'layers-slash', style: 'line', path: '' } +const uniLeftArrowFromLeft = { name: 'left-arrow-from-left', style: 'line', path: '' } +const uniLeftArrowToLeft = { name: 'left-arrow-to-left', style: 'line', path: '' } +const uniLeftIndent = { name: 'left-indent', style: 'line', path: '' } +const uniLeftIndentAlt = { name: 'left-indent-alt', style: 'line', path: '' } +const uniLeftToRightTextDirection = { name: 'left-to-right-text-direction', style: 'line', path: '' } +const uniLetterChineseA = { name: 'letter-chinese-a', style: 'line', path: '' } +const uniLetterEnglishA = { name: 'letter-english-a', style: 'line', path: '' } +const uniLetterHindiA = { name: 'letter-hindi-a', style: 'line', path: '' } +const uniLetterJapaneseA = { name: 'letter-japanese-a', style: 'line', path: '' } +const uniLifeRing = { name: 'life-ring', style: 'line', path: '' } +const uniLightbulb = { name: 'lightbulb', style: 'line', path: '' } +const uniLightbulbAlt = { name: 'lightbulb-alt', style: 'line', path: '' } +const uniLine = { name: 'line', style: 'line', path: '' } +const uniLineAlt = { name: 'line-alt', style: 'line', path: '' } +const uniLineSpacing = { name: 'line-spacing', style: 'line', path: '' } +const uniLink = { name: 'link', style: 'line', path: '' } +const uniLinkAdd = { name: 'link-add', style: 'line', path: '' } +const uniLinkAlt = { name: 'link-alt', style: 'line', path: '' } +const uniLinkBroken = { name: 'link-broken', style: 'line', path: '' } +const uniLinkH = { name: 'link-h', style: 'line', path: '' } +const uniLinkedin = { name: 'linkedin', style: 'line', path: '' } +const uniLinkedinAlt = { name: 'linkedin-alt', style: 'line', path: '' } +const uniLinux = { name: 'linux', style: 'line', path: '' } +const uniLiraSign = { name: 'lira-sign', style: 'line', path: '' } +const uniListOl = { name: 'list-ol', style: 'line', path: '' } +const uniListOlAlt = { name: 'list-ol-alt', style: 'line', path: '' } +const uniListUiAlt = { name: 'list-ui-alt', style: 'line', path: '' } +const uniListUl = { name: 'list-ul', style: 'line', path: '' } +const uniLocationArrow = { name: 'location-arrow', style: 'line', path: '' } +const uniLocationArrowAlt = { name: 'location-arrow-alt', style: 'line', path: '' } +const uniLocationPinAlt = { name: 'location-pin-alt', style: 'line', path: '' } +const uniLocationPoint = { name: 'location-point', style: 'line', path: '' } +const uniLock = { name: 'lock', style: 'line', path: '' } +const uniLockAccess = { name: 'lock-access', style: 'line', path: '' } +const uniLockAlt = { name: 'lock-alt', style: 'line', path: '' } +const uniLockOpenAlt = { name: 'lock-open-alt', style: 'line', path: '' } +const uniLockSlash = { name: 'lock-slash', style: 'line', path: '' } +const uniLottiefiles = { name: 'lottiefiles', style: 'line', path: '' } +const uniLottiefilesAlt = { name: 'lottiefiles-alt', style: 'line', path: '' } +const uniLuggageCart = { name: 'luggage-cart', style: 'line', path: '' } +const uniMailbox = { name: 'mailbox', style: 'line', path: '' } +const uniMailboxAlt = { name: 'mailbox-alt', style: 'line', path: '' } +const uniMap = { name: 'map', style: 'line', path: '' } +const uniMapMarker = { name: 'map-marker', style: 'line', path: '' } +const uniMapMarkerAlt = { name: 'map-marker-alt', style: 'line', path: '' } +const uniMapMarkerEdit = { name: 'map-marker-edit', style: 'line', path: '' } +const uniMapMarkerInfo = { name: 'map-marker-info', style: 'line', path: '' } +const uniMapMarkerMinus = { name: 'map-marker-minus', style: 'line', path: '' } +const uniMapMarkerPlus = { name: 'map-marker-plus', style: 'line', path: '' } +const uniMapMarkerQuestion = { name: 'map-marker-question', style: 'line', path: '' } +const uniMapMarkerShield = { name: 'map-marker-shield', style: 'line', path: '' } +const uniMapMarkerSlash = { name: 'map-marker-slash', style: 'line', path: '' } +const uniMapPin = { name: 'map-pin', style: 'line', path: '' } +const uniMapPinAlt = { name: 'map-pin-alt', style: 'line', path: '' } +const uniMars = { name: 'mars', style: 'line', path: '' } +const uniMasterCard = { name: 'master-card', style: 'line', path: '' } +const uniMaximizeLeft = { name: 'maximize-left', style: 'line', path: '' } +const uniMedal = { name: 'medal', style: 'line', path: '' } +const uniMedicalDrip = { name: 'medical-drip', style: 'line', path: '' } +const uniMedicalSquare = { name: 'medical-square', style: 'line', path: '' } +const uniMedicalSquareFull = { name: 'medical-square-full', style: 'line', path: '' } +const uniMediumM = { name: 'medium-m', style: 'line', path: '' } +const uniMedkit = { name: 'medkit', style: 'line', path: '' } +const uniMeetingBoard = { name: 'meeting-board', style: 'line', path: '' } +const uniMegaphone = { name: 'megaphone', style: 'line', path: '' } +const uniMeh = { name: 'meh', style: 'line', path: '' } +const uniMehAlt = { name: 'meh-alt', style: 'line', path: '' } +const uniMehClosedEye = { name: 'meh-closed-eye', style: 'line', path: '' } +const uniMessage = { name: 'message', style: 'line', path: '' } +const uniMetro = { name: 'metro', style: 'line', path: '' } +const uniMicrophone = { name: 'microphone', style: 'line', path: '' } +const uniMicrophoneSlash = { name: 'microphone-slash', style: 'line', path: '' } +const uniMicroscope = { name: 'microscope', style: 'line', path: '' } +const uniMicrosoft = { name: 'microsoft', style: 'line', path: '' } +const uniMinus = { name: 'minus', style: 'line', path: '' } +const uniMinusCircle = { name: 'minus-circle', style: 'line', path: '' } +const uniMinusPath = { name: 'minus-path', style: 'line', path: '' } +const uniMinusSquare = { name: 'minus-square', style: 'line', path: '' } +const uniMinusSquareFull = { name: 'minus-square-full', style: 'line', path: '' } +const uniMissedCall = { name: 'missed-call', style: 'line', path: '' } +const uniMobileAndroid = { name: 'mobile-android', style: 'line', path: '' } +const uniMobileAndroidAlt = { name: 'mobile-android-alt', style: 'line', path: '' } +const uniMobileVibrate = { name: 'mobile-vibrate', style: 'line', path: '' } +const uniModem = { name: 'modem', style: 'line', path: '' } +const uniMoneyBill = { name: 'money-bill', style: 'line', path: '' } +const uniMoneyBillSlash = { name: 'money-bill-slash', style: 'line', path: '' } +const uniMoneyBillStack = { name: 'money-bill-stack', style: 'line', path: '' } +const uniMoneyInsert = { name: 'money-insert', style: 'line', path: '' } +const uniMoneyStack = { name: 'money-stack', style: 'line', path: '' } +const uniMoneyWithdraw = { name: 'money-withdraw', style: 'line', path: '' } +const uniMoneyWithdrawal = { name: 'money-withdrawal', style: 'line', path: '' } +const uniMoneybag = { name: 'moneybag', style: 'line', path: '' } +const uniMoneybagAlt = { name: 'moneybag-alt', style: 'line', path: '' } +const uniMonitor = { name: 'monitor', style: 'line', path: '' } +const uniMonitorHeartRate = { name: 'monitor-heart-rate', style: 'line', path: '' } +const uniMoon = { name: 'moon', style: 'line', path: '' } +const uniMoonEclipse = { name: 'moon-eclipse', style: 'line', path: '' } +const uniMoonset = { name: 'moonset', style: 'line', path: '' } +const uniMountains = { name: 'mountains', style: 'line', path: '' } +const uniMountainsSun = { name: 'mountains-sun', style: 'line', path: '' } +const uniMouse = { name: 'mouse', style: 'line', path: '' } +const uniMouseAlt = { name: 'mouse-alt', style: 'line', path: '' } +const uniMouseAlt2 = { name: 'mouse-alt-2', style: 'line', path: '' } +const uniMultiply = { name: 'multiply', style: 'line', path: '' } +const uniMusic = { name: 'music', style: 'line', path: '' } +const uniMusicNote = { name: 'music-note', style: 'line', path: '' } +const uniMusicTuneSlash = { name: 'music-tune-slash', style: 'line', path: '' } +const uniNA = { name: 'n-a', style: 'line', path: '' } +const uniNavigator = { name: 'navigator', style: 'line', path: '' } +const uniNerd = { name: 'nerd', style: 'line', path: '' } +const uniNewspaper = { name: 'newspaper', style: 'line', path: '' } +const uniNinja = { name: 'ninja', style: 'line', path: '' } +const uniNoEntry = { name: 'no-entry', style: 'line', path: '' } +const uniNotebooks = { name: 'notebooks', style: 'line', path: '' } +const uniNotes = { name: 'notes', style: 'line', path: '' } +const uniObjectGroup = { name: 'object-group', style: 'line', path: '' } +const uniObjectUngroup = { name: 'object-ungroup', style: 'line', path: '' } +const uniOctagon = { name: 'octagon', style: 'line', path: '' } +const uniOkta = { name: 'okta', style: 'line', path: '' } +const uniOpera = { name: 'opera', style: 'line', path: '' } +const uniOperaAlt = { name: 'opera-alt', style: 'line', path: '' } +const uniOutgoingCall = { name: 'outgoing-call', style: 'line', path: '' } +const uniPackage = { name: 'package', style: 'line', path: '' } +const uniPadlock = { name: 'padlock', style: 'line', path: '' } +const uniPagelines = { name: 'pagelines', style: 'line', path: '' } +const uniPagerduty = { name: 'pagerduty', style: 'line', path: '' } +const uniPaintTool = { name: 'paint-tool', style: 'line', path: '' } +const uniPalette = { name: 'palette', style: 'line', path: '' } +const uniPanelAdd = { name: 'panel-add', style: 'line', path: '' } +const uniPanoramaH = { name: 'panorama-h', style: 'line', path: '' } +const uniPanoramaHAlt = { name: 'panorama-h-alt', style: 'line', path: '' } +const uniPanoramaV = { name: 'panorama-v', style: 'line', path: '' } +const uniPaperclip = { name: 'paperclip', style: 'line', path: '' } +const uniParagraph = { name: 'paragraph', style: 'line', path: '' } +const uniParcel = { name: 'parcel', style: 'line', path: '' } +const uniParkingCircle = { name: 'parking-circle', style: 'line', path: '' } +const uniParkingSquare = { name: 'parking-square', style: 'line', path: '' } +const uniPathfinder = { name: 'pathfinder', style: 'line', path: '' } +const uniPathfinderUnite = { name: 'pathfinder-unite', style: 'line', path: '' } +const uniPause = { name: 'pause', style: 'line', path: '' } +const uniPauseCircle = { name: 'pause-circle', style: 'line', path: '' } +const uniPaypal = { name: 'paypal', style: 'line', path: '' } +const uniPen = { name: 'pen', style: 'line', path: '' } +const uniPentagon = { name: 'pentagon', style: 'line', path: '' } +const uniPercentage = { name: 'percentage', style: 'line', path: '' } +const uniPhone = { name: 'phone', style: 'line', path: '' } +const uniPhoneAlt = { name: 'phone-alt', style: 'line', path: '' } +const uniPhonePause = { name: 'phone-pause', style: 'line', path: '' } +const uniPhoneSlash = { name: 'phone-slash', style: 'line', path: '' } +const uniPhoneTimes = { name: 'phone-times', style: 'line', path: '' } +const uniPhoneVolume = { name: 'phone-volume', style: 'line', path: '' } +const uniPicture = { name: 'picture', style: 'line', path: '' } +const uniPizzaSlice = { name: 'pizza-slice', style: 'line', path: '' } +const uniPlane = { name: 'plane', style: 'line', path: '' } +const uniPlaneArrival = { name: 'plane-arrival', style: 'line', path: '' } +const uniPlaneDeparture = { name: 'plane-departure', style: 'line', path: '' } +const uniPlaneFly = { name: 'plane-fly', style: 'line', path: '' } +const uniPlay = { name: 'play', style: 'line', path: '' } +const uniPlayCircle = { name: 'play-circle', style: 'line', path: '' } +const uniPlug = { name: 'plug', style: 'line', path: '' } +const uniPlus = { name: 'plus', style: 'line', path: '' } +const uniPlusCircle = { name: 'plus-circle', style: 'line', path: '' } +const uniPlusSquare = { name: 'plus-square', style: 'line', path: '' } +const uniPodium = { name: 'podium', style: 'line', path: '' } +const uniPolygon = { name: 'polygon', style: 'line', path: '' } +const uniPostStamp = { name: 'post-stamp', style: 'line', path: '' } +const uniPostcard = { name: 'postcard', style: 'line', path: '' } +const uniPound = { name: 'pound', style: 'line', path: '' } +const uniPoundCircle = { name: 'pound-circle', style: 'line', path: '' } +const uniPower = { name: 'power', style: 'line', path: '' } +const uniPrescriptionBottle = { name: 'prescription-bottle', style: 'line', path: '' } +const uniPresentation = { name: 'presentation', style: 'line', path: '' } +const uniPresentationCheck = { name: 'presentation-check', style: 'line', path: '' } +const uniPresentationEdit = { name: 'presentation-edit', style: 'line', path: '' } +const uniPresentationLine = { name: 'presentation-line', style: 'line', path: '' } +const uniPresentationLinesAlt = { name: 'presentation-lines-alt', style: 'line', path: '' } +const uniPresentationMinus = { name: 'presentation-minus', style: 'line', path: '' } +const uniPresentationPlay = { name: 'presentation-play', style: 'line', path: '' } +const uniPresentationPlus = { name: 'presentation-plus', style: 'line', path: '' } +const uniPresentationTimes = { name: 'presentation-times', style: 'line', path: '' } +const uniPrevious = { name: 'previous', style: 'line', path: '' } +const uniPricetagAlt = { name: 'pricetag-alt', style: 'line', path: '' } +const uniPrint = { name: 'print', style: 'line', path: '' } +const uniPrintSlash = { name: 'print-slash', style: 'line', path: '' } +const uniProcess = { name: 'process', style: 'line', path: '' } +const uniProcessor = { name: 'processor', style: 'line', path: '' } +const uniProgrammingLanguage = { name: 'programming-language', style: 'line', path: '' } +const uniPump = { name: 'pump', style: 'line', path: '' } +const uniPuzzlePiece = { name: 'puzzle-piece', style: 'line', path: '' } +const uniQrcodeScan = { name: 'qrcode-scan', style: 'line', path: '' } +const uniQuestion = { name: 'question', style: 'line', path: '' } +const uniQuestionCircle = { name: 'question-circle', style: 'line', path: '' } +const uniRainbow = { name: 'rainbow', style: 'line', path: '' } +const uniRaindrops = { name: 'raindrops', style: 'line', path: '' } +const uniRaindropsAlt = { name: 'raindrops-alt', style: 'line', path: '' } +const uniReact = { name: 'react', style: 'line', path: '' } +const uniReceipt = { name: 'receipt', style: 'line', path: '' } +const uniReceiptAlt = { name: 'receipt-alt', style: 'line', path: '' } +const uniRecordAudio = { name: 'record-audio', style: 'line', path: '' } +const uniRedditAlienAlt = { name: 'reddit-alien-alt', style: 'line', path: '' } +const uniRedo = { name: 'redo', style: 'line', path: '' } +const uniRefresh = { name: 'refresh', style: 'line', path: '' } +const uniRegistered = { name: 'registered', style: 'line', path: '' } +const uniRepeat = { name: 'repeat', style: 'line', path: '' } +const uniRestaurant = { name: 'restaurant', style: 'line', path: '' } +const uniRightIndentAlt = { name: 'right-indent-alt', style: 'line', path: '' } +const uniRightToLeftTextDirection = { name: 'right-to-left-text-direction', style: 'line', path: '' } +const uniRobot = { name: 'robot', style: 'line', path: '' } +const uniRocket = { name: 'rocket', style: 'line', path: '' } +const uniRopeWay = { name: 'rope-way', style: 'line', path: '' } +const uniRotate360 = { name: 'rotate-360', style: 'line', path: '' } +const uniRss = { name: 'rss', style: 'line', path: '' } +const uniRssAlt = { name: 'rss-alt', style: 'line', path: '' } +const uniRssInterface = { name: 'rss-interface', style: 'line', path: '' } +const uniRuler = { name: 'ruler', style: 'line', path: '' } +const uniRulerCombined = { name: 'ruler-combined', style: 'line', path: '' } +const uniRupeeSign = { name: 'rupee-sign', style: 'line', path: '' } +const uniSad = { name: 'sad', style: 'line', path: '' } +const uniSadCry = { name: 'sad-cry', style: 'line', path: '' } +const uniSadCrying = { name: 'sad-crying', style: 'line', path: '' } +const uniSadDizzy = { name: 'sad-dizzy', style: 'line', path: '' } +const uniSadSquint = { name: 'sad-squint', style: 'line', path: '' } +const uniSanitizer = { name: 'sanitizer', style: 'line', path: '' } +const uniSanitizerAlt = { name: 'sanitizer-alt', style: 'line', path: '' } +const uniSave = { name: 'save', style: 'line', path: '' } +const uniScalingLeft = { name: 'scaling-left', style: 'line', path: '' } +const uniScalingRight = { name: 'scaling-right', style: 'line', path: '' } +const uniScenery = { name: 'scenery', style: 'line', path: '' } +const uniSchedule = { name: 'schedule', style: 'line', path: '' } +const uniScrew = { name: 'screw', style: 'line', path: '' } +const uniScroll = { name: 'scroll', style: 'line', path: '' } +const uniScrollH = { name: 'scroll-h', style: 'line', path: '' } +const uniSearch = { name: 'search', style: 'line', path: '' } +const uniSearchAlt = { name: 'search-alt', style: 'line', path: '' } +const uniSearchMinus = { name: 'search-minus', style: 'line', path: '' } +const uniSearchPlus = { name: 'search-plus', style: 'line', path: '' } +const uniSelfie = { name: 'selfie', style: 'line', path: '' } +const uniServer = { name: 'server', style: 'line', path: '' } +const uniServerAlt = { name: 'server-alt', style: 'line', path: '' } +const uniServerConnection = { name: 'server-connection', style: 'line', path: '' } +const uniServerNetwork = { name: 'server-network', style: 'line', path: '' } +const uniServerNetworkAlt = { name: 'server-network-alt', style: 'line', path: '' } +const uniServers = { name: 'servers', style: 'line', path: '' } +const uniServicemark = { name: 'servicemark', style: 'line', path: '' } +const uniSetting = { name: 'setting', style: 'line', path: '' } +const uniShare = { name: 'share', style: 'line', path: '' } +const uniShareAlt = { name: 'share-alt', style: 'line', path: '' } +const uniShield = { name: 'shield', style: 'line', path: '' } +const uniShieldCheck = { name: 'shield-check', style: 'line', path: '' } +const uniShieldExclamation = { name: 'shield-exclamation', style: 'line', path: '' } +const uniShieldPlus = { name: 'shield-plus', style: 'line', path: '' } +const uniShieldQuestion = { name: 'shield-question', style: 'line', path: '' } +const uniShieldSlash = { name: 'shield-slash', style: 'line', path: '' } +const uniShip = { name: 'ship', style: 'line', path: '' } +const uniShop = { name: 'shop', style: 'line', path: '' } +const uniShoppingBag = { name: 'shopping-bag', style: 'line', path: '' } +const uniShoppingBasket = { name: 'shopping-basket', style: 'line', path: '' } +const uniShoppingCart = { name: 'shopping-cart', style: 'line', path: '' } +const uniShoppingCartAlt = { name: 'shopping-cart-alt', style: 'line', path: '' } +const uniShovel = { name: 'shovel', style: 'line', path: '' } +const uniShrink = { name: 'shrink', style: 'line', path: '' } +const uniShuffle = { name: 'shuffle', style: 'line', path: '' } +const uniShutter = { name: 'shutter', style: 'line', path: '' } +const uniShutterAlt = { name: 'shutter-alt', style: 'line', path: '' } +const uniSick = { name: 'sick', style: 'line', path: '' } +const uniSigma = { name: 'sigma', style: 'line', path: '' } +const uniSignAlt = { name: 'sign-alt', style: 'line', path: '' } +const uniSignInAlt = { name: 'sign-in-alt', style: 'line', path: '' } +const uniSignLeft = { name: 'sign-left', style: 'line', path: '' } +const uniSignOutAlt = { name: 'sign-out-alt', style: 'line', path: '' } +const uniSignRight = { name: 'sign-right', style: 'line', path: '' } +const uniSignal = { name: 'signal', style: 'line', path: '' } +const uniSignalAlt = { name: 'signal-alt', style: 'line', path: '' } +const uniSignalAlt3 = { name: 'signal-alt-3', style: 'line', path: '' } +const uniSignin = { name: 'signin', style: 'line', path: '' } +const uniSignout = { name: 'signout', style: 'line', path: '' } +const uniSilence = { name: 'silence', style: 'line', path: '' } +const uniSilentSquint = { name: 'silent-squint', style: 'line', path: '' } +const uniSimCard = { name: 'sim-card', style: 'line', path: '' } +const uniSitemap = { name: 'sitemap', style: 'line', path: '' } +const uniSkipForward = { name: 'skip-forward', style: 'line', path: '' } +const uniSkipForwardAlt = { name: 'skip-forward-alt', style: 'line', path: '' } +const uniSkipForwardCircle = { name: 'skip-forward-circle', style: 'line', path: '' } +const uniSkype = { name: 'skype', style: 'line', path: '' } +const uniSkypeAlt = { name: 'skype-alt', style: 'line', path: '' } +const uniSlack = { name: 'slack', style: 'line', path: '' } +const uniSlackAlt = { name: 'slack-alt', style: 'line', path: '' } +const uniSliderH = { name: 'slider-h', style: 'line', path: '' } +const uniSliderHRange = { name: 'slider-h-range', style: 'line', path: '' } +const uniSlidersV = { name: 'sliders-v', style: 'line', path: '' } +const uniSlidersVAlt = { name: 'sliders-v-alt', style: 'line', path: '' } +const uniSmile = { name: 'smile', style: 'line', path: '' } +const uniSmileBeam = { name: 'smile-beam', style: 'line', path: '' } +const uniSmileDizzy = { name: 'smile-dizzy', style: 'line', path: '' } +const uniSmileSquintWink = { name: 'smile-squint-wink', style: 'line', path: '' } +const uniSmileSquintWinkAlt = { name: 'smile-squint-wink-alt', style: 'line', path: '' } +const uniSmileWink = { name: 'smile-wink', style: 'line', path: '' } +const uniSmileWinkAlt = { name: 'smile-wink-alt', style: 'line', path: '' } +const uniSnapchatAlt = { name: 'snapchat-alt', style: 'line', path: 'Snapchat' } +const uniSnapchatGhost = { name: 'snapchat-ghost', style: 'line', path: 'Artboard 10 copy 6' } +const uniSnapchatSquare = { name: 'snapchat-square', style: 'line', path: 'Artboard 9 copy 6' } +const uniSnowFlake = { name: 'snow-flake', style: 'line', path: '' } +const uniSnowflake = { name: 'snowflake', style: 'line', path: '' } +const uniSnowflakeAlt = { name: 'snowflake-alt', style: 'line', path: '' } +const uniSocialDistancing = { name: 'social-distancing', style: 'line', path: '' } +const uniSort = { name: 'sort', style: 'line', path: '' } +const uniSortAmountDown = { name: 'sort-amount-down', style: 'line', path: '' } +const uniSortAmountUp = { name: 'sort-amount-up', style: 'line', path: '' } +const uniSorting = { name: 'sorting', style: 'line', path: '' } +const uniSpaceKey = { name: 'space-key', style: 'line', path: '' } +const uniSpade = { name: 'spade', style: 'line', path: '' } +const uniSperms = { name: 'sperms', style: 'line', path: '' } +const uniSpin = { name: 'spin', style: 'line', path: '' } +const uniSpinner = { name: 'spinner', style: 'line', path: '' } +const uniSpinnerAlt = { name: 'spinner-alt', style: 'line', path: '' } +const uniSquare = { name: 'square', style: 'line', path: '' } +const uniSquareFull = { name: 'square-full', style: 'line', path: '' } +const uniSquareShape = { name: 'square-shape', style: 'line', path: '' } +const uniSquint = { name: 'squint', style: 'line', path: '' } +const uniStar = { name: 'star', style: 'line', path: '' } +const uniStarHalfAlt = { name: 'star-half-alt', style: 'line', path: '' } +const uniStepBackward = { name: 'step-backward', style: 'line', path: '' } +const uniStepBackwardAlt = { name: 'step-backward-alt', style: 'line', path: '' } +const uniStepBackwardCircle = { name: 'step-backward-circle', style: 'line', path: '' } +const uniStepForward = { name: 'step-forward', style: 'line', path: '' } +const uniStethoscope = { name: 'stethoscope', style: 'line', path: '' } +const uniStethoscopeAlt = { name: 'stethoscope-alt', style: 'line', path: '' } +const uniStopCircle = { name: 'stop-circle', style: 'line', path: '' } +const uniStopwatch = { name: 'stopwatch', style: 'line', path: '' } +const uniStopwatchSlash = { name: 'stopwatch-slash', style: 'line', path: '' } +const uniStore = { name: 'store', style: 'line', path: '' } +const uniStoreAlt = { name: 'store-alt', style: 'line', path: '' } +const uniStoreSlash = { name: 'store-slash', style: 'line', path: '' } +const uniStreering = { name: 'streering', style: 'line', path: '' } +const uniStretcher = { name: 'stretcher', style: 'line', path: '' } +const uniSubject = { name: 'subject', style: 'line', path: '' } +const uniSubway = { name: 'subway', style: 'line', path: '' } +const uniSubwayAlt = { name: 'subway-alt', style: 'line', path: '' } +const uniSuitcase = { name: 'suitcase', style: 'line', path: '' } +const uniSuitcaseAlt = { name: 'suitcase-alt', style: 'line', path: '' } +const uniSun = { name: 'sun', style: 'line', path: '' } +const uniSunset = { name: 'sunset', style: 'line', path: '' } +const uniSurprise = { name: 'surprise', style: 'line', path: '' } +const uniSwatchbook = { name: 'swatchbook', style: 'line', path: '' } +const uniSwiggy = { name: 'swiggy', style: 'line', path: '' } +const uniSwimmer = { name: 'swimmer', style: 'line', path: '' } +const uniSync = { name: 'sync', style: 'line', path: '' } +const uniSyncExclamation = { name: 'sync-exclamation', style: 'line', path: '' } +const uniSyncSlash = { name: 'sync-slash', style: 'line', path: '' } +const uniSyringe = { name: 'syringe', style: 'line', path: '' } +const uniTable = { name: 'table', style: 'line', path: '' } +const uniTableTennis = { name: 'table-tennis', style: 'line', path: '' } +const uniTablet = { name: 'tablet', style: 'line', path: '' } +const uniTablets = { name: 'tablets', style: 'line', path: '' } +const uniTachometerFast = { name: 'tachometer-fast', style: 'line', path: '' } +const uniTachometerFastAlt = { name: 'tachometer-fast-alt', style: 'line', path: '' } +const uniTag = { name: 'tag', style: 'line', path: '' } +const uniTagAlt = { name: 'tag-alt', style: 'line', path: '' } +const uniTape = { name: 'tape', style: 'line', path: '' } +const uniTaxi = { name: 'taxi', style: 'line', path: '' } +const uniTear = { name: 'tear', style: 'line', path: '' } +const uniTelegram = { name: 'telegram', style: 'line', path: 'Telegram Glyph' } +const uniTelegramAlt = { name: 'telegram-alt', style: 'line', path: 'telegram' } +const uniTelescope = { name: 'telescope', style: 'line', path: '' } +const uniTemperature = { name: 'temperature', style: 'line', path: '' } +const uniTemperatureEmpty = { name: 'temperature-empty', style: 'line', path: '' } +const uniTemperatureHalf = { name: 'temperature-half', style: 'line', path: '' } +const uniTemperatureMinus = { name: 'temperature-minus', style: 'line', path: '' } +const uniTemperaturePlus = { name: 'temperature-plus', style: 'line', path: '' } +const uniTemperatureQuarter = { name: 'temperature-quarter', style: 'line', path: '' } +const uniTemperatureThreeQuarter = { name: 'temperature-three-quarter', style: 'line', path: '' } +const uniTennisBall = { name: 'tennis-ball', style: 'line', path: '' } +const uniText = { name: 'text', style: 'line', path: '' } +const uniTextFields = { name: 'text-fields', style: 'line', path: '' } +const uniTextSize = { name: 'text-size', style: 'line', path: '' } +const uniTextStrikeThrough = { name: 'text-strike-through', style: 'line', path: '' } +const uniTh = { name: 'th', style: 'line', path: '' } +const uniThLarge = { name: 'th-large', style: 'line', path: '' } +const uniThSlash = { name: 'th-slash', style: 'line', path: '' } +const uniThermometer = { name: 'thermometer', style: 'line', path: '' } +const uniThumbsDown = { name: 'thumbs-down', style: 'line', path: '' } +const uniThumbsUp = { name: 'thumbs-up', style: 'line', path: '' } +const uniThunderstorm = { name: 'thunderstorm', style: 'line', path: '' } +const uniThunderstormMoon = { name: 'thunderstorm-moon', style: 'line', path: '' } +const uniThunderstormSun = { name: 'thunderstorm-sun', style: 'line', path: '' } +const uniTicket = { name: 'ticket', style: 'line', path: '' } +const uniTimes = { name: 'times', style: 'line', path: '' } +const uniTimesCircle = { name: 'times-circle', style: 'line', path: '' } +const uniTimesSquare = { name: 'times-square', style: 'line', path: '' } +const uniToggleOff = { name: 'toggle-off', style: 'line', path: '' } +const uniToggleOn = { name: 'toggle-on', style: 'line', path: '' } +const uniToiletPaper = { name: 'toilet-paper', style: 'line', path: '' } +const uniTopArrowFromTop = { name: 'top-arrow-from-top', style: 'line', path: '' } +const uniTopArrowToTop = { name: 'top-arrow-to-top', style: 'line', path: '' } +const uniTornado = { name: 'tornado', style: 'line', path: '' } +const uniTrademark = { name: 'trademark', style: 'line', path: '' } +const uniTrademarkCircle = { name: 'trademark-circle', style: 'line', path: '' } +const uniTrafficBarrier = { name: 'traffic-barrier', style: 'line', path: '' } +const uniTrafficLight = { name: 'traffic-light', style: 'line', path: '' } +const uniTransaction = { name: 'transaction', style: 'line', path: '' } +const uniTrash = { name: 'trash', style: 'line', path: '' } +const uniTrashAlt = { name: 'trash-alt', style: 'line', path: '' } +const uniTrees = { name: 'trees', style: 'line', path: '' } +const uniTriangle = { name: 'triangle', style: 'line', path: '' } +const uniTrophy = { name: 'trophy', style: 'line', path: '' } +const uniTrowel = { name: 'trowel', style: 'line', path: '' } +const uniTruck = { name: 'truck', style: 'line', path: '' } +const uniTruckLoading = { name: 'truck-loading', style: 'line', path: '' } +const uniTumblr = { name: 'tumblr', style: 'line', path: '' } +const uniTumblrAlt = { name: 'tumblr-alt', style: 'line', path: '' } +const uniTumblrSquare = { name: 'tumblr-square', style: 'line', path: '' } +const uniTvRetro = { name: 'tv-retro', style: 'line', path: '' } +const uniTvRetroSlash = { name: 'tv-retro-slash', style: 'line', path: '' } +const uniTwitter = { name: 'twitter', style: 'line', path: '' } +const uniTwitterAlt = { name: 'twitter-alt', style: 'line', path: '' } +const uniUmbrella = { name: 'umbrella', style: 'line', path: '' } +const uniUnamused = { name: 'unamused', style: 'line', path: '' } +const uniUnderline = { name: 'underline', style: 'line', path: '' } +const uniUniversity = { name: 'university', style: 'line', path: '' } +const uniUnlock = { name: 'unlock', style: 'line', path: '' } +const uniUnlockAlt = { name: 'unlock-alt', style: 'line', path: '' } +const uniUpload = { name: 'upload', style: 'line', path: '' } +const uniUploadAlt = { name: 'upload-alt', style: 'line', path: '' } +const uniUsdCircle = { name: 'usd-circle', style: 'line', path: '' } +const uniUsdSquare = { name: 'usd-square', style: 'line', path: '' } +const uniUser = { name: 'user', style: 'line', path: '' } +const uniUserArrows = { name: 'user-arrows', style: 'line', path: '' } +const uniUserCheck = { name: 'user-check', style: 'line', path: '' } +const uniUserCircle = { name: 'user-circle', style: 'line', path: '' } +const uniUserExclamation = { name: 'user-exclamation', style: 'line', path: '' } +const uniUserLocation = { name: 'user-location', style: 'line', path: '' } +const uniUserMd = { name: 'user-md', style: 'line', path: '' } +const uniUserMinus = { name: 'user-minus', style: 'line', path: '' } +const uniUserNurse = { name: 'user-nurse', style: 'line', path: '' } +const uniUserPlus = { name: 'user-plus', style: 'line', path: '' } +const uniUserSquare = { name: 'user-square', style: 'line', path: '' } +const uniUserTimes = { name: 'user-times', style: 'line', path: '' } +const uniUsersAlt = { name: 'users-alt', style: 'line', path: '' } +const uniUtensils = { name: 'utensils', style: 'line', path: '' } +const uniUtensilsAlt = { name: 'utensils-alt', style: 'line', path: '' } +const uniVectorSquare = { name: 'vector-square', style: 'line', path: '' } +const uniVectorSquareAlt = { name: 'vector-square-alt', style: 'line', path: '' } +const uniVenus = { name: 'venus', style: 'line', path: '' } +const uniVerticalAlignBottom = { name: 'vertical-align-bottom', style: 'line', path: '' } +const uniVerticalAlignCenter = { name: 'vertical-align-center', style: 'line', path: '' } +const uniVerticalAlignTop = { name: 'vertical-align-top', style: 'line', path: '' } +const uniVerticalDistributeBottom = { name: 'vertical-distribute-bottom', style: 'line', path: '' } +const uniVerticalDistributionCenter = { name: 'vertical-distribution-center', style: 'line', path: '' } +const uniVerticalDistributionTop = { name: 'vertical-distribution-top', style: 'line', path: '' } +const uniVideo = { name: 'video', style: 'line', path: '' } +const uniVideoQuestion = { name: 'video-question', style: 'line', path: '' } +const uniVideoSlash = { name: 'video-slash', style: 'line', path: '' } +const uniVirusSlash = { name: 'virus-slash', style: 'line', path: '' } +const uniVisualStudio = { name: 'visual-studio', style: 'line', path: '' } +const uniVk = { name: 'vk', style: 'line', path: '' } +const uniVkAlt = { name: 'vk-alt', style: 'line', path: '' } +const uniVoicemail = { name: 'voicemail', style: 'line', path: '' } +const uniVoicemailRectangle = { name: 'voicemail-rectangle', style: 'line', path: '' } +const uniVolleyball = { name: 'volleyball', style: 'line', path: '' } +const uniVolume = { name: 'volume', style: 'line', path: '' } +const uniVolumeDown = { name: 'volume-down', style: 'line', path: '' } +const uniVolumeMute = { name: 'volume-mute', style: 'line', path: '' } +const uniVolumeOff = { name: 'volume-off', style: 'line', path: '' } +const uniVolumeUp = { name: 'volume-up', style: 'line', path: '' } +const uniVuejs = { name: 'vuejs', style: 'line', path: '' } +const uniVuejsAlt = { name: 'vuejs-alt', style: 'line', path: '' } +const uniWall = { name: 'wall', style: 'line', path: '' } +const uniWallet = { name: 'wallet', style: 'line', path: '' } +const uniWatch = { name: 'watch', style: 'line', path: '' } +const uniWatchAlt = { name: 'watch-alt', style: 'line', path: '' } +const uniWater = { name: 'water', style: 'line', path: '' } +const uniWaterDropSlash = { name: 'water-drop-slash', style: 'line', path: '' } +const uniWaterGlass = { name: 'water-glass', style: 'line', path: '' } +const uniWebGrid = { name: 'web-grid', style: 'line', path: '' } +const uniWebGridAlt = { name: 'web-grid-alt', style: 'line', path: '' } +const uniWebSection = { name: 'web-section', style: 'line', path: '' } +const uniWebSectionAlt = { name: 'web-section-alt', style: 'line', path: '' } +const uniWebcam = { name: 'webcam', style: 'line', path: '' } +const uniWeight = { name: 'weight', style: 'line', path: '' } +const uniWhatsapp = { name: 'whatsapp', style: 'line', path: '' } +const uniWhatsappAlt = { name: 'whatsapp-alt', style: 'line', path: '' } +const uniWheelBarrow = { name: 'wheel-barrow', style: 'line', path: '' } +const uniWheelchair = { name: 'wheelchair', style: 'line', path: '' } +const uniWheelchairAlt = { name: 'wheelchair-alt', style: 'line', path: '' } +const uniWifi = { name: 'wifi', style: 'line', path: '' } +const uniWifiRouter = { name: 'wifi-router', style: 'line', path: '' } +const uniWifiSlash = { name: 'wifi-slash', style: 'line', path: '' } +const uniWind = { name: 'wind', style: 'line', path: '' } +const uniWindMoon = { name: 'wind-moon', style: 'line', path: '' } +const uniWindSun = { name: 'wind-sun', style: 'line', path: '' } +const uniWindow = { name: 'window', style: 'line', path: '' } +const uniWindowGrid = { name: 'window-grid', style: 'line', path: '' } +const uniWindowMaximize = { name: 'window-maximize', style: 'line', path: '' } +const uniWindowSection = { name: 'window-section', style: 'line', path: '' } +const uniWindows = { name: 'windows', style: 'line', path: '' } +const uniWindsock = { name: 'windsock', style: 'line', path: '' } +const uniWindy = { name: 'windy', style: 'line', path: '' } +const uniWordpress = { name: 'wordpress', style: 'line', path: '' } +const uniWordpressSimple = { name: 'wordpress-simple', style: 'line', path: '' } +const uniWrapText = { name: 'wrap-text', style: 'line', path: '' } +const uniWrench = { name: 'wrench', style: 'line', path: '' } +const uniX = { name: 'x', style: 'line', path: '' } +const uniXAdd = { name: 'x-add', style: 'line', path: '' } +const uniYen = { name: 'yen', style: 'line', path: '' } +const uniYenCircle = { name: 'yen-circle', style: 'line', path: '' } +const uniYinYang = { name: 'yin-yang', style: 'line', path: '' } +const uniYoutube = { name: 'youtube', style: 'line', path: '' } +const uni500PxMonochrome = { name: '500px', style: 'monochrome', path: '' } +const uniAdobeMonochrome = { name: 'adobe', style: 'monochrome', path: '' } +const uniAdobeAltMonochrome = { name: 'adobe-alt', style: 'monochrome', path: '' } +const uniAirplayMonochrome = { name: 'airplay', style: 'monochrome', path: '' } +const uniAlignMonochrome = { name: 'align', style: 'monochrome', path: '' } +const uniAlignAltMonochrome = { name: 'align-alt', style: 'monochrome', path: '' } +const uniAlignCenterMonochrome = { name: 'align-center', style: 'monochrome', path: '' } +const uniAlignCenterJustifyMonochrome = { name: 'align-center-justify', style: 'monochrome', path: '' } +const uniAlignJustifyMonochrome = { name: 'align-justify', style: 'monochrome', path: '' } +const uniAlignLeftMonochrome = { name: 'align-left', style: 'monochrome', path: '' } +const uniAlignLeftJustifyMonochrome = { name: 'align-left-justify', style: 'monochrome', path: '' } +const uniAlignLetterRightMonochrome = { name: 'align-letter-right', style: 'monochrome', path: '' } +const uniAlignRightMonochrome = { name: 'align-right', style: 'monochrome', path: '' } +const uniAlignRightJustifyMonochrome = { name: 'align-right-justify', style: 'monochrome', path: '' } +const uniAmazonMonochrome = { name: 'amazon', style: 'monochrome', path: '' } +const uniAnalysisMonochrome = { name: 'analysis', style: 'monochrome', path: '' } +const uniAnalyticsMonochrome = { name: 'analytics', style: 'monochrome', path: '' } +const uniAnchorMonochrome = { name: 'anchor', style: 'monochrome', path: '' } +const uniAndroidMonochrome = { name: 'android', style: 'monochrome', path: '' } +const uniAndroidAltMonochrome = { name: 'android-alt', style: 'monochrome', path: '' } +const uniAngleDoubleDownMonochrome = { name: 'angle-double-down', style: 'monochrome', path: '' } +const uniAngleDoubleLeftMonochrome = { name: 'angle-double-left', style: 'monochrome', path: '' } +const uniAngleDoubleRightMonochrome = { name: 'angle-double-right', style: 'monochrome', path: '' } +const uniAngleDoubleUpMonochrome = { name: 'angle-double-up', style: 'monochrome', path: '' } +const uniAngleDownMonochrome = { name: 'angle-down', style: 'monochrome', path: '' } +const uniAngleLeftMonochrome = { name: 'angle-left', style: 'monochrome', path: '' } +const uniAngleRightMonochrome = { name: 'angle-right', style: 'monochrome', path: '' } +const uniAngleRightBMonochrome = { name: 'angle-right-b', style: 'monochrome', path: '' } +const uniAngleUpMonochrome = { name: 'angle-up', style: 'monochrome', path: '' } +const uniAppleMonochrome = { name: 'apple', style: 'monochrome', path: '' } +const uniAppleAltMonochrome = { name: 'apple-alt', style: 'monochrome', path: '' } +const uniAppsMonochrome = { name: 'apps', style: 'monochrome', path: '' } +const uniArrowCircleDownMonochrome = { name: 'arrow-circle-down', style: 'monochrome', path: '' } +const uniArrowCircleLeftMonochrome = { name: 'arrow-circle-left', style: 'monochrome', path: '' } +const uniArrowCircleRightMonochrome = { name: 'arrow-circle-right', style: 'monochrome', path: '' } +const uniArrowCircleUpMonochrome = { name: 'arrow-circle-up', style: 'monochrome', path: '' } +const uniArrowDownLeftMonochrome = { name: 'arrow-down-left', style: 'monochrome', path: '' } +const uniArrowDownRightMonochrome = { name: 'arrow-down-right', style: 'monochrome', path: '' } +const uniArrowUpLeftMonochrome = { name: 'arrow-up-left', style: 'monochrome', path: '' } +const uniArrowUpRightMonochrome = { name: 'arrow-up-right', style: 'monochrome', path: '' } +const uniAtMonochrome = { name: 'at', style: 'monochrome', path: '' } +const uniBagMonochrome = { name: 'bag', style: 'monochrome', path: '' } +const uniBarsMonochrome = { name: 'bars', style: 'monochrome', path: '' } +const uniBatteryBoltMonochrome = { name: 'battery-bolt', style: 'monochrome', path: '' } +const uniBatteryEmptyMonochrome = { name: 'battery-empty', style: 'monochrome', path: '' } +const uniBehanceMonochrome = { name: 'behance', style: 'monochrome', path: '' } +const uniBehanceAltMonochrome = { name: 'behance-alt', style: 'monochrome', path: '' } +const uniBingMonochrome = { name: 'bing', style: 'monochrome', path: '' } +const uniBitcoinMonochrome = { name: 'bitcoin', style: 'monochrome', path: '' } +const uniBitcoinAltMonochrome = { name: 'bitcoin-alt', style: 'monochrome', path: '' } +const uniBlackberryMonochrome = { name: 'blackberry', style: 'monochrome', path: '' } +const uniBloggerMonochrome = { name: 'blogger', style: 'monochrome', path: '' } +const uniBloggerAltMonochrome = { name: 'blogger-alt', style: 'monochrome', path: '' } +const uniBookmarkMonochrome = { name: 'bookmark', style: 'monochrome', path: '' } +const uniBorderAltMonochrome = { name: 'border-alt', style: 'monochrome', path: '' } +const uniBorderBottomMonochrome = { name: 'border-bottom', style: 'monochrome', path: '' } +const uniBorderClearMonochrome = { name: 'border-clear', style: 'monochrome', path: '' } +const uniBorderHorizontalMonochrome = { name: 'border-horizontal', style: 'monochrome', path: '' } +const uniBorderInnerMonochrome = { name: 'border-inner', style: 'monochrome', path: '' } +const uniBorderLeftMonochrome = { name: 'border-left', style: 'monochrome', path: '' } +const uniBorderOutMonochrome = { name: 'border-out', style: 'monochrome', path: '' } +const uniBorderRightMonochrome = { name: 'border-right', style: 'monochrome', path: '' } +const uniBorderTopMonochrome = { name: 'border-top', style: 'monochrome', path: '' } +const uniBorderVerticalMonochrome = { name: 'border-vertical', style: 'monochrome', path: '' } +const uniBoxMonochrome = { name: 'box', style: 'monochrome', path: '' } +const uniBriefcaseMonochrome = { name: 'briefcase', style: 'monochrome', path: '' } +const uniCalenderMonochrome = { name: 'calender', style: 'monochrome', path: '' } +const uniChartMonochrome = { name: 'chart', style: 'monochrome', path: '' } +const uniChartPieMonochrome = { name: 'chart-pie', style: 'monochrome', path: '' } +const uniCheckMonochrome = { name: 'check', style: 'monochrome', path: '' } +const uniCheckCircleMonochrome = { name: 'check-circle', style: 'monochrome', path: '' } +const uniCheckSquareMonochrome = { name: 'check-square', style: 'monochrome', path: '' } +const uniCircleMonochrome = { name: 'circle', style: 'monochrome', path: '' } +const uniCircleLayerMonochrome = { name: 'circle-layer', style: 'monochrome', path: '' } +const uniClinicMedicalMonochrome = { name: 'clinic-medical', style: 'monochrome', path: '' } +const uniClockMonochrome = { name: 'clock', style: 'monochrome', path: '' } +const uniClockEightMonochrome = { name: 'clock-eight', style: 'monochrome', path: '' } +const uniClockFiveMonochrome = { name: 'clock-five', style: 'monochrome', path: '' } +const uniClockNineMonochrome = { name: 'clock-nine', style: 'monochrome', path: '' } +const uniClockSevenMonochrome = { name: 'clock-seven', style: 'monochrome', path: '' } +const uniClockTenMonochrome = { name: 'clock-ten', style: 'monochrome', path: '' } +const uniClockThreeMonochrome = { name: 'clock-three', style: 'monochrome', path: '' } +const uniClockTwoMonochrome = { name: 'clock-two', style: 'monochrome', path: '' } +const uniColumnsMonochrome = { name: 'columns', style: 'monochrome', path: '' } +const uniCommentMonochrome = { name: 'comment', style: 'monochrome', path: '' } +const uniCommentAltMonochrome = { name: 'comment-alt', style: 'monochrome', path: '' } +const uniCommentAltDotsMonochrome = { name: 'comment-alt-dots', style: 'monochrome', path: '' } +const uniCommentAltMessageMonochrome = { name: 'comment-alt-message', style: 'monochrome', path: '' } +const uniCommentAltPlusMonochrome = { name: 'comment-alt-plus', style: 'monochrome', path: '' } +const uniCommentDotsMonochrome = { name: 'comment-dots', style: 'monochrome', path: '' } +const uniCommentMessageMonochrome = { name: 'comment-message', style: 'monochrome', path: '' } +const uniCommentPlusMonochrome = { name: 'comment-plus', style: 'monochrome', path: '' } +const uniCompressMonochrome = { name: 'compress', style: 'monochrome', path: '' } +const uniCornerDownLeftMonochrome = { name: 'corner-down-left', style: 'monochrome', path: '' } +const uniCornerDownRightMonochrome = { name: 'corner-down-right', style: 'monochrome', path: '' } +const uniCornerLeftDownMonochrome = { name: 'corner-left-down', style: 'monochrome', path: '' } +const uniCornerRightDownMonochrome = { name: 'corner-right-down', style: 'monochrome', path: '' } +const uniCornerUpLeftMonochrome = { name: 'corner-up-left', style: 'monochrome', path: '' } +const uniCornerUpRightMonochrome = { name: 'corner-up-right', style: 'monochrome', path: '' } +const uniCoronavirusMonochrome = { name: 'coronavirus', style: 'monochrome', path: '' } +const uniCss3Monochrome = { name: 'css3', style: 'monochrome', path: '' } +const uniCss3SimpleMonochrome = { name: 'css3-simple', style: 'monochrome', path: '' } +const uniCubeMonochrome = { name: 'cube', style: 'monochrome', path: '' } +const uniDialpadMonochrome = { name: 'dialpad', style: 'monochrome', path: '' } +const uniDialpadAltMonochrome = { name: 'dialpad-alt', style: 'monochrome', path: '' } +const uniDirectionMonochrome = { name: 'direction', style: 'monochrome', path: '' } +const uniDiscordMonochrome = { name: 'discord', style: 'monochrome', path: '' } +const uniDockerMonochrome = { name: 'docker', style: 'monochrome', path: '' } +const uniDocumentLayoutCenterMonochrome = { name: 'document-layout-center', style: 'monochrome', path: '' } +const uniDocumentLayoutLeftMonochrome = { name: 'document-layout-left', style: 'monochrome', path: '' } +const uniDocumentLayoutRightMonochrome = { name: 'document-layout-right', style: 'monochrome', path: '' } +const uniDownloadAltMonochrome = { name: 'download-alt', style: 'monochrome', path: '' } +const uniDribbbleMonochrome = { name: 'dribbble', style: 'monochrome', path: '' } +const uniDropboxMonochrome = { name: 'dropbox', style: 'monochrome', path: '' } +const uniEllipsisHMonochrome = { name: 'ellipsis-h', style: 'monochrome', path: '' } +const uniEllipsisVMonochrome = { name: 'ellipsis-v', style: 'monochrome', path: '' } +const uniExclamationCircleMonochrome = { name: 'exclamation-circle', style: 'monochrome', path: '' } +const uniExclamationOctagonMonochrome = { name: 'exclamation-octagon', style: 'monochrome', path: '' } +const uniExclamationTriangleMonochrome = { name: 'exclamation-triangle', style: 'monochrome', path: '' } +const uniFacebookMonochrome = { name: 'facebook', style: 'monochrome', path: '' } +const uniFacebookFMonochrome = { name: 'facebook-f', style: 'monochrome', path: '' } +const uniFacebookMessengerMonochrome = { name: 'facebook-messenger', style: 'monochrome', path: '' } +const uniFacebookMessengerAltMonochrome = { name: 'facebook-messenger-alt', style: 'monochrome', path: '' } +const uniFavoriteMonochrome = { name: 'favorite', style: 'monochrome', path: '' } +const uniFlipHMonochrome = { name: 'flip-h', style: 'monochrome', path: '' } +const uniFlipHAltMonochrome = { name: 'flip-h-alt', style: 'monochrome', path: '' } +const uniFlipVMonochrome = { name: 'flip-v', style: 'monochrome', path: '' } +const uniFlipVAltMonochrome = { name: 'flip-v-alt', style: 'monochrome', path: '' } +const uniGithubMonochrome = { name: 'github', style: 'monochrome', path: '' } +const uniGithubAltMonochrome = { name: 'github-alt', style: 'monochrome', path: '' } +const uniGitlabMonochrome = { name: 'gitlab', style: 'monochrome', path: '' } +const uniGitlabAltMonochrome = { name: 'gitlab-alt', style: 'monochrome', path: '' } +const uniGoogleMonochrome = { name: 'google', style: 'monochrome', path: '' } +const uniGoogleDriveMonochrome = { name: 'google-drive', style: 'monochrome', path: '' } +const uniGoogleDriveAltMonochrome = { name: 'google-drive-alt', style: 'monochrome', path: '' } +const uniGoogleHangoutsMonochrome = { name: 'google-hangouts', style: 'monochrome', path: '' } +const uniGoogleHangoutsAltMonochrome = { name: 'google-hangouts-alt', style: 'monochrome', path: '' } +const uniGooglePlayMonochrome = { name: 'google-play', style: 'monochrome', path: '' } +const uniGraphBarMonochrome = { name: 'graph-bar', style: 'monochrome', path: '' } +const uniGridMonochrome = { name: 'grid', style: 'monochrome', path: '' } +const uniGridsMonochrome = { name: 'grids', style: 'monochrome', path: '' } +const uniGripHorizontalLineMonochrome = { name: 'grip-horizontal-line', style: 'monochrome', path: '' } +const uniHeadSideMonochrome = { name: 'head-side', style: 'monochrome', path: '' } +const uniHeadSideCoughMonochrome = { name: 'head-side-cough', style: 'monochrome', path: '' } +const uniHeadSideMaskMonochrome = { name: 'head-side-mask', style: 'monochrome', path: '' } +const uniHipchatMonochrome = { name: 'hipchat', style: 'monochrome', path: '' } +const uniHistoryMonochrome = { name: 'history', style: 'monochrome', path: '' } +const uniHistoryAltMonochrome = { name: 'history-alt', style: 'monochrome', path: '' } +const uniHorizontalAlignLeftMonochrome = { name: 'horizontal-align-left', style: 'monochrome', path: '' } +const uniHospitalMonochrome = { name: 'hospital', style: 'monochrome', path: '' } +const uniHospitalSquareSignMonochrome = { name: 'hospital-square-sign', style: 'monochrome', path: '' } +const uniHospitalSymbolMonochrome = { name: 'hospital-symbol', style: 'monochrome', path: '' } +const uniHouseUserMonochrome = { name: 'house-user', style: 'monochrome', path: '' } +const uniHtml3Monochrome = { name: 'html3', style: 'monochrome', path: '' } +const uniHtml3AltMonochrome = { name: 'html3-alt', style: 'monochrome', path: '' } +const uniHtml5Monochrome = { name: 'html5', style: 'monochrome', path: '' } +const uniHtml5AltMonochrome = { name: 'html5-alt', style: 'monochrome', path: '' } +const uniImageVMonochrome = { name: 'image-v', style: 'monochrome', path: '' } +const uniInstagramMonochrome = { name: 'instagram', style: 'monochrome', path: '' } +const uniInstagramAltMonochrome = { name: 'instagram-alt', style: 'monochrome', path: '' } +const uniIntercomMonochrome = { name: 'intercom', style: 'monochrome', path: '' } +const uniIntercomAltMonochrome = { name: 'intercom-alt', style: 'monochrome', path: '' } +const uniJavaScriptMonochrome = { name: 'java-script', style: 'monochrome', path: '' } +const uniKeySkeletonMonochrome = { name: 'key-skeleton', style: 'monochrome', path: '' } +const uniKeySkeletonAltMonochrome = { name: 'key-skeleton-alt', style: 'monochrome', path: '' } +const uniKeyholeCircleMonochrome = { name: 'keyhole-circle', style: 'monochrome', path: '' } +const uniKeyholeSquareMonochrome = { name: 'keyhole-square', style: 'monochrome', path: '' } +const uniKeyholeSquareFullMonochrome = { name: 'keyhole-square-full', style: 'monochrome', path: '' } +const uniLayerGroupMonochrome = { name: 'layer-group', style: 'monochrome', path: '' } +const uniLayersAltMonochrome = { name: 'layers-alt', style: 'monochrome', path: '' } +const uniLeftIndentMonochrome = { name: 'left-indent', style: 'monochrome', path: '' } +const uniLeftIndentAltMonochrome = { name: 'left-indent-alt', style: 'monochrome', path: '' } +const uniLineMonochrome = { name: 'line', style: 'monochrome', path: '' } +const uniLineSpacingMonochrome = { name: 'line-spacing', style: 'monochrome', path: '' } +const uniLinkHMonochrome = { name: 'link-h', style: 'monochrome', path: '' } +const uniLinkedinMonochrome = { name: 'linkedin', style: 'monochrome', path: '' } +const uniLinkedinAltMonochrome = { name: 'linkedin-alt', style: 'monochrome', path: '' } +const uniLinuxMonochrome = { name: 'linux', style: 'monochrome', path: '' } +const uniListUiAltMonochrome = { name: 'list-ui-alt', style: 'monochrome', path: '' } +const uniListUlMonochrome = { name: 'list-ul', style: 'monochrome', path: '' } +const uniLockMonochrome = { name: 'lock', style: 'monochrome', path: '' } +const uniLockAccessMonochrome = { name: 'lock-access', style: 'monochrome', path: '' } +const uniLockAltMonochrome = { name: 'lock-alt', style: 'monochrome', path: '' } +const uniLockOpenAltMonochrome = { name: 'lock-open-alt', style: 'monochrome', path: '' } +const uniLottiefilesMonochrome = { name: 'lottiefiles', style: 'monochrome', path: '' } +const uniMasterCardMonochrome = { name: 'master-card', style: 'monochrome', path: '' } +const uniMediumMMonochrome = { name: 'medium-m', style: 'monochrome', path: '' } +const uniMicroscopeMonochrome = { name: 'microscope', style: 'monochrome', path: '' } +const uniMicrosoftMonochrome = { name: 'microsoft', style: 'monochrome', path: '' } +const uniMinusSquareFullMonochrome = { name: 'minus-square-full', style: 'monochrome', path: '' } +const uniMultiplyMonochrome = { name: 'multiply', style: 'monochrome', path: '' } +const uniObjectGroupMonochrome = { name: 'object-group', style: 'monochrome', path: '' } +const uniObjectUngroupMonochrome = { name: 'object-ungroup', style: 'monochrome', path: '' } +const uniOktaMonochrome = { name: 'okta', style: 'monochrome', path: '' } +const uniOperaMonochrome = { name: 'opera', style: 'monochrome', path: '' } +const uniOperaAltMonochrome = { name: 'opera-alt', style: 'monochrome', path: '' } +const uniPadlockMonochrome = { name: 'padlock', style: 'monochrome', path: '' } +const uniPagelinesMonochrome = { name: 'pagelines', style: 'monochrome', path: '' } +const uniPagerdutyMonochrome = { name: 'pagerduty', style: 'monochrome', path: '' } +const uniPaperclipMonochrome = { name: 'paperclip', style: 'monochrome', path: '' } +const uniParagraphMonochrome = { name: 'paragraph', style: 'monochrome', path: '' } +const uniPaypalMonochrome = { name: 'paypal', style: 'monochrome', path: '' } +const uniPentagonMonochrome = { name: 'pentagon', style: 'monochrome', path: '' } +const uniPlusSquareMonochrome = { name: 'plus-square', style: 'monochrome', path: '' } +const uniPolygonMonochrome = { name: 'polygon', style: 'monochrome', path: '' } +const uniPreviousMonochrome = { name: 'previous', style: 'monochrome', path: '' } +const uniProcessMonochrome = { name: 'process', style: 'monochrome', path: '' } +const uniReactMonochrome = { name: 'react', style: 'monochrome', path: '' } +const uniRecordAudioMonochrome = { name: 'record-audio', style: 'monochrome', path: '' } +const uniRedditAlienAltMonochrome = { name: 'reddit-alien-alt', style: 'monochrome', path: '' } +const uniRedoMonochrome = { name: 'redo', style: 'monochrome', path: '' } +const uniRefreshMonochrome = { name: 'refresh', style: 'monochrome', path: '' } +const uniRepeatMonochrome = { name: 'repeat', style: 'monochrome', path: '' } +const uniRightIndentAltMonochrome = { name: 'right-indent-alt', style: 'monochrome', path: '' } +const uniRocketMonochrome = { name: 'rocket', style: 'monochrome', path: '' } +const uniRulerMonochrome = { name: 'ruler', style: 'monochrome', path: '' } +const uniRulerCombinedMonochrome = { name: 'ruler-combined', style: 'monochrome', path: '' } +const uniSanitizerMonochrome = { name: 'sanitizer', style: 'monochrome', path: '' } +const uniSanitizerAltMonochrome = { name: 'sanitizer-alt', style: 'monochrome', path: '' } +const uniSceneryMonochrome = { name: 'scenery', style: 'monochrome', path: '' } +const uniScheduleMonochrome = { name: 'schedule', style: 'monochrome', path: '' } +const uniShieldPlusMonochrome = { name: 'shield-plus', style: 'monochrome', path: '' } +const uniSignInAltMonochrome = { name: 'sign-in-alt', style: 'monochrome', path: '' } +const uniSignOutAltMonochrome = { name: 'sign-out-alt', style: 'monochrome', path: '' } +const uniSignalAltMonochrome = { name: 'signal-alt', style: 'monochrome', path: '' } +const uniSignalAlt3Monochrome = { name: 'signal-alt-3', style: 'monochrome', path: '' } +const uniSigninMonochrome = { name: 'signin', style: 'monochrome', path: '' } +const uniSignoutMonochrome = { name: 'signout', style: 'monochrome', path: '' } +const uniSkypeMonochrome = { name: 'skype', style: 'monochrome', path: '' } +const uniSkypeAltMonochrome = { name: 'skype-alt', style: 'monochrome', path: '' } +const uniSlackMonochrome = { name: 'slack', style: 'monochrome', path: '' } +const uniSlackAltMonochrome = { name: 'slack-alt', style: 'monochrome', path: '' } +const uniSnapchatAltMonochrome = { name: 'snapchat-alt', style: 'monochrome', path: '' } +const uniSnapchatGhostMonochrome = { name: 'snapchat-ghost', style: 'monochrome', path: '' } +const uniSnapchatSquareMonochrome = { name: 'snapchat-square', style: 'monochrome', path: '' } +const uniSocialDistancingMonochrome = { name: 'social-distancing', style: 'monochrome', path: '' } +const uniSortingMonochrome = { name: 'sorting', style: 'monochrome', path: '' } +const uniSpaceKeyMonochrome = { name: 'space-key', style: 'monochrome', path: '' } +const uniSquareMonochrome = { name: 'square', style: 'monochrome', path: '' } +const uniSquareFullMonochrome = { name: 'square-full', style: 'monochrome', path: '' } +const uniSqureShapeMonochrome = { name: 'squre-shape', style: 'monochrome', path: '' } +const uniStarMonochrome = { name: 'star', style: 'monochrome', path: '' } +const uniStarHalfAltMonochrome = { name: 'star-half-alt', style: 'monochrome', path: '' } +const uniStepForwardMonochrome = { name: 'step-forward', style: 'monochrome', path: '' } +const uniStethoscopeMonochrome = { name: 'stethoscope', style: 'monochrome', path: '' } +const uniStethoscopeAltMonochrome = { name: 'stethoscope-alt', style: 'monochrome', path: '' } +const uniStoreSlashMonochrome = { name: 'store-slash', style: 'monochrome', path: '' } +const uniSubjectMonochrome = { name: 'subject', style: 'monochrome', path: '' } +const uniSwiggyMonochrome = { name: 'swiggy', style: 'monochrome', path: '' } +const uniSyncExclamationMonochrome = { name: 'sync-exclamation', style: 'monochrome', path: '' } +const uniSyncSlashMonochrome = { name: 'sync-slash', style: 'monochrome', path: '' } +const uniTableMonochrome = { name: 'table', style: 'monochrome', path: '' } +const uniTelegramMonochrome = { name: 'telegram', style: 'monochrome', path: '' } +const uniTelegramAltMonochrome = { name: 'telegram-alt', style: 'monochrome', path: '' } +const uniThLargeMonochrome = { name: 'th-large', style: 'monochrome', path: '' } +const uniTimesCircleMonochrome = { name: 'times-circle', style: 'monochrome', path: '' } +const uniToggleOffMonochrome = { name: 'toggle-off', style: 'monochrome', path: '' } +const uniToggleOnMonochrome = { name: 'toggle-on', style: 'monochrome', path: '' } +const uniToiletPaperMonochrome = { name: 'toilet-paper', style: 'monochrome', path: '' } +const uniTriangleMonochrome = { name: 'triangle', style: 'monochrome', path: '' } +const uniTumblrMonochrome = { name: 'tumblr', style: 'monochrome', path: '' } +const uniTumblrAltMonochrome = { name: 'tumblr-alt', style: 'monochrome', path: '' } +const uniTumblrSquareMonochrome = { name: 'tumblr-square', style: 'monochrome', path: '' } +const uniTwitterMonochrome = { name: 'twitter', style: 'monochrome', path: '' } +const uniTwitterAltMonochrome = { name: 'twitter-alt', style: 'monochrome', path: '' } +const uniUnlockMonochrome = { name: 'unlock', style: 'monochrome', path: '' } +const uniUnlockAltMonochrome = { name: 'unlock-alt', style: 'monochrome', path: '' } +const uniUploadAltMonochrome = { name: 'upload-alt', style: 'monochrome', path: '' } +const uniUserArrowsMonochrome = { name: 'user-arrows', style: 'monochrome', path: '' } +const uniUserMdMonochrome = { name: 'user-md', style: 'monochrome', path: '' } +const uniUserNurseMonochrome = { name: 'user-nurse', style: 'monochrome', path: '' } +const uniVectorSquareMonochrome = { name: 'vector-square', style: 'monochrome', path: '' } +const uniVectorSquareAltMonochrome = { name: 'vector-square-alt', style: 'monochrome', path: '' } +const uniVirusSlashMonochrome = { name: 'virus-slash', style: 'monochrome', path: '' } +const uniVisualStudioMonochrome = { name: 'visual-studio', style: 'monochrome', path: '' } +const uniVkMonochrome = { name: 'vk', style: 'monochrome', path: '' } +const uniVkAltMonochrome = { name: 'vk-alt', style: 'monochrome', path: '' } +const uniVuejsMonochrome = { name: 'vuejs', style: 'monochrome', path: '' } +const uniVuejsAltMonochrome = { name: 'vuejs-alt', style: 'monochrome', path: '' } +const uniWebGridMonochrome = { name: 'web-grid', style: 'monochrome', path: '' } +const uniWebGridAltMonochrome = { name: 'web-grid-alt', style: 'monochrome', path: '' } +const uniWebSectionMonochrome = { name: 'web-section', style: 'monochrome', path: '' } +const uniWebSectionAltMonochrome = { name: 'web-section-alt', style: 'monochrome', path: '' } +const uniWhatsappMonochrome = { name: 'whatsapp', style: 'monochrome', path: '' } +const uniWindowGridMonochrome = { name: 'window-grid', style: 'monochrome', path: '' } +const uniWindowMaximizeMonochrome = { name: 'window-maximize', style: 'monochrome', path: '' } +const uniWindowSectionMonochrome = { name: 'window-section', style: 'monochrome', path: '' } +const uniWindowsMonochrome = { name: 'windows', style: 'monochrome', path: '' } +const uniWordpressMonochrome = { name: 'wordpress', style: 'monochrome', path: '' } +const uniWordpressSimpleMonochrome = { name: 'wordpress-simple', style: 'monochrome', path: '' } +const uniWrapTextMonochrome = { name: 'wrap-text', style: 'monochrome', path: '' } +const uniYoutubeMonochrome = { name: 'youtube', style: 'monochrome', path: '' } /***/ }), -/***/ "./resources/js/Pages/Welcome.vue?vue&type=template&id=317d1a6e&scoped=true": -/*!**********************************************************************************!*\ - !*** ./resources/js/Pages/Welcome.vue?vue&type=template&id=317d1a6e&scoped=true ***! - \**********************************************************************************/ +/***/ "./node_modules/vue-unicons/dist/vue-unicons.es.js": +/*!*********************************************************!*\ + !*** ./node_modules/vue-unicons/dist/vue-unicons.es.js ***! + \*********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "render": () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_template_id_317d1a6e_scoped_true__WEBPACK_IMPORTED_MODULE_0__.render) +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), +/* harmony export */ "Unicon": () => (/* binding */ a) /* harmony export */ }); -/* harmony import */ var _node_modules_babel_loader_lib_index_js_clonedRuleSet_5_use_0_node_modules_vue_loader_dist_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_template_id_317d1a6e_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!../../../node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Welcome.vue?vue&type=template&id=317d1a6e&scoped=true */ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5.use[0]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=template&id=317d1a6e&scoped=true"); - - -/***/ }), - -/***/ "./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css": -/*!************************************************************************************************!*\ - !*** ./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css ***! - \************************************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_clonedRuleSet_9_use_1_node_modules_vue_loader_dist_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_clonedRuleSet_9_use_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_style_index_0_id_317d1a6e_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/vue-style-loader/index.js!../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-9.use[1]!../../../node_modules/vue-loader/dist/stylePostLoader.js!../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-9.use[2]!../../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css */ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-9.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-9.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css"); -/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_clonedRuleSet_9_use_1_node_modules_vue_loader_dist_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_clonedRuleSet_9_use_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_style_index_0_id_317d1a6e_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_clonedRuleSet_9_use_1_node_modules_vue_loader_dist_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_clonedRuleSet_9_use_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_style_index_0_id_317d1a6e_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__); -/* harmony reexport (unknown) */ var __WEBPACK_REEXPORT_OBJECT__ = {}; -/* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_clonedRuleSet_9_use_1_node_modules_vue_loader_dist_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_clonedRuleSet_9_use_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_style_index_0_id_317d1a6e_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== "default") __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_clonedRuleSet_9_use_1_node_modules_vue_loader_dist_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_clonedRuleSet_9_use_2_node_modules_vue_loader_dist_index_js_ruleSet_0_use_0_Welcome_vue_vue_type_style_index_0_id_317d1a6e_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__[__WEBPACK_IMPORT_KEY__] -/* harmony reexport (unknown) */ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__); - - -/***/ }), - -/***/ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-9.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-9.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css": -/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-9.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-9.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./resources/js/Pages/Welcome.vue?vue&type=style&index=0&id=317d1a6e&scoped=true&lang=css ***! - \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -// style-loader: Adds some css to the DOM by adding a - - diff --git a/resources/js/app.js b/resources/js/app.js index 552b43f..86f47e7 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -4,6 +4,11 @@ require('./bootstrap'); import { createApp, h } from 'vue'; import { App as InertiaApp, plugin as InertiaPlugin } from '@inertiajs/inertia-vue3'; import { InertiaProgress } from '@inertiajs/progress'; +import Unicon from 'vue-unicons'; +import { uniUsersAlt, uniCarSideview, uniDashboard, uniSearch, uniFilter, uniFilterSlash, uniTrashAlt, uniPen, uniExclamationTriangle, uniMapMarker, uniPhone, uniEnvelope, uniFileDownload, uniArrowDown, uniArrowUp, uniAngleRight, uniAngleUp, uniAngleDown, uniAngleLeft, uniFileUploadAlt } from 'vue-unicons/dist/icons' + +Unicon.add([uniUsersAlt, uniCarSideview, uniDashboard, uniSearch, uniFilter, uniFilterSlash, uniTrashAlt, uniPen, uniExclamationTriangle, uniMapMarker, uniPhone, uniEnvelope, uniFileDownload, uniArrowDown, uniArrowUp, uniAngleRight, uniAngleUp, uniAngleDown, uniAngleLeft, uniFileUploadAlt]) + const el = document.getElementById('app'); @@ -16,6 +21,11 @@ createApp({ }) .mixin({ methods: { route } }) .use(InertiaPlugin) + .use(Unicon, { + fill: '#4B5563', + height: 32, + width: 32 + }) .mount(el); InertiaProgress.init({ color: '#4B5563' }); diff --git a/resources/lang/en/pagination.php b/resources/lang/en/pagination.php index d481411..a08736d 100644 --- a/resources/lang/en/pagination.php +++ b/resources/lang/en/pagination.php @@ -13,7 +13,7 @@ return [ | */ - 'previous' => '« Previous', - 'next' => 'Next »', + 'previous' => '« Zurück', + 'next' => 'Weiter »', ]; diff --git a/routes/web.php b/routes/web.php index 5ffd5c8..d7fbddb 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,6 +1,8 @@ Route::has('login'), 'canRegister' => Route::has('register'), 'laravelVersion' => Application::VERSION, @@ -28,30 +30,38 @@ Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () { return Inertia::render('Dashboard'); })->name('dashboard'); -Route::get('contacts', [ContactsController::class, 'index']) +Route::get('contacts', [ContactController::class, 'index']) ->name('contacts') ->middleware(['auth:sanctum', 'verified']); -Route::get('contacts/create', [ContactsController::class, 'create']) +Route::get('contacts/create', [ContactController::class, 'create']) ->name('contacts.create') ->middleware(['auth:sanctum', 'verified']); -Route::post('contacts', [ContactsController::class, 'store']) +Route::post('contacts', [ContactController::class, 'store']) ->name('contacts.store') ->middleware(['auth:sanctum', 'verified']); -Route::get('contacts/{contact}/edit', [ContactsController::class, 'edit']) +Route::get('contacts/{contact}/edit', [ContactController::class, 'edit']) ->name('contacts.edit') ->middleware(['auth:sanctum', 'verified']); -Route::put('contacts/{contact}', [ContactsController::class, 'update']) +Route::put('contacts/{contact}', [ContactController::class, 'update']) ->name('contacts.update') ->middleware(['auth:sanctum', 'verified']); -Route::delete('contacts/{contact}', [ContactsController::class, 'destroy']) +Route::delete('contacts/{contact}', [ContactController::class, 'destroy']) ->name('contacts.destroy') ->middleware(['auth:sanctum', 'verified']); -Route::put('contacts/{contact}/restore', [ContactsController::class, 'restore']) +Route::put('contacts/{contact}/restore', [ContactController::class, 'restore']) ->name('contacts.restore') ->middleware(['auth:sanctum', 'verified']); + +Route::get('cars', [CarController::class, 'index']) + ->name('cars') + ->middleware(['auth:sanctum', 'verified']); + +Route::get('cars/{car}/edit', [CarController::class, 'edit']) + ->name('cars.edit') + ->middleware(['auth:sanctum', 'verified']); \ No newline at end of file