pianello-api/resources/views/components/base/form-textarea/index.blade.php
Ale Gallo 96c0bfb8ce Committing laravel (part 5)
committing blade templating files and components that might come in handy
2023-11-10 16:41:20 +01:00

21 lines
1.4 KiB
PHP

@props(['formTextareaSize' => null, 'rounded' => null])
@aware(['formInline' => null, 'inputGroup' => null])
<textarea
data-tw-merge
{{ $attributes->class(
merge([
'disabled:bg-slate-100 disabled:cursor-not-allowed dark:disabled:bg-darkmode-800/50 dark:disabled:border-transparent',
'[&[readonly]]:bg-slate-100 [&[readonly]]:cursor-not-allowed [&[readonly]]:dark:bg-darkmode-800/50 [&[readonly]]:dark:border-transparent',
'transition duration-200 ease-in-out w-full text-sm border-slate-200 shadow-sm rounded-md placeholder:text-slate-400/90 focus:ring-4 focus:ring-primary focus:ring-opacity-20 focus:border-primary focus:border-opacity-40 dark:bg-darkmode-800 dark:border-transparent dark:focus:ring-slate-700 dark:focus:ring-opacity-50 dark:placeholder:text-slate-500/80',
$formTextareaSize == 'sm' ? 'text-xs py-1.5 px-2' : null,
$formTextareaSize == 'lg' ? 'text-lg py-1.5 px-4' : null,
$rounded ? 'rounded-full' : null,
$formInline ? 'flex-1' : null,
$inputGroup
? 'rounded-none [&:not(:first-child)]:border-l-transparent first:rounded-l last:rounded-r z-10'
: null,
$attributes->whereStartsWith('class')->first(),
]),
)->merge($attributes->whereDoesntStartWith('class')->getAttributes()) }}
></textarea>