@vaadin/multi-select-combo-box 25.1.0-beta1 → 25.1.0-beta3

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.
@@ -19,330 +19,319 @@
19
19
  },
20
20
  {
21
21
  "kind": "javascript-module",
22
- "path": "src/vaadin-multi-select-combo-box-chip.js",
23
- "declarations": [],
24
- "exports": []
25
- },
26
- {
27
- "kind": "javascript-module",
28
- "path": "src/vaadin-multi-select-combo-box-container.js",
29
- "declarations": [],
30
- "exports": []
31
- },
32
- {
33
- "kind": "javascript-module",
34
- "path": "src/vaadin-multi-select-combo-box-item.js",
22
+ "path": "src/vaadin-multi-select-combo-box-mixin.js",
35
23
  "declarations": [
36
24
  {
37
- "kind": "class",
38
- "description": "An item element used by the `<vaadin-multi-select-combo-box>` dropdown.\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------|--------------\n`checkmark` | The graphical checkmark shown for a selected item\n`content` | The element that wraps the item content\n\nThe following state attributes are exposed for styling:\n\nAttribute | Description\n-------------|-------------\n`selected` | Set when the item is selected\n`focused` | Set when the item is focused\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
39
- "name": "MultiSelectComboBoxItem",
25
+ "kind": "mixin",
26
+ "description": "",
27
+ "name": "MultiSelectComboBoxMixin",
40
28
  "members": [
41
29
  {
42
30
  "kind": "field",
43
- "name": "focused",
31
+ "name": "accessibleName",
44
32
  "privacy": "public",
45
33
  "type": {
46
- "text": "boolean"
34
+ "text": "string"
47
35
  },
48
- "description": "True when item is focused.",
49
- "attribute": "focused",
36
+ "description": "String used to label the component to screen reader users.",
37
+ "attribute": "accessible-name",
50
38
  "inheritedFrom": {
51
- "name": "ComboBoxItemMixin",
52
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
39
+ "name": "FieldMixin",
40
+ "package": "@vaadin/field-base/src/field-mixin.js"
53
41
  }
54
42
  },
55
43
  {
56
44
  "kind": "field",
57
- "name": "index",
45
+ "name": "accessibleNameRef",
58
46
  "privacy": "public",
59
47
  "type": {
60
- "text": "number"
48
+ "text": "string"
61
49
  },
62
- "description": "The index of the item.",
63
- "attribute": "index",
50
+ "description": "Id of the element used as label of the component to screen reader users.",
51
+ "attribute": "accessible-name-ref",
64
52
  "inheritedFrom": {
65
- "name": "ComboBoxItemMixin",
66
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
53
+ "name": "FieldMixin",
54
+ "package": "@vaadin/field-base/src/field-mixin.js"
67
55
  }
68
56
  },
69
57
  {
70
58
  "kind": "field",
71
- "name": "item",
59
+ "name": "allowCustomValue",
72
60
  "privacy": "public",
73
61
  "type": {
74
- "text": "object"
62
+ "text": "boolean"
75
63
  },
76
- "description": "The item to render.",
77
- "attribute": "item",
78
- "inheritedFrom": {
79
- "name": "ComboBoxItemMixin",
80
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
81
- }
64
+ "description": "When true, the user can input a value that is not present in the items list.",
65
+ "attribute": "allow-custom-value"
82
66
  },
83
67
  {
84
68
  "kind": "field",
85
- "name": "label",
69
+ "name": "allowedCharPattern",
86
70
  "privacy": "public",
87
71
  "type": {
88
72
  "text": "string"
89
73
  },
90
- "description": "The text to render in the item.",
91
- "attribute": "label",
74
+ "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-]\"`",
75
+ "attribute": "allowed-char-pattern",
92
76
  "inheritedFrom": {
93
- "name": "ComboBoxItemMixin",
94
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
77
+ "name": "InputControlMixin",
78
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
95
79
  }
96
80
  },
97
81
  {
98
82
  "kind": "field",
99
- "name": "renderer",
83
+ "name": "autoExpandHorizontally",
100
84
  "privacy": "public",
101
85
  "type": {
102
- "text": "function"
86
+ "text": "boolean"
103
87
  },
104
- "description": "Custom function for rendering the item content.",
105
- "attribute": "renderer",
106
- "inheritedFrom": {
107
- "name": "ComboBoxItemMixin",
108
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
109
- }
88
+ "description": "Set to true to auto expand horizontally, causing input field to\ngrow until max width is reached.",
89
+ "attribute": "auto-expand-horizontally"
110
90
  },
111
91
  {
112
- "kind": "method",
113
- "name": "requestContentUpdate",
114
- "description": "Requests an update for the content of the item.\nWhile performing the update, it invokes the renderer passed in the `renderer` property.\n\nIt is not guaranteed that the update happens immediately (synchronously) after it is requested.",
115
- "inheritedFrom": {
116
- "name": "ComboBoxItemMixin",
117
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
118
- }
92
+ "kind": "field",
93
+ "name": "autoExpandVertically",
94
+ "privacy": "public",
95
+ "type": {
96
+ "text": "boolean"
97
+ },
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
+ "attribute": "auto-expand-vertically"
119
100
  },
120
101
  {
121
102
  "kind": "field",
122
- "name": "selected",
103
+ "name": "autoOpenDisabled",
123
104
  "privacy": "public",
124
105
  "type": {
125
106
  "text": "boolean"
126
107
  },
127
- "description": "True when item is selected.",
128
- "attribute": "selected",
108
+ "description": "Set true to prevent the overlay from opening automatically.",
109
+ "attribute": "auto-open-disabled",
129
110
  "inheritedFrom": {
130
- "name": "ComboBoxItemMixin",
131
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
111
+ "name": "ComboBoxBaseMixin",
112
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
132
113
  }
133
- }
134
- ],
135
- "mixins": [
136
- {
137
- "name": "ComboBoxItemMixin",
138
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
139
114
  },
140
115
  {
141
- "name": "ThemableMixin",
142
- "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
116
+ "kind": "field",
117
+ "name": "autoselect",
118
+ "privacy": "public",
119
+ "type": {
120
+ "text": "boolean"
121
+ },
122
+ "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
123
+ "attribute": "autoselect",
124
+ "inheritedFrom": {
125
+ "name": "InputControlMixin",
126
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
127
+ }
143
128
  },
144
129
  {
145
- "name": "DirMixin",
146
- "package": "@vaadin/component-base/src/dir-mixin.js"
130
+ "kind": "method",
131
+ "name": "checkValidity",
132
+ "description": "Returns true if the current input value satisfies all constraints (if any).",
133
+ "return": {
134
+ "type": {
135
+ "text": "boolean"
136
+ }
137
+ }
147
138
  },
148
139
  {
149
- "name": "PolylitMixin",
150
- "package": "@vaadin/component-base/src/polylit-mixin.js"
140
+ "kind": "method",
141
+ "name": "clear",
142
+ "description": "Clears the selected items."
151
143
  },
152
144
  {
153
- "name": "LumoInjectionMixin",
154
- "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
155
- }
156
- ],
157
- "superclass": {
158
- "name": "LitElement",
159
- "package": "lit"
160
- },
161
- "tagName": "vaadin-multi-select-combo-box-item",
162
- "customElement": true,
163
- "attributes": [
164
- {
165
- "name": "focused",
145
+ "kind": "field",
146
+ "name": "clearButtonVisible",
147
+ "privacy": "public",
166
148
  "type": {
167
149
  "text": "boolean"
168
150
  },
169
- "description": "True when item is focused.",
170
- "fieldName": "focused",
151
+ "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.",
152
+ "attribute": "clear-button-visible",
171
153
  "inheritedFrom": {
172
- "name": "ComboBoxItemMixin",
173
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
154
+ "name": "ClearButtonMixin",
155
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
174
156
  }
175
157
  },
176
158
  {
177
- "name": "hidden",
159
+ "kind": "method",
160
+ "name": "clearCache",
161
+ "description": "Clears the cached pages and reloads data from data provider when needed.",
178
162
  "inheritedFrom": {
179
- "name": "ComboBoxItemMixin",
180
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
163
+ "name": "ComboBoxDataProviderMixin",
164
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
181
165
  }
182
166
  },
183
167
  {
184
- "name": "index",
168
+ "kind": "method",
169
+ "name": "close",
170
+ "description": "Closes the dropdown list.",
171
+ "inheritedFrom": {
172
+ "name": "ComboBoxBaseMixin",
173
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
174
+ }
175
+ },
176
+ {
177
+ "kind": "field",
178
+ "name": "dataProvider",
179
+ "privacy": "public",
185
180
  "type": {
186
- "text": "number"
181
+ "text": "ComboBoxDataProvider | undefined"
187
182
  },
188
- "description": "The index of the item.",
189
- "fieldName": "index",
183
+ "description": "Function that provides items lazily. Receives arguments `params`, `callback`\n\n`params.page` Requested page index\n\n`params.pageSize` Current page size\n\n`params.filter` Currently applied filter\n\n`callback(items, size)` Callback function with arguments:\n - `items` Current page of items\n - `size` Total number of items.",
184
+ "attribute": "data-provider",
190
185
  "inheritedFrom": {
191
- "name": "ComboBoxItemMixin",
192
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
186
+ "name": "ComboBoxDataProviderMixin",
187
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
193
188
  }
194
189
  },
195
190
  {
196
- "name": "label",
191
+ "kind": "field",
192
+ "name": "errorMessage",
193
+ "privacy": "public",
197
194
  "type": {
198
195
  "text": "string"
199
196
  },
200
- "description": "The text to render in the item.",
201
- "fieldName": "label",
197
+ "description": "Error to show when the field is invalid.",
198
+ "attribute": "error-message",
202
199
  "inheritedFrom": {
203
- "name": "ComboBoxItemMixin",
204
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
200
+ "name": "FieldMixin",
201
+ "package": "@vaadin/field-base/src/field-mixin.js"
205
202
  }
206
203
  },
207
204
  {
208
- "name": "renderer",
205
+ "kind": "field",
206
+ "name": "filter",
207
+ "privacy": "public",
209
208
  "type": {
210
- "text": "function"
209
+ "text": "string"
211
210
  },
212
- "description": "Custom function for rendering the item content.",
213
- "fieldName": "renderer",
211
+ "description": "Filtering string the user has typed into the input field.",
212
+ "attribute": "filter",
214
213
  "inheritedFrom": {
215
- "name": "ComboBoxItemMixin",
216
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
214
+ "name": "ComboBoxItemsMixin",
215
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
217
216
  }
218
217
  },
219
218
  {
220
- "name": "selected",
219
+ "kind": "field",
220
+ "name": "filteredItems",
221
+ "privacy": "public",
221
222
  "type": {
222
- "text": "boolean"
223
+ "text": "!Array<!ComboBoxItem | string> | undefined"
223
224
  },
224
- "description": "True when item is selected.",
225
- "fieldName": "selected",
225
+ "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.",
226
+ "attribute": "filtered-items",
226
227
  "inheritedFrom": {
227
- "name": "ComboBoxItemMixin",
228
- "package": "@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js"
228
+ "name": "ComboBoxItemsMixin",
229
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
229
230
  }
230
- }
231
- ],
232
- "events": []
233
- }
234
- ],
235
- "exports": [
236
- {
237
- "kind": "js",
238
- "name": "MultiSelectComboBoxItem",
239
- "declaration": {
240
- "name": "MultiSelectComboBoxItem",
241
- "module": "src/vaadin-multi-select-combo-box-item.js"
242
- }
243
- }
244
- ]
245
- },
246
- {
247
- "kind": "javascript-module",
248
- "path": "src/vaadin-multi-select-combo-box-mixin.js",
249
- "declarations": [
250
- {
251
- "kind": "mixin",
252
- "description": "",
253
- "name": "MultiSelectComboBoxMixin",
254
- "members": [
231
+ },
255
232
  {
256
233
  "kind": "field",
257
- "name": "allowCustomValue",
234
+ "name": "helperText",
258
235
  "privacy": "public",
259
236
  "type": {
260
- "text": "boolean"
237
+ "text": "string"
261
238
  },
262
- "description": "When true, the user can input a value that is not present in the items list.",
263
- "attribute": "allow-custom-value"
239
+ "description": "String used for the helper text.",
240
+ "attribute": "helper-text",
241
+ "inheritedFrom": {
242
+ "name": "FieldMixin",
243
+ "package": "@vaadin/field-base/src/field-mixin.js"
244
+ }
264
245
  },
265
246
  {
266
247
  "kind": "field",
267
- "name": "autoExpandHorizontally",
248
+ "name": "i18n",
268
249
  "privacy": "public",
269
250
  "type": {
270
- "text": "boolean"
251
+ "text": "Object"
271
252
  },
272
- "description": "Set to true to auto expand horizontally, causing input field to\ngrow until max width is reached.",
273
- "attribute": "auto-expand-horizontally"
253
+ "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```",
254
+ "attribute": "i18n",
255
+ "inheritedFrom": {
256
+ "name": "I18nMixin",
257
+ "package": "@vaadin/component-base/src/i18n-mixin.js"
258
+ }
274
259
  },
275
260
  {
276
261
  "kind": "field",
277
- "name": "autoExpandVertically",
262
+ "name": "itemClassNameGenerator",
278
263
  "privacy": "public",
279
264
  "type": {
280
- "text": "boolean"
265
+ "text": "object"
281
266
  },
282
- "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.",
283
- "attribute": "auto-expand-vertically"
284
- },
285
- {
286
- "kind": "method",
287
- "name": "checkValidity",
288
- "description": "Returns true if the current input value satisfies all constraints (if any).",
289
- "return": {
290
- "type": {
291
- "text": "boolean"
292
- }
293
- }
267
+ "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.",
268
+ "attribute": "item-class-name-generator"
294
269
  },
295
270
  {
296
- "kind": "method",
297
- "name": "clear",
298
- "description": "Clears the selected items."
271
+ "kind": "field",
272
+ "name": "itemIdPath",
273
+ "privacy": "public",
274
+ "type": {
275
+ "text": "string"
276
+ },
277
+ "description": "Path for the id of the item, used to detect whether the item is selected.",
278
+ "attribute": "item-id-path"
299
279
  },
300
280
  {
301
- "kind": "method",
302
- "name": "clearCache",
303
- "description": "Clears the cached pages and reloads data from data provider when needed."
281
+ "kind": "field",
282
+ "name": "itemLabelGenerator",
283
+ "privacy": "public",
284
+ "type": {
285
+ "text": "object"
286
+ },
287
+ "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.",
288
+ "attribute": "item-label-generator",
289
+ "inheritedFrom": {
290
+ "name": "ComboBoxItemsMixin",
291
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
292
+ }
304
293
  },
305
294
  {
306
295
  "kind": "field",
307
- "name": "i18n",
308
- "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```",
309
- "return": {
310
- "type": {
311
- "text": "!MultiSelectComboBoxI18n"
312
- }
296
+ "name": "itemLabelPath",
297
+ "privacy": "public",
298
+ "type": {
299
+ "text": "string"
313
300
  },
314
- "parameters": [
315
- {
316
- "name": "value",
317
- "type": {
318
- "text": "Object"
319
- }
320
- }
321
- ],
301
+ "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.",
302
+ "attribute": "item-label-path",
322
303
  "inheritedFrom": {
323
- "name": "I18nMixin",
324
- "package": "@vaadin/component-base/src/i18n-mixin.js"
304
+ "name": "ComboBoxItemsMixin",
305
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
325
306
  }
326
307
  },
327
308
  {
328
309
  "kind": "field",
329
- "name": "itemClassNameGenerator",
310
+ "name": "items",
330
311
  "privacy": "public",
331
312
  "type": {
332
- "text": "object"
313
+ "text": "!Array<!ComboBoxItem | string> | undefined"
333
314
  },
334
- "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.",
335
- "attribute": "item-class-name-generator"
315
+ "description": "A full set of items to filter the visible options from.\nThe items can be of either `String` or `Object` type.",
316
+ "attribute": "items",
317
+ "inheritedFrom": {
318
+ "name": "ComboBoxItemsMixin",
319
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
320
+ }
336
321
  },
337
322
  {
338
323
  "kind": "field",
339
- "name": "itemIdPath",
324
+ "name": "itemValuePath",
340
325
  "privacy": "public",
341
326
  "type": {
342
327
  "text": "string"
343
328
  },
344
- "description": "Path for the id of the item, used to detect whether the item is selected.",
345
- "attribute": "item-id-path"
329
+ "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.",
330
+ "attribute": "item-value-path",
331
+ "inheritedFrom": {
332
+ "name": "ComboBoxItemsMixin",
333
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
334
+ }
346
335
  },
347
336
  {
348
337
  "kind": "field",
@@ -354,6 +343,20 @@
354
343
  "description": "When true, filter string isn't cleared after selecting an item.",
355
344
  "attribute": "keep-filter"
356
345
  },
346
+ {
347
+ "kind": "field",
348
+ "name": "label",
349
+ "privacy": "public",
350
+ "type": {
351
+ "text": "string"
352
+ },
353
+ "description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
354
+ "attribute": "label",
355
+ "inheritedFrom": {
356
+ "name": "FieldMixin",
357
+ "package": "@vaadin/field-base/src/field-mixin.js"
358
+ }
359
+ },
357
360
  {
358
361
  "kind": "field",
359
362
  "name": "loading",
@@ -364,10 +367,56 @@
364
367
  "description": "True when loading items from the data provider, false otherwise.",
365
368
  "attribute": "loading"
366
369
  },
370
+ {
371
+ "kind": "field",
372
+ "name": "name",
373
+ "privacy": "public",
374
+ "type": {
375
+ "text": "string"
376
+ },
377
+ "description": "The name of this field.",
378
+ "attribute": "name",
379
+ "inheritedFrom": {
380
+ "name": "InputControlMixin",
381
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
382
+ }
383
+ },
367
384
  {
368
385
  "kind": "method",
369
386
  "name": "open",
370
- "description": "Opens the dropdown list."
387
+ "description": "Opens the dropdown list.",
388
+ "inheritedFrom": {
389
+ "name": "ComboBoxBaseMixin",
390
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
391
+ }
392
+ },
393
+ {
394
+ "kind": "field",
395
+ "name": "opened",
396
+ "privacy": "public",
397
+ "type": {
398
+ "text": "boolean"
399
+ },
400
+ "description": "True if the dropdown is open, false otherwise.",
401
+ "attribute": "opened",
402
+ "inheritedFrom": {
403
+ "name": "ComboBoxBaseMixin",
404
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
405
+ }
406
+ },
407
+ {
408
+ "kind": "field",
409
+ "name": "pageSize",
410
+ "privacy": "public",
411
+ "type": {
412
+ "text": "number"
413
+ },
414
+ "description": "Number of items fetched at a time from the dataprovider.",
415
+ "attribute": "page-size",
416
+ "inheritedFrom": {
417
+ "name": "ComboBoxDataProviderMixin",
418
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
419
+ }
371
420
  },
372
421
  {
373
422
  "kind": "field",
@@ -377,7 +426,11 @@
377
426
  "text": "string"
378
427
  },
379
428
  "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.",
380
- "attribute": "placeholder"
429
+ "attribute": "placeholder",
430
+ "inheritedFrom": {
431
+ "name": "InputControlMixin",
432
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
433
+ }
381
434
  },
382
435
  {
383
436
  "kind": "field",
@@ -387,7 +440,11 @@
387
440
  "text": "boolean"
388
441
  },
389
442
  "description": "When present, it specifies that the field is read-only.",
390
- "attribute": "readonly"
443
+ "attribute": "readonly",
444
+ "inheritedFrom": {
445
+ "name": "InputControlMixin",
446
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
447
+ }
391
448
  },
392
449
  {
393
450
  "kind": "field",
@@ -423,6 +480,34 @@
423
480
  },
424
481
  "description": "Set to true to group selected items at the top of the overlay.",
425
482
  "attribute": "selected-items-on-top"
483
+ },
484
+ {
485
+ "kind": "field",
486
+ "name": "size",
487
+ "privacy": "public",
488
+ "type": {
489
+ "text": "number"
490
+ },
491
+ "description": "Total number of items.",
492
+ "attribute": "size",
493
+ "inheritedFrom": {
494
+ "name": "ComboBoxDataProviderMixin",
495
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
496
+ }
497
+ },
498
+ {
499
+ "kind": "field",
500
+ "name": "title",
501
+ "privacy": "public",
502
+ "type": {
503
+ "text": "string"
504
+ },
505
+ "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
506
+ "attribute": "title",
507
+ "inheritedFrom": {
508
+ "name": "InputControlMixin",
509
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
510
+ }
426
511
  }
427
512
  ],
