@fluid-topics/ft-text-field 1.2.22 → 1.2.23
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/build/ft-text-field.d.ts +1 -0
- package/build/ft-text-field.js +4 -0
- package/build/ft-text-field.light.js +19 -18
- package/build/ft-text-field.min.js +39 -38
- package/package.json +7 -7
package/build/ft-text-field.d.ts
CHANGED
package/build/ft-text-field.js
CHANGED
|
@@ -99,6 +99,7 @@ class FtTextField extends toFtFormComponent(FtLitElement, "textbox") {
|
|
|
99
99
|
name=${ifDefined(this.name)}
|
|
100
100
|
maxlength=${ifDefined(this.maxLength || undefined)}
|
|
101
101
|
aria-label="${this.label}"
|
|
102
|
+
autocomplete=${ifDefined(this.autocomplete)}
|
|
102
103
|
class="ft-typography--body1 ft-text-field--input"
|
|
103
104
|
part="input"
|
|
104
105
|
?disabled=${this.disabled}
|
|
@@ -309,6 +310,9 @@ __decorate([
|
|
|
309
310
|
__decorate([
|
|
310
311
|
property({ type: Boolean })
|
|
311
312
|
], FtTextField.prototype, "password", void 0);
|
|
313
|
+
__decorate([
|
|
314
|
+
property({ type: String })
|
|
315
|
+
], FtTextField.prototype, "autocomplete", void 0);
|
|
312
316
|
__decorate([
|
|
313
317
|
state()
|
|
314
318
|
], FtTextField.prototype, "focused", void 0);
|