@vaadin/multi-select-combo-box 25.2.0-alpha9 → 25.2.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.
@@ -98,6 +98,20 @@
98
98
  "description": "Set to true to not collapse selected items chips into the overflow\nchip and instead always expand vertically, causing input field to\nwrap into multiple lines when width is limited.",
99
99
  "attribute": "auto-expand-vertically"
100
100
  },
101
+ {
102
+ "kind": "field",
103
+ "name": "autofocus",
104
+ "privacy": "public",
105
+ "type": {
106
+ "text": "boolean"
107
+ },
108
+ "description": "Specify that this control should have input focus when the page loads.",
109
+ "attribute": "autofocus",
110
+ "inheritedFrom": {
111
+ "name": "DelegateFocusMixin",
112
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
113
+ }
114
+ },
101
115
  {
102
116
  "kind": "field",
103
117
  "name": "autoOpenDisabled",
@@ -134,12 +148,20 @@
134
148
  "type": {
135
149
  "text": "boolean"
136
150
  }
151
+ },
152
+ "inheritedFrom": {
153
+ "name": "FieldMixin",
154
+ "package": "@vaadin/field-base/src/field-mixin.js"
137
155
  }
138
156
  },
139
157
  {
140
158
  "kind": "method",
141
159
  "name": "clear",
142
- "description": "Clears the selected items."
160
+ "description": "Clears the selected items.",
161
+ "inheritedFrom": {
162
+ "name": "ClearButtonMixin",
163
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
164
+ }
143
165
  },
144
166
  {
145
167
  "kind": "field",
@@ -173,6 +195,16 @@
173
195
  "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
174
196
  }
175
197
  },
198
+ {
199
+ "kind": "field",
200
+ "name": "collapseChips",
201
+ "privacy": "public",
202
+ "type": {
203
+ "text": "boolean"
204
+ },
205
+ "description": "Set to true to collapse all selected items chips into the overflow\nchip when they don't all fit, instead of showing as many as possible.\nHas no effect when `autoExpandVertically` is true.",
206
+ "attribute": "collapse-chips"
207
+ },
176
208
  {
177
209
  "kind": "field",
178
210
  "name": "dataProvider",
@@ -187,6 +219,20 @@
187
219
  "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
188
220
  }
189
221
  },
222
+ {
223
+ "kind": "field",
224
+ "name": "disabled",
225
+ "privacy": "public",
226
+ "type": {
227
+ "text": "boolean"
228
+ },
229
+ "description": "If true, the user cannot interact with this element.",
230
+ "attribute": "disabled",
231
+ "inheritedFrom": {
232
+ "name": "DelegateFocusMixin",
233
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
234
+ }
235
+ },
190
236
  {
191
237
  "kind": "field",
192
238
  "name": "errorMessage",
@@ -257,6 +303,20 @@
257
303
  "package": "@vaadin/component-base/src/i18n-mixin.js"
258
304
  }
259
305
  },
306
+ {
307
+ "kind": "field",
308
+ "name": "invalid",
309
+ "privacy": "public",
310
+ "type": {
311
+ "text": "boolean"
312
+ },
313
+ "description": "Set to true when the field is invalid.",
314
+ "attribute": "invalid",
315
+ "inheritedFrom": {
316
+ "name": "FieldMixin",
317
+ "package": "@vaadin/field-base/src/field-mixin.js"
318
+ }
319
+ },
260
320
  {
261
321
  "kind": "field",
262
322
  "name": "itemClassNameGenerator",
@@ -367,6 +427,20 @@
367
427
  "description": "True when loading items from the data provider, false otherwise.",
368
428
  "attribute": "loading"
369
429
  },
