@vaadin/multi-select-combo-box 25.0.0-alpha20 → 25.0.0-alpha21

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": "25.0.0-alpha20",
3
+ "version": "25.0.0-alpha21",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,27 +36,27 @@
36
36
  ],
37
37
  "dependencies": {
38
38
  "@open-wc/dedupe-mixin": "^1.3.0",
39
- "@vaadin/a11y-base": "25.0.0-alpha20",
40
- "@vaadin/combo-box": "25.0.0-alpha20",
41
- "@vaadin/component-base": "25.0.0-alpha20",
42
- "@vaadin/field-base": "25.0.0-alpha20",
43
- "@vaadin/input-container": "25.0.0-alpha20",
44
- "@vaadin/item": "25.0.0-alpha20",
45
- "@vaadin/lit-renderer": "25.0.0-alpha20",
46
- "@vaadin/overlay": "25.0.0-alpha20",
47
- "@vaadin/vaadin-themable-mixin": "25.0.0-alpha20",
39
+ "@vaadin/a11y-base": "25.0.0-alpha21",
40
+ "@vaadin/combo-box": "25.0.0-alpha21",
41
+ "@vaadin/component-base": "25.0.0-alpha21",
42
+ "@vaadin/field-base": "25.0.0-alpha21",
43
+ "@vaadin/input-container": "25.0.0-alpha21",
44
+ "@vaadin/item": "25.0.0-alpha21",
45
+ "@vaadin/lit-renderer": "25.0.0-alpha21",
46
+ "@vaadin/overlay": "25.0.0-alpha21",
47
+ "@vaadin/vaadin-themable-mixin": "25.0.0-alpha21",
48
48
  "lit": "^3.0.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@vaadin/chai-plugins": "25.0.0-alpha20",
52
- "@vaadin/test-runner-commands": "25.0.0-alpha20",
51
+ "@vaadin/chai-plugins": "25.0.0-alpha21",
52
+ "@vaadin/test-runner-commands": "25.0.0-alpha21",
53
53
  "@vaadin/testing-helpers": "^2.0.0",
54
- "@vaadin/vaadin-lumo-styles": "25.0.0-alpha20",
54
+ "@vaadin/vaadin-lumo-styles": "25.0.0-alpha21",
55
55
  "sinon": "^21.0.0"
56
56
  },
57
57
  "web-types": [
58
58
  "web-types.json",
59
59
  "web-types.lit.json"
60
60
  ],
61
- "gitHead": "c948aae591a30b432f3784000d4677674cae56e0"
61
+ "gitHead": "8fb9e9710c01449edf623a1aaac4655cdc11a933"
62
62
  }
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": "25.0.0-alpha20",
4
+ "version": "25.0.0-alpha21",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -476,6 +476,17 @@
476
476
  ]
477
477
  }
478
478
  },
479
+ {
480
+ "name": "itemLabelGenerator",
481
+ "description": "A function that is used to generate the label for dropdown\nitems based on the item. Receives one argument:\n- `item` The item to generate the label for.",
482
+ "value": {
483
+ "type": [
484
+ "Object",
485
+ "null",
486
+ "undefined"
487
+ ]
488
+ }
489
+ },
479
490
  {
480
491
  "name": "itemLabelPath",
481
492
  "description": "Path for label of the item. If `items` is an array of objects, the\n`itemLabelPath` is used to fetch the displayed string label for each\nitem.\n\nThe item label is also used for matching items when processing user\ninput, i.e., for filtering and selecting items.",
@@ -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": "25.0.0-alpha20",
4
+ "version": "25.0.0-alpha21",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -173,6 +173,13 @@
173
173
  "kind": "expression"
174
174
  }
175
175
  },
176
+ {
177
+ "name": ".itemLabelGenerator",
178
+ "description": "A function that is used to generate the label for dropdown\nitems based on the item. Receives one argument:\n- `item` The item to generate the label for.",
179
+ "value": {
180
+ "kind": "expression"
181
+ }
182
+ },
176
183
  {
177
184
  "name": ".itemLabelPath",
178
185
  "description": "Path for label of the item. If `items` is an array of objects, the\n`itemLabelPath` is used to fetch the displayed string label for each\nitem.\n\nThe item label is also used for matching items when processing user\ninput, i.e., for filtering and selecting items.",