feat(prettier): add svelteBracketNewLine

This commit is contained in:
josefaidt 2020-09-24 10:50:34 -05:00
commit 398887a3d3
182 changed files with 974 additions and 494 deletions

View file

@ -67,12 +67,14 @@
on:click
on:mouseover
on:mouseenter
on:mouseleave>
on:mouseleave
>
{#if labelText}
<label
for="{id}"
class:bx--label="{true}"
class:bx--visually-hidden="{hideLabel}">
class:bx--visually-hidden="{hideLabel}"
>
<!-- TODO: set to always be `true` after `hideLabel` is deprecated -->
{labelText}
</label>
@ -87,11 +89,13 @@
class:bx--select-input="{true}"
on:change="{({ target }) => {
selectedValue.set(target.value);
}}">
}}"
>
<slot />
</select>
<ChevronDownGlyph
aria-label="{iconDescription}"
title="{iconDescription}"
class="bx--select__arrow" />
class="bx--select__arrow"
/>
</div>