noph-ui 0.8.6 → 0.8.7
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.
|
@@ -160,9 +160,7 @@
|
|
|
160
160
|
<div class="content">
|
|
161
161
|
<select aria-label={label} {...attributes} bind:value bind:this={selectElement}>
|
|
162
162
|
{#each options as option}
|
|
163
|
-
<option value={option.value} selected={option.
|
|
164
|
-
>{option.label}</option
|
|
165
|
-
>
|
|
163
|
+
<option value={option.value} selected={option.selected}>{option.label}</option>
|
|
166
164
|
{/each}
|
|
167
165
|
</select>
|
|
168
166
|
<div class="input">
|
package/dist/select/types.d.ts
CHANGED