@vaadin/text-area 22.0.13 → 22.0.16
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/text-area",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "^22.0.
|
|
36
|
-
"@vaadin/field-base": "^22.0.
|
|
37
|
-
"@vaadin/input-container": "^22.0.
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "^22.0.
|
|
39
|
-
"@vaadin/vaadin-material-styles": "^22.0.
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "^22.0.
|
|
35
|
+
"@vaadin/component-base": "^22.0.16",
|
|
36
|
+
"@vaadin/field-base": "^22.0.16",
|
|
37
|
+
"@vaadin/input-container": "^22.0.16",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "^22.0.16",
|
|
39
|
+
"@vaadin/vaadin-material-styles": "^22.0.16",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "^22.0.16"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
44
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
45
|
"sinon": "^9.2.1"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "dac6f243594ea700bb796d3b41d7b17736d90be8"
|
|
48
48
|
}
|
|
@@ -80,13 +80,13 @@ declare class TextArea extends InputFieldMixin(ThemableMixin(ElementMixin(HTMLEl
|
|
|
80
80
|
addEventListener<K extends keyof TextAreaEventMap>(
|
|
81
81
|
type: K,
|
|
82
82
|
listener: (this: TextArea, ev: TextAreaEventMap[K]) => void,
|
|
83
|
-
options?: boolean | AddEventListenerOptions
|
|
83
|
+
options?: boolean | AddEventListenerOptions,
|
|
84
84
|
): void;
|
|
85
85
|
|
|
86
86
|
removeEventListener<K extends keyof TextAreaEventMap>(
|
|
87
87
|
type: K,
|
|
88
88
|
listener: (this: TextArea, ev: TextAreaEventMap[K]) => void,
|
|
89
|
-
options?: boolean | EventListenerOptions
|
|
89
|
+
options?: boolean | EventListenerOptions,
|
|
90
90
|
): void;
|
|
91
91
|
}
|
|
92
92
|
|
package/src/vaadin-text-area.js
CHANGED
|
@@ -169,15 +169,15 @@ export class TextArea extends InputFieldMixin(ThemableMixin(ElementMixin(Polymer
|
|
|
169
169
|
* Maximum number of characters (in Unicode code points) that the user can enter.
|
|
170
170
|
*/
|
|
171
171
|
maxlength: {
|
|
172
|
-
type: Number
|
|
172
|
+
type: Number,
|
|
173
173
|
},
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
176
|
* Minimum number of characters (in Unicode code points) that the user can enter.
|
|
177
177
|
*/
|
|
178
178
|
minlength: {
|
|
179
|
-
type: Number
|
|
180
|
-
}
|
|
179
|
+
type: Number,
|
|
180
|
+
},
|
|
181
181
|
};
|
|
182
182
|
}
|
|
183
183
|
|
|
@@ -230,7 +230,7 @@ export class TextArea extends InputFieldMixin(ThemableMixin(ElementMixin(Polymer
|
|
|
230
230
|
this._setFocusElement(input);
|
|
231
231
|
this.stateTarget = input;
|
|
232
232
|
this.ariaTarget = input;
|
|
233
|
-
})
|
|
233
|
+
}),
|
|
234
234
|
);
|
|
235
235
|
this.addController(new LabelledInputController(this.inputElement, this._labelController));
|
|
236
236
|
this.addEventListener('animationend', this._onAnimationEnd);
|