430
+ {
431
+ "kind": "field",
432
+ "name": "manualValidation",
433
+ "privacy": "public",
434
+ "type": {
435
+ "text": "boolean"
436
+ },
437
+ "description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
438
+ "attribute": "manual-validation",
439
+ "inheritedFrom": {
440
+ "name": "FieldMixin",
441
+ "package": "@vaadin/field-base/src/field-mixin.js"
442
+ }
443
+ },
370
444
  {
371
445
  "kind": "field",
372
446
  "name": "name",
@@ -461,6 +535,20 @@
461
535
  "name": "requestContentUpdate",
462
536
  "description": "Requests an update for the content of items.\nWhile performing the update, it invokes the renderer (passed in the `renderer` property) once an item.\n\nIt is not guaranteed that the update happens immediately (synchronously) after it is requested."
463
537
  },
538
+ {
539
+ "kind": "field",
540
+ "name": "required",
541
+ "privacy": "public",
542
+ "type": {
543
+ "text": "boolean"
544
+ },
545
+ "description": "Specifies that the user must fill in a value.",
546
+ "attribute": "required",
547
+ "inheritedFrom": {
548
+ "name": "FieldMixin",
549
+ "package": "@vaadin/field-base/src/field-mixin.js"
550
+ }
551
+ },
464
552
  {
465
553
  "kind": "field",
466
554
  "name": "selectedItems",
@@ -508,6 +596,34 @@
508
596
  "name": "InputControlMixin",
509
597
  "package": "@vaadin/field-base/src/input-control-mixin.js"
510
598
  }
599
+ },
600
+ {
601
+ "kind": "method",
602
+ "name": "validate",
603
+ "description": "Validates the field and sets the `invalid` property based on the result.\n\nThe method fires a `validated` event with the result of the validation.",
604
+ "return": {
605
+ "type": {
606
+ "text": "boolean"
607
+ }
608
+ },
609
+ "inheritedFrom": {
610
+ "name": "FieldMixin",
611
+ "package": "@vaadin/field-base/src/field-mixin.js"
612
+ }
613
+ },
614
+ {
615
+ "kind": "field",
616
+ "name": "value",
617
+ "privacy": "public",
618
+ "type": {
619
+ "text": "string"
620
+ },
621
+ "description": "The value of the field.",
622
+ "attribute": "value",
623
+ "inheritedFrom": {
624
+ "name": "ClearButtonMixin",
625
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
626
+ }
511
627
  }
512
628
  ],
513
629
  "events": [
@@ -515,6 +631,10 @@
515
631
  "name": "change",
516
632
  "type": {
517
633
  "text": "CustomEvent"
634
+ },
635
+ "inheritedFrom": {
636
+ "name": "InputConstraintsMixin",
637
+ "package": "@vaadin/field-base/src/input-constraints-mixin.js"
518
638
  }
519
639
  },
520
640
  {
@@ -522,6 +642,16 @@
522
642
  "type": {
523
643
  "text": "CustomEvent"
524
644
  }
645
+ },
646
+ {
647
+ "name": "validated",
648
+ "type": {
649
+ "text": "CustomEvent"
650
+ },
651
+ "inheritedFrom": {
652
+ "name": "FieldMixin",
653
+ "package": "@vaadin/field-base/src/field-mixin.js"
654
+ }
525
655
  }
526
656
  ],
527
657
  "attributes": [
@@ -597,6 +727,18 @@
597
727
  "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
598
728
  }
599
729
  },
730
+ {
731
+ "name": "autofocus",
732
+ "type": {
733
+ "text": "boolean"
734
+ },
735
+ "description": "Specify that this control should have input focus when the page loads.",
736
+ "fieldName": "autofocus",
737
+ "inheritedFrom": {
738
+ "name": "DelegateFocusMixin",
739
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
740
+ }
741
+ },
600
742
  {
601
743
  "name": "autoselect",
602
744
  "type": {
@@ -621,6 +763,14 @@
621
763
  "package": "@vaadin/field-base/src/clear-button-mixin.js"
622
764
  }
623
765
  },
766
+ {
767
+ "name": "collapse-chips",
768
+ "type": {
769
+ "text": "boolean"
770
+ },
771
+ "description": "Set to true to collapse all selected items chips into the overflow\nchip when they don't all fit, instead of showing as many as possible.\nHas no effect when `autoExpandVertically` is true.",
772
+ "fieldName": "collapseChips"
773
+ },
624
774
  {
625
775
  "name": "data-provider",
626
776
  "type": {
@@ -633,6 +783,18 @@
633
783
  "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
634
784
  }
635
785
  },