428
513
  "events": [
@@ -441,438 +526,355 @@
441
526
  ],
442
527
  "attributes": [
443
528
  {
444
- "name": "allow-custom-value",
529
+ "name": "accessible-name",
445
530
  "type": {
446
- "text": "boolean"
531
+ "text": "string"
447
532
  },
448
- "description": "When true, the user can input a value that is not present in the items list.",
449
- "fieldName": "allowCustomValue"
533
+ "description": "String used to label the component to screen reader users.",
534
+ "fieldName": "accessibleName",
535
+ "inheritedFrom": {
536
+ "name": "FieldMixin",
537
+ "package": "@vaadin/field-base/src/field-mixin.js"
538
+ }
450
539
  },
451
540
  {
452
- "name": "auto-expand-horizontally",
541
+ "name": "accessible-name-ref",
453
542
  "type": {
454
- "text": "boolean"
543
+ "text": "string"
455
544
  },
456
- "description": "Set to true to auto expand horizontally, causing input field to\ngrow until max width is reached.",
457
- "fieldName": "autoExpandHorizontally"
545
+ "description": "Id of the element used as label of the component to screen reader users.",
546
+ "fieldName": "accessibleNameRef",
547
+ "inheritedFrom": {
548
+ "name": "FieldMixin",
549
+ "package": "@vaadin/field-base/src/field-mixin.js"
550
+ }
458
551
  },
459
552
  {
460
- "name": "auto-expand-vertically",
553
+ "name": "allow-custom-value",
461
554
  "type": {
462
555
  "text": "boolean"
463
556
  },
464
- "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.",
465
- "fieldName": "autoExpandVertically"
466
- },
467
- {
468
- "name": "i18n",
469
- "inheritedFrom": {
470
- "name": "I18nMixin",
471
- "package": "@vaadin/component-base/src/i18n-mixin.js"
472
- }
557
+ "description": "When true, the user can input a value that is not present in the items list.",
558
+ "fieldName": "allowCustomValue"
473
559
  },
474
560
  {
475
- "name": "item-id-path",
561
+ "name": "allowed-char-pattern",
476
562
  "type": {
477
563
  "text": "string"
478
564
  },
479
- "description": "Path for the id of the item, used to detect whether the item is selected.",
480
- "fieldName": "itemIdPath"
565
+ "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-]\"`",
566
+ "fieldName": "allowedCharPattern",
567
+ "inheritedFrom": {
568
+ "name": "InputControlMixin",
569
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
570
+ }
481
571
  },
482
572
  {
483
- "name": "keep-filter",
573
+ "name": "auto-expand-horizontally",
484
574
  "type": {
485
575
  "text": "boolean"
486
576
  },
487
- "description": "When true, filter string isn't cleared after selecting an item.",
488
- "fieldName": "keepFilter"
577
+ "description": "Set to true to auto expand horizontally, causing input field to\ngrow until max width is reached.",
578
+ "fieldName": "autoExpandHorizontally"
489
579
  },
490
580
  {
491
- "name": "loading",
581
+ "name": "auto-expand-vertically",
492
582
  "type": {
493
583
  "text": "boolean"
494
584
  },
495
- "description": "True when loading items from the data provider, false otherwise.",
496
- "fieldName": "loading"
585
+ "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.",
586
+ "fieldName": "autoExpandVertically"
497
587
  },
498
588
  {
499
- "name": "placeholder",
589
+ "name": "auto-open-disabled",
500
590
  "type": {
501
- "text": "string"
591
+ "text": "boolean"
502
592
  },
503
- "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.",
504
- "fieldName": "placeholder"
593
+ "description": "Set true to prevent the overlay from opening automatically.",
594
+ "fieldName": "autoOpenDisabled",
595
+ "inheritedFrom": {
596
+ "name": "ComboBoxBaseMixin",
597
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
598
+ }
505
599
  },
506
600
  {
507
- "name": "readonly",
601
+ "name": "autoselect",
508
602
  "type": {
509
603
  "text": "boolean"
510
604
  },
511
- "description": "When present, it specifies that the field is read-only.",
512
- "fieldName": "readonly"
605
+ "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
606
+ "fieldName": "autoselect",
607
+ "inheritedFrom": {
608
+ "name": "InputControlMixin",
609
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
610
+ }
513
611
  },
514
612
  {
515
- "name": "renderer",
613
+ "name": "clear-button-visible",
516
614
  "type": {
517
- "text": "function"
615
+ "text": "boolean"
518
616
  },
519
- "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.",
520
- "fieldName": "renderer"
617
+ "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.",
618
+ "fieldName": "clearButtonVisible",
619
+ "inheritedFrom": {
620
+ "name": "ClearButtonMixin",
621
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
622
+ }
521
623
  },
522
624
  {
523
- "name": "selected-items",
625
+ "name": "data-provider",
524
626
  "type": {
525
- "text": "array"
627
+ "text": "ComboBoxDataProvider | undefined"
526
628
  },
527
- "description": "The list of selected items.\nNote: modifying the selected items creates a new array each time.",
528
- "fieldName": "selectedItems"
629
+ "description": "Function that provides items lazily. Receives arguments `params`, `callback`\n\n`params.page` Requested page index\n\n`params.pageSize` Current page size\n\n`params.filter` Currently applied filter\n\n`callback(items, size)` Callback function with arguments:\n - `items` Current page of items\n - `size` Total number of items.",
630
+ "fieldName": "dataProvider",
631
+ "inheritedFrom": {
632
+ "name": "ComboBoxDataProviderMixin",
633
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
634
+ }
529
635
  },
530
636
  {
531
- "name": "selected-items-on-top",
637
+ "name": "error-message",
532
638
  "type": {
533
- "text": "boolean"
639
+ "text": "string"
534
640
  },
535
- "description": "Set to true to group selected items at the top of the overlay.",
536
- "fieldName": "selectedItemsOnTop"
641
+ "description": "Error to show when the field is invalid.",
642
+ "fieldName": "errorMessage",
643
+ "inheritedFrom": {
644
+ "name": "FieldMixin",
645
+ "package": "@vaadin/field-base/src/field-mixin.js"
646
+ }
537
647
  },
538
648
  {
539
- "name": "value",
649
+ "name": "filter",
540
650
  "type": {
541
651
  "text": "string"
542
652
  },
543
- "fieldName": "value"
544
- }
545
- ],
546
- "mixins": [
547
- {
548
- "name": "I18nMixin",
549
- "package": "@vaadin/component-base/src/i18n-mixin.js"
550
- }
551
- ],
552
- "parameters": [
553
- {
554
- "name": "superClass"
555
- }
556
- ]
557
- }
558
- ],
559
- "exports": [
560
- {
561
- "kind": "js",
562
- "name": "MultiSelectComboBoxMixin",
563
- "declaration": {
564
- "name": "MultiSelectComboBoxMixin",
565
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
566
- }
567
- }
568
- ]
569
- },
570
- {
571
- "kind": "javascript-module",
572
- "path": "src/vaadin-multi-select-combo-box-overlay.js",
573
- "declarations": [],
574
- "exports": []
575
- },
576
- {
577
- "kind": "javascript-module",
578
- "path": "src/vaadin-multi-select-combo-box-scroller.js",
579
- "declarations": [
580
- {
581
- "kind": "class",
582
- "description": "An element used internally by `<vaadin-multi-select-combo-box>`. Not intended to be used separately.",
583
- "name": "MultiSelectComboBoxScroller",
584
- "members": [
585
- {
586
- "kind": "field",
587
- "name": "focusedIndex",
588
- "privacy": "public",
589
- "type": {
590
- "text": "number"
591
- },
592
- "description": "Index of an item that has focus outline and is scrolled into view.\nThe actual focus still remains in the input field.",
593
- "attribute": "focused-index",
653
+ "description": "Filtering string the user has typed into the input field.",
654
+ "fieldName": "filter",
594
655
  "inheritedFrom": {
595
- "name": "ComboBoxScrollerMixin",
596
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
656
+ "name": "ComboBoxItemsMixin",
657
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
597
658
  }
598
659
  },
599
660
  {
600
- "kind": "field",
601
- "name": "getItemLabel",
602
- "privacy": "public",
661
+ "name": "helper-text",
603
662
  "type": {
604
- "text": "object"
663
+ "text": "string"
605
664
  },
606
- "description": "Function used to set a label for every combo-box item.",
607
- "attribute": "get-item-label",
665
+ "description": "String used for the helper text.",
666
+ "fieldName": "helperText",
608
667
  "inheritedFrom": {
609
- "name": "ComboBoxScrollerMixin",
610
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
668
+ "name": "FieldMixin",
669
+ "package": "@vaadin/field-base/src/field-mixin.js"
611
670
  }
612
671
  },
613
672
  {
614
- "kind": "field",
615
- "name": "itemClassNameGenerator",
616
- "privacy": "public",
673
+ "name": "i18n",
617
674
  "type": {
618
- "text": "object"
675
+ "text": "Object"
619
676
  },
620
- "description": "A function used to generate CSS class names for dropdown\nitems based on the item. The return value should be the\ngenerated class name as a string, or multiple class names\nseparated by whitespace characters.",
621
- "attribute": "item-class-name-generator",
677
+ "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.",
678
+ "fieldName": "i18n",
622
679
  "inheritedFrom": {
623
- "name": "ComboBoxScrollerMixin",
624
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
680
+ "name": "I18nMixin",
681
+ "package": "@vaadin/component-base/src/i18n-mixin.js"
625
682
  }
626
683
  },
627
684
  {
628
- "kind": "field",
629
- "name": "itemIdPath",
630
- "privacy": "public",
685
+ "name": "item-id-path",
631
686
  "type": {
632
687
  "text": "string"
633
688
  },
634
689
  "description": "Path for the id of the item, used to detect whether the item is selected.",
635
- "attribute": "item-id-path",
636
- "inheritedFrom": {
637
- "name": "ComboBoxScrollerMixin",
638
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
639
- }
690
+ "fieldName": "itemIdPath"
640
691
  },
641
692
  {
642
- "kind": "field",
643
- "name": "items",
644
- "privacy": "public",
693
+ "name": "item-label-path",
645
694
  "type": {
646
- "text": "array"
695
+ "text": "string"
647
696
  },
648
- "description": "A full set of items to filter the visible options from.\nSet to an empty array when combo-box is not opened.",
649
- "attribute": "items",
697
+ "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.",
698
+ "fieldName": "itemLabelPath",
650
699
  "inheritedFrom": {
651
- "name": "ComboBoxScrollerMixin",
652
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
700
+ "name": "ComboBoxItemsMixin",
701
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
653
702
  }
654
703
  },
655
704
  {
656
- "kind": "field",
657
- "name": "loading",
658
- "privacy": "public",
705
+ "name": "item-value-path",
659
706
  "type": {
660
- "text": "boolean"
707
+ "text": "string"
661
708
  },
662
- "description": "Set to true while combo-box fetches new page from the data provider.",
663
- "attribute": "loading",
709
+ "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.",
710
+ "fieldName": "itemValuePath",
664
711
  "inheritedFrom": {
665
- "name": "ComboBoxScrollerMixin",
666
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
712
+ "name": "ComboBoxItemsMixin",
713
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
667
714
  }
668
715
  },
669
716
  {
670
- "kind": "field",
671
- "name": "opened",
672
- "privacy": "public",
717
+ "name": "keep-filter",
673
718
  "type": {
674
719
  "text": "boolean"
675
720
  },
676
- "description": "Whether the combo-box is currently opened or not. If set to false,\ncalling `scrollIntoView` does not have any effect.",
677
- "attribute": "opened",
678
- "inheritedFrom": {
679
- "name": "ComboBoxScrollerMixin",
680
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
681
- }
721
+ "description": "When true, filter string isn't cleared after selecting an item.",
722
+ "fieldName": "keepFilter"
682
723
  },
683
724
  {
684
- "kind": "field",
685
- "name": "owner",
686
- "privacy": "public",
725
+ "name": "label",
687
726
  "type": {
688
- "text": "object"
727
+ "text": "string"
689
728
  },
690
- "description": "Reference to the owner (combo-box owner), used by the item elements.",
691
- "attribute": "owner",
729
+ "description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
730
+ "fieldName": "label",
692
731
  "inheritedFrom": {
693
- "name": "ComboBoxScrollerMixin",
694
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
732
+ "name": "FieldMixin",
733
+ "package": "@vaadin/field-base/src/field-mixin.js"
695
734
  }
696
735
  },
697
736
  {
698
- "kind": "field",
699
- "name": "renderer",
700
- "privacy": "public",
737
+ "name": "loading",
701
738
  "type": {
702
- "text": "object"
739
+ "text": "boolean"
703
740
  },
704
- "description": "Function used to render the content of every combo-box item.",
705
- "attribute": "renderer",
706
- "inheritedFrom": {
707
- "name": "ComboBoxScrollerMixin",
708
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
709
- }
741
+ "description": "True when loading items from the data provider, false otherwise.",
742
+ "fieldName": "loading"
710
743
  },
711
744
  {
712
- "kind": "method",
713
- "name": "requestContentUpdate",
714
- "description": "Updates the virtualizer's size and items.",
745
+ "name": "name",
746
+ "type": {
747
+ "text": "string"
748
+ },
749
+ "description": "The name of this field.",
750
+ "fieldName": "name",
715
751
  "inheritedFrom": {
716
- "name": "ComboBoxScrollerMixin",
717
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
752
+ "name": "InputControlMixin",
753
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
718
754
  }
719
755
  },
720
756
  {
721
- "kind": "method",
722
- "name": "scrollIntoView",
723
- "parameters": [
724
- {
725
- "name": "index",
726
- "type": {
727
- "text": "number"
728
- }
729
- }
730
- ],
731
- "description": "Scrolls an item at given index into view and adjusts `scrollTop`\nso that the element gets fully visible on Arrow Down key press.",
757
+ "name": "opened",
758
+ "type": {
759
+ "text": "boolean"
760
+ },
761
+ "description": "True if the dropdown is open, false otherwise.",
762
+ "fieldName": "opened",
732
763
  "inheritedFrom": {
733
- "name": "ComboBoxScrollerMixin",
734
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
764
+ "name": "ComboBoxBaseMixin",
765
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
735
766
  }
736
767
  },
737
768
  {
738
- "kind": "field",
739
- "name": "selectedItem",
740
- "privacy": "public",
769
+ "name": "page-size",
741
770
  "type": {
742
- "text": "object"
771
+ "text": "number"
743
772
  },
744
- "description": "The selected item from the `items` array.",
745
- "attribute": "selected-item",
773
+ "description": "Number of items fetched at a time from the dataprovider.",
774
+ "fieldName": "pageSize",
746
775
  "inheritedFrom": {
747
- "name": "ComboBoxScrollerMixin",
748
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
776
+ "name": "ComboBoxDataProviderMixin",
777
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
749
778
  }
750
779
  },
751
780
  {
752
- "kind": "field",
753
- "name": "theme",
754
- "privacy": "public",
781
+ "name": "placeholder",
755
782
  "type": {
756
783
  "text": "string"
757
784
  },
758
- "description": "Used to propagate the `theme` attribute from the host element.",
759
- "attribute": "theme",
785
+ "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.",
786
+ "fieldName": "placeholder",
760
787
  "inheritedFrom": {
761
- "name": "ComboBoxScrollerMixin",
762
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
788
+ "name": "InputControlMixin",
789
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
763
790
  }
764
- }
765
- ],
766
- "mixins": [
767
- {
768
- "name": "ComboBoxScrollerMixin",
769
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
770
791
  },
771
792
  {
772
- "name": "PolylitMixin",
773
- "package": "@vaadin/component-base/src/polylit-mixin.js"
774
- }
775
- ],
776
- "superclass": {
777
- "name": "LitElement",
778
- "package": "lit"
779
- },
780
- "tagName": "vaadin-multi-select-combo-box-scroller",
781
- "customElement": true,
782
- "attributes": [
783
- {
784
- "name": "focused-index",
793
+ "name": "readonly",
785
794
  "type": {
786
- "text": "number"
795
+ "text": "boolean"
787
796
  },
788
- "description": "Index of an item that has focus outline and is scrolled into view.\nThe actual focus still remains in the input field.",
789
- "fieldName": "focusedIndex",
797
+ "description": "When present, it specifies that the field is read-only.",
798
+ "fieldName": "readonly",
790
799
  "inheritedFrom": {
791
- "name": "ComboBoxScrollerMixin",
792
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
800
+ "name": "InputControlMixin",
801
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
793
802
  }
794
803
  },
795
804
  {
796
- "name": "item-id-path",
805
+ "name": "renderer",
797
806
  "type": {
798
- "text": "string"
807
+ "text": "function"
799
808
  },
800
- "description": "Path for the id of the item, used to detect whether the item is selected.",
801
- "fieldName": "itemIdPath",
802
- "inheritedFrom": {
803
- "name": "ComboBoxScrollerMixin",
804
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
805
- }
809
+ "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
+ "fieldName": "renderer"
806
811
  },
807
812
  {
808
- "name": "items",
813
+ "name": "selected-items",
809
814
  "type": {
810
815
  "text": "array"
811
816
  },
812
- "description": "A full set of items to filter the visible options from.\nSet to an empty array when combo-box is not opened.",
813
- "fieldName": "items",
814
- "inheritedFrom": {
815
- "name": "ComboBoxScrollerMixin",
816
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
817
- }
817
+ "description": "The list of selected items.\nNote: modifying the selected items creates a new array each time.",
818
+ "fieldName": "selectedItems"
818
819
  },
819
820
  {
820
- "name": "loading",
821
+ "name": "selected-items-on-top",
821
822
  "type": {
822
823
  "text": "boolean"
823
824
  },
824
- "description": "Set to true while combo-box fetches new page from the data provider.",
825
- "fieldName": "loading",
826
- "inheritedFrom": {
827
- "name": "ComboBoxScrollerMixin",
828
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
829
- }
825
+ "description": "Set to true to group selected items at the top of the overlay.",
826
+ "fieldName": "selectedItemsOnTop"
830
827
  },
831
828
  {
832
- "name": "opened",
829
+ "name": "size",
833
830
  "type": {
834
- "text": "boolean"
831
+ "text": "number"
835
832
  },
836
- "description": "Whether the combo-box is currently opened or not. If set to false,\ncalling `scrollIntoView` does not have any effect.",
837
- "fieldName": "opened",
833
+ "description": "Total number of items.",
834
+ "fieldName": "size",
838
835
  "inheritedFrom": {
839
- "name": "ComboBoxScrollerMixin",
840
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
836
+ "name": "ComboBoxDataProviderMixin",
837
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
841
838
  }
842
839
  },
843
840
  {
844
- "name": "theme",
841
+ "name": "title",
845
842
  "type": {
846
843
  "text": "string"
847
844
  },
848
- "description": "Used to propagate the `theme` attribute from the host element.",
849
- "fieldName": "theme",
845
+ "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
846
+ "fieldName": "title",
850
847
  "inheritedFrom": {
851
- "name": "ComboBoxScrollerMixin",
852
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
848
+ "name": "InputControlMixin",
849
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
853
850
  }
854
851
  }
855
852
  ],
856
- "events": [
853
+ "mixins": [
857
854
  {
858
- "name": "index-requested",
859
- "type": {
860
- "text": "CustomEvent"
861
- },
862
- "inheritedFrom": {
863
- "name": "ComboBoxScrollerMixin",
864
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
865
- }
855
+ "name": "I18nMixin",
856
+ "package": "@vaadin/component-base/src/i18n-mixin.js"
866
857
  },
867
858
  {
868
- "name": "selection-changed",
869
- "type": {
870
- "text": "CustomEvent"
871
- },
872
- "inheritedFrom": {
873
- "name": "ComboBoxScrollerMixin",
874
- "package": "@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js"
875
- }
859
+ "name": "ComboBoxDataProviderMixin",
860
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
861
+ },
862
+ {
863
+ "name": "ComboBoxItemsMixin",
864
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
865
+ },
866
+ {
867
+ "name": "InputControlMixin",
868
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
869
+ },
870
+ {
871
+ "name": "ResizeMixin",
872
+ "package": "@vaadin/component-base/src/resize-mixin.js"
873
+ }
874
+ ],
875
+ "parameters": [
876
+ {
877
+ "name": "superClass"
876
878
  }
877
879
  ]
878
880
  }
@@ -880,10 +882,10 @@
880
882
  "exports": [
881
883
  {
882
884
  "kind": "js",
883
- "name": "MultiSelectComboBoxScroller",
885
+ "name": "MultiSelectComboBoxMixin",
884
886
  "declaration": {
885
- "name": "MultiSelectComboBoxScroller",
886
- "module": "src/vaadin-multi-select-combo-box-scroller.js"
887
+ "name": "MultiSelectComboBoxMixin",
888
+ "module": "src/vaadin-multi-select-combo-box-mixin.js"
887
889
  }
888
890
  }
889
891
  ]
@@ -911,6 +913,20 @@
911
913
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
912
914
  }
913
915
  },
916
+ {
917
+ "kind": "field",
918
+ "name": "allowedCharPattern",
919
+ "privacy": "public",
920
+ "type": {
921
+ "text": "string"
922
+ },
923
+ "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-]\"`",
924
+ "attribute": "allowed-char-pattern",
925
+ "inheritedFrom": {
926
+ "name": "InputControlMixin",
927
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
928
+ }
929
+ },
914
930
  {
915
931
  "kind": "field",
916
932
  "name": "autoExpandHorizontally",
@@ -939,6 +955,20 @@
939
955
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
940
956
  }
941
957
  },
