refactor(components): alphabetize exported props for scannability

This commit is contained in:
Eric Liu 2019-12-31 16:36:10 -08:00
commit b1fe3de8ad
78 changed files with 265 additions and 264 deletions

View file

@ -2,15 +2,15 @@
let className = undefined;
export { className as class };
export let checked = false;
export let indeterminate = false;
export let disabled = false;
export let hideLabel = false;
export let id = Math.random();
export let indeterminate = false;
export let labelText = '';
export let name = '';
export let readonly = false;
export let hideLabel = false;
export let title = '';
export let style = undefined;
export let title = '';
import { createEventDispatcher } from 'svelte';
import { cx } from '../../lib';