mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-13 06:56:48 +00:00
Livewire UI installed
This commit is contained in:
25
resources/views/vendor/wireui/components/inputs/maskable.blade.php
vendored
Normal file
25
resources/views/vendor/wireui/components/inputs/maskable.blade.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<div x-data="wireui_inputs_maskable({
|
||||
isLazy: @boolean($attributes->wire('model')->hasModifier('lazy')),
|
||||
model: @entangle($attributes->wire('model')),
|
||||
emitFormatted: @boolean($emitFormatted),
|
||||
mask: {{ $mask }},
|
||||
})" {{ $attributes->only('wire:key') }}>
|
||||
<x-dynamic-component
|
||||
:component="WireUi::component('input')"
|
||||
:borderless="$borderless"
|
||||
:shadowless="$shadowless"
|
||||
:label="$label"
|
||||
:hint="$hint"
|
||||
:corner-hint="$cornerHint"
|
||||
:icon="$icon"
|
||||
:right-icon="$rightIcon"
|
||||
:prefix="$prefix"
|
||||
:suffix="$suffix"
|
||||
:prepend="$prepend"
|
||||
:append="$append"
|
||||
x-model="input"
|
||||
x-on:input="onInput($event.target.value)"
|
||||
x-on:blur="emitInput"
|
||||
{{ $attributes->whereDoesntStartWith(['wire:model', 'x-model', 'wire:key']) }}
|
||||
/>
|
||||
</div>
|
||||
Reference in New Issue
Block a user