@vaadin/message-input 24.6.0 → 24.7.0-alpha2
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/message-input",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.7.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/button": "
|
|
41
|
-
"@vaadin/component-base": "
|
|
42
|
-
"@vaadin/text-area": "
|
|
43
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
44
|
-
"@vaadin/vaadin-material-styles": "
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
40
|
+
"@vaadin/button": "24.7.0-alpha2",
|
|
41
|
+
"@vaadin/component-base": "24.7.0-alpha2",
|
|
42
|
+
"@vaadin/text-area": "24.7.0-alpha2",
|
|
43
|
+
"@vaadin/vaadin-lumo-styles": "24.7.0-alpha2",
|
|
44
|
+
"@vaadin/vaadin-material-styles": "24.7.0-alpha2",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "24.7.0-alpha2",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/chai-plugins": "
|
|
49
|
+
"@vaadin/chai-plugins": "24.7.0-alpha2",
|
|
50
50
|
"@vaadin/testing-helpers": "^1.0.0",
|
|
51
51
|
"sinon": "^18.0.0"
|
|
52
52
|
},
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "e2523f9b4abc5a9586fb758166f823dc40c399dd"
|
|
58
58
|
}
|
|
@@ -116,15 +116,6 @@ export const MessageInputMixin = (superClass) =>
|
|
|
116
116
|
}
|
|
117
117
|
});
|
|
118
118
|
|
|
119
|
-
// With Lit version, input element renders asynchronously and it will
|
|
120
|
-
// override the `rows` attribute set to `1` in the `minRows` observer.
|
|
121
|
-
// Workaround: perform update twice to run the observer synchronously.
|
|
122
|
-
// TODO: needs https://github.com/vaadin/web-components/pull/8168
|
|
123
|
-
if (textarea.performUpdate) {
|
|
124
|
-
textarea.performUpdate();
|
|
125
|
-
textarea.performUpdate();
|
|
126
|
-
}
|
|
127
|
-
|
|
128
119
|
const input = textarea.inputElement;
|
|
129
120
|
|
|
130
121
|
// Set initial height to one row
|
package/web-types.json
CHANGED