958
+ {
959
+ "kind": "field",
960
+ "name": "autoselect",
961
+ "privacy": "public",
962
+ "type": {
963
+ "text": "boolean"
964
+ },
965
+ "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
966
+ "attribute": "autoselect",
967
+ "inheritedFrom": {
968
+ "name": "InputControlMixin",
969
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
970
+ }
971
+ },
942
972
  {
943
973
  "kind": "method",
944
974
  "name": "checkValidity",
@@ -967,27 +997,61 @@
967
997
  "name": "clearCache",
968
998
  "description": "Clears the cached pages and reloads data from data provider when needed.",
969
999
  "inheritedFrom": {
970
- "name": "MultiSelectComboBoxMixin",
971
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
1000
+ "name": "ComboBoxDataProviderMixin",
1001
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1002
+ }
1003
+ },
1004
+ {
1005
+ "kind": "field",
1006
+ "name": "dataProvider",
1007
+ "privacy": "public",
1008
+ "type": {
1009
+ "text": "ComboBoxDataProvider | undefined"
1010
+ },
1011
+ "description": "Function that provides items lazily. Receives arguments `params`, `callback`\n\n`params.page` Requested page index\n\n`params.pageSize` Current page size\n\n`params.filter` Currently applied filter\n\n`callback(items, size)` Callback function with arguments:\n - `items` Current page of items\n - `size` Total number of items.",
1012
+ "attribute": "data-provider",
1013
+ "inheritedFrom": {
1014
+ "name": "ComboBoxDataProviderMixin",
1015
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1016
+ }
1017
+ },
1018
+ {
1019
+ "kind": "field",
1020
+ "name": "filter",
1021
+ "privacy": "public",
1022
+ "type": {
1023
+ "text": "string"
1024
+ },
1025
+ "description": "Filtering string the user has typed into the input field.",
1026
+ "attribute": "filter",
1027
+ "inheritedFrom": {
1028
+ "name": "ComboBoxItemsMixin",
1029
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1030
+ }
1031
+ },
1032
+ {
1033
+ "kind": "field",
1034
+ "name": "filteredItems",
1035
+ "privacy": "public",
1036
+ "type": {
1037
+ "text": "!Array<!ComboBoxItem | string> | undefined"
1038
+ },
1039
+ "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.",
1040
+ "attribute": "filtered-items",
1041
+ "inheritedFrom": {
1042
+ "name": "ComboBoxItemsMixin",
1043
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
972
1044
  }
973
1045
  },
