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

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,300 @@
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 { FormComponentProps } from '@progress/kendo-vue-common';
9
+ import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
10
+ import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
11
+ import { TagData } from './TagList';
12
+ /**
13
+ * Represents the object of the `filterChange` MultiSelect event.
14
+ */
15
+ export interface MultiSelectFilterChangeEvent extends FilterChangeEvent {
16
+ }
17
+ /**
18
+ * Represents the object of the `change` MultiSelect event.
19
+ */
20
+ export interface MultiSelectChangeEvent extends ChangeEvent {
21
+ }
22
+ /**
23
+ * Represents the object of the `open` MultiSelect event.
24
+ */
25
+ export interface MultiSelectOpenEvent extends OpenEvent {
26
+ }
27
+ /**
28
+ * Represents the object of the `close` MultiSelect event.
29
+ */
30
+ export interface MultiSelectCloseEvent extends CloseEvent {
31
+ }
32
+ /**
33
+ * Represents the object of the `focus` MultiSelect event.
34
+ */
35
+ export interface MultiSelectFocusEvent extends FocusEvent {
36
+ }
37
+ /**
38
+ * Represents the object of the `blur` MultiSelect event.
39
+ */
40
+ export interface MultiSelectBlurEvent extends BlurEvent {
41
+ }
42
+ /**
43
+ * Represents the object of the `pageChange` MultiSelect event.
44
+ */
45
+ export interface MultiSelectPageChangeEvent extends PageChangeEvent {
46
+ }
47
+ /**
48
+ * Represents the props of the [Kendo UI for Vue MultiSelect component]({% slug overview_multiselect %}).
49
+ */
50
+ export interface MultiSelectProps extends FormComponentProps {
51
+ /**
52
+ * Specifies whether the MultiSelect allows user-defined values that are not present in the dataset ([see example]({% slug custom_values_multiselect %})). Defaults to `false`.
53
+ */
54
+ allowCustom?: boolean;
55
+ /**
56
+ * Sets the data of the MultiSelect ([see example]({% slug binding_multiselect %})).
57
+ */
58
+ dataItems?: any[];
59
+ /**
60
+ * Sets the opened and closed state of the MultiSelect.
61
+ */
62
+ opened?: boolean;
63
+ /**
64
+ * Determines whether to close the options list of the MultiSelect after the item selection is finished.
65
+ *
66
+ * @default true
67
+ */
68
+ autoClose?: boolean;
69
+ /**
70
+ * @hidden
71
+ */
72
+ modelValue?: any;
73
+ /**
74
+ * Sets the value of the MultiSelect ([see example]({% slug binding_multiselect %})). It can either be of the primitive (string, numbers) or of the complex (objects) type.
75
+ */
76
+ value?: Array<any>;
77
+ /**
78
+ * Sets the validate of the input.
79
+ */
80
+ validate?: boolean;
81
+ /**
82
+ * The hint that is displayed when the MultiSelect is empty.
83
+ */
84
+ placeholder?: string;
85
+ /**
86
+ * Sets the close icon of the tag items.
87
+ */
88
+ removeTagIcon?: string;
89
+ /**
90
+ * Sets the tags of the MultiSelect ([see example]({% slug customtags_multiselect %})).
91
+ */
92
+ tags?: Array<TagData>;
93
+ /**
94
+ * Sets the data item field that represents the item value.
95
+ */
96
+ valueField?: string;
97
+ /**
98
+ * Specifies the type of the selected value. If set to true, the selected value has to be of a primitive value.
99
+ */
100
+ valuePrimitive?: boolean;
101
+ /**
102
+ * Sets the key for comparing the data items of the MultiSelect ([see example]({% slug binding_multiselect %}#toc-datasets-of-objects)). If `dataItemKey` is not set, the MultiSelect compares the items by reference.
103
+ */
104
+ dataItemKey?: string;
105
+ /**
106
+ * Sets the default value of the MultiSelect. Similar to the native `select` HTML element.
107
+ */
108
+ defaultValue?: Array<any>;
109
+ /**
110
+ * Sets the disabled state of the MultiSelect.
111
+ */
112
+ disabled?: boolean;
113
+ /**
114
+ * Represents the `dir` HTML attribute.
115
+ */
116
+ dir?: string;
117
+ /**
118
+ * Enables the filtering functionality of the MultiSelect ([more information and examples]({% slug filtering_multiselect %})).
119
+ */
120
+ filterable?: boolean;
121
+ /**
122
+ * Specifies the id of the component.
123
+ */
124
+ id?: string;
125
+ /**
126
+ * 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).
127
+ * For example these elements could contain error or hint message.
128
+ */
129
+ ariaDescribedBy?: string;
130
+ /**
131
+ * Identifies the element(s) which will label the component.
132
+ */
133
+ ariaLabelledBy?: string;
134
+ /**
135
+ * Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
136
+ */
137
+ ariaLabel?: string;
138
+ /**
139
+ * If set, the MultiSelect will use it to get the focused item index.
140
+ *
141
+ * Default functionality returns the first item which starts with the input text.
142
+ *
143
+ */
144
+ focusedItemIndex?: (data: any, inputText: string, textField?: string) => number;
145
+ /**
146
+ * Sets the value of filtering input. Useful for making the filtering input a controlled component.
147
+ */
148
+ filter?: string;
149
+ /**
150
+ * Sets the loading state of the MultiSelect ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)).
151
+ */
152
+ loading?: boolean;
153
+ /**
154
+ * Specifies the `tabIndex` of the MultiSelect.
155
+ */
156
+ tabIndex?: number;
157
+ /**
158
+ * Specifies the `accessKey` of the MultiSelect.
159
+ */
160
+ accessKey?: string;
161
+ /**
162
+ * Sets the data item field that represents the item text ([see example]({% slug binding_multiselect %}#toc-datasets-of-objects)). If the data contains only primitive values, do not define it.
163
+ */
164
+ textField?: string;
165
+ /**
166
+ * Renders a floating label for the MultiSelect.
167
+ */
168
+ label?: string;
169
+ /**
170
+ * Configures the popup of the MultiSelect.
171
+ */
172
+ popupSettings?: DropDownsPopupSettings;
173
+ /**
174
+ * Configures the virtual scrolling of the MultiSelect ([see example]({% slug virtualization_multiselect %})).
175
+ */
176
+ virtual?: VirtualizationSettings;
177
+ /**
178
+ * Fires each time the popup of the MultiSelect is about to open.
179
+ */
180
+ onOpen?: (event: MultiSelectOpenEvent) => void;
181
+ /**
182
+ * Fires each time the popup of the MultiSelect is about to close.
183
+ */
184
+ onClose?: (event: MultiSelectCloseEvent) => void;
185
+ /**
186
+ * Fires each time the user focuses the MultiSelect.
187
+ */
188
+ onFocus?: (event: MultiSelectFocusEvent) => void;
189
+ /**
190
+ * Fires each time the MultiSelect gets blurred.
191
+ */
192
+ onBlur?: (event: MultiSelectBlurEvent) => void;
193
+ /**
194
+ * Fires each time the value of the MultiSelect is about to change ([see examples]({% slug binding_multiselect %})).
195
+ */
196
+ onChange?: (event: MultiSelectChangeEvent) => void;
197
+ /**
198
+ * Fires each time the user types in the filter input ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
199
+ */
200
+ onFilterchange?: (event: MultiSelectFilterChangeEvent) => void;
201
+ /**
202
+ * Fires when both the virtual scrolling of the MultiSelect is enabled and when the component requires data for another page ([see example]({% slug virtualization_multiselect %})).
203
+ */
204
+ onPagechange?: (event: MultiSelectPageChangeEvent) => void;
205
+ /**
206
+ * Fires when a MultiSelect item is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-items)). Used to override the default appearance of the list items.
207
+ */
208
+ itemRender?: any;
209
+ /**
210
+ * Fires when the element which indicates no data in the popup is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-no-data)). Used to override the default appearance of the element.
211
+ */
212
+ listNoDataRender?: any;
213
+ /**
214
+ * Fires when a tag element is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-tags)). Used to override the default appearance of the element.
215
+ */
216
+ tagRender?: any;
217
+ /**
218
+ * Sets the header component of the MultiSelect ([see example]({% slug customrendering_multiselect %}#toc-headers-and-footers)).
219
+ */
220
+ header?: any;
221
+ /**
222
+ * Sets the footer component of the MultiSelect ([see example]({% slug customrendering_multiselect %}#toc-headers-and-footers)).
223
+ */
224
+ footer?: any;
225
+ /**
226
+ * Configures the `size` of the MultiSelect.
227
+ *
228
+ * The available options are:
229
+ * - small
230
+ * - medium
231
+ * - large
232
+ *
233
+ * @default `undefined`
234
+ */
235
+ size?: 'small' | 'medium' | 'large';
236
+ /**
237
+ * Configures the `roundness` of the MultiSelect.
238
+ *
239
+ * The available options are:
240
+ * - none
241
+ * - small
242
+ * - medium
243
+ * - large
244
+ * - full
245
+ *
246
+ * @default `undefined`
247
+ */
248
+ rounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
249
+ /**
250
+ * Configures the `roundness` of the tags in MultiSelect.
251
+ *
252
+ * The available options are:
253
+ * - none
254
+ * - small
255
+ * - medium
256
+ * - large
257
+ * - circle
258
+ * - full
259
+ *
260
+ * @default `undefined`
261
+ */
262
+ tagsRounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
263
+ /**
264
+ * Configures the `fillMode` of the MultiSelect.
265
+ *
266
+ * The available options are:
267
+ * - solid
268
+ * - outline
269
+ * - flat
270
+ * - link
271
+ *
272
+ * @default `undefined`
273
+ */
274
+ fillMode?: 'solid' | 'outline' | 'flat' | 'link';
275
+ /**
276
+ * Sets the data item field that represents the start of a group. Applicable to objects data.
277
+ */
278
+ groupField?: string;
279
+ /**
280
+ * Fires when a MultiSelect group header item is about to be rendered. Used to override the default appearance of the group's headers.
281
+ */
282
+ groupHeaderItemRender?: any;
283
+ /**
284
+ * Fires when a MultiSelect sticky group header item is about to be rendered. Used to override the default appearance of the sticky group header of the component.
285
+ */
286
+ groupStickyHeaderItemRender?: any;
287
+ /**
288
+ * Provides different rendering of the popup element based on the screen dimensions.
289
+ */
290
+ adaptive?: boolean;
291
+ /**
292
+ * Specifies the text that is rendered as title in the adaptive popup.
293
+ */
294
+ adaptiveTitle?: string;
295
+ /**
296
+ * Sets the built-in HTML attributes of the inner focusable input element.
297
+ * Attributes which are essential for certain component functionalities cannot be changed.
298
+ */
299
+ inputAttributes?: Object;
300
+ }
@@ -0,0 +1,90 @@
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
+ /**
9
+ * Represents the tag data.
10
+ */
11
+ export interface TagData {
12
+ /**
13
+ * Represents the text of the tag.
14
+ */
15
+ text: string;
16
+ /**
17
+ * Represents the data items which correspond to the tag.
18
+ */
19
+ data: Array<any>;
20
+ }
21
+ /**
22
+ * @hidden
23
+ */
24
+ export interface TagListProps {
25
+ removeTagIcon: string;
26
+ dataItems: Array<TagData>;
27
+ guid: string;
28
+ id?: string;
29
+ className?: string;
30
+ focused?: TagData;
31
+ tagRender?: any;
32
+ size?: 'small' | 'medium' | 'large';
33
+ fillMode?: 'solid' | 'outline' | 'flat';
34
+ tagsRounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
35
+ }
36
+ /**
37
+ * @hidden
38
+ */
39
+ declare const TagList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
40
+ removeTagIcon: StringConstructor;
41
+ dataItems: ArrayConstructor;
42
+ guid: StringConstructor;
43
+ focused: ObjectConstructor;
44
+ tagRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
45
+ tagsRounded: {
46
+ type: StringConstructor;
47
+ validator: (value: string) => boolean;
48
+ };
49
+ fillMode: {
50
+ type: StringConstructor;
51
+ validator: (value: string) => boolean;
52
+ };
53
+ id: StringConstructor;
54
+ className: StringConstructor;
55
+ size: {
56
+ type: StringConstructor;
57
+ validator: (value: string) => boolean;
58
+ };
59
+ onTagdelete: FunctionConstructor;
60
+ }>, {}, {}, {
61
+ wrapperClass(): {
62
+ [x: string]: any;
63
+ 'k-chip-list': boolean;
64
+ 'k-disabled': any;
65
+ };
66
+ }, {
67
+ onTagDelete(tagData: any, event: any): void;
68
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
69
+ removeTagIcon: StringConstructor;
70
+ dataItems: ArrayConstructor;
71
+ guid: StringConstructor;
72
+ focused: ObjectConstructor;
73
+ tagRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
74
+ tagsRounded: {
75
+ type: StringConstructor;
76
+ validator: (value: string) => boolean;
77
+ };
78
+ fillMode: {
79
+ type: StringConstructor;
80
+ validator: (value: string) => boolean;
81
+ };
82
+ id: StringConstructor;
83
+ className: StringConstructor;
84
+ size: {
85
+ type: StringConstructor;
86
+ validator: (value: string) => boolean;
87
+ };
88
+ onTagdelete: FunctionConstructor;
89
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
90
+ export { TagList };
@@ -0,0 +1,272 @@
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 { TreeViewExpandChangeEvent, TreeViewItemClickEvent } from '@progress/kendo-vue-treeview';
9
+ import { MultiSelectTreeFilterChangeEvent, MultiSelectTreeFocusEvent, MultiSelectTreeBlurEvent, MultiSelectTreeChangeEvent, MultiSelectTreeOpenEvent, MultiSelectTreeCloseEvent, MultiSelectTreeExpandEvent, MultiSelectTreeChangeEventOperation } from './MultiSelectTreeProps';
10
+ import { DropdownEvent } from '../common/events';
11
+ import { TagData } from '../MultiSelect/TagList';
12
+ import { PropType } from 'vue';
13
+ /**
14
+ * @hidden
15
+ */
16
+ declare const MultiSelectTree: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
17
+ opened: {
18
+ type: PropType<boolean>;
19
+ default: any;
20
+ };
21
+ disabled: PropType<boolean>;
22
+ dir: PropType<string>;
23
+ tabIndex: PropType<number>;
24
+ accessKey: PropType<string>;
25
+ dataItems: {
26
+ type: PropType<any[]>;
27
+ default: () => any[];
28
+ };
29
+ value: PropType<any[]>;
30
+ modelValue: PropType<any[]>;
31
+ valueMap: PropType<(value: any[]) => any>;
32
+ placeholder: PropType<string>;
33
+ dataItemKey: {
34
+ type: PropType<string>;
35
+ required: true;
36
+ };
37
+ textField: {
38
+ type: PropType<string>;
39
+ required: true;
40
+ };
41
+ checkField: {
42
+ type: PropType<string>;
43
+ default: string;
44
+ };
45
+ checkIndeterminateField: {
46
+ type: PropType<string>;
47
+ default: string;
48
+ };
49
+ expandField: PropType<string>;
50
+ subItemsField: {
51
+ type: PropType<string>;
52
+ default: string;
53
+ };
54
+ className: PropType<string>;
55
+ label: PropType<string>;
56
+ validationMessage: PropType<string>;
57
+ validityStyles: {
58
+ type: PropType<boolean>;
59
+ default: boolean;
60
+ };
61
+ valid: {
62
+ type: PropType<boolean>;
63
+ default: any;
64
+ };
65
+ required: PropType<boolean>;
66
+ name: PropType<string>;
67
+ id: PropType<string>;
68
+ ariaLabelledBy: PropType<string>;
69
+ ariaDescribedBy: PropType<string>;
70
+ filterable: PropType<boolean>;
71
+ filter: PropType<string>;
72
+ loading: PropType<boolean>;
73
+ tags: PropType<TagData[]>;
74
+ popupSettings: {
75
+ type: PropType<import('..').DropDownsPopupSettings>;
76
+ default: () => {
77
+ animate: boolean;
78
+ height: string;
79
+ anchor: string;
80
+ };
81
+ };
82
+ size: {
83
+ type: PropType<"small" | "medium" | "large">;
84
+ validator: (value: string) => boolean;
85
+ };
86
+ rounded: {
87
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
88
+ validator: (value: string) => boolean;
89
+ };
90
+ fillMode: {
91
+ type: PropType<"flat" | "solid" | "outline">;
92
+ validator: (value: string) => boolean;
93
+ };
94
+ item: PropType<any>;
95
+ tag: PropType<any>;
96
+ header: PropType<any>;
97
+ footer: PropType<any>;
98
+ listNoData: PropType<any>;
99
+ adaptive: {
100
+ type: PropType<boolean>;
101
+ default: any;
102
+ };
103
+ adaptiveTitle: {
104
+ type: PropType<string>;
105
+ default: any;
106
+ };
107
+ }>, {}, {
108
+ focusedTagState: any;
109
+ openState: boolean;
110
+ focusedState: boolean;
111
+ filterState: string;
112
+ currentValue: any[];
113
+ popupWidth: string;
114
+ windowWidth: number;
115
+ initialAdaptiveRenderingValues: any;
116
+ }, {
117
+ animationStyles(): object | undefined;
118
+ classNameAdaptive(): string;
119
+ adaptiveState(): any;
120
+ isOpen(): any;
121
+ computedValue(): any;
122
+ hasValue(): boolean;
123
+ tagsToRenderRef(): any;
124
+ }, {
125
+ clearFilter(event: MultiSelectTreeCloseEvent): void;
126
+ onCancel(event: MouseEvent): void;
127
+ calculateMedia(entries: ResizeObserverEntry[]): void;
128
+ calculatePopupWidth(): void;
129
+ focus(): void;
130
+ setValidity(): void;
131
+ changeValue(event: DropdownEvent, items: any[], operation: MultiSelectTreeChangeEventOperation): void;
132
+ onChange(e: TreeViewItemClickEvent): void;
133
+ openPopup(event: MultiSelectTreeCloseEvent): void;
134
+ closePopup(event: MultiSelectTreeCloseEvent): void;
135
+ switchFocus(focusFn: () => void): void;
136
+ focusElement(element: HTMLElement | null): void;
137
+ onPopupOpened(): void;
138
+ onPopupClosed(): void;
139
+ onFocus(event: any): void;
140
+ onBlur(event: any): void;
141
+ onWrapperMouseDown(): void;
142
+ onWrapperClick(event: any): void;
143
+ onWrapperKeyDown(event: any): any;
144
+ onInputKeyDown(event: any): void;
145
+ onClear(event: any): void;
146
+ onTagDelete(itemsToRemove: Array<any>, event: any): void;
147
+ onExpand(e: TreeViewExpandChangeEvent): void;
148
+ onFilterChange(event: any, emptyValue?: boolean): void;
149
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
150
+ open: (event: MultiSelectTreeOpenEvent) => true;
151
+ close: (event: MultiSelectTreeCloseEvent) => true;
152
+ focus: (event: MultiSelectTreeFocusEvent) => true;
153
+ blur: (event: MultiSelectTreeBlurEvent) => true;
154
+ change: (event: MultiSelectTreeChangeEvent) => true;
155
+ filterchange: (event: MultiSelectTreeFilterChangeEvent) => true;
156
+ expandchange: (event: MultiSelectTreeExpandEvent) => true;
157
+ changemodel: (value: any) => true;
158
+ 'update:modelValue': (value: any) => true;
159
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
160
+ opened: {
161
+ type: PropType<boolean>;
162
+ default: any;
163
+ };
164
+ disabled: PropType<boolean>;
165
+ dir: PropType<string>;
166
+ tabIndex: PropType<number>;
167
+ accessKey: PropType<string>;
168
+ dataItems: {
169
+ type: PropType<any[]>;
170
+ default: () => any[];
171
+ };
172
+ value: PropType<any[]>;
173
+ modelValue: PropType<any[]>;
174
+ valueMap: PropType<(value: any[]) => any>;
175
+ placeholder: PropType<string>;
176
+ dataItemKey: {
177
+ type: PropType<string>;
178
+ required: true;
179
+ };
180
+ textField: {
181
+ type: PropType<string>;
182
+ required: true;
183
+ };
184
+ checkField: {
185
+ type: PropType<string>;
186
+ default: string;
187
+ };
188
+ checkIndeterminateField: {
189
+ type: PropType<string>;
190
+ default: string;
191
+ };
192
+ expandField: PropType<string>;
193
+ subItemsField: {
194
+ type: PropType<string>;
195
+ default: string;
196
+ };
197
+ className: PropType<string>;
198
+ label: PropType<string>;
199
+ validationMessage: PropType<string>;
200
+ validityStyles: {
201
+ type: PropType<boolean>;
202
+ default: boolean;
203
+ };
204
+ valid: {
205
+ type: PropType<boolean>;
206
+ default: any;
207
+ };
208
+ required: PropType<boolean>;
209
+ name: PropType<string>;
210
+ id: PropType<string>;
211
+ ariaLabelledBy: PropType<string>;
212
+ ariaDescribedBy: PropType<string>;
213
+ filterable: PropType<boolean>;
214
+ filter: PropType<string>;
215
+ loading: PropType<boolean>;
216
+ tags: PropType<TagData[]>;
217
+ popupSettings: {
218
+ type: PropType<import('..').DropDownsPopupSettings>;
219
+ default: () => {
220
+ animate: boolean;
221
+ height: string;
222
+ anchor: string;
223
+ };
224
+ };
225
+ size: {
226
+ type: PropType<"small" | "medium" | "large">;
227
+ validator: (value: string) => boolean;
228
+ };
229
+ rounded: {
230
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
231
+ validator: (value: string) => boolean;
232
+ };
233
+ fillMode: {
234
+ type: PropType<"flat" | "solid" | "outline">;
235
+ validator: (value: string) => boolean;
236
+ };
237
+ item: PropType<any>;
238
+ tag: PropType<any>;
239
+ header: PropType<any>;
240
+ footer: PropType<any>;
241
+ listNoData: PropType<any>;
242
+ adaptive: {
243
+ type: PropType<boolean>;
244
+ default: any;
245
+ };
246
+ adaptiveTitle: {
247
+ type: PropType<string>;
248
+ default: any;
249
+ };
250
+ }>> & Readonly<{
251
+ onBlur?: (event: MultiSelectTreeBlurEvent) => any;
252
+ onChange?: (event: MultiSelectTreeChangeEvent) => any;
253
+ onClose?: (event: MultiSelectTreeCloseEvent) => any;
254
+ onFocus?: (event: MultiSelectTreeFocusEvent) => any;
255
+ onOpen?: (event: MultiSelectTreeOpenEvent) => any;
256
+ onChangemodel?: (value: any) => any;
257
+ "onUpdate:modelValue"?: (value: any) => any;
258
+ onFilterchange?: (event: MultiSelectTreeFilterChangeEvent) => any;
259
+ onExpandchange?: (event: MultiSelectTreeExpandEvent) => any;
260
+ }>, {
261
+ adaptive: boolean;
262
+ dataItems: any[];
263
+ opened: boolean;
264
+ popupSettings: import('..').DropDownsPopupSettings;
265
+ valid: boolean;
266
+ validityStyles: boolean;
267
+ adaptiveTitle: string;
268
+ checkIndeterminateField: string;
269
+ checkField: string;
270
+ subItemsField: string;
271
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
272
+ export { MultiSelectTree };