fuma 2.0.38 → 2.0.40
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.
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
<FormControl {key} {label} {error} class={klass}>
|
|
104
104
|
{#snippet children({ key })}
|
|
105
105
|
<label class="input" class:hidden={item}>
|
|
106
|
-
<svelte:component this={Icon} class="h-5 opacity-70" />
|
|
106
|
+
<svelte:component this={Icon} class="h-5 w-5 shrink-0 opacity-70" />
|
|
107
107
|
<input
|
|
108
108
|
type="text"
|
|
109
109
|
id={key}
|
|
@@ -120,7 +120,9 @@
|
|
|
120
120
|
/>
|
|
121
121
|
<RelationAfter {isLoading} {createUrl} {createTitle} {createIcon} />
|
|
122
122
|
{#if shortcutKey}
|
|
123
|
-
<kbd class="kbd kbd-xs text-base-content/50">
|
|
123
|
+
<kbd class="kbd kbd-xs text-base-content/50 shrink-0">
|
|
124
|
+
{shortcutKey}
|
|
125
|
+
</kbd>
|
|
124
126
|
{/if}
|
|
125
127
|
</label>
|
|
126
128
|
{@render append?.()}
|
|
@@ -135,11 +137,7 @@
|
|
|
135
137
|
on:click|stopPropagation={() => clear()}
|
|
136
138
|
class="input h-auto min-h-10 w-full grow items-start pt-2 pr-2"
|
|
137
139
|
>
|
|
138
|
-
<svelte:component this={Icon} class="h-5 opacity-70" />
|
|
139
140
|
{@render slotItem(item)}
|
|
140
|
-
{#if shortcutKey}
|
|
141
|
-
<kbd class="kbd kbd-xs text-base-content/50">{shortcutKey}</kbd>
|
|
142
|
-
{/if}
|
|
143
141
|
</button>
|
|
144
142
|
{/if}
|
|
145
143
|
<input
|