@vaadin/multi-select-combo-box 25.0.0-alpha2 → 25.0.0-alpha20

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.
Files changed (27) hide show
  1. package/package.json +15 -16
  2. package/src/{vaadin-multi-select-combo-box-styles.d.ts → styles/vaadin-multi-select-combo-box-base-styles.d.ts} +1 -3
  3. package/src/styles/vaadin-multi-select-combo-box-base-styles.js +58 -0
  4. package/src/styles/vaadin-multi-select-combo-box-chip-base-styles.js +126 -0
  5. package/src/styles/vaadin-multi-select-combo-box-overlay-base-styles.js +19 -0
  6. package/src/styles/vaadin-multi-select-combo-box-scroller-base-styles.js +8 -0
  7. package/src/vaadin-multi-select-combo-box-chip.js +4 -3
  8. package/src/vaadin-multi-select-combo-box-container.js +2 -0
  9. package/src/vaadin-multi-select-combo-box-item.js +7 -11
  10. package/src/vaadin-multi-select-combo-box-mixin.d.ts +18 -89
  11. package/src/vaadin-multi-select-combo-box-mixin.js +426 -307
  12. package/src/vaadin-multi-select-combo-box-overlay.js +5 -19
  13. package/src/vaadin-multi-select-combo-box-scroller.js +3 -24
  14. package/src/vaadin-multi-select-combo-box.d.ts +13 -7
  15. package/src/vaadin-multi-select-combo-box.js +42 -90
  16. package/vaadin-multi-select-combo-box.js +1 -1
  17. package/web-types.json +200 -236
  18. package/web-types.lit.json +76 -83
  19. package/src/vaadin-multi-select-combo-box-internal-mixin.js +0 -449
  20. package/src/vaadin-multi-select-combo-box-internal.js +0 -56
  21. package/src/vaadin-multi-select-combo-box-styles.js +0 -74
  22. package/theme/lumo/vaadin-multi-select-combo-box-chip-styles.d.ts +0 -10
  23. package/theme/lumo/vaadin-multi-select-combo-box-chip-styles.js +0 -107
  24. package/theme/lumo/vaadin-multi-select-combo-box-styles.d.ts +0 -10
  25. package/theme/lumo/vaadin-multi-select-combo-box-styles.js +0 -118
  26. package/theme/lumo/vaadin-multi-select-combo-box.d.ts +0 -8
  27. package/theme/lumo/vaadin-multi-select-combo-box.js +0 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/multi-select-combo-box",
3
- "version": "25.0.0-alpha2",
3
+ "version": "25.0.0-alpha20",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -23,7 +23,6 @@
23
23
  "lit.d.ts",
24
24
  "lit.js",
25
25
  "src",
26
- "theme",
27
26
  "vaadin-*.d.ts",
28
27
  "vaadin-*.js",
29
28
  "web-types.json",
@@ -37,27 +36,27 @@
37
36
  ],
38
37
  "dependencies": {
39
38
  "@open-wc/dedupe-mixin": "^1.3.0",
40
- "@vaadin/a11y-base": "25.0.0-alpha2",
41
- "@vaadin/combo-box": "25.0.0-alpha2",
42
- "@vaadin/component-base": "25.0.0-alpha2",
43
- "@vaadin/field-base": "25.0.0-alpha2",
44
- "@vaadin/input-container": "25.0.0-alpha2",
45
- "@vaadin/item": "25.0.0-alpha2",
46
- "@vaadin/lit-renderer": "25.0.0-alpha2",
47
- "@vaadin/overlay": "25.0.0-alpha2",
48
- "@vaadin/vaadin-lumo-styles": "25.0.0-alpha2",
49
- "@vaadin/vaadin-themable-mixin": "25.0.0-alpha2",
39
+ "@vaadin/a11y-base": "25.0.0-alpha20",
40
+ "@vaadin/combo-box": "25.0.0-alpha20",
41
+ "@vaadin/component-base": "25.0.0-alpha20",
42
+ "@vaadin/field-base": "25.0.0-alpha20",
43
+ "@vaadin/input-container": "25.0.0-alpha20",
44
+ "@vaadin/item": "25.0.0-alpha20",
45
+ "@vaadin/lit-renderer": "25.0.0-alpha20",
46
+ "@vaadin/overlay": "25.0.0-alpha20",
47
+ "@vaadin/vaadin-themable-mixin": "25.0.0-alpha20",
50
48
  "lit": "^3.0.0"
51
49
  },
