@vaadin/multi-select-combo-box 25.1.0-beta1 → 25.1.0-beta2
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/custom-elements.json +777 -501
- package/package.json +15 -15
- package/src/vaadin-multi-select-combo-box-mixin.js +1 -1
- package/web-types.json +34 -12
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,23 +37,23 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/a11y-base": "25.1.0-
|
|
41
|
-
"@vaadin/combo-box": "25.1.0-
|
|
42
|
-
"@vaadin/component-base": "25.1.0-
|
|
43
|
-
"@vaadin/field-base": "25.1.0-
|
|
44
|
-
"@vaadin/input-container": "25.1.0-
|
|
45
|
-
"@vaadin/item": "25.1.0-
|
|
46
|
-
"@vaadin/lit-renderer": "25.1.0-
|
|
47
|
-
"@vaadin/overlay": "25.1.0-
|
|
48
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
40
|
+
"@vaadin/a11y-base": "25.1.0-beta2",
|
|
41
|
+
"@vaadin/combo-box": "25.1.0-beta2",
|
|
42
|
+
"@vaadin/component-base": "25.1.0-beta2",
|
|
43
|
+
"@vaadin/field-base": "25.1.0-beta2",
|
|
44
|
+
"@vaadin/input-container": "25.1.0-beta2",
|
|
45
|
+
"@vaadin/item": "25.1.0-beta2",
|
|
46
|
+
"@vaadin/lit-renderer": "25.1.0-beta2",
|
|
47
|
+
"@vaadin/overlay": "25.1.0-beta2",
|
|
48
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
|
|
49
49
|
"lit": "^3.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@vaadin/aura": "25.1.0-
|
|
53
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
54
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
52
|
+
"@vaadin/aura": "25.1.0-beta2",
|
|
53
|
+
"@vaadin/chai-plugins": "25.1.0-beta2",
|
|
54
|
+
"@vaadin/test-runner-commands": "25.1.0-beta2",
|
|
55
55
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
56
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
56
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
|
|
57
57
|
"sinon": "^21.0.0"
|
|
58
58
|
},
|
|
59
59
|
"customElements": "custom-elements.json",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"web-types.json",
|
|
62
62
|
"web-types.lit.json"
|
|
63
63
|
],
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
|
|
65
65
|
}
|
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.1.0-
|
|
4
|
+
"version": "25.1.0-beta2",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -147,7 +147,9 @@
|
|
|
147
147
|
"description": "Filtering string the user has typed into the input field.",
|
|
148
148
|
"value": {
|
|
149
149
|
"type": [
|
|
150
|
-
"string"
|
|
150
|
+
"string",
|
|
151
|
+
"null",
|
|
152
|
+
"undefined"
|
|
151
153
|
]
|
|
152
154
|
}
|
|
153
155
|
},
|
|
@@ -189,7 +191,9 @@
|
|
|
189
191
|
"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.",
|
|
190
192
|
"value": {
|
|
191
193
|
"type": [
|
|
192
|
-
"string"
|
|
194
|
+
"string",
|
|
195
|
+
"null",
|
|
196
|
+
"undefined"
|
|
193
197
|
]
|
|
194
198
|
}
|
|
195
199
|
},
|
|
@@ -198,7 +202,9 @@
|
|
|
198
202
|
"description": "Path for the value of the item. If `items` is an array of objects, the\n`itemValuePath:` is used to fetch the string value for the selected\nitem.\n\nThe item value is used in the `value` property of the combo box,\nto provide the form value.",
|
|
199
203
|
"value": {
|
|
200
204
|
"type": [
|
|
201
|
-
"string"
|
|
205
|
+
"string",
|
|
206
|
+
"null",
|
|
207
|
+
"undefined"
|
|
202
208
|
]
|
|
203
209
|
}
|
|
204
210
|
},
|
|
@@ -262,7 +268,9 @@
|
|
|
262
268
|
"description": "True if the dropdown is open, false otherwise.",
|
|
263
269
|
"value": {
|
|
264
270
|
"type": [
|
|
265
|
-
"boolean"
|
|
271
|
+
"boolean",
|
|
272
|
+
"null",
|
|
273
|
+
"undefined"
|
|
266
274
|
]
|
|
267
275
|
}
|
|
268
276
|
},
|
|
@@ -271,7 +279,9 @@
|
|
|
271
279
|
"description": "Number of items fetched at a time from the dataprovider.",
|
|
272
280
|
"value": {
|
|
273
281
|
"type": [
|
|
274
|
-
"number"
|
|
282
|
+
"number",
|
|
283
|
+
"null",
|
|
284
|
+
"undefined"
|
|
275
285
|
]
|
|
276
286
|
}
|
|
277
287
|
},
|
|
@@ -325,6 +335,7 @@
|
|
|
325
335
|
"value": {
|
|
326
336
|
"type": [
|
|
327
337
|
"number",
|
|
338
|
+
"null",
|
|
328
339
|
"undefined"
|
|
329
340
|
]
|
|
330
341
|
}
|
|
@@ -512,7 +523,9 @@
|
|
|
512
523
|
"description": "Filtering string the user has typed into the input field.",
|
|
513
524
|
"value": {
|
|
514
525
|
"type": [
|
|
515
|
-
"string"
|
|
526
|
+
"string",
|
|
527
|
+
"null",
|
|
528
|
+
"undefined"
|
|
516
529
|
]
|
|
517
530
|
}
|
|
518
531
|
},
|
|
@@ -543,7 +556,7 @@
|
|
|
543
556
|
"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 // Screen reader announcement on clear button click.\n cleared: 'Selection cleared',\n // Screen reader announcement when a chip is focused.\n focused: ' focused. Press Backspace to remove',\n // Screen reader announcement when item is selected.\n selected: 'added to selection',\n // Screen reader announcement when item is deselected.\n deselected: 'removed from selection',\n // Screen reader announcement of the selected items count.\n // {count} is replaced with the actual count of items.\n total: '{count} items selected',\n}\n```",
|
|
544
557
|
"value": {
|
|
545
558
|
"type": [
|
|
546
|
-
"
|
|
559
|
+
"?"
|
|
547
560
|
]
|
|
548
561
|
}
|
|
549
562
|
},
|
|
@@ -596,7 +609,9 @@
|
|
|
596
609
|
"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.",
|
|
597
610
|
"value": {
|
|
598
611
|
"type": [
|
|
599
|
-
"string"
|
|
612
|
+
"string",
|
|
613
|
+
"null",
|
|
614
|
+
"undefined"
|
|
600
615
|
]
|
|
601
616
|
}
|
|
602
617
|
},
|
|
@@ -616,7 +631,9 @@
|
|
|
616
631
|
"description": "Path for the value of the item. If `items` is an array of objects, the\n`itemValuePath:` is used to fetch the string value for the selected\nitem.\n\nThe item value is used in the `value` property of the combo box,\nto provide the form value.",
|
|
617
632
|
"value": {
|
|
618
633
|
"type": [
|
|
619
|
-
"string"
|
|
634
|
+
"string",
|
|
635
|
+
"null",
|
|
636
|
+
"undefined"
|
|
620
637
|
]
|
|
621
638
|
}
|
|
622
639
|
},
|
|
@@ -680,7 +697,9 @@
|
|
|
680
697
|
"description": "True if the dropdown is open, false otherwise.",
|
|
681
698
|
"value": {
|
|
682
699
|
"type": [
|
|
683
|
-
"boolean"
|
|
700
|
+
"boolean",
|
|
701
|
+
"null",
|
|
702
|
+
"undefined"
|
|
684
703
|
]
|
|
685
704
|
}
|
|
686
705
|
},
|
|
@@ -689,7 +708,9 @@
|
|
|
689
708
|
"description": "Number of items fetched at a time from the dataprovider.",
|
|
690
709
|
"value": {
|
|
691
710
|
"type": [
|
|
692
|
-
"number"
|
|
711
|
+
"number",
|
|
712
|
+
"null",
|
|
713
|
+
"undefined"
|
|
693
714
|
]
|
|
694
715
|
}
|
|
695
716
|
},
|
|
@@ -765,6 +786,7 @@
|
|
|
765
786
|
"value": {
|
|
766
787
|
"type": [
|
|
767
788
|
"number",
|
|
789
|
+
"null",
|
|
768
790
|
"undefined"
|
|
769
791
|
]
|
|
770
792
|
}
|
package/web-types.lit.json
CHANGED