974
1046
  {
975
1047
  "kind": "field",
976
1048
  "name": "i18n",
977
- "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```",
978
- "return": {
979
- "type": {
980
- "text": "!MultiSelectComboBoxI18n"
981
- }
1049
+ "privacy": "public",
1050
+ "type": {
1051
+ "text": "Object"
982
1052
  },
983
- "parameters": [
984
- {
985
- "name": "value",
986
- "type": {
987
- "text": "Object"
988
- }
989
- }
990
- ],
1053
+ "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```",
1054
+ "attribute": "i18n",
991
1055
  "inheritedFrom": {
992
1056
  "name": "I18nMixin",
993
1057
  "package": "@vaadin/component-base/src/i18n-mixin.js"
@@ -1021,6 +1085,62 @@
1021
1085
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1022
1086
  }
1023
1087
  },
1088
+ {
1089
+ "kind": "field",
1090
+ "name": "itemLabelGenerator",
1091
+ "privacy": "public",
1092
+ "type": {
1093
+ "text": "object"
1094
+ },
1095
+ "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.",
1096
+ "attribute": "item-label-generator",
1097
+ "inheritedFrom": {
1098
+ "name": "ComboBoxItemsMixin",
1099
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1100
+ }
1101
+ },
1102
+ {
1103
+ "kind": "field",
1104
+ "name": "itemLabelPath",
1105
+ "privacy": "public",
1106
+ "type": {
1107
+ "text": "string"
1108
+ },
1109
+ "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.",
1110
+ "attribute": "item-label-path",
1111
+ "inheritedFrom": {
1112
+ "name": "ComboBoxItemsMixin",
1113
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1114
+ }
1115
+ },
1116
+ {
1117
+ "kind": "field",
1118
+ "name": "items",
1119
+ "privacy": "public",
1120
+ "type": {
1121
+ "text": "!Array<!ComboBoxItem | string> | undefined"
1122
+ },
1123
+ "description": "A full set of items to filter the visible options from.\nThe items can be of either `String` or `Object` type.",
1124
+ "attribute": "items",
1125
+ "inheritedFrom": {
1126
+ "name": "ComboBoxItemsMixin",
1127
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1128
+ }
1129
+ },
1130
+ {
1131
+ "kind": "field",
1132
+ "name": "itemValuePath",
1133
+ "privacy": "public",
1134
+ "type": {
1135
+ "text": "string"
1136
+ },
1137
+ "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.",
1138
+ "attribute": "item-value-path",
1139
+ "inheritedFrom": {
1140
+ "name": "ComboBoxItemsMixin",
1141
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1142
+ }
1143
+ },
1024
1144
  {
1025
1145
  "kind": "field",
1026
1146
  "name": "keepFilter",
@@ -1049,6 +1169,20 @@
1049
1169
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1050
1170
  }
1051
1171
  },
