@progress/kendo-vue-dropdowns 8.0.3-develop.2 → 8.0.3-develop.4

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 (44) hide show
  1. package/AutoComplete/AutoComplete.d.ts +331 -0
  2. package/AutoComplete/AutoCompleteProps.d.ts +243 -0
  3. package/ComboBox/ComboBox.d.ts +371 -0
  4. package/ComboBox/ComboBoxProps.d.ts +286 -0
  5. package/DropDownList/DropDownList.d.ts +353 -0
  6. package/DropDownList/DropDownListProps.d.ts +312 -0
  7. package/DropDownTree/DropDownTree.d.ts +301 -0
  8. package/DropDownTree/DropDownTreeProps.d.ts +306 -0
  9. package/DropDownTree/ListNoData.d.ts +12 -0
  10. package/MultiSelect/MultiSelect.d.ts +369 -0
  11. package/MultiSelect/MultiSelect.js +1 -1
  12. package/MultiSelect/MultiSelect.mjs +2 -2
  13. package/MultiSelect/MultiSelectProps.d.ts +300 -0
  14. package/MultiSelect/TagList.d.ts +90 -0
  15. package/MultiSelectTree/MultiSelectTree.d.ts +272 -0
  16. package/MultiSelectTree/MultiSelectTreeProps.d.ts +327 -0
  17. package/MultiSelectTree/utils.d.ts +24 -0
  18. package/common/ClearButton.d.ts +22 -0
  19. package/common/DropDownBase.d.ts +106 -0
  20. package/common/GroupStickyHeader.d.ts +32 -0
  21. package/common/List.d.ts +111 -0
  22. package/common/List.mjs +1 -1
  23. package/common/ListContainer.d.ts +63 -0
  24. package/common/ListDefaultItem.d.ts +35 -0
  25. package/common/ListFilter.d.ts +103 -0
  26. package/common/ListGroupItem.d.ts +70 -0
  27. package/common/ListItem.d.ts +129 -0
  28. package/common/ListItemIcon.d.ts +33 -0
  29. package/common/Navigation.d.ts +19 -0
  30. package/common/SearchBar.d.ts +120 -0
  31. package/common/VirtualScroll.d.ts +49 -0
  32. package/common/constants.d.ts +11 -0
  33. package/common/events.d.ts +70 -0
  34. package/common/filterDescriptor.d.ts +48 -0
  35. package/common/settings.d.ts +118 -0
  36. package/common/utils.d.ts +77 -0
  37. package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
  38. package/index.d.mts +18 -4024
  39. package/index.d.ts +18 -4024
  40. package/messages/main.d.ts +47 -0
  41. package/package-metadata.d.ts +12 -0
  42. package/package-metadata.js +1 -1
  43. package/package-metadata.mjs +2 -2
  44. package/package.json +18 -12