786
+ {
787
+ "name": "disabled",
788
+ "type": {
789
+ "text": "boolean"
790
+ },
791
+ "description": "If true, the user cannot interact with this element.",
792
+ "fieldName": "disabled",
793
+ "inheritedFrom": {
794
+ "name": "DelegateFocusMixin",
795
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
796
+ }
797
+ },
636
798
  {
637
799
  "name": "error-message",
638
800
  "type": {
@@ -681,6 +843,18 @@
681
843
  "package": "@vaadin/component-base/src/i18n-mixin.js"
682
844
  }
683
845
  },
846
+ {
847
+ "name": "invalid",
848
+ "type": {
849
+ "text": "boolean"
850
+ },
851
+ "description": "Set to true when the field is invalid.",
852
+ "fieldName": "invalid",
853
+ "inheritedFrom": {
854
+ "name": "FieldMixin",
855
+ "package": "@vaadin/field-base/src/field-mixin.js"
856
+ }
857
+ },
684
858
  {
685
859
  "name": "item-id-path",
686
860
  "type": {
@@ -741,6 +915,18 @@
741
915
  "description": "True when loading items from the data provider, false otherwise.",
742
916
  "fieldName": "loading"
743
917
  },
918
+ {
919
+ "name": "manual-validation",
920
+ "type": {
921
+ "text": "boolean"
922
+ },
923
+ "description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
924
+ "fieldName": "manualValidation",
925
+ "inheritedFrom": {
926
+ "name": "FieldMixin",
927
+ "package": "@vaadin/field-base/src/field-mixin.js"
928
+ }
929
+ },
744
930
  {
745
931
  "name": "name",
746
932
  "type": {
@@ -809,6 +995,18 @@
809
995
  "description": "Custom function for rendering the content of every item.\nReceives three arguments:\n\n- `root` The `<vaadin-multi-select-combo-box-item>` internal container DOM element.\n- `comboBox` The reference to the `<vaadin-multi-select-combo-box>` element.\n- `model` The object with the properties related with the rendered\n item, contains:\n - `model.index` The index of the rendered item.\n - `model.item` The item.",
810
996
  "fieldName": "renderer"
811
997
  },
998
+ {
999
+ "name": "required",
1000
+ "type": {
1001
+ "text": "boolean"
1002
+ },
1003
+ "description": "Specifies that the user must fill in a value.",
1004
+ "fieldName": "required",
1005
+ "inheritedFrom": {
1006
+ "name": "FieldMixin",
1007
+ "package": "@vaadin/field-base/src/field-mixin.js"
1008
+ }
1009
+ },
812
1010
  {
813
1011
  "name": "selected-items",
814
1012
  "type": {
@@ -848,6 +1046,18 @@
848
1046
  "name": "InputControlMixin",
849
1047
  "package": "@vaadin/field-base/src/input-control-mixin.js"
850
1048
  }
1049
+ },
1050
+ {
1051
+ "name": "value",
1052
+ "type": {
1053
+ "text": "string"
1054
+ },
1055
+ "description": "The value of the field.",
1056
+ "fieldName": "value",
1057
+ "inheritedFrom": {
1058
+ "name": "ClearButtonMixin",
1059
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
1060
+ }
851
1061
  }
852
1062
  ],
853
1063
  "mixins": [
@@ -855,6 +1065,10 @@
855
1065
  "name": "I18nMixin",
856
1066
  "package": "@vaadin/component-base/src/i18n-mixin.js"
857
1067
  },
1068
+ {
1069
+ "name": "ComboBoxFocusIndexMixin",
1070
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-focus-index-mixin.js"
1071
+ },
858
1072
  {
859
1073
  "name": "ComboBoxDataProviderMixin",
860
1074
  "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
@@ -983,6 +1197,20 @@
983
1197
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
984
1198
  }
985
1199
  },
