@vaadin/multi-select-combo-box 25.1.2 → 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/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.
|
|
4
|
+
"version": "25.2.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -15,9 +15,7 @@
|
|
|
15
15
|
"description": "String used to label the component to screen reader users.",
|
|
16
16
|
"value": {
|
|
17
17
|
"type": [
|
|
18
|
-
"string"
|
|
19
|
-
"null",
|
|
20
|
-
"undefined"
|
|
18
|
+
"string"
|
|
21
19
|
]
|
|
22
20
|
}
|
|
23
21
|
},
|
|
@@ -26,9 +24,7 @@
|
|
|
26
24
|
"description": "Id of the element used as label of the component to screen reader users.",
|
|
27
25
|
"value": {
|
|
28
26
|
"type": [
|
|
29
|
-
"string"
|
|
30
|
-
"null",
|
|
31
|
-
"undefined"
|
|
27
|
+
"string"
|
|
32
28
|
]
|
|
33
29
|
}
|
|
34
30
|
},
|
|
@@ -37,9 +33,7 @@
|
|
|
37
33
|
"description": "When true, the user can input a value that is not present in the items list.",
|
|
38
34
|
"value": {
|
|
39
35
|
"type": [
|
|
40
|
-
"boolean"
|
|
41
|
-
"null",
|
|
42
|
-
"undefined"
|
|
36
|
+
"boolean"
|
|
43
37
|
]
|
|
44
38
|
}
|
|
45
39
|
},
|
|
@@ -48,9 +42,7 @@
|
|
|
48
42
|
"description": "A pattern matched against individual characters the user inputs.\n\nWhen set, the field will prevent:\n- `keydown` events if the entered key doesn't match `/^allowedCharPattern$/`\n- `paste` events if the pasted text doesn't match `/^allowedCharPattern*$/`\n- `drop` events if the dropped text doesn't match `/^allowedCharPattern*$/`\n\nFor example, to allow entering only numbers and minus signs, use:\n`allowedCharPattern = \"[\\\\d-]\"`",
|
|
49
43
|
"value": {
|
|
50
44
|
"type": [
|
|
51
|
-
"string"
|
|
52
|
-
"null",
|
|
53
|
-
"undefined"
|
|
45
|
+
"string"
|
|
54
46
|
]
|
|
55
47
|
}
|
|
56
48
|
},
|
|
@@ -59,9 +51,7 @@
|
|
|
59
51
|
"description": "Set to true to auto expand horizontally, causing input field to\ngrow until max width is reached.",
|
|
60
52
|
"value": {
|
|
61
53
|
"type": [
|
|
62
|
-
"boolean"
|
|
63
|
-
"null",
|
|
64
|
-
"undefined"
|
|
54
|
+
"boolean"
|
|
65
55
|
]
|
|
66
56
|
}
|
|
67
57
|
},
|
|
@@ -70,9 +60,7 @@
|
|
|
70
60
|
"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.",
|
|
71
61
|
"value": {
|
|
72
62
|
"type": [
|
|
73
|
-
"boolean"
|
|
74
|
-
"null",
|
|
75
|
-
"undefined"
|
|
63
|
+
"boolean"
|
|
76
64
|
]
|
|
77
65
|
}
|
|
78
66
|
},
|
|
@@ -81,9 +69,7 @@
|
|
|
81
69
|
"description": "Set true to prevent the overlay from opening automatically.",
|
|
82
70
|
"value": {
|
|
83
71
|
"type": [
|
|
84
|
-
"boolean"
|
|
85
|
-
"null",
|
|
86
|
-
"undefined"
|
|
72
|
+
"boolean"
|
|
87
73
|
]
|
|
88
74
|
}
|
|
89
75
|
},
|
|
@@ -92,9 +78,7 @@
|
|
|
92
78
|
"description": "Specify that this control should have input focus when the page loads.",
|
|
93
79
|
"value": {
|
|
94
80
|
"type": [
|
|
95
|
-
"boolean"
|
|
96
|
-
"null",
|
|
97
|
-
"undefined"
|
|
81
|
+
"boolean"
|
|
98
82
|
]
|
|
99
83
|
}
|
|
100
84
|
},
|
|
@@ -103,9 +87,7 @@
|
|
|
103
87
|
"description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
|
|
104
88
|
"value": {
|
|
105
89
|
"type": [
|
|
106
|
-
"boolean"
|
|
107
|
-
"null",
|
|
108
|
-
"undefined"
|
|
90
|
+
"boolean"
|
|
109
91
|
]
|
|
110
92
|
}
|
|
111
93
|
},
|
|
@@ -114,9 +96,16 @@
|
|
|
114
96
|
"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.",
|
|
115
97
|
"value": {
|
|
116
98
|
"type": [
|
|
117
|
-
"boolean"
|
|
118
|
-
|
|
119
|
-
|
|
99
|
+
"boolean"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "collapse-chips",
|
|
105
|
+
"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.",
|
|
106
|
+
"value": {
|
|
107
|
+
"type": [
|
|
108
|
+
"boolean"
|
|
120
109
|
]
|
|
121
110
|
}
|
|
122
111
|
},
|
|
@@ -125,9 +114,7 @@
|
|
|
125
114
|
"description": "If true, the user cannot interact with this element.",
|
|
126
115
|
"value": {
|
|
127
116
|
"type": [
|
|
128
|
-
"boolean"
|
|
129
|
-
"null",
|
|
130
|
-
"undefined"
|
|
117
|
+
"boolean"
|
|
131
118
|
]
|
|
132
119
|
}
|
|
133
120
|
},
|
|
@@ -136,9 +123,7 @@
|
|
|
136
123
|
"description": "Error to show when the field is invalid.",
|
|
137
124
|
"value": {
|
|
138
125
|
"type": [
|
|
139
|
-
"string"
|
|
140
|
-
"null",
|
|
141
|
-
"undefined"
|
|
126
|
+
"string"
|
|
142
127
|
]
|
|
143
128
|
}
|
|
144
129
|
},
|
|
@@ -147,9 +132,7 @@
|
|
|
147
132
|
"description": "Filtering string the user has typed into the input field.",
|
|
148
133
|
"value": {
|
|
149
134
|
"type": [
|
|
150
|
-
"string"
|
|
151
|
-
"null",
|
|
152
|
-
"undefined"
|
|
135
|
+
"string"
|
|
153
136
|
]
|
|
154
137
|
}
|
|
155
138
|
},
|
|
@@ -158,20 +141,7 @@
|
|
|
158
141
|
"description": "String used for the helper text.",
|
|
159
142
|
"value": {
|
|
160
143
|
"type": [
|
|
161
|
-
"string"
|
|
162
|
-
"null",
|
|
163
|
-
"undefined"
|
|
164
|
-
]
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"name": "i18n",
|
|
169
|
-
"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\nShould be overridden by subclasses to provide a custom JSDoc with the\ndefault I18N properties.",
|
|
170
|
-
"value": {
|
|
171
|
-
"type": [
|
|
172
|
-
"Object",
|
|
173
|
-
"null",
|
|
174
|
-
"undefined"
|
|
144
|
+
"string"
|
|
175
145
|
]
|
|
176
146
|
}
|
|
177
147
|
},
|
|
@@ -180,9 +150,7 @@
|
|
|
180
150
|
"description": "Set to true when the field is invalid.",
|
|
181
151
|
"value": {
|
|
182
152
|
"type": [
|
|
183
|
-
"boolean"
|
|
184
|
-
"null",
|
|
185
|
-
"undefined"
|
|
153
|
+
"boolean"
|
|
186
154
|
]
|
|
187
155
|
}
|
|
188
156
|
},
|
|
@@ -191,9 +159,7 @@
|
|
|
191
159
|
"description": "Path for the id of the item, used to detect whether the item is selected.",
|
|
192
160
|
"value": {
|
|
193
161
|
"type": [
|
|
194
|
-
"string"
|
|
195
|
-
"null",
|
|
196
|
-
"undefined"
|
|
162
|
+
"string"
|
|
197
163
|
]
|
|
198
164
|
}
|
|
199
165
|
},
|
|
@@ -202,9 +168,7 @@
|
|
|
202
168
|
"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.",
|
|
203
169
|
"value": {
|
|
204
170
|
"type": [
|
|
205
|
-
"string"
|
|
206
|
-
"null",
|
|
207
|
-
"undefined"
|
|
171
|
+
"string"
|
|
208
172
|
]
|
|
209
173
|
}
|
|
210
174
|
},
|
|
@@ -213,9 +177,7 @@
|
|
|
213
177
|
"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.",
|
|
214
178
|
"value": {
|
|
215
179
|
"type": [
|
|
216
|
-
"string"
|
|
217
|
-
"null",
|
|
218
|
-
"undefined"
|
|
180
|
+
"string"
|
|
219
181
|
]
|
|
220
182
|
}
|
|
221
183
|
},
|
|
@@ -224,9 +186,7 @@
|
|
|
224
186
|
"description": "When true, filter string isn't cleared after selecting an item.",
|
|
225
187
|
"value": {
|
|
226
188
|
"type": [
|
|
227
|
-
"boolean"
|
|
228
|
-
"null",
|
|
229
|
-
"undefined"
|
|
189
|
+
"boolean"
|
|
230
190
|
]
|
|
231
191
|
}
|
|
232
192
|
},
|
|
@@ -235,9 +195,7 @@
|
|
|
235
195
|
"description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
|
|
236
196
|
"value": {
|
|
237
197
|
"type": [
|
|
238
|
-
"string"
|
|
239
|
-
"null",
|
|
240
|
-
"undefined"
|
|
198
|
+
"string"
|
|
241
199
|
]
|
|
242
200
|
}
|
|
243
201
|
},
|
|
@@ -246,9 +204,7 @@
|
|
|
246
204
|
"description": "True when loading items from the data provider, false otherwise.",
|
|
247
205
|
"value": {
|
|
248
206
|
"type": [
|
|
249
|
-
"boolean"
|
|
250
|
-
"null",
|
|
251
|
-
"undefined"
|
|
207
|
+
"boolean"
|
|
252
208
|
]
|
|
253
209
|
}
|
|
254
210
|
},
|
|
@@ -257,9 +213,7 @@
|
|
|
257
213
|
"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.",
|
|
258
214
|
"value": {
|
|
259
215
|
"type": [
|
|
260
|
-
"boolean"
|
|
261
|
-
"null",
|
|
262
|
-
"undefined"
|
|
216
|
+
"boolean"
|
|
263
217
|
]
|
|
264
218
|
}
|
|
265
219
|
},
|
|
@@ -268,9 +222,7 @@
|
|
|
268
222
|
"description": "The name of this field.",
|
|
269
223
|
"value": {
|
|
270
224
|
"type": [
|
|
271
|
-
"string"
|
|
272
|
-
"null",
|
|
273
|
-
"undefined"
|
|
225
|
+
"string"
|
|
274
226
|
]
|
|
275
227
|
}
|
|
276
228
|
},
|
|
@@ -279,9 +231,7 @@
|
|
|
279
231
|
"description": "True if the dropdown is open, false otherwise.",
|
|
280
232
|
"value": {
|
|
281
233
|
"type": [
|
|
282
|
-
"boolean"
|
|
283
|
-
"null",
|
|
284
|
-
"undefined"
|
|
234
|
+
"boolean"
|
|
285
235
|
]
|
|
286
236
|
}
|
|
287
237
|
},
|
|
@@ -290,9 +240,7 @@
|
|
|
290
240
|
"description": "Number of items fetched at a time from the dataprovider.",
|
|
291
241
|
"value": {
|
|
292
242
|
"type": [
|
|
293
|
-
"number"
|
|
294
|
-
"null",
|
|
295
|
-
"undefined"
|
|
243
|
+
"number"
|
|
296
244
|
]
|
|
297
245
|
}
|
|
298
246
|
},
|
|
@@ -301,9 +249,7 @@
|
|
|
301
249
|
"description": "A hint to the user of what can be entered in the control.\nThe placeholder will be only displayed in the case when\nthere is no item selected.",
|
|
302
250
|
"value": {
|
|
303
251
|
"type": [
|
|
304
|
-
"string"
|
|
305
|
-
"null",
|
|
306
|
-
"undefined"
|
|
252
|
+
"string"
|
|
307
253
|
]
|
|
308
254
|
}
|
|
309
255
|
},
|
|
@@ -312,9 +258,7 @@
|
|
|
312
258
|
"description": "When present, it specifies that the field is read-only.",
|
|
313
259
|
"value": {
|
|
314
260
|
"type": [
|
|
315
|
-
"boolean"
|
|
316
|
-
"null",
|
|
317
|
-
"undefined"
|
|
261
|
+
"boolean"
|
|
318
262
|
]
|
|
319
263
|
}
|
|
320
264
|
},
|
|
@@ -323,9 +267,7 @@
|
|
|
323
267
|
"description": "Specifies that the user must fill in a value.",
|
|
324
268
|
"value": {
|
|
325
269
|
"type": [
|
|
326
|
-
"boolean"
|
|
327
|
-
"null",
|
|
328
|
-
"undefined"
|
|
270
|
+
"boolean"
|
|
329
271
|
]
|
|
330
272
|
}
|
|
331
273
|
},
|
|
@@ -334,9 +276,7 @@
|
|
|
334
276
|
"description": "Set to true to group selected items at the top of the overlay.",
|
|
335
277
|
"value": {
|
|
336
278
|
"type": [
|
|
337
|
-
"boolean"
|
|
338
|
-
"null",
|
|
339
|
-
"undefined"
|
|
279
|
+
"boolean"
|
|
340
280
|
]
|
|
341
281
|
}
|
|
342
282
|
},
|
|
@@ -345,9 +285,7 @@
|
|
|
345
285
|
"description": "Total number of items.",
|
|
346
286
|
"value": {
|
|
347
287
|
"type": [
|
|
348
|
-
"number"
|
|
349
|
-
"null",
|
|
350
|
-
"undefined"
|
|
288
|
+
"number"
|
|
351
289
|
]
|
|
352
290
|
}
|
|
353
291
|
},
|
|
@@ -367,20 +305,7 @@
|
|
|
367
305
|
"description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
|
|
368
306
|
"value": {
|
|
369
307
|
"type": [
|
|
370
|
-
"string"
|
|
371
|
-
"null",
|
|
372
|
-
"undefined"
|
|
373
|
-
]
|
|
374
|
-
}
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
"name": "value",
|
|
378
|
-
"description": "The value of the field.",
|
|
379
|
-
"value": {
|
|
380
|
-
"type": [
|
|
381
|
-
"string",
|
|
382
|
-
"null",
|
|
383
|
-
"undefined"
|
|
308
|
+
"string"
|
|
384
309
|
]
|
|
385
310
|
}
|
|
386
311
|
}
|
|
@@ -392,9 +317,7 @@
|
|
|
392
317
|
"description": "String used to label the component to screen reader users.",
|
|
393
318
|
"value": {
|
|
394
319
|
"type": [
|
|
395
|
-
"string"
|
|
396
|
-
"null",
|
|
397
|
-
"undefined"
|
|
320
|
+
"string"
|
|
398
321
|
]
|
|
399
322
|
}
|
|
400
323
|
},
|
|
@@ -403,9 +326,7 @@
|
|
|
403
326
|
"description": "Id of the element used as label of the component to screen reader users.",
|
|
404
327
|
"value": {
|
|
405
328
|
"type": [
|
|
406
|
-
"string"
|
|
407
|
-
"null",
|
|
408
|
-
"undefined"
|
|
329
|
+
"string"
|
|
409
330
|
]
|
|
410
331
|
}
|
|
411
332
|
},
|
|
@@ -414,9 +335,7 @@
|
|
|
414
335
|
"description": "When true, the user can input a value that is not present in the items list.",
|
|
415
336
|
"value": {
|
|
416
337
|
"type": [
|
|
417
|
-
"boolean"
|
|
418
|
-
"null",
|
|
419
|
-
"undefined"
|
|
338
|
+
"boolean"
|
|
420
339
|
]
|
|
421
340
|
}
|
|
422
341
|
},
|
|
@@ -425,9 +344,7 @@
|
|
|
425
344
|
"description": "A pattern matched against individual characters the user inputs.\n\nWhen set, the field will prevent:\n- `keydown` events if the entered key doesn't match `/^allowedCharPattern$/`\n- `paste` events if the pasted text doesn't match `/^allowedCharPattern*$/`\n- `drop` events if the dropped text doesn't match `/^allowedCharPattern*$/`\n\nFor example, to allow entering only numbers and minus signs, use:\n`allowedCharPattern = \"[\\\\d-]\"`",
|
|
426
345
|
"value": {
|
|
427
346
|
"type": [
|
|
428
|
-
"string"
|
|
429
|
-
"null",
|
|
430
|
-
"undefined"
|
|
347
|
+
"string"
|
|
431
348
|
]
|
|
432
349
|
}
|
|
433
350
|
},
|
|
@@ -436,9 +353,7 @@
|
|
|
436
353
|
"description": "Set to true to auto expand horizontally, causing input field to\ngrow until max width is reached.",
|
|
437
354
|
"value": {
|
|
438
355
|
"type": [
|
|
439
|
-
"boolean"
|
|
440
|
-
"null",
|
|
441
|
-
"undefined"
|
|
356
|
+
"boolean"
|
|
442
357
|
]
|
|
443
358
|
}
|
|
444
359
|
},
|
|
@@ -447,9 +362,7 @@
|
|
|
447
362
|
"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.",
|
|
448
363
|
"value": {
|
|
449
364
|
"type": [
|
|
450
|
-
"boolean"
|
|
451
|
-
"null",
|
|
452
|
-
"undefined"
|
|
365
|
+
"boolean"
|
|
453
366
|
]
|
|
454
367
|
}
|
|
455
368
|
},
|
|
@@ -458,9 +371,7 @@
|
|
|
458
371
|
"description": "Specify that this control should have input focus when the page loads.",
|
|
459
372
|
"value": {
|
|
460
373
|
"type": [
|
|
461
|
-
"boolean"
|
|
462
|
-
"null",
|
|
463
|
-
"undefined"
|
|
374
|
+
"boolean"
|
|
464
375
|
]
|
|
465
376
|
}
|
|
466
377
|
},
|
|
@@ -469,9 +380,7 @@
|
|
|
469
380
|
"description": "Set true to prevent the overlay from opening automatically.",
|
|
470
381
|
"value": {
|
|
471
382
|
"type": [
|
|
472
|
-
"boolean"
|
|
473
|
-
"null",
|
|
474
|
-
"undefined"
|
|
383
|
+
"boolean"
|
|
475
384
|
]
|
|
476
385
|
}
|
|
477
386
|
},
|
|
@@ -480,9 +389,7 @@
|
|
|
480
389
|
"description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
|
|
481
390
|
"value": {
|
|
482
391
|
"type": [
|
|
483
|
-
"boolean"
|
|
484
|
-
"null",
|
|
485
|
-
"undefined"
|
|
392
|
+
"boolean"
|
|
486
393
|
]
|
|
487
394
|
}
|
|
488
395
|
},
|
|
@@ -491,9 +398,16 @@
|
|
|
491
398
|
"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.",
|
|
492
399
|
"value": {
|
|
493
400
|
"type": [
|
|
494
|
-
"boolean"
|
|
495
|
-
|
|
496
|
-
|
|
401
|
+
"boolean"
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "collapseChips",
|
|
407
|
+
"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.",
|
|
408
|
+
"value": {
|
|
409
|
+
"type": [
|
|
410
|
+
"boolean"
|
|
497
411
|
]
|
|
498
412
|
}
|
|
499
413
|
},
|
|
@@ -512,9 +426,7 @@
|
|
|
512
426
|
"description": "If true, the user cannot interact with this element.",
|
|
513
427
|
"value": {
|
|
514
428
|
"type": [
|
|
515
|
-
"boolean"
|
|
516
|
-
"null",
|
|
517
|
-
"undefined"
|
|
429
|
+
"boolean"
|
|
518
430
|
]
|
|
519
431
|
}
|
|
520
432
|
},
|
|
@@ -523,9 +435,7 @@
|
|
|
523
435
|
"description": "Error to show when the field is invalid.",
|
|
524
436
|
"value": {
|
|
525
437
|
"type": [
|
|
526
|
-
"string"
|
|
527
|
-
"null",
|
|
528
|
-
"undefined"
|
|
438
|
+
"string"
|
|
529
439
|
]
|
|
530
440
|
}
|
|
531
441
|
},
|
|
@@ -534,9 +444,7 @@
|
|
|
534
444
|
"description": "Filtering string the user has typed into the input field.",
|
|
535
445
|
"value": {
|
|
536
446
|
"type": [
|
|
537
|
-
"string"
|
|
538
|
-
"null",
|
|
539
|
-
"undefined"
|
|
447
|
+
"string"
|
|
540
448
|
]
|
|
541
449
|
}
|
|
542
450
|
},
|
|
@@ -545,7 +453,7 @@
|
|
|
545
453
|
"description": "A subset of items, filtered based on the user input. Filtered items\ncan be assigned directly to omit the internal filtering functionality.\nThe items can be of either `String` or `Object` type.",
|
|
546
454
|
"value": {
|
|
547
455
|
"type": [
|
|
548
|
-
"Array
|
|
456
|
+
"Array<ComboBoxItem",
|
|
549
457
|
"string>",
|
|
550
458
|
"undefined"
|
|
551
459
|
]
|
|
@@ -556,9 +464,7 @@
|
|
|
556
464
|
"description": "String used for the helper text.",
|
|
557
465
|
"value": {
|
|
558
466
|
"type": [
|
|
559
|
-
"string"
|
|
560
|
-
"null",
|
|
561
|
-
"undefined"
|
|
467
|
+
"string"
|
|
562
468
|
]
|
|
563
469
|
}
|
|
564
470
|
},
|
|
@@ -567,7 +473,7 @@
|
|
|
567
473
|
"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```",
|
|
568
474
|
"value": {
|
|
569
475
|
"type": [
|
|
570
|
-
"
|
|
476
|
+
"Object"
|
|
571
477
|
]
|
|
572
478
|
}
|
|
573
479
|
},
|
|
@@ -576,9 +482,7 @@
|
|
|
576
482
|
"description": "Set to true when the field is invalid.",
|
|
577
483
|
"value": {
|
|
578
484
|
"type": [
|
|
579
|
-
"boolean"
|
|
580
|
-
"null",
|
|
581
|
-
"undefined"
|
|
485
|
+
"boolean"
|
|
582
486
|
]
|
|
583
487
|
}
|
|
584
488
|
},
|
|
@@ -587,9 +491,7 @@
|
|
|
587
491
|
"description": "A function used to generate CSS class names for dropdown\nitems and selected chips based on the item. The return\nvalue should be the generated class name as a string, or\nmultiple class names separated by whitespace characters.",
|
|
588
492
|
"value": {
|
|
589
493
|
"type": [
|
|
590
|
-
"
|
|
591
|
-
"null",
|
|
592
|
-
"undefined"
|
|
494
|
+
"object"
|
|
593
495
|
]
|
|
594
496
|
}
|
|
595
497
|
},
|
|
@@ -598,9 +500,7 @@
|
|
|
598
500
|
"description": "Path for the id of the item, used to detect whether the item is selected.",
|
|
599
501
|
"value": {
|
|
600
502
|
"type": [
|
|
601
|
-
"string"
|
|
602
|
-
"null",
|
|
603
|
-
"undefined"
|
|
503
|
+
"string"
|
|
604
504
|
]
|
|
605
505
|
}
|
|
606
506
|
},
|
|
@@ -609,9 +509,7 @@
|
|
|
609
509
|
"description": "A function that is used to generate the label for dropdown\nitems based on the item. Receives one argument:\n- `item` The item to generate the label for.",
|
|
610
510
|
"value": {
|
|
611
511
|
"type": [
|
|
612
|
-
"
|
|
613
|
-
"null",
|
|
614
|
-
"undefined"
|
|
512
|
+
"object"
|
|
615
513
|
]
|
|
616
514
|
}
|
|
617
515
|
},
|
|
@@ -620,9 +518,7 @@
|
|
|
620
518
|
"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.",
|
|
621
519
|
"value": {
|
|
622
520
|
"type": [
|
|
623
|
-
"string"
|
|
624
|
-
"null",
|
|
625
|
-
"undefined"
|
|
521
|
+
"string"
|
|
626
522
|
]
|
|
627
523
|
}
|
|
628
524
|
},
|
|
@@ -631,7 +527,7 @@
|
|
|
631
527
|
"description": "A full set of items to filter the visible options from.\nThe items can be of either `String` or `Object` type.",
|
|
632
528
|
"value": {
|
|
633
529
|
"type": [
|
|
634
|
-
"Array
|
|
530
|
+
"Array<ComboBoxItem",
|
|
635
531
|
"string>",
|
|
636
532
|
"undefined"
|
|
637
533
|
]
|
|
@@ -642,9 +538,7 @@
|
|
|
642
538
|
"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.",
|
|
643
539
|
"value": {
|
|
644
540
|
"type": [
|
|
645
|
-
"string"
|
|
646
|
-
"null",
|
|
647
|
-
"undefined"
|
|
541
|
+
"string"
|
|
648
542
|
]
|
|
649
543
|
}
|
|
650
544
|
},
|
|
@@ -653,9 +547,7 @@
|
|
|
653
547
|
"description": "When true, filter string isn't cleared after selecting an item.",
|
|
654
548
|
"value": {
|
|
655
549
|
"type": [
|
|
656
|
-
"boolean"
|
|
657
|
-
"null",
|
|
658
|
-
"undefined"
|
|
550
|
+
"boolean"
|
|
659
551
|
]
|
|
660
552
|
}
|
|
661
553
|
},
|
|
@@ -664,9 +556,7 @@
|
|
|
664
556
|
"description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
|
|
665
557
|
"value": {
|
|
666
558
|
"type": [
|
|
667
|
-
"string"
|
|
668
|
-
"null",
|
|
669
|
-
"undefined"
|
|
559
|
+
"string"
|
|
670
560
|
]
|
|
671
561
|
}
|
|
672
562
|
},
|
|
@@ -675,9 +565,7 @@
|
|
|
675
565
|
"description": "True when loading items from the data provider, false otherwise.",
|
|
676
566
|
"value": {
|
|
677
567
|
"type": [
|
|
678
|
-
"boolean"
|
|
679
|
-
"null",
|
|
680
|
-
"undefined"
|
|
568
|
+
"boolean"
|
|
681
569
|
]
|
|
682
570
|
}
|
|
683
571
|
},
|
|
@@ -686,9 +574,7 @@
|
|
|
686
574
|
"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.",
|
|
687
575
|
"value": {
|
|
688
576
|
"type": [
|
|
689
|
-
"boolean"
|
|
690
|
-
"null",
|
|
691
|
-
"undefined"
|
|
577
|
+
"boolean"
|
|
692
578
|
]
|
|
693
579
|
}
|
|
694
580
|
},
|
|
@@ -697,9 +583,7 @@
|
|
|
697
583
|
"description": "The name of this field.",
|
|
698
584
|
"value": {
|
|
699
585
|
"type": [
|
|
700
|
-
"string"
|
|
701
|
-
"null",
|
|
702
|
-
"undefined"
|
|
586
|
+
"string"
|
|
703
587
|
]
|
|
704
588
|
}
|
|
705
589
|
},
|
|
@@ -708,9 +592,7 @@
|
|
|
708
592
|
"description": "True if the dropdown is open, false otherwise.",
|
|
709
593
|
"value": {
|
|
710
594
|
"type": [
|
|
711
|
-
"boolean"
|
|
712
|
-
"null",
|
|
713
|
-
"undefined"
|
|
595
|
+
"boolean"
|
|
714
596
|
]
|
|
715
597
|
}
|
|
716
598
|
},
|
|
@@ -719,9 +601,7 @@
|
|
|
719
601
|
"description": "Number of items fetched at a time from the dataprovider.",
|
|
720
602
|
"value": {
|
|
721
603
|
"type": [
|
|
722
|
-
"number"
|
|
723
|
-
"null",
|
|
724
|
-
"undefined"
|
|
604
|
+
"number"
|
|
725
605
|
]
|
|
726
606
|
}
|
|
727
607
|
},
|
|
@@ -730,9 +610,7 @@
|
|
|
730
610
|
"description": "A hint to the user of what can be entered in the control.\nThe placeholder will be only displayed in the case when\nthere is no item selected.",
|
|
731
611
|
"value": {
|
|
732
612
|
"type": [
|
|
733
|
-
"string"
|
|
734
|
-
"null",
|
|
735
|
-
"undefined"
|
|
613
|
+
"string"
|
|
736
614
|
]
|
|
737
615
|
}
|
|
738
616
|
},
|
|
@@ -741,9 +619,7 @@
|
|
|
741
619
|
"description": "When present, it specifies that the field is read-only.",
|
|
742
620
|
"value": {
|
|
743
621
|
"type": [
|
|
744
|
-
"boolean"
|
|
745
|
-
"null",
|
|
746
|
-
"undefined"
|
|
622
|
+
"boolean"
|
|
747
623
|
]
|
|
748
624
|
}
|
|
749
625
|
},
|
|
@@ -752,9 +628,7 @@
|
|
|
752
628
|
"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.",
|
|
753
629
|
"value": {
|
|
754
630
|
"type": [
|
|
755
|
-
"
|
|
756
|
-
"null",
|
|
757
|
-
"undefined"
|
|
631
|
+
"function"
|
|
758
632
|
]
|
|
759
633
|
}
|
|
760
634
|
},
|
|
@@ -763,9 +637,7 @@
|
|
|
763
637
|
"description": "Specifies that the user must fill in a value.",
|
|
764
638
|
"value": {
|
|
765
639
|
"type": [
|
|
766
|
-
"boolean"
|
|
767
|
-
"null",
|
|
768
|
-
"undefined"
|
|
640
|
+
"boolean"
|
|
769
641
|
]
|
|
770
642
|
}
|
|
771
643
|
},
|
|
@@ -774,9 +646,7 @@
|
|
|
774
646
|
"description": "The list of selected items.\nNote: modifying the selected items creates a new array each time.",
|
|
775
647
|
"value": {
|
|
776
648
|
"type": [
|
|
777
|
-
"
|
|
778
|
-
"null",
|
|
779
|
-
"undefined"
|
|
649
|
+
"array"
|
|
780
650
|
]
|
|
781
651
|
}
|
|
782
652
|
},
|
|
@@ -785,9 +655,7 @@
|
|
|
785
655
|
"description": "Set to true to group selected items at the top of the overlay.",
|
|
786
656
|
"value": {
|
|
787
657
|
"type": [
|
|
788
|
-
"boolean"
|
|
789
|
-
"null",
|
|
790
|
-
"undefined"
|
|
658
|
+
"boolean"
|
|
791
659
|
]
|
|
792
660
|
}
|
|
793
661
|
},
|
|
@@ -796,9 +664,7 @@
|
|
|
796
664
|
"description": "Total number of items.",
|
|
797
665
|
"value": {
|
|
798
666
|
"type": [
|
|
799
|
-
"number"
|
|
800
|
-
"null",
|
|
801
|
-
"undefined"
|
|
667
|
+
"number"
|
|
802
668
|
]
|
|
803
669
|
}
|
|
804
670
|
},
|
|
@@ -807,9 +673,7 @@
|
|
|
807
673
|
"description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
|
|
808
674
|
"value": {
|
|
809
675
|
"type": [
|
|
810
|
-
"string"
|
|
811
|
-
"null",
|
|
812
|
-
"undefined"
|
|
676
|
+
"string"
|
|
813
677
|
]
|
|
814
678
|
}
|
|
815
679
|
}
|
|
@@ -827,10 +691,6 @@
|
|
|
827
691
|
"name": "filter-changed",
|
|
828
692
|
"description": "Fired when the `filter` property changes."
|
|
829
693
|
},
|
|
830
|
-
{
|
|
831
|
-
"name": "input",
|
|
832
|
-
"description": "Fired when the value is changed by the user: on every typing keystroke,\nand the value is cleared using the clear button."
|
|
833
|
-
},
|
|
834
694
|
{
|
|
835
695
|
"name": "invalid-changed",
|
|
836
696
|
"description": "Fired when the `invalid` property changes."
|