1172
+ {
1173
+ "kind": "field",
1174
+ "name": "name",
1175
+ "privacy": "public",
1176
+ "type": {
1177
+ "text": "string"
1178
+ },
1179
+ "description": "The name of this field.",
1180
+ "attribute": "name",
1181
+ "inheritedFrom": {
1182
+ "name": "InputControlMixin",
1183
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1184
+ }
1185
+ },
1052
1186
  {
1053
1187
  "kind": "method",
1054
1188
  "name": "open",
@@ -1058,6 +1192,20 @@
1058
1192
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1059
1193
  }
1060
1194
  },
1195
+ {
1196
+ "kind": "field",
1197
+ "name": "pageSize",
1198
+ "privacy": "public",
1199
+ "type": {
1200
+ "text": "number"
1201
+ },
1202
+ "description": "Number of items fetched at a time from the dataprovider.",
1203
+ "attribute": "page-size",
1204
+ "inheritedFrom": {
1205
+ "name": "ComboBoxDataProviderMixin",
1206
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1207
+ }
1208
+ },
1061
1209
  {
1062
1210
  "kind": "field",
1063
1211
  "name": "placeholder",
@@ -1068,8 +1216,8 @@
1068
1216
  "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.",
1069
1217
  "attribute": "placeholder",
1070
1218
  "inheritedFrom": {
1071
- "name": "MultiSelectComboBoxMixin",
1072
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
1219
+ "name": "InputControlMixin",
1220
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1073
1221
  }
1074
1222
  },