1200
+ {
1201
+ "kind": "field",
1202
+ "name": "autofocus",
1203
+ "privacy": "public",
1204
+ "type": {
1205
+ "text": "boolean"
1206
+ },
1207
+ "description": "Specify that this control should have input focus when the page loads.",
1208
+ "attribute": "autofocus",
1209
+ "inheritedFrom": {
1210
+ "name": "DelegateFocusMixin",
1211
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
1212
+ }
1213
+ },
986
1214
  {
987
1215
  "kind": "field",
988
1216
  "name": "autoOpenDisabled",
@@ -1066,6 +1294,20 @@
1066
1294
  "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
1067
1295
  }
1068
1296
  },
1297
+ {
1298
+ "kind": "field",
1299
+ "name": "collapseChips",
1300
+ "privacy": "public",
1301
+ "type": {
1302
+ "text": "boolean"
1303
+ },
1304
+ "description": "Set to true to collapse all selected items chips into the overflow\nchip when they don't all fit, instead of showing as many as possible.\nHas no effect when `autoExpandVertically` is true.",
1305
+ "attribute": "collapse-chips",
1306
+ "inheritedFrom": {
1307
+ "name": "MultiSelectComboBoxMixin",
1308
+ "module": "src/vaadin-multi-select-combo-box-mixin.js"
1309
+ }
1310
+ },
1069
1311
  {
1070
1312
  "kind": "field",
1071
1313
  "name": "dataProvider",
@@ -1080,6 +1322,20 @@
1080
1322
  "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1081
1323
  }
1082
1324
  },
1325
+ {
1326
+ "kind": "field",
1327
+ "name": "disabled",
1328
+ "privacy": "public",
1329
+ "type": {
1330
+ "text": "boolean"
1331
+ },
1332
+ "description": "If true, the user cannot interact with this element.",
1333
+ "attribute": "disabled",
1334
+ "inheritedFrom": {
1335
+ "name": "DelegateFocusMixin",
1336
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
1337
+ }
1338
+ },
1083
1339
  {
1084
1340
  "kind": "field",
1085
1341
  "name": "errorMessage",
@@ -1150,6 +1406,20 @@
1150
1406
  "package": "@vaadin/component-base/src/i18n-mixin.js"
1151
1407
  }
1152
1408
  },
1409
+ {
1410
+ "kind": "field",
1411
+ "name": "invalid",
1412
+ "privacy": "public",
1413
+ "type": {
1414
+ "text": "boolean"
1415
+ },
1416
+ "description": "Set to true when the field is invalid.",
1417
+ "attribute": "invalid",
1418
+ "inheritedFrom": {
1419
+ "name": "FieldMixin",
1420
+ "package": "@vaadin/field-base/src/field-mixin.js"
1421
+ }
1422
+ },
1153
1423
  {
1154
1424
  "kind": "field",
1155
1425
  "name": "itemClassNameGenerator",
@@ -1276,6 +1546,20 @@
1276
1546
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1277
1547
  }
1278
1548
  },
1549
+ {
1550
+ "kind": "field",
1551
+ "name": "manualValidation",
1552
+ "privacy": "public",
1553
+ "type": {
1554
+ "text": "boolean"
1555
+ },
1556
+ "description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
1557
+ "attribute": "manual-validation",
1558
+ "inheritedFrom": {
1559
+ "name": "FieldMixin",
1560
+ "package": "@vaadin/field-base/src/field-mixin.js"
1561
+ }
1562
+ },
1279
1563
  {
1280
1564
  "kind": "field",
1281
1565
  "name": "name",
@@ -1378,6 +1662,20 @@
1378
1662
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1379
1663
  }
1380
1664
  },
1665
+ {
1666
+ "kind": "field",
1667
+ "name": "required",
1668
+ "privacy": "public",
1669
+ "type": {
1670
+ "text": "boolean"
1671
+ },
1672
+ "description": "Specifies that the user must fill in a value.",
1673
+ "attribute": "required",
1674
+ "inheritedFrom": {
1675
+ "name": "FieldMixin",
1676
+ "package": "@vaadin/field-base/src/field-mixin.js"
1677
+ }
1678
+ },
1381
1679
  {
1382
1680
  "kind": "field",
1383
1681
  "name": "selectedItems",
@@ -1433,6 +1731,20 @@
1433
1731
  "name": "InputControlMixin",
1434
1732
  "package": "@vaadin/field-base/src/input-control-mixin.js"
1435
1733
  }
