@progress/kendo-react-dropdowns 10.2.0-develop.1 → 10.2.0-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.
- package/AutoComplete/AutoComplete.js +1 -1
- package/AutoComplete/AutoComplete.mjs +9 -3
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +6 -2
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +7 -3
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +3 -1
- package/common/DropDownBase.js +1 -1
- package/common/DropDownBase.mjs +3 -1
- package/common/SearchBar.js +1 -1
- package/common/SearchBar.mjs +3 -1
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +12 -12
- package/index.d.ts +12 -12
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/index.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ import { FormComponent } from '@progress/kendo-react-common';
|
|
|
13
13
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
14
14
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
15
15
|
import { ItemRenderProps } from '@progress/kendo-react-treeview';
|
|
16
|
-
import { JSX
|
|
16
|
+
import { JSX } from 'react/jsx-runtime';
|
|
17
17
|
import { PopupProps } from '@progress/kendo-react-popup';
|
|
18
18
|
import * as React_2 from 'react';
|
|
19
19
|
import { RowHeightService } from '@progress/kendo-react-common';
|
|
@@ -512,7 +512,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
512
512
|
/**
|
|
513
513
|
* @hidden
|
|
514
514
|
*/
|
|
515
|
-
render():
|
|
515
|
+
render(): JSX.Element;
|
|
516
516
|
/**
|
|
517
517
|
* @hidden
|
|
518
518
|
*/
|
|
@@ -1144,7 +1144,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1144
1144
|
/** @hidden */
|
|
1145
1145
|
componentWillUnmount(): void;
|
|
1146
1146
|
/** @hidden */
|
|
1147
|
-
render():
|
|
1147
|
+
render(): JSX.Element;
|
|
1148
1148
|
/** @hidden */
|
|
1149
1149
|
handleItemSelect: (index: number, state: ComboInternalState) => void;
|
|
1150
1150
|
/** @hidden */
|
|
@@ -1311,7 +1311,7 @@ declare class DropDownBase {
|
|
|
1311
1311
|
* This property is added for handling the filtering scenarios of the mentioned components.
|
|
1312
1312
|
*/
|
|
1313
1313
|
scrollPopupByPageSize: (direction: number) => void;
|
|
1314
|
-
renderScrollElement: () => false |
|
|
1314
|
+
renderScrollElement: () => false | JSX.Element;
|
|
1315
1315
|
getPopupSettings(): DropDownsPopupSettings;
|
|
1316
1316
|
getAdaptiveAnimation(): boolean;
|
|
1317
1317
|
getGroupedDataModernMode(data: any[], groupField: string): any[];
|
|
@@ -2334,12 +2334,12 @@ export declare interface ItemProps extends ItemRenderProps {
|
|
|
2334
2334
|
/**
|
|
2335
2335
|
* @hidden
|
|
2336
2336
|
*/
|
|
2337
|
-
export declare const List: (props: ListProps) => string | number | boolean | Iterable<React_2.ReactNode> |
|
|
2337
|
+
export declare const List: (props: ListProps) => string | number | bigint | boolean | Iterable<React_2.ReactNode> | Promise<string | number | bigint | boolean | React_2.ReactPortal | React_2.ReactElement<unknown, string | React_2.JSXElementConstructor<any>> | Iterable<React_2.ReactNode> | null | undefined> | JSX.Element | null | undefined;
|
|
2338
2338
|
|
|
2339
2339
|
/**
|
|
2340
2340
|
* @hidden
|
|
2341
2341
|
*/
|
|
2342
|
-
export declare const ListContainer: (props: ListContainerProps) =>
|
|
2342
|
+
export declare const ListContainer: (props: ListContainerProps) => JSX.Element;
|
|
2343
2343
|
|
|
2344
2344
|
/**
|
|
2345
2345
|
* @hidden
|
|
@@ -2402,7 +2402,7 @@ export declare interface ListGroupItemProps {
|
|
|
2402
2402
|
/**
|
|
2403
2403
|
* @hidden
|
|
2404
2404
|
*/
|
|
2405
|
-
export declare const ListItem: (props: ListItemProps) => string | number | boolean | Iterable<React_2.ReactNode> |
|
|
2405
|
+
export declare const ListItem: (props: ListItemProps) => string | number | bigint | boolean | Iterable<React_2.ReactNode> | Promise<string | number | bigint | boolean | React_2.ReactPortal | React_2.ReactElement<unknown, string | React_2.JSXElementConstructor<any>> | Iterable<React_2.ReactNode> | null | undefined> | JSX.Element | null | undefined;
|
|
2406
2406
|
|
|
2407
2407
|
/**
|
|
2408
2408
|
* Represents the props of the ListItem component.
|
|
@@ -3089,7 +3089,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
|
|
|
3089
3089
|
/**
|
|
3090
3090
|
* 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.
|
|
3091
3091
|
*/
|
|
3092
|
-
tagRender?: (tagData: TagData, tag: React.ReactElement) => React.ReactElement
|
|
3092
|
+
tagRender?: (tagData: TagData, tag: React.ReactElement<any>) => React.ReactElement<any>;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* Sets the header component of the MultiSelect ([see example]({% slug customrendering_multiselect %}#toc-headers-and-footers)).
|
|
3095
3095
|
*/
|
|
@@ -3758,7 +3758,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
|
|
|
3758
3758
|
/** @hidden */
|
|
3759
3759
|
itemFocus: (index: number, state: MultiSelectInternalState) => void;
|
|
3760
3760
|
/** @hidden */
|
|
3761
|
-
render():
|
|
3761
|
+
render(): JSX.Element;
|
|
3762
3762
|
private componentRef;
|
|
3763
3763
|
private renderSearchBar;
|
|
3764
3764
|
private searchbarRef;
|
|
@@ -3865,7 +3865,7 @@ export declare class SearchBar extends React_2.Component<SearchBarProps> {
|
|
|
3865
3865
|
*/
|
|
3866
3866
|
get input(): HTMLInputElement | null;
|
|
3867
3867
|
componentDidUpdate(prevProps: SearchBarProps): void;
|
|
3868
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> |
|
|
3868
|
+
render(): string | number | bigint | boolean | Iterable<React_2.ReactNode> | Promise<string | number | bigint | boolean | React_2.ReactPortal | React_2.ReactElement<unknown, string | React_2.JSXElementConstructor<any>> | Iterable<React_2.ReactNode> | null | undefined> | JSX.Element | null | undefined;
|
|
3869
3869
|
}
|
|
3870
3870
|
|
|
3871
3871
|
/**
|
|
@@ -3937,7 +3937,7 @@ export { TagData }
|
|
|
3937
3937
|
* @hidden
|
|
3938
3938
|
*/
|
|
3939
3939
|
export declare class TagList extends React_2.Component<TagListProps, {}> {
|
|
3940
|
-
render():
|
|
3940
|
+
render(): JSX.Element;
|
|
3941
3941
|
}
|
|
3942
3942
|
|
|
3943
3943
|
/**
|
|
@@ -3949,7 +3949,7 @@ declare interface TagListProps {
|
|
|
3949
3949
|
guid: string;
|
|
3950
3950
|
focused?: TagData;
|
|
3951
3951
|
onTagDelete: (items: Array<any>, event: React_2.MouseEvent<HTMLSpanElement>) => void;
|
|
3952
|
-
tagRender?: (tagData: TagData, tag: React_2.ReactElement) => React_2.ReactElement
|
|
3952
|
+
tagRender?: (tagData: TagData, tag: React_2.ReactElement<any>) => React_2.ReactElement<any>;
|
|
3953
3953
|
tag?: React_2.ComponentType<{
|
|
3954
3954
|
tagData: TagData;
|
|
3955
3955
|
guid: string;
|
package/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { FormComponent } from '@progress/kendo-react-common';
|
|
|
13
13
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
14
14
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
15
15
|
import { ItemRenderProps } from '@progress/kendo-react-treeview';
|
|
16
|
-
import { JSX
|
|
16
|
+
import { JSX } from 'react/jsx-runtime';
|
|
17
17
|
import { PopupProps } from '@progress/kendo-react-popup';
|
|
18
18
|
import * as React_2 from 'react';
|
|
19
19
|
import { RowHeightService } from '@progress/kendo-react-common';
|
|
@@ -512,7 +512,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
512
512
|
/**
|
|
513
513
|
* @hidden
|
|
514
514
|
*/
|
|
515
|
-
render():
|
|
515
|
+
render(): JSX.Element;
|
|
516
516
|
/**
|
|
517
517
|
* @hidden
|
|
518
518
|
*/
|
|
@@ -1144,7 +1144,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1144
1144
|
/** @hidden */
|
|
1145
1145
|
componentWillUnmount(): void;
|
|
1146
1146
|
/** @hidden */
|
|
1147
|
-
render():
|
|
1147
|
+
render(): JSX.Element;
|
|
1148
1148
|
/** @hidden */
|
|
1149
1149
|
handleItemSelect: (index: number, state: ComboInternalState) => void;
|
|
1150
1150
|
/** @hidden */
|
|
@@ -1311,7 +1311,7 @@ declare class DropDownBase {
|
|
|
1311
1311
|
* This property is added for handling the filtering scenarios of the mentioned components.
|
|
1312
1312
|
*/
|
|
1313
1313
|
scrollPopupByPageSize: (direction: number) => void;
|
|
1314
|
-
renderScrollElement: () => false |
|
|
1314
|
+
renderScrollElement: () => false | JSX.Element;
|
|
1315
1315
|
getPopupSettings(): DropDownsPopupSettings;
|
|
1316
1316
|
getAdaptiveAnimation(): boolean;
|
|
1317
1317
|
getGroupedDataModernMode(data: any[], groupField: string): any[];
|
|
@@ -2334,12 +2334,12 @@ export declare interface ItemProps extends ItemRenderProps {
|
|
|
2334
2334
|
/**
|
|
2335
2335
|
* @hidden
|
|
2336
2336
|
*/
|
|
2337
|
-
export declare const List: (props: ListProps) => string | number | boolean | Iterable<React_2.ReactNode> |
|
|
2337
|
+
export declare const List: (props: ListProps) => string | number | bigint | boolean | Iterable<React_2.ReactNode> | Promise<string | number | bigint | boolean | React_2.ReactPortal | React_2.ReactElement<unknown, string | React_2.JSXElementConstructor<any>> | Iterable<React_2.ReactNode> | null | undefined> | JSX.Element | null | undefined;
|
|
2338
2338
|
|
|
2339
2339
|
/**
|
|
2340
2340
|
* @hidden
|
|
2341
2341
|
*/
|
|
2342
|
-
export declare const ListContainer: (props: ListContainerProps) =>
|
|
2342
|
+
export declare const ListContainer: (props: ListContainerProps) => JSX.Element;
|
|
2343
2343
|
|
|
2344
2344
|
/**
|
|
2345
2345
|
* @hidden
|
|
@@ -2402,7 +2402,7 @@ export declare interface ListGroupItemProps {
|
|
|
2402
2402
|
/**
|
|
2403
2403
|
* @hidden
|
|
2404
2404
|
*/
|
|
2405
|
-
export declare const ListItem: (props: ListItemProps) => string | number | boolean | Iterable<React_2.ReactNode> |
|
|
2405
|
+
export declare const ListItem: (props: ListItemProps) => string | number | bigint | boolean | Iterable<React_2.ReactNode> | Promise<string | number | bigint | boolean | React_2.ReactPortal | React_2.ReactElement<unknown, string | React_2.JSXElementConstructor<any>> | Iterable<React_2.ReactNode> | null | undefined> | JSX.Element | null | undefined;
|
|
2406
2406
|
|
|
2407
2407
|
/**
|
|
2408
2408
|
* Represents the props of the ListItem component.
|
|
@@ -3089,7 +3089,7 @@ export declare interface MultiSelectProps extends FormComponentProps {
|
|
|
3089
3089
|
/**
|
|
3090
3090
|
* 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.
|
|
3091
3091
|
*/
|
|
3092
|
-
tagRender?: (tagData: TagData, tag: React.ReactElement) => React.ReactElement
|
|
3092
|
+
tagRender?: (tagData: TagData, tag: React.ReactElement<any>) => React.ReactElement<any>;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* Sets the header component of the MultiSelect ([see example]({% slug customrendering_multiselect %}#toc-headers-and-footers)).
|
|
3095
3095
|
*/
|
|
@@ -3758,7 +3758,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
|
|
|
3758
3758
|
/** @hidden */
|
|
3759
3759
|
itemFocus: (index: number, state: MultiSelectInternalState) => void;
|
|
3760
3760
|
/** @hidden */
|
|
3761
|
-
render():
|
|
3761
|
+
render(): JSX.Element;
|
|
3762
3762
|
private componentRef;
|
|
3763
3763
|
private renderSearchBar;
|
|
3764
3764
|
private searchbarRef;
|
|
@@ -3865,7 +3865,7 @@ export declare class SearchBar extends React_2.Component<SearchBarProps> {
|
|
|
3865
3865
|
*/
|
|
3866
3866
|
get input(): HTMLInputElement | null;
|
|
3867
3867
|
componentDidUpdate(prevProps: SearchBarProps): void;
|
|
3868
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> |
|
|
3868
|
+
render(): string | number | bigint | boolean | Iterable<React_2.ReactNode> | Promise<string | number | bigint | boolean | React_2.ReactPortal | React_2.ReactElement<unknown, string | React_2.JSXElementConstructor<any>> | Iterable<React_2.ReactNode> | null | undefined> | JSX.Element | null | undefined;
|
|
3869
3869
|
}
|
|
3870
3870
|
|
|
3871
3871
|
/**
|
|
@@ -3937,7 +3937,7 @@ export { TagData }
|
|
|
3937
3937
|
* @hidden
|
|
3938
3938
|
*/
|
|
3939
3939
|
export declare class TagList extends React_2.Component<TagListProps, {}> {
|
|
3940
|
-
render():
|
|
3940
|
+
render(): JSX.Element;
|
|
3941
3941
|
}
|
|
3942
3942
|
|
|
3943
3943
|
/**
|
|
@@ -3949,7 +3949,7 @@ declare interface TagListProps {
|
|
|
3949
3949
|
guid: string;
|
|
3950
3950
|
focused?: TagData;
|
|
3951
3951
|
onTagDelete: (items: Array<any>, event: React_2.MouseEvent<HTMLSpanElement>) => void;
|
|
3952
|
-
tagRender?: (tagData: TagData, tag: React_2.ReactElement) => React_2.ReactElement
|
|
3952
|
+
tagRender?: (tagData: TagData, tag: React_2.ReactElement<any>) => React_2.ReactElement<any>;
|
|
3953
3953
|
tag?: React_2.ComponentType<{
|
|
3954
3954
|
tagData: TagData;
|
|
3955
3955
|
guid: string;
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1744013807,version:"10.2.0-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "10.2.0-develop.
|
|
13
|
+
publishDate: 1744013807,
|
|
14
|
+
version: "10.2.0-develop.3",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dropdowns",
|
|
3
|
-
"version": "10.2.0-develop.
|
|
3
|
+
"version": "10.2.0-develop.3",
|
|
4
4
|
"description": "React DropDowns offer an interface for users to select different items from a list and more. KendoReact Dropdowns package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.5.1",
|
|
29
|
-
"@progress/kendo-react-buttons": "10.2.0-develop.
|
|
30
|
-
"@progress/kendo-react-common": "10.2.0-develop.
|
|
31
|
-
"@progress/kendo-react-inputs": "10.2.0-develop.
|
|
32
|
-
"@progress/kendo-react-intl": "10.2.0-develop.
|
|
33
|
-
"@progress/kendo-react-labels": "10.2.0-develop.
|
|
34
|
-
"@progress/kendo-react-layout": "10.2.0-develop.
|
|
35
|
-
"@progress/kendo-react-popup": "10.2.0-develop.
|
|
36
|
-
"@progress/kendo-react-treeview": "10.2.0-develop.
|
|
29
|
+
"@progress/kendo-react-buttons": "10.2.0-develop.3",
|
|
30
|
+
"@progress/kendo-react-common": "10.2.0-develop.3",
|
|
31
|
+
"@progress/kendo-react-inputs": "10.2.0-develop.3",
|
|
32
|
+
"@progress/kendo-react-intl": "10.2.0-develop.3",
|
|
33
|
+
"@progress/kendo-react-labels": "10.2.0-develop.3",
|
|
34
|
+
"@progress/kendo-react-layout": "10.2.0-develop.3",
|
|
35
|
+
"@progress/kendo-react-popup": "10.2.0-develop.3",
|
|
36
|
+
"@progress/kendo-react-treeview": "10.2.0-develop.3",
|
|
37
37
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
38
38
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
39
39
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"package": {
|
|
68
68
|
"productName": "KendoReact",
|
|
69
69
|
"productCode": "KENDOUIREACT",
|
|
70
|
-
"publishDate":
|
|
70
|
+
"publishDate": 1744013807,
|
|
71
71
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
72
72
|
}
|
|
73
73
|
},
|