1075
1223
  {
@@ -1082,8 +1230,8 @@
1082
1230
  "description": "When present, it specifies that the field is read-only.",
1083
1231
  "attribute": "readonly",
1084
1232
  "inheritedFrom": {
1085
- "name": "MultiSelectComboBoxMixin",
1086
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
1233
+ "name": "InputControlMixin",
1234
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1087
1235
  }
1088
1236
  },
1089
1237
  {
@@ -1136,6 +1284,34 @@
1136
1284
  "name": "MultiSelectComboBoxMixin",
1137
1285
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1138
1286
  }
1287
+ },
1288
+ {
1289
+ "kind": "field",
1290
+ "name": "size",
1291
+ "privacy": "public",
1292
+ "type": {
1293
+ "text": "number"
1294
+ },
1295
+ "description": "Total number of items.",
1296
+ "attribute": "size",
1297
+ "inheritedFrom": {
1298
+ "name": "ComboBoxDataProviderMixin",
1299
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1300
+ }
1301
+ },
1302
+ {
1303
+ "kind": "field",
1304
+ "name": "title",
1305
+ "privacy": "public",
1306
+ "type": {
1307
+ "text": "string"
1308
+ },
1309
+ "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
1310
+ "attribute": "title",
1311
+ "inheritedFrom": {
1312
+ "name": "InputControlMixin",
1313
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1314
+ }
1139
1315
  }