52
50
  "devDependencies": {
53
- "@vaadin/chai-plugins": "25.0.0-alpha2",
54
- "@vaadin/test-runner-commands": "25.0.0-alpha2",
51
+ "@vaadin/chai-plugins": "25.0.0-alpha20",
52
+ "@vaadin/test-runner-commands": "25.0.0-alpha20",
55
53
  "@vaadin/testing-helpers": "^2.0.0",
56
- "sinon": "^18.0.0"
54
+ "@vaadin/vaadin-lumo-styles": "25.0.0-alpha20",
55
+ "sinon": "^21.0.0"
57
56
  },
58
57
  "web-types": [
59
58
  "web-types.json",
60
59
  "web-types.lit.json"
61
60
  ],
62
- "gitHead": "67ffcd5355cf21ce1b5039c598525109fc4c164b"
61
+ "gitHead": "c948aae591a30b432f3784000d4677674cae56e0"
63
62
  }
@@ -5,6 +5,4 @@
5
5
  */
6
6
  import type { CSSResult } from 'lit';
7
7
 
8
- export const multiSelectComboBox: CSSResult;
9
-
10
- export const multiSelectComboBoxChip: CSSResult;
8
+ export const multiSelectComboBoxStyles: CSSResult;
@@ -0,0 +1,58 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import '@vaadin/component-base/src/styles/style-props.js';
7
+ import { css } from 'lit';
8
+ import { comboBoxStyles } from '@vaadin/combo-box/src/styles/vaadin-combo-box-base-styles.js';
9
+
10
+ export const multiSelectComboBoxStyles = [
11
+ comboBoxStyles,
12
+ css`
13
+ :host {
14
+ max-width: 100%;
15
+ --_input-min-width: var(--vaadin-multi-select-combo-box-input-min-width, 4rem);
16
+ --_chip-min-width: var(--vaadin-multi-select-combo-box-chip-min-width, var(--vaadin-chip-min-width, 48px));
17
+ --_wrapper-gap: var(--vaadin-multi-select-combo-box-chips-gap, 2px);
18
+ }
19
+
20
+ #chips {
21
+ display: flex;
22
+ align-items: center;
23
+ gap: var(--vaadin-multi-select-combo-box-chips-gap, 2px);
24
+ }
25
+
26
+ ::slotted(input) {
27
+ box-sizing: border-box;
28
+ flex: 1 0 var(--_input-min-width);
29
+ }
30
+
31
+ ::slotted([slot='chip']),
32
+ ::slotted([slot='overflow']) {
33
+ flex: 0 1 auto;
34
+ }
35
+
36
+ ::slotted([slot='chip']) {
37
+ overflow: hidden;
38
+ }
39
+
40
+ :host(:is([readonly], [disabled])) ::slotted(input) {
41
+ flex-grow: 0;
42
+ flex-basis: 0;
43
+ padding: 0;
44
+ }
45
+
46
+ :host([readonly]:not([disabled])) [part$='button'] {
47
+ cursor: var(--vaadin-clickable-cursor);
48
+ }
49
+
50
+ :host([auto-expand-vertically]) #chips {
51
+ display: contents;
52
+ }
53
+
54
+ :host([auto-expand-horizontally]) [class$='container'] {
55
+ width: auto;
56
+ }
57
+ `,
58
+ ];
@@ -0,0 +1,126 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import '@vaadin/component-base/src/styles/style-props.js';
7
+ import { css } from 'lit';
8
+
9
+ export const multiSelectComboBoxChipStyles = css`
10
+ :host {
11
+ display: inline-flex;
12
+ align-items: center;
13
+ justify-content: center;
14
+ white-space: nowrap;
15
+ box-sizing: border-box;
16
+ gap: var(--vaadin-chip-gap, 0);
17
+ background: var(--vaadin-chip-background, var(--vaadin-background-container));
18
+ color: var(--vaadin-chip-color, var(--vaadin-text-color));
19
+ font-size: max(11px, var(--vaadin-chip-font-size, 0.875em));
20
+ font-weight: var(--vaadin-chip-font-weight, 500);
21
+ line-height: var(--vaadin-input-field-value-line-height, inherit);
22
+ padding: 0 var(--vaadin-chip-padding, 0.3em);
23
+ height: var(--vaadin-chip-height, calc(1lh / 0.875));
24
+ border-radius: var(--vaadin-chip-border-radius, var(--vaadin-radius-m));
25
+ border: var(--vaadin-chip-border-width, 1px) solid
26
+ var(--vaadin-chip-border-color, var(--vaadin-border-color-secondary));
27
+ cursor: default;
28
+ }
29
+
30
+ :host(:not([slot='overflow'])) {
31
+ min-width: min(
32
+ max-content,
33
+ var(--vaadin-multi-select-combo-box-chip-min-width, var(--vaadin-chip-min-width, 48px))
34
+ );
35
+ }
36
+
37
+ :host([focused]) {
38
+ outline: var(--vaadin-focus-ring-width) solid var(--vaadin-focus-ring-color);
39
+ outline-offset: calc(var(--vaadin-chip-border-width, 1px) * -1);
40
+ }
41
+
42
+ [part='label'] {
43
+ overflow: hidden;
44
+ text-overflow: ellipsis;
45
+ margin-block: calc(var(--vaadin-chip-border-width, 1px) * -1);
46
+ }
47
+
48
+ [part='remove-button'] {
49
+ flex: none;
50
+ display: block;
51
+ margin-inline-start: auto;
52
+ margin-block: calc(var(--vaadin-chip-border-width, 1px) * -1);
53
+ color: var(--vaadin-chip-remove-button-color, var(--vaadin-text-color-secondary));
54
+ cursor: var(--vaadin-clickable-cursor);
55
+ translate: 25%;
56
+ }
57
+
58
+ [part='remove-button']::before {
59
+ content: '';
60
+ display: block;
61
+ width: var(--vaadin-icon-size, 1lh);
62
+ height: var(--vaadin-icon-size, 1lh);
63
+ background: currentColor;
64
+ mask-image: var(--_vaadin-icon-cross);
65
+ }
66
+
67
+ :host([disabled]) {
68
+ cursor: var(--vaadin-disabled-cursor);
69
+ }
70
+
71
+ :host([disabled]) [part='label'] {
72
+ --vaadin-chip-color: var(--vaadin-text-color-disabled);
73
+ }
74
+
75
+ :host([hidden]),
76
+ :host(:is([readonly], [disabled], [slot='overflow'])) [part='remove-button'] {
77
+ display: none !important;
78
+ }
79
+
80
+ :host([slot='overflow']) {
81
+ position: relative;
82
+ margin-inline-start: 8px;
83
+ min-width: 1.5em;
84
+ }
85
+
86
+ :host([slot='overflow'])::before,
87
+ :host([slot='overflow'])::after {
88
+ content: '';
89
+ position: absolute;
90
+ inset: calc(var(--vaadin-chip-border-width, 1px) * -1);
91
+ border-inline-start: 2px solid var(--vaadin-chip-border-color, var(--vaadin-border-color-secondary));
92
+ border-radius: inherit;
93
+ }
94
+
95
+ :host([slot='overflow'])::before {
96
+ left: calc(-4px - var(--vaadin-chip-border-width, 1px));
97
+ }
98
+
99
+ :host([slot='overflow'])::after {
100
+ left: calc(-8px - var(--vaadin-chip-border-width, 1px));
101
+ }
102
+
103
+ :host([count='2']) {
104
+ margin-inline-start: 4px;
105
+ }
106
+
107
+ :host([count='1']) {
108
+ margin-inline-start: 0;
109
+ }
110
+
111
+ :host([count='2'])::after,
112
+ :host([count='1'])::before,
113
+ :host([count='1'])::after {
114
+ display: none;
115
+ }
116
+
117
+ @media (forced-colors: active) {
118
+ :host {
119
+ border: 1px solid !important;
120
+ }
121
+
122
+ [part='remove-button']::before {
123
+ background: CanvasText;
124
+ }
125
+ }
126
+ `;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import { css } from 'lit';
7
+ import { comboBoxOverlayStyles } from '@vaadin/combo-box/src/styles/vaadin-combo-box-overlay-base-styles.js';
8
+
9
+ export const multiSelectComboBoxOverlayStyles = [
10
+ comboBoxOverlayStyles,
11
+ css`
12
+ #overlay {
13
+ width: var(
14
+ --vaadin-multi-select-combo-box-overlay-width,
15
+ var(--_vaadin-multi-select-combo-box-overlay-default-width, auto)
16
+ );
17
+ }
18
+ `,
19
+ ];
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import { comboBoxScrollerStyles } from '@vaadin/combo-box/src/styles/vaadin-combo-box-scroller-base-styles.js';
7
+
8
+ export const multiSelectComboBoxScrollerStyles = comboBoxScrollerStyles;
@@ -6,8 +6,9 @@
6
6
  import { html, LitElement } from 'lit';
