ankiutils 0.0.8 → 0.0.9
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.
|
@@ -132,12 +132,12 @@
|
|
|
132
132
|
});
|
|
133
133
|
</script>
|
|
134
134
|
|
|
135
|
-
<div class="dropdown" bind:this={containerElement}>
|
|
135
|
+
<div class="dropdown w-full" bind:this={containerElement}>
|
|
136
136
|
<div class="flex gap-2">
|
|
137
137
|
<input
|
|
138
138
|
bind:this={inputElement}
|
|
139
139
|
{id}
|
|
140
|
-
class="input select-input"
|
|
140
|
+
class="input select-input w-full"
|
|
141
141
|
type="text"
|
|
142
142
|
value={displayValue}
|
|
143
143
|
placeholder={isOpen ? searchPlaceholder : placeholder}
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
</script>
|
|
52
52
|
|
|
53
|
-
<div class="menu dropdown-content flex-nowrap max-h-46 overflow-auto bg-base-100 rounded-box z-1
|
|
53
|
+
<div class="menu dropdown-content flex-nowrap w-full max-h-46 overflow-auto bg-base-100 rounded-box z-1 p-2 shadow-sm gap-1">
|
|
54
54
|
{#if options.length === 0}
|
|
55
55
|
<div class="text-gray-400">No options found</div>
|
|
56
56
|
{:else}
|