1140
1316
  ],
1141
1317
  "events": [
@@ -1238,6 +1414,18 @@
1238
1414
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1239
1415
  }
1240
1416
  },
1417
+ {
1418
+ "name": "allowed-char-pattern",
1419
+ "type": {
1420
+ "text": "string"
1421
+ },
1422
+ "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-]\"`",
1423
+ "fieldName": "allowedCharPattern",
1424
+ "inheritedFrom": {
1425
+ "name": "InputControlMixin",
1426
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1427
+ }
1428
+ },
1241
1429
  {
1242
1430
  "name": "auto-expand-horizontally",
1243
1431
  "type": {
@@ -1262,8 +1450,49 @@
1262
1450
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1263
1451
  }
1264
1452
  },
1453
+ {
1454
+ "name": "autoselect",
1455
+ "type": {
1456
+ "text": "boolean"
1457
+ },
1458
+ "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
1459
+ "fieldName": "autoselect",
1460
+ "inheritedFrom": {
1461
+ "name": "InputControlMixin",
1462
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1463
+ }
1464
+ },
1465
+ {
1466
+ "name": "data-provider",
1467
+ "type": {
1468
+ "text": "ComboBoxDataProvider | undefined"
1469
+ },
1470
+ "description": "Function that provides items lazily. Receives arguments `params`, `callback`\n\n`params.page` Requested page index\n\n`params.pageSize` Current page size\n\n`params.filter` Currently applied filter\n\n`callback(items, size)` Callback function with arguments:\n - `items` Current page of items\n - `size` Total number of items.",
1471
+ "fieldName": "dataProvider",
1472
+ "inheritedFrom": {
1473
+ "name": "ComboBoxDataProviderMixin",
1474
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1475
+ }
1476
+ },
1477
+ {
1478
+ "name": "filter",
1479
+ "type": {
1480
+ "text": "string"
1481
+ },
1482
+ "description": "Filtering string the user has typed into the input field.",
1483
+ "fieldName": "filter",
1484
+ "inheritedFrom": {
1485
+ "name": "ComboBoxItemsMixin",
1486
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1487
+ }
1488
+ },
1265
1489
  {
1266
1490
  "name": "i18n",
1491
+ "type": {
1492
+ "text": "Object"
1493
+ },
1494
+ "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.",
1495
+ "fieldName": "i18n",
1267
1496
  "inheritedFrom": {
1268
1497
  "name": "I18nMixin",
1269
1498
  "package": "@vaadin/component-base/src/i18n-mixin.js"
@@ -1281,6 +1510,30 @@
1281
1510
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1282
1511
  }
1283
1512
  },