7
7
  import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
8
  import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
9
+ import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js';
9
10
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
10
- import { multiSelectComboBoxChip } from './vaadin-multi-select-combo-box-styles.js';
11
+ import { multiSelectComboBoxChipStyles } from './styles/vaadin-multi-select-combo-box-chip-base-styles.js';
11
12
 
12
13
  /**
13
14
  * An element used by `<vaadin-multi-select-combo-box>` to display selected items.
@@ -27,13 +28,13 @@ import { multiSelectComboBoxChip } from './vaadin-multi-select-combo-box-styles.
27
28
  * @extends HTMLElement
28
29
  * @private
29
30
  */
30
- class MultiSelectComboBoxChip extends ThemableMixin(PolylitMixin(LitElement)) {
31
+ class MultiSelectComboBoxChip extends ThemableMixin(PolylitMixin(LumoInjectionMixin(LitElement))) {
31
32
  static get is() {
32
33
  return 'vaadin-multi-select-combo-box-chip';
33
34
  }
34
35
 
35
36
  static get styles() {
36
- return multiSelectComboBoxChip;
37
+ return multiSelectComboBoxChipStyles;
37
38
  }
38
39
 
39
40
  static get properties() {
@@ -27,6 +27,8 @@ class MultiSelectComboBoxContainer extends InputContainer {
27
27
  display: flex;
28
28
  width: 100%;
29
29
  min-width: 0;
30
+ gap: var(--_wrapper-gap);
31
+ align-self: start;
30
32
  }
31
33
 
32
34
  :host([auto-expand-vertically]) #wrapper {
@@ -3,11 +3,13 @@
3
3
  * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import { css, html, LitElement } from 'lit';
6
+ import { html, LitElement } from 'lit';
7
7
  import { ComboBoxItemMixin } from '@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js';
8
8
  import { defineCustomElement } from '@vaadin/component-base/src/define.js';
9
9
  import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
10
10
  import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
11
+ import { itemStyles } from '@vaadin/item/src/styles/vaadin-item-base-styles.js';
12
+ import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js';
11
13
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
12
14
 
13
15
  /**
@@ -37,21 +39,15 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
37
39
  * @mixes DirMixin
38
40
  * @private
39
41
  */
40
- export class MultiSelectComboBoxItem extends ComboBoxItemMixin(ThemableMixin(DirMixin(PolylitMixin(LitElement)))) {
42
+ export class MultiSelectComboBoxItem extends ComboBoxItemMixin(
43
+ ThemableMixin(DirMixin(PolylitMixin(LumoInjectionMixin(LitElement)))),
44
+ ) {
41
45
  static get is() {
42
46
  return 'vaadin-multi-select-combo-box-item';
43
47
  }
44
48
 
45
49
  static get styles() {
46
- return css`
47
- :host {
48
- display: block;
49
- }
50
-
51
- :host([hidden]) {
52
- display: none !important;
53
- }
54
- `;
50
+ return itemStyles;
55
51
  }
56
52
 
57
53
  /** @protected */
@@ -8,8 +8,12 @@ import type { DelegateFocusMixinClass } from '@vaadin/a11y-base/src/delegate-foc
8
8
  import type { DisabledMixinClass } from '@vaadin/a11y-base/src/disabled-mixin.js';
9
9
  import type { FocusMixinClass } from '@vaadin/a11y-base/src/focus-mixin.js';
10
10
  import type { KeyboardMixinClass } from '@vaadin/a11y-base/src/keyboard-mixin.js';
11
- import type { ComboBoxDataProvider, ComboBoxItemModel } from '@vaadin/combo-box/src/vaadin-combo-box.js';
11
+ import type { ComboBoxItemModel } from '@vaadin/combo-box/src/vaadin-combo-box.js';
12
+ import type { ComboBoxBaseMixinClass } from '@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js';
13
+ import type { ComboBoxDataProviderMixinClass } from '@vaadin/combo-box/src/vaadin-combo-box-data-provider-mixin.js';
14
+ import type { ComboBoxItemsMixinClass } from '@vaadin/combo-box/src/vaadin-combo-box-items-mixin.js';
12
15
  import type { DelegateStateMixinClass } from '@vaadin/component-base/src/delegate-state-mixin.js';
16
+ import type { I18nMixinClass } from '@vaadin/component-base/src/i18n-mixin.js';
13
17
  import type { ResizeMixinClass } from '@vaadin/component-base/src/resize-mixin.js';
14
18
  import type { SlotStylesMixinClass } from '@vaadin/component-base/src/slot-styles-mixin.js';
15
19
  import type { ClearButtonMixinClass } from '@vaadin/field-base/src/clear-button-mixin.js';
@@ -28,21 +32,25 @@ export type MultiSelectComboBoxRenderer<TItem> = (
28
32
  ) => void;
29
33
 
30
34
  export interface MultiSelectComboBoxI18n {
31
- cleared: string;
32
- focused: string;
33
- selected: string;
34
- deselected: string;
35
- total: string;
35
+ cleared?: string;
36
+ focused?: string;
37
+ selected?: string;
38
+ deselected?: string;
39
+ total?: string;
36
40
  }
37
41
 
38
42
  export declare function MultiSelectComboBoxMixin<TItem, T extends Constructor<HTMLElement>>(
39
43
  base: T,
40
44
  ): Constructor<ClearButtonMixinClass> &
45
+ Constructor<ComboBoxBaseMixinClass> &
46
+ Constructor<ComboBoxDataProviderMixinClass<TItem>> &
47
+ Constructor<ComboBoxItemsMixinClass<TItem>> &
41
48
  Constructor<DelegateFocusMixinClass> &
42
49
  Constructor<DelegateStateMixinClass> &
43
50
  Constructor<DisabledMixinClass> &
44
51
  Constructor<FieldMixinClass> &
45
52
  Constructor<FocusMixinClass> &
53
+ Constructor<I18nMixinClass<MultiSelectComboBoxI18n>> &
46
54
  Constructor<InputConstraintsMixinClass> &
47
55
  Constructor<InputControlMixinClass> &
48
56
  Constructor<InputMixinClass> &
@@ -76,44 +84,6 @@ export declare class MultiSelectComboBoxMixinClass<TItem> {
76
84
  */
77
85
  allowCustomValue: boolean;
78
86
 
79
- /**
80
- * Set true to prevent the overlay from opening automatically.
81
- * @attr {boolean} auto-open-disabled
82
- */
83
- autoOpenDisabled: boolean;
84
-
85
- /**
86
- * Function that provides items lazily. Receives two arguments:
87
- *
88
- * - `params` - Object with the following properties:
89
- * - `params.page` Requested page index
90
- * - `params.pageSize` Current page size
91
- * - `params.filter` Currently applied filter
92
- *
93
- * - `callback(items, size)` - Callback function with arguments:
94
- * - `items` Current page of items
95
- * - `size` Total number of items.
96
- */
97
- dataProvider: ComboBoxDataProvider<TItem> | null | undefined;
98
-
99
- /**
100
- * A subset of items, filtered based on the user input. Filtered items
101
- * can be assigned directly to omit the internal filtering functionality.
102
- * The items can be of either `String` or `Object` type.
103
- */
104
- filteredItems: TItem[] | undefined;
105
-
106
- /**
107
- * Filtering string the user has typed into the input field.
108
- */
109
- filter: string;
110
-
111
- /**
112
- * A full set of items to filter the visible options from.
113
- * The items can be of either `String` or `Object` type.
114
- */
115
- items: TItem[] | undefined;
116
-
117
87
  /**
118
88
  * A function used to generate CSS class names for dropdown
119
89
  * items and selected chips based on the item. The return
@@ -122,12 +92,6 @@ export declare class MultiSelectComboBoxMixinClass<TItem> {
122
92
  */
123
93
  itemClassNameGenerator: (item: TItem) => string;
124
94
 
125
- /**
126
- * The item property used for a visual representation of the item.
127
- * @attr {string} item-label-path
128
- */
129
- itemLabelPath: string;
130
-
131
95
  /**
132
96
  * Path for the id of the item, used to detect whether the item is selected.
133
97
  * @attr {string} item-id-path
@@ -135,19 +99,12 @@ export declare class MultiSelectComboBoxMixinClass<TItem> {
135
99
  itemIdPath: string;
136
100
 
137
101
  /**
138
- * Path for the value of the item. If `items` is an array of objects,
139
- * this property is used as a string value for the selected item.
140
- * @attr {string} item-value-path
141
- */
142
- itemValuePath: string;
143
-
144
- /**
145
- * The object used to localize this component.
146
- * To change the default localization, replace the entire
147
- * _i18n_ object or just the property you want to modify.
102
+ * The object used to localize this component. To change the default
103
+ * localization, replace this with an object that provides all properties, or
104
+ * just the individual properties you want to change.
148
105
  *
149
106
  * The object has the following JSON structure and default values:
150
- * ```
107
+ * ```js
151
108
  * {
152
109
  * // Screen reader announcement on clear button click.
153
110
  * cleared: 'Selection cleared',
@@ -176,24 +133,6 @@ export declare class MultiSelectComboBoxMixinClass<TItem> {
176
133
  */
177
134
  loading: boolean;
178
135
 
179
- /**
180
- * A space-delimited list of CSS class names to set on the overlay element.
181
- *
182
- * @attr {string} overlay-class
183
- */
184
- overlayClass: string;
185
-
186
- /**
187
- * True if the dropdown is open, false otherwise.
188
- */
189
- opened: boolean;
190
-
191
- /**
192
- * Number of items fetched at a time from the data provider.
193
- * @attr {number} page-size
194
- */
195
- pageSize: number;
196
-
197
136
  /**
198
137
  * A hint to the user of what can be entered in the control.
199
138
  * The placeholder will be only displayed in the case when
@@ -226,16 +165,6 @@ export declare class MultiSelectComboBoxMixinClass<TItem> {
226
165
  */
227
166
  selectedItemsOnTop: boolean;
228
167
 
229
- /**
230
- * Total number of items.
231
- */
232
- size: number | undefined;
233
-
234
- /**
235
- * Clears the cached pages and reloads data from data provider when needed.
236
- */
237
- clearCache(): void;
238
-
239
168
  /**
240
169
  * Clears the selected items.
241
170
  */