@@ -0,0 +1,371 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxFilterChangeEvent, ComboBoxPageChangeEvent } from './ComboBoxProps';
9
+ import { InternalState } from './../common/settings';
10
+ import { FormComponentValidity } from '@progress/kendo-vue-common';
11
+ import { PropType } from 'vue';
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const ComboBox: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
16
+ id: PropType<string>;
17
+ dataItemKey: {
18
+ type: PropType<string>;
19
+ };
20
+ defaultValue: {
21
+ type: PropType<any>;
22
+ default: any;
23
+ };
24
+ name: StringConstructor;
25
+ modelValue: {
26
+ type: PropType<any>;
27
+ default: any;
28
+ };
29
+ value: {
30
+ type: PropType<any>;
31
+ default: any;
32
+ };
33
+ label: {
34
+ type: PropType<string>;
35
+ };
36
+ placeholder: PropType<string>;
37
+ required: {
38
+ type: PropType<boolean>;
39
+ default: boolean;
40
+ };
41
+ valid: {
42
+ type: PropType<boolean>;
43
+ default: any;
44
+ };
45
+ validationMessage: {
46
+ type: PropType<string>;
47
+ default: any;
48
+ };
49
+ validityStyles: {
50
+ type: PropType<boolean>;
51
+ default: boolean;
52
+ };
53
+ iconClassName: PropType<string>;
54
+ opened: {
55
+ type: PropType<boolean>;
56
+ default: any;
57
+ };
58
+ disabled: PropType<boolean>;
59
+ dir: {
60
+ type: PropType<string>;
61
+ default: any;
62
+ };
63
+ tabIndex: {
64
+ type: PropType<number>;
65
+ default: number;
66
+ };
67
+ accessKey: PropType<string>;
68
+ dataItems: PropType<any[]>;
69
+ textField: PropType<string>;
70
+ className: PropType<string>;
71
+ loading: PropType<boolean>;
72
+ popupSettings: {
73
+ type: PropType<import('./../common/settings').DropDownsPopupSettings>;
74
+ default: () => {
75
+ animate: boolean;
76
+ height: string;
77
+ anchor: string;
78
+ };
79
+ };
80
+ itemRender: PropType<any>;
81
+ groupHeaderItemRender: PropType<any>;
82
+ groupStickyHeaderItemRender: PropType<any>;
83
+ listNoDataRender: PropType<any>;
84
+ focusedItemIndex: PropType<(data: any, inputText: string, textField?: string) => number>;
85
+ header: PropType<any>;
86
+ footer: PropType<any>;
87
+ filterable: PropType<boolean>;
88
+ filter: {
89
+ type: PropType<string>;
90
+ default: any;
91
+ };
92
+ virtual: {
93
+ type: PropType<import('./../common/settings').VirtualizationSettings>;
94
+ default: any;
95
+ };
96
+ suggest: {
97
+ type: PropType<boolean>;
98
+ default: boolean;
99
+ };
100
+ allowCustom: {
101
+ type: PropType<boolean>;
102
+ default: boolean;
103
+ };
104
+ clearButton: {
105
+ type: PropType<boolean>;
106
+ default: boolean;
107
+ };
108
+ ariaLabel: {
109
+ type: PropType<string>;
110
+ default: any;
111
+ };
112
+ ariaLabelledBy: PropType<string>;
113
+ ariaDescribedBy: PropType<string>;
114
+ valueField: PropType<string>;
115
+ valuePrimitive: PropType<boolean>;
116
+ rounded: {
117
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
118
+ validator: (value: string) => boolean;
119
+ };
120
+ fillMode: {
121
+ type: PropType<"flat" | "solid" | "outline">;
122
+ validator: (value: string) => boolean;
123
+ };
124
+ size: {
125
+ type: PropType<"small" | "medium" | "large">;
126
+ validator: (value: string) => boolean;
127
+ };
128
+ groupField: {
129
+ type: PropType<string>;
130
+ };
131
+ adaptive: {
132
+ type: PropType<boolean>;
133
+ default: any;
134
+ };
135
+ adaptiveTitle: {
136
+ type: PropType<string>;
137
+ default: any;
138
+ };
139
+ onFilterchange: PropType<(event: ComboBoxFilterChangeEvent) => void>;
140
+ inputAttributes: PropType<Object>;
141
+ }>, {
142
+ inputRef: import('vue').Ref<any, any>;
143
+ elementRef: import('vue').Ref<any, any>;
144
+ kendoAnchorRef: import('vue').Ref<any, any>;
145
+ kendoLocalizationService: {};
146
+ }, {
147
+ hasMounted: boolean;
148
+ currentText: string;
149
+ currentValue: string;
150
+ currentFocused: boolean;
151
+ currentOpened: boolean;
152
+ searchState: {
153
+ word: string;
154
+ last: string;
155
+ };
156
+ _skipFocusEvent: boolean;
157
+ valueDuringOnChange: {};
158
+ _navigated: boolean;
159
+ suggested: string;
160
+ group: any;
161
+ isScrolling: boolean;
162
+ itemHeight: number;
163
+ state: any;
164
+ popupWidth: any;
165
+ windowWidth: number;
166
+ }, {
167
+ index(): number;
168
+ spanClassNames(): object;
169
+ isOpen(): boolean;
170
+ animationStyles(): object | undefined;
171
+ classNameAdaptive(): string;
172
+ adaptiveState(): any;
173
+ }, {
174
+ focus(): void;
175
+ computedValue(): any;
176
+ findByFieldValue(field: string, value: string): any;
177
+ primitiveValue(): any;
178
+ validity(): FormComponentValidity;
179
+ handleItemSelect(index: number, state: InternalState): void;
180
+ onNavigate(state: InternalState, keyCode: number): void;
181
+ toggleBtnClick(event: MouseEvent): void;
182
+ applyValueOnEnter(value: string, state: InternalState): any;
183
+ applyValueOnRejectSuggestions(text: string, state: InternalState): any;
184
+ selectFocusedItem(text: string, state: InternalState): any;
185
+ handleItemClick(index: number, event: any): void;
186
+ handleFocus(event: any): void;
187
+ handleBlur(event: any): void;
188
+ onInputKeyDown(event: any): void;
189
+ inputOnChange(event: any): void;
190
+ clearButtonClick(event: any): void;
191
+ getFocusedIndex(): number;
192
+ suggestValue(value?: string): void;
193
+ setValidity(): void;
194
+ compareValues(value: any, item: any): boolean;
195
+ triggerOnChange(item: any, state: InternalState): void;
196
+ applyState(state: InternalState): void;
197
+ calculateMedia(entries: ResizeObserverEntry[]): void;
198
+ repositionPopup(): void;
199
+ onScroll(event: any): void;
200
+ getInputText(text: any, selectedItemText: any): string;
201
+ getSelectedItemText(): string | undefined;
202
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
203
+ changemodel: (value: any) => true;
204
+ 'update:modelValue': (value: any) => true;
205
+ filterchange: (event: ComboBoxFilterChangeEvent) => true;
206
+ pagechange: (event: ComboBoxPageChangeEvent) => true;
207
+ change: (event: ComboBoxChangeEvent) => true;
208
+ focus: (event: ComboBoxFocusEvent) => true;
209
+ blur: (event: ComboBoxBlurEvent) => true;
210
+ open: (event: ComboBoxOpenEvent) => true;
211
+ close: (event: ComboBoxCloseEvent) => true;
212
+ scroll: (event: Event) => true;
213
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
214
+ id: PropType<string>;
215
+ dataItemKey: {
216
+ type: PropType<string>;
217
+ };
218
+ defaultValue: {
219
+ type: PropType<any>;
220
+ default: any;
221
+ };
222
+ name: StringConstructor;
223
+ modelValue: {
224
+ type: PropType<any>;
225
+ default: any;
226
+ };
227
+ value: {
228
+ type: PropType<any>;
229
+ default: any;
230
+ };
231
+ label: {
232
+ type: PropType<string>;
233
+ };
234
+ placeholder: PropType<string>;
235
+ required: {
236
+ type: PropType<boolean>;
237
+ default: boolean;
238
+ };
239
+ valid: {
240
+ type: PropType<boolean>;
241
+ default: any;
242
+ };
243
+ validationMessage: {
244
+ type: PropType<string>;
245
+ default: any;
246
+ };
247
+ validityStyles: {
248
+ type: PropType<boolean>;
249
+ default: boolean;
250
+ };
251
+ iconClassName: PropType<string>;
252
+ opened: {
253
+ type: PropType<boolean>;
254
+ default: any;
255
+ };
256
+ disabled: PropType<boolean>;
257
+ dir: {
258
+ type: PropType<string>;
259
+ default: any;
260
+ };
261
+ tabIndex: {
262
+ type: PropType<number>;
263
+ default: number;
264
+ };
265
+ accessKey: PropType<string>;
266
+ dataItems: PropType<any[]>;
267
+ textField: PropType<string>;
268
+ className: PropType<string>;
269
+ loading: PropType<boolean>;
270
+ popupSettings: {
271
+ type: PropType<import('./../common/settings').DropDownsPopupSettings>;
272
+ default: () => {
273
+ animate: boolean;
274
+ height: string;
275
+ anchor: string;
276
+ };
277
+ };
278
+ itemRender: PropType<any>;
279
+ groupHeaderItemRender: PropType<any>;
280
+ groupStickyHeaderItemRender: PropType<any>;
281
+ listNoDataRender: PropType<any>;
282
+ focusedItemIndex: PropType<(data: any, inputText: string, textField?: string) => number>;
283
+ header: PropType<any>;
284
+ footer: PropType<any>;
285
+ filterable: PropType<boolean>;
286
+ filter: {
287
+ type: PropType<string>;
288
+ default: any;
289
+ };
290
+ virtual: {
291
+ type: PropType<import('./../common/settings').VirtualizationSettings>;
292
+ default: any;
293
+ };
294
+ suggest: {
295
+ type: PropType<boolean>;
296
+ default: boolean;
297
+ };
298
+ allowCustom: {
299
+ type: PropType<boolean>;
300
+ default: boolean;
301
+ };
302
+ clearButton: {
303
+ type: PropType<boolean>;
304
+ default: boolean;
305
+ };
306
+ ariaLabel: {
307
+ type: PropType<string>;
308
+ default: any;
309
+ };
310
+ ariaLabelledBy: PropType<string>;
311
+ ariaDescribedBy: PropType<string>;
312
+ valueField: PropType<string>;
313
+ valuePrimitive: PropType<boolean>;
314
+ rounded: {
315
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
316
+ validator: (value: string) => boolean;
317
+ };
318
+ fillMode: {
319
+ type: PropType<"flat" | "solid" | "outline">;
320
+ validator: (value: string) => boolean;
321
+ };
322
+ size: {
323
+ type: PropType<"small" | "medium" | "large">;
324
+ validator: (value: string) => boolean;
325
+ };
326
+ groupField: {
327
+ type: PropType<string>;
328
+ };
329
+ adaptive: {
330
+ type: PropType<boolean>;
331
+ default: any;
332
+ };
333
+ adaptiveTitle: {
334
+ type: PropType<string>;
335
+ default: any;
336
+ };
337
+ onFilterchange: PropType<(event: ComboBoxFilterChangeEvent) => void>;
338
+ inputAttributes: PropType<Object>;
339
+ }>> & Readonly<{
340
+ onBlur?: (event: ComboBoxBlurEvent) => any;
341
+ onChange?: (event: ComboBoxChangeEvent) => any;
342
+ onClose?: (event: ComboBoxCloseEvent) => any;
343
+ onFocus?: (event: ComboBoxFocusEvent) => any;
344
+ onScroll?: (event: Event) => any;
345
+ onOpen?: (event: ComboBoxOpenEvent) => any;
346
+ onChangemodel?: (value: any) => any;
347
+ "onUpdate:modelValue"?: (value: any) => any;
348
+ onPagechange?: (event: ComboBoxPageChangeEvent) => any;
349
+ onFilterchange?: (event: ComboBoxFilterChangeEvent) => any;
350
+ }>, {
351
+ filter: string;
352
+ required: boolean;
353
+ value: any;
354
+ ariaLabel: string;
355
+ tabIndex: number;
356
+ virtual: import('./../common/settings').VirtualizationSettings;
357
+ adaptive: boolean;
358
+ clearButton: boolean;
359
+ dir: string;
360
+ defaultValue: any;
361
+ opened: boolean;
362
+ popupSettings: import('./../common/settings').DropDownsPopupSettings;
363
+ modelValue: any;
364
+ valid: boolean;
365
+ validationMessage: string;
366
+ validityStyles: boolean;
367
+ adaptiveTitle: string;
368
+ suggest: boolean;
369
+ allowCustom: boolean;
370
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
371
+ export { ComboBox };
@@ -0,0 +1,286 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
9
+ import { FormComponentProps } from '@progress/kendo-vue-common';
10
+ import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
11
+ import { SVGIcon } from '@progress/kendo-svg-icons';
12
+ /**
13
+ * Represents the object of the `FilterChange` ComboBox event.
14
+ */
15
+ export interface ComboBoxFilterChangeEvent extends FilterChangeEvent {
16
+ }
17
+ /**
18
+ * Represents the object of the `change` ComboBox event.
19
+ */
20
+ export interface ComboBoxChangeEvent extends ChangeEvent {
21
+ }
22
+ /**
23
+ * Represents the object of the `open` ComboBox event.
24
+ */
25
+ export interface ComboBoxOpenEvent extends OpenEvent {
26
+ }
27
+ /**
28
+ * Represents the object of the `close` ComboBox event.
29
+ */
30
+ export interface ComboBoxCloseEvent extends CloseEvent {
31
+ }
32
+ /**
33
+ * Represents the object of the `focus` ComboBox event.
34
+ */
35
+ export interface ComboBoxFocusEvent extends FocusEvent {
36
+ }
37
+ /**
38
+ * Represents the object of the `blur` ComboBox event.
39
+ */
40
+ export interface ComboBoxBlurEvent extends BlurEvent {
41
+ }
42
+ /**
43
+ * Represents the object of the `PageChange` ComboBox event.
44
+ */
45
+ export interface ComboBoxPageChangeEvent extends PageChangeEvent {
46
+ }
47
+ /**
48
+ * Represents the props of the [Kendo UI for Vue ComboBox component]({% slug overview_combobox %}).
49
+ */
50
+ export interface ComboBoxProps extends FormComponentProps {
51
+ /**
52
+ * Sets the dataItems of the ComboBox ([more information and examples]({% slug binding_combobox %})).
53
+ */
54
+ dataItems?: any[];
55
+ /**
56
+ * Sets the opened and closed state of the ComboBox.
57
+ */
58
+ opened?: boolean;
59
+ /**
60
+ * Sets the value of the ComboBox ([more information and examples]({% slug binding_combobox %})). It can either be of the primitive (string, numbers) or of the complex (objects) type.
61
+ */
62
+ value?: any;
63
+ /**
64
+ * Sets the default value of the ComboBox. Similar to the native `select` HTML element.
65
+ */
66
+ defaultValue?: any;
67
+ /**
68
+ * Defines the name for an existing arrow icon.
69
+ */
70
+ icon?: string;
71
+ /**
72
+ * Defines the svg icon in a Kendo UI for Vue theme.
73
+ */
74
+ svgIcon?: SVGIcon;
75
+ /**
76
+ * Sets CSS classes to the expand `icon` DOM element.
77
+ */
78
+ iconClassName?: string;
79
+ /**
80
+ * If `clearButton` is set to `true`, the ComboBox renders a button on hovering over the component. Clicking this button resets the value of the ComboBox to `undefined` and triggers the `change` event.
81
+ */
82
+ clearButton?: boolean;
83
+ /**
84
+ * The hint that is displayed when the ComboBox is empty.
85
+ */
86
+ placeholder?: string;
87
+ /**
88
+ * Enables the auto-completion of the text based on the first data item ([see example]({% slug suggestions_combobox %})).
89
+ */
90
+ suggest?: boolean;
91
+ /**
92
+ * Specifies whether the ComboBox allows user-defined values that are not present in the dataset ([see example]({% slug custom_values_combobox %})). Defaults to `false`.
93
+ */
94
+ allowCustom?: boolean;
95
+ /**
96
+ * Sets the disabled state of the ComboBox.
97
+ */
98
+ disabled?: boolean;
99
+ /**
100
+ * Sets additional classes to the DropDownList.
101
+ */
102
+ className?: string;
103
+ /**
104
+ * @hidden
105
+ */
106
+ modelValue?: any;
107
+ /**
108
+ * Represents the `dir` HTML attribute.
109
+ */
110
+ dir?: string;
111
+ /**
112
+ * Enables the filtering functionality of the ComboBox ([more information and examples]({% slug filtering_combobox %})).
113
+ */
114
+ filterable?: boolean;
115
+ /**
116
+ * Sets the value of ComboBox input. Useful for making the ComboBox input a controlled component.
117
+ */
118
+ filter?: string | null;
119
+ /**
120
+ * Sets the loading state of the ComboBox ([see example]({% slug filtering_combobox %}#toc-basic-configuration)).
121
+ */
122
+ loading?: boolean;
123
+ /**
124
+ * Specifies the `tabIndex` of the ComboBox.
125
+ */
126
+ tabIndex?: number;
127
+ /**
128
+ * Specifies the `accessKey` of the ComboBox.
129
+ */
130
+ accessKey?: string;
131
+ /**
132
+ * Sets the data item field that represents the item text. If the data contains only primitive values, do not define it.
133
+ */
134
+ textField?: string;
135
+ /**
136
+ * Sets the data item field that represents the item value.
137
+ */
138
+ valueField?: string;
139
+ /**
140
+ * Specifies the type of the selected value. If set to true, the selected value has to be of a primitive value.
141
+ */
142
+ valuePrimitive?: boolean;
143
+ /**
144
+ * Sets the key for comparing the data items of the ComboBox. If `dataItemKey` is not set, the ComboBox compares the items by reference ([see example]({% slug binding_combobox %}#toc-datasets-of-objects)).
145
+ */
146
+ dataItemKey?: string;
147
+ /**
148
+ * Renders a floating label for the ComboBox.
149
+ */
150
+ label?: string;
151
+ /**
152
+ * Configures the popup of the ComboBox.
153
+ */
154
+ popupSettings?: DropDownsPopupSettings;
155
+ /**
156
+ * Configures the virtual scrolling of the ComboBox ([more information and examples]({% slug virtualization_combobox %})).
157
+ */
158
+ virtual?: VirtualizationSettings;
159
+ /**
160
+ * Specifies the id of the component.
161
+ */
162
+ id?: string;
163
+ /**
164
+ * Identifies the element(s) which will describe the component, similar to [HTML aria-describedby attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute).
165
+ * For example these elements could contain error or hint message.
166
+ */
167
+ ariaDescribedBy?: string;
168
+ /**
169
+ * Identifies the element(s) which will label the component.
170
+ */
171
+ ariaLabelledBy?: string;
172
+ /**
173
+ * Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
174
+ */
175
+ ariaLabel?: string;
176
+ /**
177
+ * If set, the ComboBox will use it to get the focused item index.
178
+ *
179
+ * Default functionality returns the first item which starts with the input text.
180
+ */
181
+ focusedItemIndex?: (data: any, inputText: string, textField?: string) => number;
182
+ /**
183
+ * Fires each time the popup of the ComboBox is about to open.
184
+ */
185
+ onOpen?: (event: ComboBoxOpenEvent) => void;
186
+ /**
187
+ * Fires each time the popup of the ComboBox is about to close.
188
+ */
189
+ onClose?: (event: ComboBoxCloseEvent) => void;
190
+ /**
191
+ * Fires each time the user focuses the ComboBox.
192
+ */
193
+ onFocus?: (event: ComboBoxFocusEvent) => void;
194
+ /**
195
+ * Fires each time the ComboBox gets blurred.
196
+ */
197
+ onBlur?: (event: ComboBoxBlurEvent) => void;
198
+ /**
199
+ * Fires each time the value of the ComboBox is about to change ([see examples]({% slug binding_combobox %})).
200
+ */
201
+ onChange?: (event: ComboBoxChangeEvent) => void;
202
+ /**
203
+ * Fires each time the user types in the filter input ([see examples]({% slug filtering_combobox %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
204
+ */
205
+ onFilterchange?: (event: ComboBoxFilterChangeEvent) => void;
206
+ /**
207
+ * Fires when both the virtual scrolling of the ComboBox is enabled and the component requires data for another page ([more information and examples]({% slug virtualization_combobox %})).
208
+ */
209
+ onPagechange?: (event: ComboBoxPageChangeEvent) => void;
210
+ /**
211
+ * Fires when a ComboBox list item is about to be rendered ([see example]({% slug customrendering_combobox %}#toc-items)). Used to override the default appearance of the list items.
212
+ */
213
+ itemRender?: any;
214
+ /**
215
+ * Fires when the element which indicates no data in the popup is about to be rendered. Used to override the default appearance of the element.
216
+ */
217
+ listNoDataRender?: any;
218
+ /**
219
+ * Sets the header component of the ComboBox ([see example]({% slug customrendering_combobox %}#toc-headers-and-footers)).
220
+ */
221
+ header?: any;
222
+ /**
223
+ * Sets the footer component of the ComboBox ([see example]({% slug customrendering_combobox %}#toc-headers-and-footers)).
224
+ */
225
+ footer?: any;
226
+ /**
227
+ * Configures the `size` of the ComboBox.
228
+ *
229
+ * The available options are:
230
+ * - small
231
+ * - medium
232
+ * - large
233
+ *
234
+ * @default undefined
235
+ */
236
+ size?: 'small' | 'medium' | 'large';
237
+ /**
238
+ * Configures the `roundness` of the ComboBox.
239
+ *
240
+ * The available options are:
241
+ * - none
242
+ * - small
243
+ * - medium
244
+ * - large
245
+ * - full
246
+ *
247
+ * @default undefined
248
+ */
249
+ rounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
250
+ /**
251
+ * Configures the `fillMode` of the ComboBox.
252
+ *
253
+ * The available options are:
254
+ * - solid
255
+ * - outline
256
+ * - flat
257
+ *
258
+ * @default undefined
259
+ */
260
+ fillMode?: 'solid' | 'outline' | 'flat';
261
+ /**
262
+ * Sets the data item field that represents the start of a group. Applicable to objects data.
263
+ */
264
+ groupField?: string;
265
+ /**
266
+ * Fires when a ComboBox group header item is about to be rendered. Used to override the default appearance of the group's headers.
267
+ */
268
+ groupHeaderItemRender?: any;
269
+ /**
270
+ * Fires when a ComboBox sticky group header item is about to be rendered. Used to override the default appearance of the sticky group header of the component.
271
+ */
272
+ groupStickyHeaderItemRender?: any;
273
+ /**
274
+ * Provides different rendering of the popup element based on the screen dimensions ([see example]({% slug adaptive_rendering_combobox %})).
275
+ */
276
+ adaptive?: boolean;
277
+ /**
278
+ * Specifies the text that is rendered as title in the adaptive popup ([see example]({% slug adaptive_rendering_combobox %})).
279
+ */
280
+ adaptiveTitle?: string;
281
+ /**
282
+ * Sets the built-in HTML attributes of the inner focusable input element.
283
+ * Attributes which are essential for certain component functionalities cannot be changed.
284
+ */
285
+ inputAttributes?: Object;
286
+ }