pull/562/head
Christos Hrousis 2021-10-10 13:24:28 +11:00
rodzic 34447a3f2f
commit 449f5e6c7f
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -30,13 +30,13 @@ export default class SlProgressBar extends LitElement {
/** When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state. */
@property({ type: Boolean, reflect: true }) indeterminate = false;
/** When set, will place a hoverable title on the progress ring. */
/** When set, will place a hoverable title on the progress bar. */
@property() title: string;
/** When set, will place a label on the progress ring. */
/** When set, will place a label on the progress bar. */
@property() ariaLabel: string;
/** When set, will place a labelledby on the progress ring. */
/** When set, will place a labelledby on the progress bar. */
@property() ariaLabelledBy: string;
render() {