@vaadin/combo-box 23.3.25 → 23.4.0-alpha1
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/package.json +13 -13
- package/src/vaadin-combo-box-item.js +15 -0
- package/src/vaadin-combo-box-mixin.js +28 -8
- package/src/vaadin-combo-box-overlay.js +16 -10
- package/web-types.json +2 -2
- package/web-types.lit.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/combo-box",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.4.0-alpha1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/component-base": "
|
|
42
|
-
"@vaadin/field-base": "
|
|
43
|
-
"@vaadin/input-container": "
|
|
44
|
-
"@vaadin/item": "
|
|
45
|
-
"@vaadin/lit-renderer": "
|
|
46
|
-
"@vaadin/overlay": "
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
48
|
-
"@vaadin/vaadin-material-styles": "
|
|
49
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
41
|
+
"@vaadin/component-base": "23.4.0-alpha1",
|
|
42
|
+
"@vaadin/field-base": "23.4.0-alpha1",
|
|
43
|
+
"@vaadin/input-container": "23.4.0-alpha1",
|
|
44
|
+
"@vaadin/item": "23.4.0-alpha1",
|
|
45
|
+
"@vaadin/lit-renderer": "23.4.0-alpha1",
|
|
46
|
+
"@vaadin/overlay": "23.4.0-alpha1",
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "23.4.0-alpha1",
|
|
48
|
+
"@vaadin/vaadin-material-styles": "23.4.0-alpha1",
|
|
49
|
+
"@vaadin/vaadin-themable-mixin": "23.4.0-alpha1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@esm-bundle/chai": "^4.3.4",
|
|
53
|
-
"@vaadin/polymer-legacy-adapter": "
|
|
53
|
+
"@vaadin/polymer-legacy-adapter": "23.4.0-alpha1",
|
|
54
54
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
55
|
-
"@vaadin/text-field": "
|
|
55
|
+
"@vaadin/text-field": "23.4.0-alpha1",
|
|
56
56
|
"lit": "^2.0.0",
|
|
57
57
|
"sinon": "^13.0.2"
|
|
58
58
|
},
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "a7cdbab591c62ee8dbc0e91fee877fbbf4b92bad"
|
|
64
64
|
}
|
|
@@ -107,6 +107,21 @@ export class ComboBoxItem extends ThemableMixin(DirMixin(PolymerElement)) {
|
|
|
107
107
|
return ['__rendererOrItemChanged(renderer, index, item.*, selected, focused)', '__updateLabel(label, renderer)'];
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
static get observedAttributes() {
|
|
111
|
+
return [...super.observedAttributes, 'hidden'];
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
attributeChangedCallback(name, oldValue, newValue) {
|
|
115
|
+
if (name === 'hidden' && newValue !== null) {
|
|
116
|
+
// The element is being hidden (by virtualizer). Mark one of the __rendererOrItemChanged
|
|
117
|
+
// dependencies as undefined to make sure it's called when the element is shown again
|
|
118
|
+
// and assigned properties with possibly identical values as before hiding.
|
|
119
|
+
this.index = undefined;
|
|
120
|
+
} else {
|
|
121
|
+
super.attributeChangedCallback(name, oldValue, newValue);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
110
125
|
connectedCallback() {
|
|
111
126
|
super.connectedCallback();
|
|
112
127
|
|
|
@@ -221,6 +221,14 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
221
221
|
observer: '_toggleElementChanged',
|
|
222
222
|
},
|
|
223
223
|
|
|
224
|
+
/**
|
|
225
|
+
* Set of items to be rendered in the dropdown.
|
|
226
|
+
* @protected
|
|
227
|
+
*/
|
|
228
|
+
_dropdownItems: {
|
|
229
|
+
type: Array,
|
|
230
|
+
},
|
|
231
|
+
|
|
224
232
|
/** @private */
|
|
225
233
|
_closeOnBlurIsPrevented: Boolean,
|
|
226
234
|
|
|
@@ -238,8 +246,8 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
238
246
|
static get observers() {
|
|
239
247
|
return [
|
|
240
248
|
'_selectedItemChanged(selectedItem, itemValuePath, itemLabelPath)',
|
|
241
|
-
'_openedOrItemsChanged(opened,
|
|
242
|
-
'_updateScroller(_scroller,
|
|
249
|
+
'_openedOrItemsChanged(opened, _dropdownItems, loading)',
|
|
250
|
+
'_updateScroller(_scroller, _dropdownItems, opened, loading, selectedItem, itemIdPath, _focusedIndex, renderer, theme)',
|
|
243
251
|
];
|
|
244
252
|
}
|
|
245
253
|
|
|
@@ -497,7 +505,7 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
497
505
|
this.dispatchEvent(new CustomEvent('vaadin-combo-box-dropdown-opened', { bubbles: true, composed: true }));
|
|
498
506
|
|
|
499
507
|
this._onOpened();
|
|
500
|
-
} else if (wasOpened && this.
|
|
508
|
+
} else if (wasOpened && this._dropdownItems && this._dropdownItems.length) {
|
|
501
509
|
this.close();
|
|
502
510
|
|
|
503
511
|
this.dispatchEvent(new CustomEvent('vaadin-combo-box-dropdown-closed', { bubbles: true, composed: true }));
|
|
@@ -683,7 +691,7 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
683
691
|
/** @private */
|
|
684
692
|
_onArrowDown() {
|
|
685
693
|
if (this.opened) {
|
|
686
|
-
const items = this.
|
|
694
|
+
const items = this._dropdownItems;
|
|
687
695
|
if (items) {
|
|
688
696
|
this._focusedIndex = Math.min(items.length - 1, this._focusedIndex + 1);
|
|
689
697
|
this._prefillFocusedItemLabel();
|
|
@@ -699,7 +707,7 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
699
707
|
if (this._focusedIndex > -1) {
|
|
700
708
|
this._focusedIndex = Math.max(0, this._focusedIndex - 1);
|
|
701
709
|
} else {
|
|
702
|
-
const items = this.
|
|
710
|
+
const items = this._dropdownItems;
|
|
703
711
|
if (items) {
|
|
704
712
|
this._focusedIndex = items.length - 1;
|
|
705
713
|
}
|
|
@@ -714,7 +722,7 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
714
722
|
/** @private */
|
|
715
723
|
_prefillFocusedItemLabel() {
|
|
716
724
|
if (this._focusedIndex > -1) {
|
|
717
|
-
const focusedItem = this.
|
|
725
|
+
const focusedItem = this._dropdownItems[this._focusedIndex];
|
|
718
726
|
this._inputElementValue = this._getItemLabel(focusedItem);
|
|
719
727
|
this._markAllSelectionRange();
|
|
720
728
|
}
|
|
@@ -887,7 +895,7 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
887
895
|
/** @private */
|
|
888
896
|
_commitValue() {
|
|
889
897
|
if (this._focusedIndex > -1) {
|
|
890
|
-
const focusedItem = this.
|
|
898
|
+
const focusedItem = this._dropdownItems[this._focusedIndex];
|
|
891
899
|
if (this.selectedItem !== focusedItem) {
|
|
892
900
|
this.selectedItem = focusedItem;
|
|
893
901
|
}
|
|
@@ -902,7 +910,7 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
902
910
|
}
|
|
903
911
|
} else {
|
|
904
912
|
// Try to find an item which label matches the input value.
|
|
905
|
-
const items = [...(this.
|
|
913
|
+
const items = [this.selectedItem, ...(this._dropdownItems || [])];
|
|
906
914
|
const itemMatchingInputValue = items[this.__getItemIndexByLabel(items, this._inputElementValue)];
|
|
907
915
|
|
|
908
916
|
if (
|
|
@@ -1119,6 +1127,8 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
1119
1127
|
|
|
1120
1128
|
/** @private */
|
|
1121
1129
|
_filteredItemsChanged(filteredItems, oldFilteredItems) {
|
|
1130
|
+
this._setDropdownItems(filteredItems);
|
|
1131
|
+
|
|
1122
1132
|
// Store the currently focused item if any. The focused index preserves
|
|
1123
1133
|
// in the case when more filtered items are loading but it is reset
|
|
1124
1134
|
// when the user types in a filter query.
|
|
@@ -1179,6 +1189,16 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
1179
1189
|
}
|
|
1180
1190
|
}
|
|
1181
1191
|
|
|
1192
|
+
/**
|
|
1193
|
+
* Provide items to be rendered in the dropdown.
|
|
1194
|
+
* Override this method to show custom items.
|
|
1195
|
+
*
|
|
1196
|
+
* @protected
|
|
1197
|
+
*/
|
|
1198
|
+
_setDropdownItems(items) {
|
|
1199
|
+
this._dropdownItems = items;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1182
1202
|
/** @private */
|
|
1183
1203
|
_getItemElements() {
|
|
1184
1204
|
return Array.from(this._scroller.querySelectorAll(`${this._tagNamePrefix}-item`));
|
|
@@ -76,18 +76,24 @@ export class ComboBoxOverlay extends PositionMixin(Overlay) {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
79
|
+
/** @protected */
|
|
80
|
+
_updateOverlayWidth() {
|
|
81
|
+
const propPrefix = this.localName;
|
|
82
|
+
this.style.setProperty(`--_${propPrefix}-default-width`, `${this.positionTarget.clientWidth}px`);
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
const customWidth = getComputedStyle(this._comboBox).getPropertyValue(`--${propPrefix}-width`);
|
|
85
85
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
86
|
+
if (customWidth === '') {
|
|
87
|
+
this.style.removeProperty(`--${propPrefix}-width`);
|
|
88
|
+
} else {
|
|
89
|
+
this.style.setProperty(`--${propPrefix}-width`, customWidth);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/** @private */
|
|
94
|
+
_setOverlayWidth(positionTarget, opened) {
|
|
95
|
+
if (positionTarget && opened) {
|
|
96
|
+
this._updateOverlayWidth();
|
|
91
97
|
|
|
92
98
|
this._updatePosition();
|
|
93
99
|
}
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/combo-box",
|
|
4
|
-
"version": "23.
|
|
4
|
+
"version": "23.4.0-alpha1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"name": "vaadin-combo-box",
|
|
397
|
-
"description": "`<vaadin-combo-box>` is a web component for choosing a value from a filterable list of options\npresented in a dropdown overlay. The options can be provided as a list of strings or objects\nby setting [`items`](https://cdn.vaadin.com/vaadin-web-components/23.
|
|
397
|
+
"description": "`<vaadin-combo-box>` is a web component for choosing a value from a filterable list of options\npresented in a dropdown overlay. The options can be provided as a list of strings or objects\nby setting [`items`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box#property-items) property on the element.\n\n```html\n<vaadin-combo-box id=\"combo-box\"></vaadin-combo-box>\n```\n```js\ndocument.querySelector('#combo-box').items = ['apple', 'orange', 'banana'];\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Item rendering\n\nTo customize the content of the `<vaadin-combo-box-item>` elements placed in the dropdown, use\n[`renderer`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box#property-renderer) property which accepts a function.\nThe renderer function is called with `root`, `comboBox`, and `model` as arguments.\n\nGenerate DOM content by using `model` object properties if needed, and append it to the `root`\nelement. The `comboBox` reference is provided to access the combo-box element state. Do not\nset combo-box properties in a `renderer` function.\n\n```js\nconst comboBox = document.querySelector('#combo-box');\ncomboBox.items = [{'label': 'Hydrogen', 'value': 'H'}];\ncomboBox.renderer = (root, comboBox, model) => {\n const item = model.item;\n root.innerHTML = `${model.index}: ${item.label} <b>${item.value}</b>`;\n};\n```\n\nRenderer is called on the opening of the combo-box and each time the related model is updated.\nBefore creating new content, it is recommended to check if there is already an existing DOM\nelement in `root` from a previous renderer call for reusing it. Even though combo-box uses\ninfinite scrolling, reducing DOM operations might improve performance.\n\nThe following properties are available in the `model` argument:\n\nProperty | Type | Description\n-----------|------------------|-------------\n`index` | Number | Index of the item in the `items` array\n`item` | String or Object | The item reference\n`selected` | Boolean | True when item is selected\n`focused` | Boolean | True when item is focused\n\n### Lazy Loading with Function Data Provider\n\nIn addition to assigning an array to the items property, you can alternatively use the\n[`dataProvider`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box#property-dataProvider) function property.\nThe `<vaadin-combo-box>` calls this function lazily, only when it needs more data\nto be displayed.\n\n__Note that when using function data providers, the total number of items\nneeds to be set manually. The total number of items can be returned\nin the second argument of the data provider callback:__\n\n```js\ncomboBox.dataProvider = async (params, callback) => {\n const API = 'https://demo.vaadin.com/demo-data/1.0/filtered-countries';\n const { filter, page, pageSize } = params;\n const index = page * pageSize;\n\n const res = await fetch(`${API}?index=${index}&count=${pageSize}&filter=${filter}`);\n if (res.ok) {\n const { result, size } = await res.json();\n callback(result, size);\n }\n};\n```\n\n### Styling\n\nThe following custom properties are available for styling:\n\nCustom property | Description | Default\n----------------------------------------|----------------------------|---------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n`--vaadin-combo-box-overlay-width` | Width of the overlay | `auto`\n`--vaadin-combo-box-overlay-max-height` | Max height of the overlay | `65vh`\n\n`<vaadin-combo-box>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n----------------|----------------\n`toggle-button` | The toggle button\n\nIn addition to `<vaadin-text-field>` state attributes, the following state attributes are available for theming:\n\nAttribute | Description | Part name\n----------|-------------|------------\n`opened` | Set when the combo box dropdown is open | :host\n`loading` | Set when new items are expected | :host\n\nIf you want to replace the default `<input>` and its container with a custom implementation to get full control\nover the input field, consider using the [`<vaadin-combo-box-light>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box-light) element.\n\n### Internal components\n\nIn addition to `<vaadin-combo-box>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-combo-box-overlay>` - has the same API as [`<vaadin-overlay>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-overlay).\n- `<vaadin-combo-box-item>` - has the same API as [`<vaadin-item>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-item).\n- [`<vaadin-input-container>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-input-container) - an internal element wrapping the input.\n\nNote: the `theme` attribute value set on `<vaadin-combo-box>` is\npropagated to the internal components listed above.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/custom-theme/styling-components) documentation.",
|
|
398
398
|
"attributes": [
|
|
399
399
|
{
|
|
400
400
|
"name": "disabled",
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/combo-box",
|
|
4
|
-
"version": "23.
|
|
4
|
+
"version": "23.4.0-alpha1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"name": "vaadin-combo-box",
|
|
229
|
-
"description": "`<vaadin-combo-box>` is a web component for choosing a value from a filterable list of options\npresented in a dropdown overlay. The options can be provided as a list of strings or objects\nby setting [`items`](https://cdn.vaadin.com/vaadin-web-components/23.
|
|
229
|
+
"description": "`<vaadin-combo-box>` is a web component for choosing a value from a filterable list of options\npresented in a dropdown overlay. The options can be provided as a list of strings or objects\nby setting [`items`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box#property-items) property on the element.\n\n```html\n<vaadin-combo-box id=\"combo-box\"></vaadin-combo-box>\n```\n```js\ndocument.querySelector('#combo-box').items = ['apple', 'orange', 'banana'];\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Item rendering\n\nTo customize the content of the `<vaadin-combo-box-item>` elements placed in the dropdown, use\n[`renderer`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box#property-renderer) property which accepts a function.\nThe renderer function is called with `root`, `comboBox`, and `model` as arguments.\n\nGenerate DOM content by using `model` object properties if needed, and append it to the `root`\nelement. The `comboBox` reference is provided to access the combo-box element state. Do not\nset combo-box properties in a `renderer` function.\n\n```js\nconst comboBox = document.querySelector('#combo-box');\ncomboBox.items = [{'label': 'Hydrogen', 'value': 'H'}];\ncomboBox.renderer = (root, comboBox, model) => {\n const item = model.item;\n root.innerHTML = `${model.index}: ${item.label} <b>${item.value}</b>`;\n};\n```\n\nRenderer is called on the opening of the combo-box and each time the related model is updated.\nBefore creating new content, it is recommended to check if there is already an existing DOM\nelement in `root` from a previous renderer call for reusing it. Even though combo-box uses\ninfinite scrolling, reducing DOM operations might improve performance.\n\nThe following properties are available in the `model` argument:\n\nProperty | Type | Description\n-----------|------------------|-------------\n`index` | Number | Index of the item in the `items` array\n`item` | String or Object | The item reference\n`selected` | Boolean | True when item is selected\n`focused` | Boolean | True when item is focused\n\n### Lazy Loading with Function Data Provider\n\nIn addition to assigning an array to the items property, you can alternatively use the\n[`dataProvider`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box#property-dataProvider) function property.\nThe `<vaadin-combo-box>` calls this function lazily, only when it needs more data\nto be displayed.\n\n__Note that when using function data providers, the total number of items\nneeds to be set manually. The total number of items can be returned\nin the second argument of the data provider callback:__\n\n```js\ncomboBox.dataProvider = async (params, callback) => {\n const API = 'https://demo.vaadin.com/demo-data/1.0/filtered-countries';\n const { filter, page, pageSize } = params;\n const index = page * pageSize;\n\n const res = await fetch(`${API}?index=${index}&count=${pageSize}&filter=${filter}`);\n if (res.ok) {\n const { result, size } = await res.json();\n callback(result, size);\n }\n};\n```\n\n### Styling\n\nThe following custom properties are available for styling:\n\nCustom property | Description | Default\n----------------------------------------|----------------------------|---------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n`--vaadin-combo-box-overlay-width` | Width of the overlay | `auto`\n`--vaadin-combo-box-overlay-max-height` | Max height of the overlay | `65vh`\n\n`<vaadin-combo-box>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n----------------|----------------\n`toggle-button` | The toggle button\n\nIn addition to `<vaadin-text-field>` state attributes, the following state attributes are available for theming:\n\nAttribute | Description | Part name\n----------|-------------|------------\n`opened` | Set when the combo box dropdown is open | :host\n`loading` | Set when new items are expected | :host\n\nIf you want to replace the default `<input>` and its container with a custom implementation to get full control\nover the input field, consider using the [`<vaadin-combo-box-light>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-combo-box-light) element.\n\n### Internal components\n\nIn addition to `<vaadin-combo-box>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-combo-box-overlay>` - has the same API as [`<vaadin-overlay>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-overlay).\n- `<vaadin-combo-box-item>` - has the same API as [`<vaadin-item>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-item).\n- [`<vaadin-input-container>`](https://cdn.vaadin.com/vaadin-web-components/23.4.0-alpha1/#/elements/vaadin-input-container) - an internal element wrapping the input.\n\nNote: the `theme` attribute value set on `<vaadin-combo-box>` is\npropagated to the internal components listed above.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/custom-theme/styling-components) documentation.",
|
|
230
230
|
"extension": true,
|
|
231
231
|
"attributes": [
|
|
232
232
|
{
|