Change placeholder text for TimePicker to have ":" separator

This commit is contained in:
Reed Shea 2021-02-15 10:31:19 -05:00
commit 27792e57b8
4 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@
export let type = "text";
/** Specify the input placeholder text */
export let placeholder = "hh=mm";
export let placeholder = "hh:mm";
/** Specify the `pattern` attribute for the input element */
export let pattern = "(1[012]|[1-9]):[0-5][0-9](\\s)?";