@progress/kendo-react-dropdowns 5.13.0-dev.202304200917 → 5.13.0-dev.202304201241
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/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/dist/es/MultiSelect/MultiSelect.d.ts +39 -45
- package/dist/es/MultiSelect/MultiSelect.js +233 -125
- package/dist/es/MultiSelect/MultiSelectProps.d.ts +22 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/MultiSelect/MultiSelect.d.ts +39 -45
- package/dist/npm/MultiSelect/MultiSelect.js +232 -124
- package/dist/npm/MultiSelect/MultiSelectProps.d.ts +22 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-dropdowns.js +1 -1
- package/package.json +13 -13
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { MultiSelect } from './MultiSelect';
|
|
3
3
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
4
|
-
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
4
|
+
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent, CancelEvent } from './../common/events';
|
|
5
5
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
6
6
|
import { ListGroupItemProps } from '../common/ListGroupItem';
|
|
7
7
|
import { GroupStickyHeaderProps } from '../common/GroupStickyHeader';
|
|
@@ -17,6 +17,11 @@ export interface MultiSelectFilterChangeEvent extends FilterChangeEvent<MultiSel
|
|
|
17
17
|
*/
|
|
18
18
|
export interface MultiSelectChangeEvent extends ChangeEvent<MultiSelect> {
|
|
19
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* Represents the object of the `onCancel` MultiSelect event.
|
|
22
|
+
*/
|
|
23
|
+
export interface MultiSelectCancelEvent extends CancelEvent<MultiSelect> {
|
|
24
|
+
}
|
|
20
25
|
/**
|
|
21
26
|
* Represents the object of the `open` MultiSelect event.
|
|
22
27
|
*/
|
|
@@ -153,6 +158,10 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
153
158
|
* Sets the value of filtering input. Useful for making the filtering input a [controlled component](https://reactjs.org/docs/forms.html#controlled-components).
|
|
154
159
|
*/
|
|
155
160
|
filter?: string;
|
|
161
|
+
/**
|
|
162
|
+
* Sets the value of the adaptive filtering input of the of ComboBox.
|
|
163
|
+
*/
|
|
164
|
+
adaptiveFilter?: string;
|
|
156
165
|
/**
|
|
157
166
|
* Sets the loading state of the MultiSelect ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)).
|
|
158
167
|
*/
|
|
@@ -201,6 +210,10 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
201
210
|
* Fires each time the value of the MultiSelect is about to change ([see examples]({% slug binding_multiselect %})).
|
|
202
211
|
*/
|
|
203
212
|
onChange?: (event: MultiSelectChangeEvent) => void;
|
|
213
|
+
/**
|
|
214
|
+
* Fires each time the popup of the MultiSelect is about to cancel in ([adaptive mode]({% slug adaptive_rendering_multiselect %})).
|
|
215
|
+
*/
|
|
216
|
+
onCancel?: (event: MultiSelectCancelEvent) => void;
|
|
204
217
|
/**
|
|
205
218
|
* 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.
|
|
206
219
|
*/
|
|
@@ -286,4 +299,12 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
286
299
|
* @hidden
|
|
287
300
|
*/
|
|
288
301
|
groupMode?: string;
|
|
302
|
+
/**
|
|
303
|
+
* Providing different rendering of the popup element based on the screen dimensions.
|
|
304
|
+
*/
|
|
305
|
+
adaptive?: boolean;
|
|
306
|
+
/**
|
|
307
|
+
* Specifies the text that is rendered as title in the adaptive popup.
|
|
308
|
+
*/
|
|
309
|
+
adaptiveTitle?: string;
|
|
289
310
|
}
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-react-dropdowns',
|
|
9
9
|
productName: 'KendoReact',
|
|
10
10
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1681992695,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
14
14
|
};
|