1734
+ },
1735
+ {
1736
+ "kind": "method",
1737
+ "name": "validate",
1738
+ "description": "Validates the field and sets the `invalid` property based on the result.\n\nThe method fires a `validated` event with the result of the validation.",
1739
+ "return": {
1740
+ "type": {
1741
+ "text": "boolean"
1742
+ }
1743
+ },
1744
+ "inheritedFrom": {
1745
+ "name": "FieldMixin",
1746
+ "package": "@vaadin/field-base/src/field-mixin.js"
1747
+ }
1436
1748
  }
1437
1749
  ],
1438
1750
  "events": [
@@ -1607,6 +1919,18 @@
1607
1919
  "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
1608
1920
  }
1609
1921
  },
1922
+ {
1923
+ "name": "autofocus",
1924
+ "type": {
1925
+ "text": "boolean"
1926
+ },
1927
+ "description": "Specify that this control should have input focus when the page loads.",
1928
+ "fieldName": "autofocus",
1929
+ "inheritedFrom": {
1930
+ "name": "DelegateFocusMixin",
1931
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
1932
+ }
1933
+ },
1610
1934
  {
1611
1935
  "name": "autoselect",
1612
1936
  "type": {
@@ -1631,6 +1955,18 @@
1631
1955
  "package": "@vaadin/field-base/src/clear-button-mixin.js"
1632
1956
  }
1633
1957
  },
1958
+ {
1959
+ "name": "collapse-chips",
1960
+ "type": {
1961
+ "text": "boolean"
1962
+ },
1963
+ "description": "Set to true to collapse all selected items chips into the overflow\nchip when they don't all fit, instead of showing as many as possible.\nHas no effect when `autoExpandVertically` is true.",
1964
+ "fieldName": "collapseChips",
1965
+ "inheritedFrom": {
1966
+ "name": "MultiSelectComboBoxMixin",
1967
+ "module": "src/vaadin-multi-select-combo-box-mixin.js"
1968
+ }
1969
+ },
1634
1970
  {
1635
1971
  "name": "data-provider",
1636
1972
  "type": {
@@ -1643,6 +1979,18 @@
1643
1979
  "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1644
1980
  }
1645
1981
  },
1982
+ {
1983
+ "name": "disabled",
1984
+ "type": {
1985
+ "text": "boolean"
1986
+ },
1987
+ "description": "If true, the user cannot interact with this element.",
1988
+ "fieldName": "disabled",
1989
+ "inheritedFrom": {
1990
+ "name": "DelegateFocusMixin",
1991
+ "package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
1992
+ }
1993
+ },
1646
1994
  {
1647
1995
  "name": "error-message",
1648
1996
  "type": {
@@ -1691,6 +2039,18 @@
1691
2039
  "package": "@vaadin/component-base/src/i18n-mixin.js"
1692
2040
  }
1693
2041
  },
2042
+ {
2043
+ "name": "invalid",
2044
+ "type": {
2045
+ "text": "boolean"
2046
+ },
2047
+ "description": "Set to true when the field is invalid.",
2048
+ "fieldName": "invalid",
2049
+ "inheritedFrom": {
2050
+ "name": "FieldMixin",
2051
+ "package": "@vaadin/field-base/src/field-mixin.js"
2052
+ }
2053
+ },
1694
2054
  {
1695
2055
  "name": "item-id-path",
1696
2056
  "type": {
@@ -1763,6 +2123,18 @@
1763
2123
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1764
2124
  }
1765
2125
  },
