@vaadin/multi-select-combo-box 24.3.7 → 24.3.8
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 +13 -13
- 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": "24.3.
|
|
3
|
+
"version": "24.3.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "~24.3.
|
|
42
|
-
"@vaadin/combo-box": "~24.3.
|
|
43
|
-
"@vaadin/component-base": "~24.3.
|
|
44
|
-
"@vaadin/field-base": "~24.3.
|
|
45
|
-
"@vaadin/input-container": "~24.3.
|
|
46
|
-
"@vaadin/item": "~24.3.
|
|
47
|
-
"@vaadin/lit-renderer": "~24.3.
|
|
48
|
-
"@vaadin/overlay": "~24.3.
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "~24.3.
|
|
50
|
-
"@vaadin/vaadin-material-styles": "~24.3.
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "~24.3.
|
|
41
|
+
"@vaadin/a11y-base": "~24.3.8",
|
|
42
|
+
"@vaadin/combo-box": "~24.3.8",
|
|
43
|
+
"@vaadin/component-base": "~24.3.8",
|
|
44
|
+
"@vaadin/field-base": "~24.3.8",
|
|
45
|
+
"@vaadin/input-container": "~24.3.8",
|
|
46
|
+
"@vaadin/item": "~24.3.8",
|
|
47
|
+
"@vaadin/lit-renderer": "~24.3.8",
|
|
48
|
+
"@vaadin/overlay": "~24.3.8",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "~24.3.8",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "~24.3.8",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "~24.3.8"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "144e479d60d7d52edd4d35aba032c6863c02e878"
|
|
64
64
|
}
|
|
@@ -1279,6 +1279,12 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
1279
1279
|
__computeEffectiveFilteredItems(items, filteredItems, selectedItems, readonly) {
|
|
1280
1280
|
return !items && readonly ? selectedItems : filteredItems;
|
|
1281
1281
|
}
|
|
1282
|
+
|
|
1283
|
+
/**
|
|
1284
|
+
* Fired when the user sets a custom value.
|
|
1285
|
+
* @event custom-value-set
|
|
1286
|
+
* @param {string} detail the custom value
|
|
1287
|
+
*/
|
|
1282
1288
|
}
|
|
1283
1289
|
|
|
1284
1290
|
defineCustomElement(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": "24.3.
|
|
4
|
+
"version": "24.3.8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -773,6 +773,10 @@
|
|
|
773
773
|
"name": "input",
|
|
774
774
|
"description": "Fired when the value is changed by the user: on every typing keystroke,\nand the value is cleared using the clear button."
|
|
775
775
|
},
|
|
776
|
+
{
|
|
777
|
+
"name": "custom-value-set",
|
|
778
|
+
"description": "Fired when the user sets a custom value."
|
|
779
|
+
},
|
|
776
780
|
{
|
|
777
781
|
"name": "selected-items-changed",
|
|
778
782
|
"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": "24.3.
|
|
4
|
+
"version": "24.3.8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -292,6 +292,13 @@
|
|
|
292
292
|
"kind": "expression"
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
|
+
{
|
|
296
|
+
"name": "@custom-value-set",
|
|
297
|
+
"description": "Fired when the user sets a custom value.",
|
|
298
|
+
"value": {
|
|
299
|
+
"kind": "expression"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
295
302
|
{
|
|
296
303
|
"name": "@selected-items-changed",
|
|
297
304
|
"description": "Fired when the `selectedItems` property changes.",
|