@davincihealthcare/elty-design-system-vue 1.27.0 → 1.28.0
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/dist/forms/ElInputText.vue.d.ts +9 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
23
23
|
type: BooleanConstructor;
|
|
24
24
|
default: boolean;
|
|
25
25
|
};
|
|
26
|
+
autocomplete: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
26
30
|
modelValue: {
|
|
27
31
|
type: PropType<TextualValueType>;
|
|
28
32
|
default: string;
|
|
@@ -78,6 +82,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
78
82
|
type: BooleanConstructor;
|
|
79
83
|
default: boolean;
|
|
80
84
|
};
|
|
85
|
+
autocomplete: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
81
89
|
modelValue: {
|
|
82
90
|
type: PropType<TextualValueType>;
|
|
83
91
|
default: string;
|
|
@@ -125,6 +133,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
125
133
|
hiddenErrorMessage: boolean;
|
|
126
134
|
trailingIcon: ElIconProps;
|
|
127
135
|
focusOnMount: boolean;
|
|
136
|
+
autocomplete: string;
|
|
128
137
|
validation: string;
|
|
129
138
|
}, {}>;
|
|
130
139
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -17744,7 +17744,7 @@ const nB = ["for"], OB = {
|
|
|
17744
17744
|
t.errorMessage && t.errorMessage !== !0 && !t.hiddenErrorMessage ? (I(), i("p", oB, t0(t.errorMessage), 1)) : Q("", !0)
|
|
17745
17745
|
], 16));
|
|
17746
17746
|
}
|
|
17747
|
-
}), aB = { class: "pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3" }, IB = { key: 0 }, iB = ["id", "type", "placeholder", "disabled", "data-cy"], EB = { key: 0 }, lB = { key: 1 }, RD = ["text", "password"], wo = /* @__PURE__ */ E0({
|
|
17747
|
+
}), aB = { class: "pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3" }, IB = { key: 0 }, iB = ["id", "type", "placeholder", "disabled", "autocomplete", "data-cy"], EB = { key: 0 }, lB = { key: 1 }, RD = ["text", "password"], wo = /* @__PURE__ */ E0({
|
|
17748
17748
|
__name: "ElInputText",
|
|
17749
17749
|
props: {
|
|
17750
17750
|
...Zr(),
|
|
@@ -17765,6 +17765,10 @@ const nB = ["for"], OB = {
|
|
|
17765
17765
|
focusOnMount: {
|
|
17766
17766
|
type: Boolean,
|
|
17767
17767
|
default: !1
|
|
17768
|
+
},
|
|
17769
|
+
autocomplete: {
|
|
17770
|
+
type: String,
|
|
17771
|
+
default: "off"
|
|
17768
17772
|
}
|
|
17769
17773
|
},
|
|
17770
17774
|
emits: ["update:modelValue"],
|
|
@@ -17816,7 +17820,7 @@ const nB = ["for"], OB = {
|
|
|
17816
17820
|
}]),
|
|
17817
17821
|
placeholder: d.placeholder,
|
|
17818
17822
|
disabled: d.disabled,
|
|
17819
|
-
autocomplete:
|
|
17823
|
+
autocomplete: t.autocomplete,
|
|
17820
17824
|
"data-cy": d.label ? `${d.label.trim().replaceAll(" ", "")}-input` : `${t.type}-input`,
|
|
17821
17825
|
onBlur: V[1] || (V[1] = (D) => k(f).validate())
|
|
17822
17826
|
}, null, 42, iB), [
|