fuma 2.0.11 → 2.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
<FormControl {key} {label} {error} class={klass}>
|
|
90
90
|
{#snippet children({ key })}
|
|
91
91
|
<div class="flex grow gap-2" class:hidden={item}>
|
|
92
|
-
<div class="input
|
|
92
|
+
<div class="input grow pr-2">
|
|
93
93
|
<input
|
|
94
94
|
type="text"
|
|
95
95
|
id={key}
|
|
@@ -113,14 +113,14 @@
|
|
|
113
113
|
{#if noSlotItemWrapper}
|
|
114
114
|
{@render slotItem(item)}
|
|
115
115
|
{:else}
|
|
116
|
-
<div class="
|
|
116
|
+
<div class="input h-auto min-h-10 grow items-start pt-2 pr-2">
|
|
117
117
|
<div class="grow">
|
|
118
118
|
{@render slotItem(item)}
|
|
119
119
|
</div>
|
|
120
120
|
<button
|
|
121
121
|
type="button"
|
|
122
122
|
on:click|stopPropagation={() => clear()}
|
|
123
|
-
class="btn btn-square btn-
|
|
123
|
+
class="btn btn-square btn-xs"
|
|
124
124
|
>
|
|
125
125
|
<Icon path={mdiClose} />
|
|
126
126
|
</button>
|