diff --git a/app/imports/ui/components/global/DatePicker.vue b/app/imports/ui/components/global/DatePicker.vue index 3608a5c0..808eb998 100644 --- a/app/imports/ui/components/global/DatePicker.vue +++ b/app/imports/ui/components/global/DatePicker.vue @@ -16,7 +16,7 @@ :loading="loading" :error-messages="errors" :disabled="isDisabled" - filled + outlined v-on="on" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/SmartCombobox.vue b/app/imports/ui/components/global/SmartCombobox.vue index 2406ef82..102931d0 100644 --- a/app/imports/ui/components/global/SmartCombobox.vue +++ b/app/imports/ui/components/global/SmartCombobox.vue @@ -7,7 +7,7 @@ :menu-props="{auto: true, lazy: true}" :search-input.sync="searchInput" :disabled="isDisabled" - filled + outlined @change="customChange" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/SmartSelect.vue b/app/imports/ui/components/global/SmartSelect.vue index 2584492e..8b48ad6e 100644 --- a/app/imports/ui/components/global/SmartSelect.vue +++ b/app/imports/ui/components/global/SmartSelect.vue @@ -6,7 +6,7 @@ :value="safeValue" :menu-props="{auto: true, lazy: true}" :disabled="isDisabled" - filled + outlined @change="change" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/TextArea.vue b/app/imports/ui/components/global/TextArea.vue index 4775bb3c..40722679 100644 --- a/app/imports/ui/components/global/TextArea.vue +++ b/app/imports/ui/components/global/TextArea.vue @@ -6,7 +6,7 @@ :value="safeValue" :disabled="isDisabled" :auto-grow="autoGrow" - filled + outlined @input="input" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/TextField.vue b/app/imports/ui/components/global/TextField.vue index 0347a59c..7ff7617f 100644 --- a/app/imports/ui/components/global/TextField.vue +++ b/app/imports/ui/components/global/TextField.vue @@ -6,7 +6,7 @@ :error-messages="errors" :value="safeValue" :disabled="isDisabled" - :filled="!regular" + :outlined="!regular" @input="input" @focus="focused = true" @blur="focused = false"