chore(deps-dev): bump prettier, prettier-plugin-svelte

This commit is contained in:
Eric Liu 2020-09-04 16:34:28 -07:00
commit 322b238cf0
34 changed files with 63 additions and 99 deletions

View file

@ -177,10 +177,10 @@
{name}
aria-label={$$props['aria-label']}
class="bx--dropdown {invalid && 'bx--dropdown--invalid'}
{open && 'bx--dropdown--open'}
{inline && 'bx--dropdown--inline'}
{disabled && 'bx--dropdown--disabled'}
{light && 'bx--dropdown--light'}"
{open && 'bx--dropdown--open'}
{inline && 'bx--dropdown--inline'}
{disabled && 'bx--dropdown--disabled'}
{light && 'bx--dropdown--light'}"
on:click={({ target }) => {
open = ref.contains(target) ? !open : false;
}}