@vaadin/multi-select-combo-box 25.2.0-alpha9 → 25.2.0-beta1
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 +421 -1
- package/package.json +15 -15
- package/src/vaadin-multi-select-combo-box-item.d.ts +1 -1
- package/src/vaadin-multi-select-combo-box-item.js +0 -3
- package/src/vaadin-multi-select-combo-box-mixin.d.ts +10 -0
- package/src/vaadin-multi-select-combo-box-mixin.js +51 -23
- package/src/vaadin-multi-select-combo-box-overlay.js +0 -4
- package/src/vaadin-multi-select-combo-box-scroller.js +0 -1
- package/src/vaadin-multi-select-combo-box.js +0 -3
- package/web-types.json +88 -228
- package/web-types.lit.json +78 -78
package/custom-elements.json
CHANGED
|
@@ -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,38 @@
|
|
|
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
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"kind": "method",
|
|
554
|
+
"name": "scrollToIndex",
|
|
555
|
+
"parameters": [
|
|
556
|
+
{
|
|
557
|
+
"name": "index",
|
|
558
|
+
"description": "Index of the item to scroll to",
|
|
559
|
+
"type": {
|
|
560
|
+
"text": "number"
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
],
|
|
564
|
+
"description": "Scrolls the dropdown to the item at the given index and sets it as the\nfocused (highlighted) item. Safe to call before the dropdown is opened\nor while the data provider is loading: the call is queued and executed\nonce the overlay is open and not loading.\n\nBecause this sets the focused item, closing the dropdown without an\nexplicit selection change (e.g. via outside click or blur) will commit\nthe focused item as `selectedItem`. In the typical use case (scroll to\nthe currently selected item) this is a no-op; callers scrolling to a\ndifferent index should be aware of this behavior.",
|
|
565
|
+
"inheritedFrom": {
|
|
566
|
+
"name": "ComboBoxScrollToIndexMixin",
|
|
567
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-scroll-to-index-mixin.js"
|
|
568
|
+
}
|
|
569
|
+
},
|
|
464
570
|
{
|
|
465
571
|
"kind": "field",
|
|
466
572
|
"name": "selectedItems",
|
|
@@ -508,6 +614,34 @@
|
|
|
508
614
|
"name": "InputControlMixin",
|
|
509
615
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
510
616
|
}
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"kind": "method",
|
|
620
|
+
"name": "validate",
|
|
621
|
+
"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.",
|
|
622
|
+
"return": {
|
|
623
|
+
"type": {
|
|
624
|
+
"text": "boolean"
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
"inheritedFrom": {
|
|
628
|
+
"name": "FieldMixin",
|
|
629
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"kind": "field",
|
|
634
|
+
"name": "value",
|
|
635
|
+
"privacy": "public",
|
|
636
|
+
"type": {
|
|
637
|
+
"text": "string"
|
|
638
|
+
},
|
|
639
|
+
"description": "The value of the field.",
|
|
640
|
+
"attribute": "value",
|
|
641
|
+
"inheritedFrom": {
|
|
642
|
+
"name": "ClearButtonMixin",
|
|
643
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
644
|
+
}
|
|
511
645
|
}
|
|
512
646
|
],
|
|
513
647
|
"events": [
|
|
@@ -515,6 +649,10 @@
|
|
|
515
649
|
"name": "change",
|
|
516
650
|
"type": {
|
|
517
651
|
"text": "CustomEvent"
|
|
652
|
+
},
|
|
653
|
+
"inheritedFrom": {
|
|
654
|
+
"name": "InputConstraintsMixin",
|
|
655
|
+
"package": "@vaadin/field-base/src/input-constraints-mixin.js"
|
|
518
656
|
}
|
|
519
657
|
},
|
|
520
658
|
{
|
|
@@ -522,6 +660,16 @@
|
|
|
522
660
|
"type": {
|
|
523
661
|
"text": "CustomEvent"
|
|
524
662
|
}
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"name": "validated",
|
|
666
|
+
"type": {
|
|
667
|
+
"text": "CustomEvent"
|
|
668
|
+
},
|
|
669
|
+
"inheritedFrom": {
|
|
670
|
+
"name": "FieldMixin",
|
|
671
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
672
|
+
}
|
|
525
673
|
}
|
|
526
674
|
],
|
|
527
675
|
"attributes": [
|
|
@@ -597,6 +745,18 @@
|
|
|
597
745
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
598
746
|
}
|
|
599
747
|
},
|
|
748
|
+
{
|
|
749
|
+
"name": "autofocus",
|
|
750
|
+
"type": {
|
|
751
|
+
"text": "boolean"
|
|
752
|
+
},
|
|
753
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
754
|
+
"fieldName": "autofocus",
|
|
755
|
+
"inheritedFrom": {
|
|
756
|
+
"name": "DelegateFocusMixin",
|
|
757
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
600
760
|
{
|
|
601
761
|
"name": "autoselect",
|
|
602
762
|
"type": {
|
|
@@ -621,6 +781,14 @@
|
|
|
621
781
|
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
622
782
|
}
|
|
623
783
|
},
|
|
784
|
+
{
|
|
785
|
+
"name": "collapse-chips",
|
|
786
|
+
"type": {
|
|
787
|
+
"text": "boolean"
|
|
788
|
+
},
|
|
789
|
+
"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.",
|
|
790
|
+
"fieldName": "collapseChips"
|
|
791
|
+
},
|
|
624
792
|
{
|
|
625
793
|
"name": "data-provider",
|
|
626
794
|
"type": {
|
|
@@ -633,6 +801,18 @@
|
|
|
633
801
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
634
802
|
}
|
|
635
803
|
},
|
|
804
|
+
{
|
|
805
|
+
"name": "disabled",
|
|
806
|
+
"type": {
|
|
807
|
+
"text": "boolean"
|
|
808
|
+
},
|
|
809
|
+
"description": "If true, the user cannot interact with this element.",
|
|
810
|
+
"fieldName": "disabled",
|
|
811
|
+
"inheritedFrom": {
|
|
812
|
+
"name": "DelegateFocusMixin",
|
|
813
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
636
816
|
{
|
|
637
817
|
"name": "error-message",
|
|
638
818
|
"type": {
|
|
@@ -681,6 +861,18 @@
|
|
|
681
861
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
682
862
|
}
|
|
683
863
|
},
|
|
864
|
+
{
|
|
865
|
+
"name": "invalid",
|
|
866
|
+
"type": {
|
|
867
|
+
"text": "boolean"
|
|
868
|
+
},
|
|
869
|
+
"description": "Set to true when the field is invalid.",
|
|
870
|
+
"fieldName": "invalid",
|
|
871
|
+
"inheritedFrom": {
|
|
872
|
+
"name": "FieldMixin",
|
|
873
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
684
876
|
{
|
|
685
877
|
"name": "item-id-path",
|
|
686
878
|
"type": {
|
|
@@ -741,6 +933,18 @@
|
|
|
741
933
|
"description": "True when loading items from the data provider, false otherwise.",
|
|
742
934
|
"fieldName": "loading"
|
|
743
935
|
},
|
|
936
|
+
{
|
|
937
|
+
"name": "manual-validation",
|
|
938
|
+
"type": {
|
|
939
|
+
"text": "boolean"
|
|
940
|
+
},
|
|
941
|
+
"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.",
|
|
942
|
+
"fieldName": "manualValidation",
|
|
943
|
+
"inheritedFrom": {
|
|
944
|
+
"name": "FieldMixin",
|
|
945
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
946
|
+
}
|
|
947
|
+
},
|
|
744
948
|
{
|
|
745
949
|
"name": "name",
|
|
746
950
|
"type": {
|
|
@@ -809,6 +1013,18 @@
|
|
|
809
1013
|
"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
1014
|
"fieldName": "renderer"
|
|
811
1015
|
},
|
|
1016
|
+
{
|
|
1017
|
+
"name": "required",
|
|
1018
|
+
"type": {
|
|
1019
|
+
"text": "boolean"
|
|
1020
|
+
},
|
|
1021
|
+
"description": "Specifies that the user must fill in a value.",
|
|
1022
|
+
"fieldName": "required",
|
|
1023
|
+
"inheritedFrom": {
|
|
1024
|
+
"name": "FieldMixin",
|
|
1025
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
812
1028
|
{
|
|
813
1029
|
"name": "selected-items",
|
|
814
1030
|
"type": {
|
|
@@ -848,6 +1064,18 @@
|
|
|
848
1064
|
"name": "InputControlMixin",
|
|
849
1065
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
850
1066
|
}
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"name": "value",
|
|
1070
|
+
"type": {
|
|
1071
|
+
"text": "string"
|
|
1072
|
+
},
|
|
1073
|
+
"description": "The value of the field.",
|
|
1074
|
+
"fieldName": "value",
|
|
1075
|
+
"inheritedFrom": {
|
|
1076
|
+
"name": "ClearButtonMixin",
|
|
1077
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
1078
|
+
}
|
|
851
1079
|
}
|
|
852
1080
|
],
|
|
853
1081
|
"mixins": [
|
|
@@ -855,6 +1083,10 @@
|
|
|
855
1083
|
"name": "I18nMixin",
|
|
856
1084
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
857
1085
|
},
|
|
1086
|
+
{
|
|
1087
|
+
"name": "ComboBoxScrollToIndexMixin",
|
|
1088
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-scroll-to-index-mixin.js"
|
|
1089
|
+
},
|
|
858
1090
|
{
|
|
859
1091
|
"name": "ComboBoxDataProviderMixin",
|
|
860
1092
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
@@ -983,6 +1215,20 @@
|
|
|
983
1215
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
984
1216
|
}
|
|
985
1217
|
},
|
|
1218
|
+
{
|
|
1219
|
+
"kind": "field",
|
|
1220
|
+
"name": "autofocus",
|
|
1221
|
+
"privacy": "public",
|
|
1222
|
+
"type": {
|
|
1223
|
+
"text": "boolean"
|
|
1224
|
+
},
|
|
1225
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
1226
|
+
"attribute": "autofocus",
|
|
1227
|
+
"inheritedFrom": {
|
|
1228
|
+
"name": "DelegateFocusMixin",
|
|
1229
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
986
1232
|
{
|
|
987
1233
|
"kind": "field",
|
|
988
1234
|
"name": "autoOpenDisabled",
|
|
@@ -1066,6 +1312,20 @@
|
|
|
1066
1312
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1067
1313
|
}
|
|
1068
1314
|
},
|
|
1315
|
+
{
|
|
1316
|
+
"kind": "field",
|
|
1317
|
+
"name": "collapseChips",
|
|
1318
|
+
"privacy": "public",
|
|
1319
|
+
"type": {
|
|
1320
|
+
"text": "boolean"
|
|
1321
|
+
},
|
|
1322
|
+
"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.",
|
|
1323
|
+
"attribute": "collapse-chips",
|
|
1324
|
+
"inheritedFrom": {
|
|
1325
|
+
"name": "MultiSelectComboBoxMixin",
|
|
1326
|
+
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1069
1329
|
{
|
|
1070
1330
|
"kind": "field",
|
|
1071
1331
|
"name": "dataProvider",
|
|
@@ -1080,6 +1340,20 @@
|
|
|
1080
1340
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
1081
1341
|
}
|
|
1082
1342
|
},
|
|
1343
|
+
{
|
|
1344
|
+
"kind": "field",
|
|
1345
|
+
"name": "disabled",
|
|
1346
|
+
"privacy": "public",
|
|
1347
|
+
"type": {
|
|
1348
|
+
"text": "boolean"
|
|
1349
|
+
},
|
|
1350
|
+
"description": "If true, the user cannot interact with this element.",
|
|
1351
|
+
"attribute": "disabled",
|
|
1352
|
+
"inheritedFrom": {
|
|
1353
|
+
"name": "DelegateFocusMixin",
|
|
1354
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1083
1357
|
{
|
|
1084
1358
|
"kind": "field",
|
|
1085
1359
|
"name": "errorMessage",
|
|
@@ -1150,6 +1424,20 @@
|
|
|
1150
1424
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1151
1425
|
}
|
|
1152
1426
|
},
|
|
1427
|
+
{
|
|
1428
|
+
"kind": "field",
|
|
1429
|
+
"name": "invalid",
|
|
1430
|
+
"privacy": "public",
|
|
1431
|
+
"type": {
|
|
1432
|
+
"text": "boolean"
|
|
1433
|
+
},
|
|
1434
|
+
"description": "Set to true when the field is invalid.",
|
|
1435
|
+
"attribute": "invalid",
|
|
1436
|
+
"inheritedFrom": {
|
|
1437
|
+
"name": "FieldMixin",
|
|
1438
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1153
1441
|
{
|
|
1154
1442
|
"kind": "field",
|
|
1155
1443
|
"name": "itemClassNameGenerator",
|
|
@@ -1276,6 +1564,20 @@
|
|
|
1276
1564
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1277
1565
|
}
|
|
1278
1566
|
},
|
|
1567
|
+
{
|
|
1568
|
+
"kind": "field",
|
|
1569
|
+
"name": "manualValidation",
|
|
1570
|
+
"privacy": "public",
|
|
1571
|
+
"type": {
|
|
1572
|
+
"text": "boolean"
|
|
1573
|
+
},
|
|
1574
|
+
"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.",
|
|
1575
|
+
"attribute": "manual-validation",
|
|
1576
|
+
"inheritedFrom": {
|
|
1577
|
+
"name": "FieldMixin",
|
|
1578
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1579
|
+
}
|
|
1580
|
+
},
|
|
1279
1581
|
{
|
|
1280
1582
|
"kind": "field",
|
|
1281
1583
|
"name": "name",
|
|
@@ -1378,6 +1680,38 @@
|
|
|
1378
1680
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1379
1681
|
}
|
|
1380
1682
|
},
|
|
1683
|
+
{
|
|
1684
|
+
"kind": "field",
|
|
1685
|
+
"name": "required",
|
|
1686
|
+
"privacy": "public",
|
|
1687
|
+
"type": {
|
|
1688
|
+
"text": "boolean"
|
|
1689
|
+
},
|
|
1690
|
+
"description": "Specifies that the user must fill in a value.",
|
|
1691
|
+
"attribute": "required",
|
|
1692
|
+
"inheritedFrom": {
|
|
1693
|
+
"name": "FieldMixin",
|
|
1694
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"kind": "method",
|
|
1699
|
+
"name": "scrollToIndex",
|
|
1700
|
+
"parameters": [
|
|
1701
|
+
{
|
|
1702
|
+
"name": "index",
|
|
1703
|
+
"description": "Index of the item to scroll to",
|
|
1704
|
+
"type": {
|
|
1705
|
+
"text": "number"
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
],
|
|
1709
|
+
"description": "Scrolls the dropdown to the item at the given index and sets it as the\nfocused (highlighted) item. Safe to call before the dropdown is opened\nor while the data provider is loading: the call is queued and executed\nonce the overlay is open and not loading.\n\nBecause this sets the focused item, closing the dropdown without an\nexplicit selection change (e.g. via outside click or blur) will commit\nthe focused item as `selectedItem`. In the typical use case (scroll to\nthe currently selected item) this is a no-op; callers scrolling to a\ndifferent index should be aware of this behavior.",
|
|
1710
|
+
"inheritedFrom": {
|
|
1711
|
+
"name": "ComboBoxScrollToIndexMixin",
|
|
1712
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-scroll-to-index-mixin.js"
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1381
1715
|
{
|
|
1382
1716
|
"kind": "field",
|
|
1383
1717
|
"name": "selectedItems",
|
|
@@ -1433,6 +1767,20 @@
|
|
|
1433
1767
|
"name": "InputControlMixin",
|
|
1434
1768
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
1435
1769
|
}
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"kind": "method",
|
|
1773
|
+
"name": "validate",
|
|
1774
|
+
"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.",
|
|
1775
|
+
"return": {
|
|
1776
|
+
"type": {
|
|
1777
|
+
"text": "boolean"
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
"inheritedFrom": {
|
|
1781
|
+
"name": "FieldMixin",
|
|
1782
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1783
|
+
}
|
|
1436
1784
|
}
|
|
1437
1785
|
],
|
|
1438
1786
|
"events": [
|
|
@@ -1607,6 +1955,18 @@
|
|
|
1607
1955
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1608
1956
|
}
|
|
1609
1957
|
},
|
|
1958
|
+
{
|
|
1959
|
+
"name": "autofocus",
|
|
1960
|
+
"type": {
|
|
1961
|
+
"text": "boolean"
|
|
1962
|
+
},
|
|
1963
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
1964
|
+
"fieldName": "autofocus",
|
|
1965
|
+
"inheritedFrom": {
|
|
1966
|
+
"name": "DelegateFocusMixin",
|
|
1967
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1610
1970
|
{
|
|
1611
1971
|
"name": "autoselect",
|
|
1612
1972
|
"type": {
|
|
@@ -1631,6 +1991,18 @@
|
|
|
1631
1991
|
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
1632
1992
|
}
|
|
1633
1993
|
},
|
|
1994
|
+
{
|
|
1995
|
+
"name": "collapse-chips",
|
|
1996
|
+
"type": {
|
|
1997
|
+
"text": "boolean"
|
|
1998
|
+
},
|
|
1999
|
+
"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.",
|
|
2000
|
+
"fieldName": "collapseChips",
|
|
2001
|
+
"inheritedFrom": {
|
|
2002
|
+
"name": "MultiSelectComboBoxMixin",
|
|
2003
|
+
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
1634
2006
|
{
|
|
1635
2007
|
"name": "data-provider",
|
|
1636
2008
|
"type": {
|
|
@@ -1643,6 +2015,18 @@
|
|
|
1643
2015
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
1644
2016
|
}
|
|
1645
2017
|
},
|
|
2018
|
+
{
|
|
2019
|
+
"name": "disabled",
|
|
2020
|
+
"type": {
|
|
2021
|
+
"text": "boolean"
|
|
2022
|
+
},
|
|
2023
|
+
"description": "If true, the user cannot interact with this element.",
|
|
2024
|
+
"fieldName": "disabled",
|
|
2025
|
+
"inheritedFrom": {
|
|
2026
|
+
"name": "DelegateFocusMixin",
|
|
2027
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
1646
2030
|
{
|
|
1647
2031
|
"name": "error-message",
|
|
1648
2032
|
"type": {
|
|
@@ -1691,6 +2075,18 @@
|
|
|
1691
2075
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1692
2076
|
}
|
|
1693
2077
|
},
|
|
2078
|
+
{
|
|
2079
|
+
"name": "invalid",
|
|
2080
|
+
"type": {
|
|
2081
|
+
"text": "boolean"
|
|
2082
|
+
},
|
|
2083
|
+
"description": "Set to true when the field is invalid.",
|
|
2084
|
+
"fieldName": "invalid",
|
|
2085
|
+
"inheritedFrom": {
|
|
2086
|
+
"name": "FieldMixin",
|
|
2087
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
1694
2090
|
{
|
|
1695
2091
|
"name": "item-id-path",
|
|
1696
2092
|
"type": {
|
|
@@ -1763,6 +2159,18 @@
|
|
|
1763
2159
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1764
2160
|
}
|
|
1765
2161
|
},
|
|
2162
|
+
{
|
|
2163
|
+
"name": "manual-validation",
|
|
2164
|
+
"type": {
|
|
2165
|
+
"text": "boolean"
|
|
2166
|
+
},
|
|
2167
|
+
"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.",
|
|
2168
|
+
"fieldName": "manualValidation",
|
|
2169
|
+
"inheritedFrom": {
|
|
2170
|
+
"name": "FieldMixin",
|
|
2171
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
2172
|
+
}
|
|
2173
|
+
},
|
|
1766
2174
|
{
|
|
1767
2175
|
"name": "name",
|
|
1768
2176
|
"type": {
|
|
@@ -1835,6 +2243,18 @@
|
|
|
1835
2243
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1836
2244
|
}
|
|
1837
2245
|
},
|
|
2246
|
+
{
|
|
2247
|
+
"name": "required",
|
|
2248
|
+
"type": {
|
|
2249
|
+
"text": "boolean"
|
|
2250
|
+
},
|
|
2251
|
+
"description": "Specifies that the user must fill in a value.",
|
|
2252
|
+
"fieldName": "required",
|
|
2253
|
+
"inheritedFrom": {
|
|
2254
|
+
"name": "FieldMixin",
|
|
2255
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
1838
2258
|
{
|
|
1839
2259
|
"name": "selected-items",
|
|
1840
2260
|
"type": {
|