@policystudio/policy-studio-ui-vue 1.1.90-access.5 → 1.1.90-access.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
class="psui-el-input"
|
|
4
4
|
:class="[getComponentClass, `layout-${layout}`]"
|
|
5
5
|
>
|
|
6
|
-
<label
|
|
6
|
+
<label
|
|
7
|
+
v-if="label"
|
|
8
|
+
for="label"
|
|
9
|
+
> {{ label }} </label>
|
|
7
10
|
|
|
8
11
|
<div
|
|
9
12
|
class="psui-el-input-wrapper"
|
|
@@ -23,6 +26,7 @@
|
|
|
23
26
|
>
|
|
24
27
|
<template #trigger>
|
|
25
28
|
<input
|
|
29
|
+
:name="label"
|
|
26
30
|
:title="title"
|
|
27
31
|
:type="type"
|
|
28
32
|
:placeholder="placeholder"
|
|
@@ -171,7 +175,7 @@ const attrs = useAttrs()
|
|
|
171
175
|
const getAttrs = computed(() => {
|
|
172
176
|
const defaultAttrs = {
|
|
173
177
|
autocapitalize: 'sentences',
|
|
174
|
-
autocomplete: '
|
|
178
|
+
autocomplete: 'off',
|
|
175
179
|
autocorrect: 'off',
|
|
176
180
|
spellcheck: 'spellcheck',
|
|
177
181
|
}
|