feat: disable autocomplete on inputs + keyboard navigation focus

This commit is contained in:
liyasthomas
2021-08-29 16:44:18 +05:30
parent ebd8f43219
commit 04f9428267
33 changed files with 66 additions and 2 deletions

View File

@@ -9,6 +9,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="addNewCollection"
/>
<label for="selectLabelAdd">

View File

@@ -13,6 +13,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="addFolder"
/>
<label for="selectLabelAddFolder">

View File

@@ -16,6 +16,7 @@
<select
id="team"
type="text"
autocomplete="off"
autofocus
class="
bg-transparent

View File

@@ -9,6 +9,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="saveCollection"
/>
<label for="selectLabelEdit">

View File

@@ -13,6 +13,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="editFolder"
/>
<label for="selectLabelEditFolder">

View File

@@ -9,6 +9,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="saveRequest"
/>
<label for="selectLabelEditReq">

View File

@@ -127,6 +127,7 @@
<div class="select-wrapper">
<select
type="text"
autocomplete="off"
class="select"
autofocus
@change="

View File

@@ -10,6 +10,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="saveRequestAs"
/>
<label for="selectLabelSaveReq">

View File

@@ -9,6 +9,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="addNewCollection"
/>
<label for="selectLabelGqlAdd">

View File

@@ -13,6 +13,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="addFolder"
/>
<label for="selectLabelGqlAddFolder">

View File

@@ -9,6 +9,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="saveCollection"
/>
<label for="selectLabelGqlEdit">

View File

@@ -13,6 +13,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="editFolder"
/>
<label for="selectLabelGqlEditFolder">

View File

@@ -9,6 +9,7 @@
class="input floating-input"
placeholder=" "
type="text"
autocomplete="off"
@keyup.enter="saveRequest"
/>
<label for="selectLabelGqlEditReq">

View File

@@ -18,6 +18,7 @@
v-if="showCollActions"
v-model="filterText"
type="search"
autocomplete="off"
:placeholder="$t('action.search')"
class="bg-transparent flex w-full py-2 px-4"
/>

View File

@@ -20,6 +20,7 @@
<input
v-model="filterText"
type="search"
autocomplete="off"
:placeholder="$t('action.search')"
class="bg-transparent flex w-full py-2 pr-2 pl-4"
/>