From 1e2ceb82524c95c072098831f32f979be5327b07 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 26 Apr 2022 08:13:13 -0400 Subject: [PATCH] prettier --- src/components/input/input.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/input/input.ts b/src/components/input/input.ts index a0a8ecb5..4fa95fd7 100644 --- a/src/components/input/input.ts +++ b/src/components/input/input.ts @@ -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';