fix(progress-bar): export id prop #731

Fixes #731
This commit is contained in:
Eric Y Liu 2021-07-07 09:44:01 -07:00
commit a2b12dc609
4 changed files with 27 additions and 8 deletions

View file

@ -17,7 +17,9 @@
/** Specify the helper text */
export let helperText = "";
let id = "ccs-" + Math.random().toString(36);
/** Set an id for the progress bar element */
export let id = "ccs-" + Math.random().toString(36);
let helperId = "ccs-" + Math.random().toString(36);
$: indeterminate = value === undefined;