@vaadin/message-input 25.1.2 → 25.2.0-alpha10
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 +10 -10
- package/src/vaadin-message-input-mixin.js +0 -6
- package/web-types.json +7 -26
- package/web-types.lit.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/message-input",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.2.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/button": "
|
|
39
|
-
"@vaadin/component-base": "
|
|
40
|
-
"@vaadin/text-area": "
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
38
|
+
"@vaadin/button": "25.2.0-alpha10",
|
|
39
|
+
"@vaadin/component-base": "25.2.0-alpha10",
|
|
40
|
+
"@vaadin/text-area": "25.2.0-alpha10",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha10",
|
|
42
42
|
"lit": "^3.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/aura": "
|
|
46
|
-
"@vaadin/chai-plugins": "
|
|
47
|
-
"@vaadin/test-runner-commands": "
|
|
45
|
+
"@vaadin/aura": "25.2.0-alpha10",
|
|
46
|
+
"@vaadin/chai-plugins": "25.2.0-alpha10",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha10",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha10",
|
|
50
50
|
"sinon": "^21.0.2"
|
|
51
51
|
},
|
|
52
52
|
"customElements": "custom-elements.json",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "1303b6a3eeecb44a9d26f2b53cb56d9e906febdf"
|
|
58
58
|
}
|
|
@@ -165,10 +165,4 @@ export const MessageInputMixin = (superClass) =>
|
|
|
165
165
|
}
|
|
166
166
|
this._textArea.focus();
|
|
167
167
|
}
|
|
168
|
-
|
|
169
|
-
/**
|
|
170
|
-
* Fired when a new message is submitted with `<vaadin-message-input>`, either
|
|
171
|
-
* by clicking the "send" button, or pressing the Enter key.
|
|
172
|
-
* @event submit
|
|
173
|
-
*/
|
|
174
168
|
};
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/message-input",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.2.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -15,20 +15,7 @@
|
|
|
15
15
|
"description": "Set to true to disable this element.",
|
|
16
16
|
"value": {
|
|
17
17
|
"type": [
|
|
18
|
-
"boolean"
|
|
19
|
-
"null",
|
|
20
|
-
"undefined"
|
|
21
|
-
]
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "i18n",
|
|
26
|
-
"description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nShould be overridden by subclasses to provide a custom JSDoc with the\ndefault I18N properties.",
|
|
27
|
-
"value": {
|
|
28
|
-
"type": [
|
|
29
|
-
"Object",
|
|
30
|
-
"null",
|
|
31
|
-
"undefined"
|
|
18
|
+
"boolean"
|
|
32
19
|
]
|
|
33
20
|
}
|
|
34
21
|
},
|
|
@@ -48,9 +35,7 @@
|
|
|
48
35
|
"description": "Current content of the text input field",
|
|
49
36
|
"value": {
|
|
50
37
|
"type": [
|
|
51
|
-
"string"
|
|
52
|
-
"null",
|
|
53
|
-
"undefined"
|
|
38
|
+
"string"
|
|
54
39
|
]
|
|
55
40
|
}
|
|
56
41
|
}
|
|
@@ -62,9 +47,7 @@
|
|
|
62
47
|
"description": "Set to true to disable this element.",
|
|
63
48
|
"value": {
|
|
64
49
|
"type": [
|
|
65
|
-
"boolean"
|
|
66
|
-
"null",
|
|
67
|
-
"undefined"
|
|
50
|
+
"boolean"
|
|
68
51
|
]
|
|
69
52
|
}
|
|
70
53
|
},
|
|
@@ -73,7 +56,7 @@
|
|
|
73
56
|
"description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n```js\n{\n // Used as the button label\n send: 'Send',\n\n // Used as the input field's placeholder and aria-label\n message: 'Message'\n}\n```",
|
|
74
57
|
"value": {
|
|
75
58
|
"type": [
|
|
76
|
-
"
|
|
59
|
+
"Object"
|
|
77
60
|
]
|
|
78
61
|
}
|
|
79
62
|
},
|
|
@@ -82,9 +65,7 @@
|
|
|
82
65
|
"description": "Current content of the text input field",
|
|
83
66
|
"value": {
|
|
84
67
|
"type": [
|
|
85
|
-
"string"
|
|
86
|
-
"null",
|
|
87
|
-
"undefined"
|
|
68
|
+
"string"
|
|
88
69
|
]
|
|
89
70
|
}
|
|
90
71
|
}
|
|
@@ -92,7 +73,7 @@
|
|
|
92
73
|
"events": [
|
|
93
74
|
{
|
|
94
75
|
"name": "submit",
|
|
95
|
-
"description": "Fired when a new message is submitted
|
|
76
|
+
"description": "Fired when a new message is submitted, either by clicking the \"send\" button, or pressing the Enter key."
|
|
96
77
|
}
|
|
97
78
|
]
|
|
98
79
|
}
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/message-input",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.2.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "@submit",
|
|
45
|
-
"description": "Fired when a new message is submitted
|
|
45
|
+
"description": "Fired when a new message is submitted, either by clicking the \"send\" button, or pressing the Enter key.",
|
|
46
46
|
"value": {
|
|
47
47
|
"kind": "expression"
|
|
48
48
|
}
|