@vaadin/text-area 23.0.0-alpha2 → 23.0.0-beta1
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 +9 -8
- package/src/vaadin-text-area.d.ts +1 -1
- package/src/vaadin-text-area.js +2 -4
- package/theme/lumo/vaadin-text-area-styles.js +1 -1
- package/theme/lumo/vaadin-text-area.js +1 -1
- package/theme/material/vaadin-text-area-styles.js +1 -1
- package/theme/material/vaadin-text-area.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/text-area",
|
|
3
|
-
"version": "23.0.0-
|
|
3
|
+
"version": "23.0.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"main": "vaadin-text-area.js",
|
|
20
20
|
"module": "vaadin-text-area.js",
|
|
21
|
+
"type": "module",
|
|
21
22
|
"files": [
|
|
22
23
|
"src",
|
|
23
24
|
"theme",
|
|
@@ -32,17 +33,17 @@
|
|
|
32
33
|
],
|
|
33
34
|
"dependencies": {
|
|
34
35
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "23.0.0-
|
|
36
|
-
"@vaadin/field-base": "23.0.0-
|
|
37
|
-
"@vaadin/input-container": "23.0.0-
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "23.0.0-
|
|
39
|
-
"@vaadin/vaadin-material-styles": "23.0.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "23.0.0-
|
|
36
|
+
"@vaadin/component-base": "23.0.0-beta1",
|
|
37
|
+
"@vaadin/field-base": "23.0.0-beta1",
|
|
38
|
+
"@vaadin/input-container": "23.0.0-beta1",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "23.0.0-beta1",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "23.0.0-beta1",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "23.0.0-beta1"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
45
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
46
|
"sinon": "^9.2.1"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "467244b76021176c109df675799b07029b293e58"
|
|
48
49
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 Vaadin Ltd.
|
|
3
|
+
* Copyright (c) 2021 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
package/src/vaadin-text-area.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 Vaadin Ltd.
|
|
3
|
+
* Copyright (c) 2021 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import '@vaadin/input-container/src/vaadin-input-container.js';
|
|
@@ -212,7 +212,7 @@ export class TextArea extends PatternMixin(InputFieldMixin(ThemableMixin(Element
|
|
|
212
212
|
this.ariaTarget = input;
|
|
213
213
|
})
|
|
214
214
|
);
|
|
215
|
-
this.addController(new LabelledInputController(this.inputElement, this.
|
|
215
|
+
this.addController(new LabelledInputController(this.inputElement, this._labelController));
|
|
216
216
|
this.addEventListener('animationend', this._onAnimationEnd);
|
|
217
217
|
}
|
|
218
218
|
|
|
@@ -278,8 +278,6 @@ export class TextArea extends PatternMixin(InputFieldMixin(ThemableMixin(Element
|
|
|
278
278
|
inputField.style.removeProperty('display');
|
|
279
279
|
inputField.style.removeProperty('height');
|
|
280
280
|
inputField.scrollTop = scrollTop;
|
|
281
|
-
|
|
282
|
-
this._dispatchIronResizeEventIfNeeded('InputHeight', inputHeight);
|
|
283
281
|
}
|
|
284
282
|
|
|
285
283
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import '@vaadin/input-container/theme/lumo/vaadin-input-container.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { inputFieldShared } from '@vaadin/vaadin-material-styles/mixins/input-field-shared.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import '@vaadin/input-container/theme/material/vaadin-input-container.js';
|