@vaadin/text-area 23.0.7 → 23.0.10
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": "23.0.
|
|
3
|
+
"version": "23.0.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@polymer/polymer": "^3.0.0",
|
|
36
|
-
"@vaadin/component-base": "^23.0.
|
|
37
|
-
"@vaadin/field-base": "^23.0.
|
|
38
|
-
"@vaadin/input-container": "^23.0.
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "^23.0.
|
|
40
|
-
"@vaadin/vaadin-material-styles": "^23.0.
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "^23.0.
|
|
36
|
+
"@vaadin/component-base": "^23.0.10",
|
|
37
|
+
"@vaadin/field-base": "^23.0.10",
|
|
38
|
+
"@vaadin/input-container": "^23.0.10",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "^23.0.10",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "^23.0.10",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "^23.0.10"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
45
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
46
46
|
"sinon": "^9.2.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3"
|
|
49
49
|
}
|
|
@@ -91,13 +91,13 @@ declare class TextArea extends ResizeMixin(PatternMixin(InputFieldMixin(Themable
|
|
|
91
91
|
addEventListener<K extends keyof TextAreaEventMap>(
|
|
92
92
|
type: K,
|
|
93
93
|
listener: (this: TextArea, ev: TextAreaEventMap[K]) => void,
|
|
94
|
-
options?: boolean | AddEventListenerOptions
|
|
94
|
+
options?: boolean | AddEventListenerOptions,
|
|
95
95
|
): void;
|
|
96
96
|
|
|
97
97
|
removeEventListener<K extends keyof TextAreaEventMap>(
|
|
98
98
|
type: K,
|
|
99
99
|
listener: (this: TextArea, ev: TextAreaEventMap[K]) => void,
|
|
100
|
-
options?: boolean | EventListenerOptions
|
|
100
|
+
options?: boolean | EventListenerOptions,
|
|
101
101
|
): void;
|
|
102
102
|
}
|
|
103
103
|
|
package/src/vaadin-text-area.js
CHANGED
|
@@ -173,15 +173,15 @@ export class TextArea extends ResizeMixin(PatternMixin(InputFieldMixin(ThemableM
|
|
|
173
173
|
* Maximum number of characters (in Unicode code points) that the user can enter.
|
|
174
174
|
*/
|
|
175
175
|
maxlength: {
|
|
176
|
-
type: Number
|
|
176
|
+
type: Number,
|
|
177
177
|
},
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
180
|
* Minimum number of characters (in Unicode code points) that the user can enter.
|
|
181
181
|
*/
|
|
182
182
|
minlength: {
|
|
183
|
-
type: Number
|
|
184
|
-
}
|
|
183
|
+
type: Number,
|
|
184
|
+
},
|
|
185
185
|
};
|
|
186
186
|
}
|
|
187
187
|
|
|
@@ -242,7 +242,7 @@ export class TextArea extends ResizeMixin(PatternMixin(InputFieldMixin(ThemableM
|
|
|
242
242
|
this._setFocusElement(input);
|
|
243
243
|
this.stateTarget = input;
|
|
244
244
|
this.ariaTarget = input;
|
|
245
|
-
})
|
|
245
|
+
}),
|
|
246
246
|
);
|
|
247
247
|
this.addController(new LabelledInputController(this.inputElement, this._labelController));
|
|
248
248
|
this.addEventListener('animationend', this._onAnimationEnd);
|