@vaadin/multi-select-combo-box 24.4.0-alpha15 → 24.4.0-alpha16

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/multi-select-combo-box",
3
- "version": "24.4.0-alpha15",
3
+ "version": "24.4.0-alpha16",
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.4.0-alpha15",
42
- "@vaadin/combo-box": "24.4.0-alpha15",
43
- "@vaadin/component-base": "24.4.0-alpha15",
44
- "@vaadin/field-base": "24.4.0-alpha15",
45
- "@vaadin/input-container": "24.4.0-alpha15",
46
- "@vaadin/item": "24.4.0-alpha15",
47
- "@vaadin/lit-renderer": "24.4.0-alpha15",
48
- "@vaadin/overlay": "24.4.0-alpha15",
49
- "@vaadin/vaadin-lumo-styles": "24.4.0-alpha15",
50
- "@vaadin/vaadin-material-styles": "24.4.0-alpha15",
51
- "@vaadin/vaadin-themable-mixin": "24.4.0-alpha15"
41
+ "@vaadin/a11y-base": "24.4.0-alpha16",
42
+ "@vaadin/combo-box": "24.4.0-alpha16",
43
+ "@vaadin/component-base": "24.4.0-alpha16",
44
+ "@vaadin/field-base": "24.4.0-alpha16",
45
+ "@vaadin/input-container": "24.4.0-alpha16",
46
+ "@vaadin/item": "24.4.0-alpha16",
47
+ "@vaadin/lit-renderer": "24.4.0-alpha16",
48
+ "@vaadin/overlay": "24.4.0-alpha16",
49
+ "@vaadin/vaadin-lumo-styles": "24.4.0-alpha16",
50
+ "@vaadin/vaadin-material-styles": "24.4.0-alpha16",
51
+ "@vaadin/vaadin-themable-mixin": "24.4.0-alpha16"
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": "8b548bae8d7fac98517c16e45636d44b9370857c"
63
+ "gitHead": "2d797855c2b3a3828ee7b0d90aeb227b56c32e76"
64
64
  }
@@ -1283,6 +1283,12 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
1283
1283
  // and keep the overlay opened when clicking a chip.
1284
1284
  event.preventDefault();
1285
1285
  }
1286
+
1287
+ /**
1288
+ * Fired when the user sets a custom value.
1289
+ * @event custom-value-set
1290
+ * @param {string} detail the custom value
1291
+ */
1286
1292
  }
1287
1293
 
1288
1294
  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.4.0-alpha15",
4
+ "version": "24.4.0-alpha16",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -795,6 +795,10 @@
795
795
  "name": "input",
796
796
  "description": "Fired when the value is changed by the user: on every typing keystroke,\nand the value is cleared using the clear button."
797
797
  },
798
+ {
799
+ "name": "custom-value-set",
800
+ "description": "Fired when the user sets a custom value."
801
+ },
798
802
  {
799
803
  "name": "selected-items-changed",
800
804
  "description": "Fired when the `selectedItems` property changes."
@@ -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.4.0-alpha15",
4
+ "version": "24.4.0-alpha16",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -299,6 +299,13 @@
299
299
  "kind": "expression"
300
300
  }
301
301
  },
302
+ {
303
+ "name": "@custom-value-set",
304
+ "description": "Fired when the user sets a custom value.",
305
+ "value": {
306
+ "kind": "expression"
307
+ }
308
+ },
302
309
  {
303
310
  "name": "@selected-items-changed",
304
311
  "description": "Fired when the `selectedItems` property changes.",