1513
+ {
1514
+ "name": "item-label-path",
1515
+ "type": {
1516
+ "text": "string"
1517
+ },
1518
+ "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.",
1519
+ "fieldName": "itemLabelPath",
1520
+ "inheritedFrom": {
1521
+ "name": "ComboBoxItemsMixin",
1522
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1523
+ }
1524
+ },
1525
+ {
1526
+ "name": "item-value-path",
1527
+ "type": {
1528
+ "text": "string"
1529
+ },
1530
+ "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.",
1531
+ "fieldName": "itemValuePath",
1532
+ "inheritedFrom": {
1533
+ "name": "ComboBoxItemsMixin",
1534
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js"
1535
+ }
1536
+ },
1284
1537
  {
1285
1538
  "name": "keep-filter",
1286
1539
  "type": {
@@ -1305,6 +1558,30 @@
1305
1558
  "module": "src/vaadin-multi-select-combo-box-mixin.js"
1306
1559
  }
1307
1560
  },
1561
+ {
1562
+ "name": "name",
1563
+ "type": {
1564
+ "text": "string"
1565
+ },
1566
+ "description": "The name of this field.",
1567
+ "fieldName": "name",
1568
+ "inheritedFrom": {
1569
+ "name": "InputControlMixin",
1570
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1571
+ }
1572
+ },
1573
+ {
1574
+ "name": "page-size",
1575
+ "type": {
1576
+ "text": "number"
1577
+ },
1578
+ "description": "Number of items fetched at a time from the dataprovider.",
1579
+ "fieldName": "pageSize",
1580
+ "inheritedFrom": {
1581
+ "name": "ComboBoxDataProviderMixin",
1582
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1583
+ }
1584
+ },
1308
1585
  {
1309
1586
  "name": "placeholder",
1310
1587
  "type": {
@@ -1313,8 +1590,8 @@
1313
1590
  "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.",
1314
1591
  "fieldName": "placeholder",
1315
1592
  "inheritedFrom": {
1316
- "name": "MultiSelectComboBoxMixin",
1317
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
1593
+ "name": "InputControlMixin",
1594
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1318
1595
  }
1319
1596
  },
1320
1597
  {
@@ -1325,8 +1602,8 @@
1325
1602
  "description": "When present, it specifies that the field is read-only.",
1326
1603
  "fieldName": "readonly",
1327
1604
  "inheritedFrom": {
1328
- "name": "MultiSelectComboBoxMixin",
1329
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
1605
+ "name": "InputControlMixin",
1606
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1330
1607
  }
1331
1608
  },
1332
1609
  {
@@ -1366,14 +1643,27 @@
1366
1643
  }
1367
1644
  },
1368
1645
  {
1369
- "name": "value",
1646
+ "name": "size",
1647
+ "type": {
1648
+ "text": "number"
1649
+ },
1650
+ "description": "Total number of items.",
1651
+ "fieldName": "size",
1652
+ "inheritedFrom": {
1653
+ "name": "ComboBoxDataProviderMixin",
1654
+ "package": "@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js"
1655
+ }
1656
+ },
1657
+ {
1658
+ "name": "title",
1370
1659
  "type": {
1371
1660
  "text": "string"
1372
1661
  },
1373
- "fieldName": "value",
1662
+ "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
1663
+ "fieldName": "title",
1374
1664
  "inheritedFrom": {
1375
- "name": "MultiSelectComboBoxMixin",
1376
- "module": "src/vaadin-multi-select-combo-box-mixin.js"
1665
+ "name": "InputControlMixin",
1666
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
1377
1667
  }
1378
1668
  }
1379
1669
  ]