@vaadin/multi-select-combo-box 25.2.0-alpha1 → 25.2.0-alpha10
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 +638 -1
- package/package.json +15 -15
- package/src/vaadin-multi-select-combo-box-mixin.d.ts +10 -0
- package/src/vaadin-multi-select-combo-box-mixin.js +48 -14
- 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": [
|
|
@@ -863,6 +1091,10 @@
|
|
|
863
1091
|
"name": "ComboBoxItemsMixin",
|
|
864
1092
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
|
|
865
1093
|
},
|
|
1094
|
+
{
|
|
1095
|
+
"name": "ComboBoxScrollToIndexMixin",
|
|
1096
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-scroll-to-index-mixin.js"
|
|
1097
|
+
},
|
|
866
1098
|
{
|
|
867
1099
|
"name": "InputControlMixin",
|
|
868
1100
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
@@ -899,6 +1131,34 @@
|
|
|
899
1131
|
"description": "`<vaadin-multi-select-combo-box>` is a web component that wraps `<vaadin-combo-box>` and extends\nits functionality to allow selecting multiple items, in addition to basic features.\n\n```html\n<vaadin-multi-select-combo-box id=\"comboBox\"></vaadin-multi-select-combo-box>\n```\n\n```js\nconst comboBox = document.querySelector('#comboBox');\ncomboBox.items = ['apple', 'banana', 'lemon', 'orange'];\ncomboBox.selectedItems = ['lemon', 'orange'];\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n-----------------------|----------------\n`chips` | The element that wraps slotted chips for selected items\n`label` | The label element\n`input-field` | The element that wraps prefix, value and suffix\n`field-button` | Set on both clear and toggle buttons\n`clear-button` | The clear button\n`error-message` | The error message element\n`helper-text` | The helper text element wrapper\n`required-indicator` | The `required` state indicator element\n`toggle-button` | The toggle button\n`overlay` | The overlay container\n`content` | The overlay content\n`loader` | The loading indicator shown while loading items\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n-----------------------|-----------------\n`disabled` | Set to a disabled element\n`has-value` | Set when the element has a value\n`has-label` | Set when the element has a label\n`has-helper` | Set when the element has helper text or slot\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n`invalid` | Set when the element is invalid\n`focused` | Set when the element is focused\n`focus-ring` | Set when the element is keyboard focused\n`loading` | Set when loading items from the data provider\n`opened` | Set when the dropdown is open\n`readonly` | Set to a readonly element\n\nThe following custom CSS properties are available for styling:\n\nCustom property | Description | Default\n-----------------------------------------------------|----------------------------|--------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n`--vaadin-multi-select-combo-box-overlay-width` | Width of the overlay | `auto`\n`--vaadin-multi-select-combo-box-overlay-max-height` | Max height of the overlay | `65vh`\n`--vaadin-multi-select-combo-box-input-min-width` | Min width of the input | `4em`\n\n### Internal components\n\nIn addition to `<vaadin-multi-select-combo-box>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-multi-select-combo-box-chip>`\n- `<vaadin-multi-select-combo-box-item>` - has the same API as `<vaadin-item>`.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
900
1132
|
"name": "MultiSelectComboBox",
|
|
901
1133
|
"members": [
|
|
1134
|
+
{
|
|
1135
|
+
"kind": "field",
|
|
1136
|
+
"name": "accessibleName",
|
|
1137
|
+
"privacy": "public",
|
|
1138
|
+
"type": {
|
|
1139
|
+
"text": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"description": "String used to label the component to screen reader users.",
|
|
1142
|
+
"attribute": "accessible-name",
|
|
1143
|
+
"inheritedFrom": {
|
|
1144
|
+
"name": "FieldMixin",
|
|
1145
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"kind": "field",
|
|
1150
|
+
"name": "accessibleNameRef",
|
|
1151
|
+
"privacy": "public",
|
|
1152
|
+
"type": {
|
|
1153
|
+
"text": "string"
|
|
1154
|
+
},
|
|
1155
|
+
"description": "Id of the element used as label of the component to screen reader users.",
|
|
1156
|
+
"attribute": "accessible-name-ref",
|
|
1157
|
+
"inheritedFrom": {
|
|
1158
|
+
"name": "FieldMixin",
|
|
1159
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
902
1162
|
{
|
|
903
1163
|
"kind": "field",
|
|
904
1164
|
"name": "allowCustomValue",
|
|
@@ -955,6 +1215,34 @@
|
|
|
955
1215
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
956
1216
|
}
|
|
957
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
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"kind": "field",
|
|
1234
|
+
"name": "autoOpenDisabled",
|
|
1235
|
+
"privacy": "public",
|
|
1236
|
+
"type": {
|
|
1237
|
+
"text": "boolean"
|
|
1238
|
+
},
|
|
1239
|
+
"description": "Set true to prevent the overlay from opening automatically.",
|
|
1240
|
+
"attribute": "auto-open-disabled",
|
|
1241
|
+
"inheritedFrom": {
|
|
1242
|
+
"name": "ComboBoxBaseMixin",
|
|
1243
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1244
|
+
}
|
|
1245
|
+
},
|
|
958
1246
|
{
|
|
959
1247
|
"kind": "field",
|
|
960
1248
|
"name": "autoselect",
|
|
@@ -992,6 +1280,20 @@
|
|
|
992
1280
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
993
1281
|
}
|
|
994
1282
|
},
|
|
1283
|
+
{
|
|
1284
|
+
"kind": "field",
|
|
1285
|
+
"name": "clearButtonVisible",
|
|
1286
|
+
"privacy": "public",
|
|
1287
|
+
"type": {
|
|
1288
|
+
"text": "boolean"
|
|
1289
|
+
},
|
|
1290
|
+
"description": "Set to true to display the clear icon which clears the input.\n\nIt is up to the component to choose where to place the clear icon:\nin the Shadow DOM or in the light DOM. In any way, a reference to\nthe clear icon element should be provided via the `clearElement` getter.",
|
|
1291
|
+
"attribute": "clear-button-visible",
|
|
1292
|
+
"inheritedFrom": {
|
|
1293
|
+
"name": "ClearButtonMixin",
|
|
1294
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
1295
|
+
}
|
|
1296
|
+
},
|
|
995
1297
|
{
|
|
996
1298
|
"kind": "method",
|
|
997
1299
|
"name": "clearCache",
|
|
@@ -1001,6 +1303,29 @@
|
|
|
1001
1303
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
1002
1304
|
}
|
|
1003
1305
|
},
|
|
1306
|
+
{
|
|
1307
|
+
"kind": "method",
|
|
1308
|
+
"name": "close",
|
|
1309
|
+
"description": "Closes the dropdown list.",
|
|
1310
|
+
"inheritedFrom": {
|
|
1311
|
+
"name": "ComboBoxBaseMixin",
|
|
1312
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1313
|
+
}
|
|
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
|
+
},
|
|
1004
1329
|
{
|
|
1005
1330
|
"kind": "field",
|
|
1006
1331
|
"name": "dataProvider",
|
|
@@ -1015,6 +1340,34 @@
|
|
|
1015
1340
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
1016
1341
|
}
|
|
1017
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
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"kind": "field",
|
|
1359
|
+
"name": "errorMessage",
|
|
1360
|
+
"privacy": "public",
|
|
1361
|
+
"type": {
|
|
1362
|
+
"text": "string"
|
|
1363
|
+
},
|
|
1364
|
+
"description": "Error to show when the field is invalid.",
|
|
1365
|
+
"attribute": "error-message",
|
|
1366
|
+
"inheritedFrom": {
|
|
1367
|
+
"name": "FieldMixin",
|
|
1368
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1018
1371
|
{
|
|
1019
1372
|
"kind": "field",
|
|
1020
1373
|
"name": "filter",
|
|
@@ -1043,6 +1396,20 @@
|
|
|
1043
1396
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
|
|
1044
1397
|
}
|
|
1045
1398
|
},
|
|
1399
|
+
{
|
|
1400
|
+
"kind": "field",
|
|
1401
|
+
"name": "helperText",
|
|
1402
|
+
"privacy": "public",
|
|
1403
|
+
"type": {
|
|
1404
|
+
"text": "string"
|
|
1405
|
+
},
|
|
1406
|
+
"description": "String used for the helper text.",
|
|
1407
|
+
"attribute": "helper-text",
|
|
1408
|
+
"inheritedFrom": {
|
|
1409
|
+
"name": "FieldMixin",
|
|
1410
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1046
1413
|
{
|
|
1047
1414
|
"kind": "field",
|
|
1048
1415
|
"name": "i18n",
|
|
@@ -1057,6 +1424,20 @@
|
|
|
1057
1424
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1058
1425
|
}
|
|
1059
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
|
+
},
|
|
1060
1441
|
{
|
|
1061
1442
|
"kind": "field",
|
|
1062
1443
|
"name": "itemClassNameGenerator",
|
|
@@ -1155,6 +1536,20 @@
|
|
|
1155
1536
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1156
1537
|
}
|
|
1157
1538
|
},
|
|
1539
|
+
{
|
|
1540
|
+
"kind": "field",
|
|
1541
|
+
"name": "label",
|
|
1542
|
+
"privacy": "public",
|
|
1543
|
+
"type": {
|
|
1544
|
+
"text": "string"
|
|
1545
|
+
},
|
|
1546
|
+
"description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
|
|
1547
|
+
"attribute": "label",
|
|
1548
|
+
"inheritedFrom": {
|
|
1549
|
+
"name": "FieldMixin",
|
|
1550
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1158
1553
|
{
|
|
1159
1554
|
"kind": "field",
|
|
1160
1555
|
"name": "loading",
|
|
@@ -1169,6 +1564,20 @@
|
|
|
1169
1564
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1170
1565
|
}
|
|
1171
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
|
+
},
|
|
1172
1581
|
{
|
|
1173
1582
|
"kind": "field",
|
|
1174
1583
|
"name": "name",
|
|
@@ -1192,6 +1601,20 @@
|
|
|
1192
1601
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1193
1602
|
}
|
|
1194
1603
|
},
|
|
1604
|
+
{
|
|
1605
|
+
"kind": "field",
|
|
1606
|
+
"name": "opened",
|
|
1607
|
+
"privacy": "public",
|
|
1608
|
+
"type": {
|
|
1609
|
+
"text": "boolean"
|
|
1610
|
+
},
|
|
1611
|
+
"description": "True if the dropdown is open, false otherwise.",
|
|
1612
|
+
"attribute": "opened",
|
|
1613
|
+
"inheritedFrom": {
|
|
1614
|
+
"name": "ComboBoxBaseMixin",
|
|
1615
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1616
|
+
}
|
|
1617
|
+
},
|
|
1195
1618
|
{
|
|
1196
1619
|
"kind": "field",
|
|
1197
1620
|
"name": "pageSize",
|
|
@@ -1257,6 +1680,38 @@
|
|
|
1257
1680
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1258
1681
|
}
|
|
1259
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
|
+
},
|
|
1260
1715
|
{
|
|
1261
1716
|
"kind": "field",
|
|
1262
1717
|
"name": "selectedItems",
|
|
@@ -1312,6 +1767,20 @@
|
|
|
1312
1767
|
"name": "InputControlMixin",
|
|
1313
1768
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
1314
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
|
+
}
|
|
1315
1784
|
}
|
|
1316
1785
|
],
|
|
1317
1786
|
"events": [
|
|
@@ -1402,6 +1871,30 @@
|
|
|
1402
1871
|
"tagName": "vaadin-multi-select-combo-box",
|
|
1403
1872
|
"customElement": true,
|
|
1404
1873
|
"attributes": [
|
|
1874
|
+
{
|
|
1875
|
+
"name": "accessible-name",
|
|
1876
|
+
"type": {
|
|
1877
|
+
"text": "string"
|
|
1878
|
+
},
|
|
1879
|
+
"description": "String used to label the component to screen reader users.",
|
|
1880
|
+
"fieldName": "accessibleName",
|
|
1881
|
+
"inheritedFrom": {
|
|
1882
|
+
"name": "FieldMixin",
|
|
1883
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"name": "accessible-name-ref",
|
|
1888
|
+
"type": {
|
|
1889
|
+
"text": "string"
|
|
1890
|
+
},
|
|
1891
|
+
"description": "Id of the element used as label of the component to screen reader users.",
|
|
1892
|
+
"fieldName": "accessibleNameRef",
|
|
1893
|
+
"inheritedFrom": {
|
|
1894
|
+
"name": "FieldMixin",
|
|
1895
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1405
1898
|
{
|
|
1406
1899
|
"name": "allow-custom-value",
|
|
1407
1900
|
"type": {
|
|
@@ -1450,6 +1943,30 @@
|
|
|
1450
1943
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1451
1944
|
}
|
|
1452
1945
|
},
|
|
1946
|
+
{
|
|
1947
|
+
"name": "auto-open-disabled",
|
|
1948
|
+
"type": {
|
|
1949
|
+
"text": "boolean"
|
|
1950
|
+
},
|
|
1951
|
+
"description": "Set true to prevent the overlay from opening automatically.",
|
|
1952
|
+
"fieldName": "autoOpenDisabled",
|
|
1953
|
+
"inheritedFrom": {
|
|
1954
|
+
"name": "ComboBoxBaseMixin",
|
|
1955
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1956
|
+
}
|
|
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
|
+
},
|
|
1453
1970
|
{
|
|
1454
1971
|
"name": "autoselect",
|
|
1455
1972
|
"type": {
|
|
@@ -1462,6 +1979,30 @@
|
|
|
1462
1979
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
1463
1980
|
}
|
|
1464
1981
|
},
|
|
1982
|
+
{
|
|
1983
|
+
"name": "clear-button-visible",
|
|
1984
|
+
"type": {
|
|
1985
|
+
"text": "boolean"
|
|
1986
|
+
},
|
|
1987
|
+
"description": "Set to true to display the clear icon which clears the input.\n\nIt is up to the component to choose where to place the clear icon:\nin the Shadow DOM or in the light DOM. In any way, a reference to\nthe clear icon element should be provided via the `clearElement` getter.",
|
|
1988
|
+
"fieldName": "clearButtonVisible",
|
|
1989
|
+
"inheritedFrom": {
|
|
1990
|
+
"name": "ClearButtonMixin",
|
|
1991
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
1992
|
+
}
|
|
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
|
+
},
|
|
1465
2006
|
{
|
|
1466
2007
|
"name": "data-provider",
|
|
1467
2008
|
"type": {
|
|
@@ -1474,6 +2015,30 @@
|
|
|
1474
2015
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
|
|
1475
2016
|
}
|
|
1476
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
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"name": "error-message",
|
|
2032
|
+
"type": {
|
|
2033
|
+
"text": "string"
|
|
2034
|
+
},
|
|
2035
|
+
"description": "Error to show when the field is invalid.",
|
|
2036
|
+
"fieldName": "errorMessage",
|
|
2037
|
+
"inheritedFrom": {
|
|
2038
|
+
"name": "FieldMixin",
|
|
2039
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
2040
|
+
}
|
|
2041
|
+
},
|
|
1477
2042
|
{
|
|
1478
2043
|
"name": "filter",
|
|
1479
2044
|
"type": {
|
|
@@ -1486,6 +2051,18 @@
|
|
|
1486
2051
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
|
|
1487
2052
|
}
|
|
1488
2053
|
},
|
|
2054
|
+
{
|
|
2055
|
+
"name": "helper-text",
|
|
2056
|
+
"type": {
|
|
2057
|
+
"text": "string"
|
|
2058
|
+
},
|
|
2059
|
+
"description": "String used for the helper text.",
|
|
2060
|
+
"fieldName": "helperText",
|
|
2061
|
+
"inheritedFrom": {
|
|
2062
|
+
"name": "FieldMixin",
|
|
2063
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
1489
2066
|
{
|
|
1490
2067
|
"name": "i18n",
|
|
1491
2068
|
"type": {
|
|
@@ -1498,6 +2075,18 @@
|
|
|
1498
2075
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1499
2076
|
}
|
|
1500
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
|
+
},
|
|
1501
2090
|
{
|
|
1502
2091
|
"name": "item-id-path",
|
|
1503
2092
|
"type": {
|
|
@@ -1546,6 +2135,18 @@
|
|
|
1546
2135
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1547
2136
|
}
|
|
1548
2137
|
},
|
|
2138
|
+
{
|
|
2139
|
+
"name": "label",
|
|
2140
|
+
"type": {
|
|
2141
|
+
"text": "string"
|
|
2142
|
+
},
|
|
2143
|
+
"description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
|
|
2144
|
+
"fieldName": "label",
|
|
2145
|
+
"inheritedFrom": {
|
|
2146
|
+
"name": "FieldMixin",
|
|
2147
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
1549
2150
|
{
|
|
1550
2151
|
"name": "loading",
|
|
1551
2152
|
"type": {
|
|
@@ -1558,6 +2159,18 @@
|
|
|
1558
2159
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1559
2160
|
}
|
|
1560
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
|
+
},
|
|
1561
2174
|
{
|
|
1562
2175
|
"name": "name",
|
|
1563
2176
|
"type": {
|
|
@@ -1570,6 +2183,18 @@
|
|
|
1570
2183
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
1571
2184
|
}
|
|
1572
2185
|
},
|
|
2186
|
+
{
|
|
2187
|
+
"name": "opened",
|
|
2188
|
+
"type": {
|
|
2189
|
+
"text": "boolean"
|
|
2190
|
+
},
|
|
2191
|
+
"description": "True if the dropdown is open, false otherwise.",
|
|
2192
|
+
"fieldName": "opened",
|
|
2193
|
+
"inheritedFrom": {
|
|
2194
|
+
"name": "ComboBoxBaseMixin",
|
|
2195
|
+
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
2196
|
+
}
|
|
2197
|
+
},
|
|
1573
2198
|
{
|
|
1574
2199
|
"name": "page-size",
|
|
1575
2200
|
"type": {
|
|
@@ -1618,6 +2243,18 @@
|
|
|
1618
2243
|
"module": "src/vaadin-multi-select-combo-box-mixin.js"
|
|
1619
2244
|
}
|
|
1620
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
|
+
},
|
|
1621
2258
|
{
|
|
1622
2259
|
"name": "selected-items",
|
|
1623
2260
|
"type": {
|