chore(time-picker-select): ignore a11y-no-onchange

TODO: revisit API. Currently, using "on:blur" instead of "on:change" is a breaking functionality.
This commit is contained in:
Eric Liu 2020-05-26 19:11:30 -07:00
commit 05b77afaa2

View file

@ -32,6 +32,7 @@
{#if labelText} {#if labelText}
<label class={cx('--label', hideLabel && '--visually-hidden')} for={id}>{labelText}</label> <label class={cx('--label', hideLabel && '--visually-hidden')} for={id}>{labelText}</label>
{/if} {/if}
<!-- svelte-ignore a11y-no-onchange -->
<select <select
class={cx('--select-input')} class={cx('--select-input')}
on:change={({ target }) => { on:change={({ target }) => {