@vaadin/multi-select-combo-box 23.4.0-alpha4 → 23.4.0
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-multi-select-combo-box.js +6 -0
- package/web-types.json +5 -1
- package/web-types.lit.json +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "23.4.0
|
|
3
|
+
"version": "23.4.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/combo-box": "23.4.0
|
|
41
|
-
"@vaadin/component-base": "23.4.0
|
|
42
|
-
"@vaadin/field-base": "23.4.0
|
|
43
|
-
"@vaadin/input-container": "23.4.0
|
|
44
|
-
"@vaadin/lit-renderer": "23.4.0
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "23.4.0
|
|
46
|
-
"@vaadin/vaadin-material-styles": "23.4.0
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "23.4.0
|
|
40
|
+
"@vaadin/combo-box": "~23.4.0",
|
|
41
|
+
"@vaadin/component-base": "~23.4.0",
|
|
42
|
+
"@vaadin/field-base": "~23.4.0",
|
|
43
|
+
"@vaadin/input-container": "~23.4.0",
|
|
44
|
+
"@vaadin/lit-renderer": "~23.4.0",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "~23.4.0",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "~23.4.0",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "~23.4.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "c104ecc83b82425fc4899e5eac9d91a114874c8e"
|
|
60
60
|
}
|
|
@@ -1295,6 +1295,12 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
1295
1295
|
get _hasValue() {
|
|
1296
1296
|
return this.selectedItems && this.selectedItems.length > 0;
|
|
1297
1297
|
}
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* Fired when the user sets a custom value.
|
|
1301
|
+
* @event custom-value-set
|
|
1302
|
+
* @param {string} detail the custom value
|
|
1303
|
+
*/
|
|
1298
1304
|
}
|
|
1299
1305
|
|
|
1300
1306
|
customElements.define(MultiSelectComboBox.is, MultiSelectComboBox);
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/multi-select-combo-box",
|
|
4
|
-
"version": "23.4.0
|
|
4
|
+
"version": "23.4.0",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -729,6 +729,10 @@
|
|
|
729
729
|
"name": "input",
|
|
730
730
|
"description": "Fired when the value is changed by the user: on every typing keystroke,\nand the value is cleared using the clear button."
|
|
731
731
|
},
|
|
732
|
+
{
|
|
733
|
+
"name": "custom-value-set",
|
|
734
|
+
"description": "Fired when the user sets a custom value."
|
|
735
|
+
},
|
|
732
736
|
{
|
|
733
737
|
"name": "selected-items-changed",
|
|
734
738
|
"description": "Fired when the `selectedItems` property changes."
|
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/multi-select-combo-box",
|
|
4
|
-
"version": "23.4.0
|
|
4
|
+
"version": "23.4.0",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -278,6 +278,13 @@
|
|
|
278
278
|
"kind": "expression"
|
|
279
279
|
}
|
|
280
280
|
},
|
|
281
|
+
{
|
|
282
|
+
"name": "@custom-value-set",
|
|
283
|
+
"description": "Fired when the user sets a custom value.",
|
|
284
|
+
"value": {
|
|
285
|
+
"kind": "expression"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
281
288
|
{
|
|
282
289
|
"name": "@selected-items-changed",
|
|
283
290
|
"description": "Fired when the `selectedItems` property changes.",
|