This commit is contained in:
Cory LaViska
2022-04-26 08:13:13 -04:00
parent 329a5aec32
commit 1e2ceb8252

View File

@@ -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';