2126
+ {
2127
+ "name": "manual-validation",
2128
+ "type": {
2129
+ "text": "boolean"
2130
+ },
2131
+ "description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
2132
+ "fieldName": "manualValidation",
2133
+ "inheritedFrom": {
2134
+ "name": "FieldMixin",
2135
+ "package": "@vaadin/field-base/src/field-mixin.js"
2136
+ }
2137
+ },
1766
2138
  {
1767
2139
  "name": "name",
1768
2140
  "type": {
@@ -1835,6 +2207,18 @@
1835
2207
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1836
2208
  }
1837
2209
  },
2210
+ {
2211
+ "name": "required",
2212
+ "type": {
2213
+ "text": "boolean"
2214
+ },
2215
+ "description": "Specifies that the user must fill in a value.",
2216
+ "fieldName": "required",
2217
+ "inheritedFrom": {
2218
+ "name": "FieldMixin",
2219
+ "package": "@vaadin/field-base/src/field-mixin.js"
2220
+ }
2221
+ },
1838
2222
  {
1839
2223
  "name": "selected-items",
1840
2224
  "type": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/multi-select-combo-box",
3
- "version": "25.2.0-alpha9",
3
+ "version": "25.2.0-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,29 +37,29 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "@open-wc/dedupe-mixin": "^1.3.0",
40
- "@vaadin/a11y-base": "25.2.0-alpha9",
41
- "@vaadin/combo-box": "25.2.0-alpha9",
42
- "@vaadin/component-base": "25.2.0-alpha9",
43
- "@vaadin/field-base": "25.2.0-alpha9",
44
- "@vaadin/input-container": "25.2.0-alpha9",
45
- "@vaadin/item": "25.2.0-alpha9",
46
- "@vaadin/lit-renderer": "25.2.0-alpha9",
47
- "@vaadin/overlay": "25.2.0-alpha9",
48
- "@vaadin/vaadin-themable-mixin": "25.2.0-alpha9",
40
+ "@vaadin/a11y-base": "25.2.0-beta2",
41
+ "@vaadin/combo-box": "25.2.0-beta2",
42
+ "@vaadin/component-base": "25.2.0-beta2",
43
+ "@vaadin/field-base": "25.2.0-beta2",
44
+ "@vaadin/input-container": "25.2.0-beta2",
45
+ "@vaadin/item": "25.2.0-beta2",
46
+ "@vaadin/lit-renderer": "25.2.0-beta2",
47
+ "@vaadin/overlay": "25.2.0-beta2",
48
+ "@vaadin/vaadin-themable-mixin": "25.2.0-beta2",
49
49
  "lit": "^3.0.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@vaadin/aura": "25.2.0-alpha9",
53
- "@vaadin/chai-plugins": "25.2.0-alpha9",
54
- "@vaadin/test-runner-commands": "25.2.0-alpha9",
52
+ "@vaadin/aura": "25.2.0-beta2",
53
+ "@vaadin/chai-plugins": "25.2.0-beta2",
54
+ "@vaadin/test-runner-commands": "25.2.0-beta2",
55
55
  "@vaadin/testing-helpers": "^2.0.0",
56
- "@vaadin/vaadin-lumo-styles": "25.2.0-alpha9",
57
- "sinon": "^21.0.2"
56
+ "@vaadin/vaadin-lumo-styles": "25.2.0-beta2",
57
+ "sinon": "^22.0.0"
58
58
  },
59
59
  "customElements": "custom-elements.json",
60
60
  "web-types": [
61
61
  "web-types.json",
62
62
  "web-types.lit.json"
63
63
  ],
64
- "gitHead": "a38a03e8a8be45821f39c14054c63634dafe08d0"
64
+ "gitHead": "9e18feb8057baf278b72fec4e42657b19e48f499"
65
65
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2018 - 2026 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2026 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import type { ComboBoxDefaultItem, ComboBoxItemMixinClass } from '@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js';
@@ -35,9 +35,6 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
35
35
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
36
36
  *
37
37
  * @customElement vaadin-multi-select-combo-box-item
38
- * @mixes ComboBoxItemMixin
39
- * @mixes ThemableMixin
40
- * @mixes DirMixin
41
38
  * @private
42
39
  */
43
40
  export class MultiSelectComboBoxItem extends ComboBoxItemMixin(