pull/742/head
Cory LaViska 2022-04-26 08:13:13 -04:00
rodzic 329a5aec32
commit 1e2ceb8252
1 zmienionych plików z 10 dodań i 2 usunięć

Wyświetl plik

@ -56,8 +56,16 @@ export default class SlInput extends LitElement {
@state() private isPasswordVisible = false;
/** The input's type. */
@property({ reflect: true }) type: 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'time' | 'url' =
'text';
@property({ reflect: true }) type:
| 'date'
| 'email'
| 'number'
| 'password'
| 'search'
| 'tel'
| 'text'
| 'time'
| 'url' = 'text';
/** The input's size. */
@property({ reflect: true }) size: 'small' | 'medium' | 'large' = 'medium';