@progress/kendo-react-dropdowns 8.3.0-develop.1 → 8.3.0-develop.11
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/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +30 -30
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +291 -280
- package/DropDownTree/DropDownTree.js +1 -1
- package/DropDownTree/DropDownTree.mjs +1 -1
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +1 -1
- package/MultiSelectTree/MultiSelectTree.js +1 -1
- package/MultiSelectTree/MultiSelectTree.mjs +11 -11
- package/common/ClearButton.js +1 -1
- package/common/ClearButton.mjs +21 -27
- package/common/GroupStickyHeader.js +1 -1
- package/common/GroupStickyHeader.mjs +11 -12
- package/common/List.js +1 -1
- package/common/List.mjs +88 -92
- package/common/ListContainer.js +1 -1
- package/common/ListContainer.mjs +21 -23
- package/common/ListDefaultItem.js +1 -1
- package/common/ListDefaultItem.mjs +20 -25
- package/common/ListFilter.js +1 -1
- package/common/ListFilter.mjs +19 -19
- package/common/ListGroupItem.js +1 -1
- package/common/ListGroupItem.mjs +22 -22
- package/common/ListItem.js +1 -1
- package/common/ListItem.mjs +37 -39
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +14 -19
- package/index.d.ts +14 -19
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { CustomComponent } from '@progress/kendo-react-common';
|
|
9
|
+
import { DropDownsClassStructure } from '@progress/kendo-react-common';
|
|
9
10
|
import { FormComponent } from '@progress/kendo-react-common';
|
|
10
11
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
11
12
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
12
13
|
import { ItemRenderProps } from '@progress/kendo-react-treeview';
|
|
13
14
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
14
|
-
import { LocalizationService } from '@progress/kendo-react-intl';
|
|
15
15
|
import { PopupProps } from '@progress/kendo-react-popup';
|
|
16
16
|
import PropTypes from 'prop-types';
|
|
17
17
|
import * as React_2 from 'react';
|
|
@@ -1696,6 +1696,13 @@ export declare interface DropDownListProps extends FormComponentProps {
|
|
|
1696
1696
|
* Defines if DropDownList's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
|
|
1697
1697
|
*/
|
|
1698
1698
|
skipDisabledItems?: boolean;
|
|
1699
|
+
/**
|
|
1700
|
+
* @hidden
|
|
1701
|
+
*/
|
|
1702
|
+
/**
|
|
1703
|
+
* @hidden
|
|
1704
|
+
*/
|
|
1705
|
+
unstyled?: DropDownsClassStructure;
|
|
1699
1706
|
}
|
|
1700
1707
|
|
|
1701
1708
|
/**
|
|
@@ -1732,9 +1739,7 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1732
1739
|
total: PropTypes.Validator<number>;
|
|
1733
1740
|
}>>;
|
|
1734
1741
|
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1735
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1736
|
-
* @hidden
|
|
1737
|
-
*/
|
|
1742
|
+
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1738
1743
|
opened: PropTypes.Requireable<boolean>;
|
|
1739
1744
|
disabled: PropTypes.Requireable<boolean>;
|
|
1740
1745
|
dir: PropTypes.Requireable<string>;
|
|
@@ -1742,9 +1747,6 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1742
1747
|
accessKey: PropTypes.Requireable<string>;
|
|
1743
1748
|
data: PropTypes.Requireable<any[]>;
|
|
1744
1749
|
textField: PropTypes.Requireable<string>;
|
|
1745
|
-
/**
|
|
1746
|
-
* @hidden
|
|
1747
|
-
*/
|
|
1748
1750
|
className: PropTypes.Requireable<string>;
|
|
1749
1751
|
label: PropTypes.Requireable<string>;
|
|
1750
1752
|
loading: PropTypes.Requireable<boolean>;
|
|
@@ -1902,6 +1904,8 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1902
1904
|
private handleListFilterChange;
|
|
1903
1905
|
private onPopupOpened;
|
|
1904
1906
|
private onPopupClosed;
|
|
1907
|
+
private onPopupMouseDown;
|
|
1908
|
+
togglePopup: () => void;
|
|
1905
1909
|
private getFocusedIndex;
|
|
1906
1910
|
private focusElement;
|
|
1907
1911
|
private setValidity;
|
|
@@ -2453,18 +2457,12 @@ export declare interface ItemProps extends ItemRenderProps {
|
|
|
2453
2457
|
/**
|
|
2454
2458
|
* @hidden
|
|
2455
2459
|
*/
|
|
2456
|
-
export declare
|
|
2457
|
-
renderItems(): (false | JSX_2.Element)[][];
|
|
2458
|
-
renderNoValueElement(localizationService: LocalizationService): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2459
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2460
|
-
}
|
|
2460
|
+
export declare const List: (props: ListProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2461
2461
|
|
|
2462
2462
|
/**
|
|
2463
2463
|
* @hidden
|
|
2464
2464
|
*/
|
|
2465
|
-
export declare
|
|
2466
|
-
render(): JSX_2.Element;
|
|
2467
|
-
}
|
|
2465
|
+
export declare const ListContainer: (props: ListContainerProps) => JSX_2.Element;
|
|
2468
2466
|
|
|
2469
2467
|
/**
|
|
2470
2468
|
* @hidden
|
|
@@ -2527,10 +2525,7 @@ export declare interface ListGroupItemProps {
|
|
|
2527
2525
|
/**
|
|
2528
2526
|
* @hidden
|
|
2529
2527
|
*/
|
|
2530
|
-
export declare
|
|
2531
|
-
handleClick: React_2.MouseEventHandler<HTMLLIElement>;
|
|
2532
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2533
|
-
}
|
|
2528
|
+
export declare const ListItem: (props: ListItemProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2534
2529
|
|
|
2535
2530
|
/**
|
|
2536
2531
|
* Represents the props of the ListItem component.
|
package/index.d.ts
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { CustomComponent } from '@progress/kendo-react-common';
|
|
9
|
+
import { DropDownsClassStructure } from '@progress/kendo-react-common';
|
|
9
10
|
import { FormComponent } from '@progress/kendo-react-common';
|
|
10
11
|
import { FormComponentProps } from '@progress/kendo-react-common';
|
|
11
12
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
12
13
|
import { ItemRenderProps } from '@progress/kendo-react-treeview';
|
|
13
14
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
14
|
-
import { LocalizationService } from '@progress/kendo-react-intl';
|
|
15
15
|
import { PopupProps } from '@progress/kendo-react-popup';
|
|
16
16
|
import PropTypes from 'prop-types';
|
|
17
17
|
import * as React_2 from 'react';
|
|
@@ -1696,6 +1696,13 @@ export declare interface DropDownListProps extends FormComponentProps {
|
|
|
1696
1696
|
* Defines if DropDownList's disabled items will be skipped or focused when navigating through the list of items using a keyboard. Defaults to `true`.
|
|
1697
1697
|
*/
|
|
1698
1698
|
skipDisabledItems?: boolean;
|
|
1699
|
+
/**
|
|
1700
|
+
* @hidden
|
|
1701
|
+
*/
|
|
1702
|
+
/**
|
|
1703
|
+
* @hidden
|
|
1704
|
+
*/
|
|
1705
|
+
unstyled?: DropDownsClassStructure;
|
|
1699
1706
|
}
|
|
1700
1707
|
|
|
1701
1708
|
/**
|
|
@@ -1732,9 +1739,7 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1732
1739
|
total: PropTypes.Validator<number>;
|
|
1733
1740
|
}>>;
|
|
1734
1741
|
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1735
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1736
|
-
* @hidden
|
|
1737
|
-
*/
|
|
1742
|
+
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1738
1743
|
opened: PropTypes.Requireable<boolean>;
|
|
1739
1744
|
disabled: PropTypes.Requireable<boolean>;
|
|
1740
1745
|
dir: PropTypes.Requireable<string>;
|
|
@@ -1742,9 +1747,6 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1742
1747
|
accessKey: PropTypes.Requireable<string>;
|
|
1743
1748
|
data: PropTypes.Requireable<any[]>;
|
|
1744
1749
|
textField: PropTypes.Requireable<string>;
|
|
1745
|
-
/**
|
|
1746
|
-
* @hidden
|
|
1747
|
-
*/
|
|
1748
1750
|
className: PropTypes.Requireable<string>;
|
|
1749
1751
|
label: PropTypes.Requireable<string>;
|
|
1750
1752
|
loading: PropTypes.Requireable<boolean>;
|
|
@@ -1902,6 +1904,8 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1902
1904
|
private handleListFilterChange;
|
|
1903
1905
|
private onPopupOpened;
|
|
1904
1906
|
private onPopupClosed;
|
|
1907
|
+
private onPopupMouseDown;
|
|
1908
|
+
togglePopup: () => void;
|
|
1905
1909
|
private getFocusedIndex;
|
|
1906
1910
|
private focusElement;
|
|
1907
1911
|
private setValidity;
|
|
@@ -2453,18 +2457,12 @@ export declare interface ItemProps extends ItemRenderProps {
|
|
|
2453
2457
|
/**
|
|
2454
2458
|
* @hidden
|
|
2455
2459
|
*/
|
|
2456
|
-
export declare
|
|
2457
|
-
renderItems(): (false | JSX_2.Element)[][];
|
|
2458
|
-
renderNoValueElement(localizationService: LocalizationService): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2459
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2460
|
-
}
|
|
2460
|
+
export declare const List: (props: ListProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2461
2461
|
|
|
2462
2462
|
/**
|
|
2463
2463
|
* @hidden
|
|
2464
2464
|
*/
|
|
2465
|
-
export declare
|
|
2466
|
-
render(): JSX_2.Element;
|
|
2467
|
-
}
|
|
2465
|
+
export declare const ListContainer: (props: ListContainerProps) => JSX_2.Element;
|
|
2468
2466
|
|
|
2469
2467
|
/**
|
|
2470
2468
|
* @hidden
|
|
@@ -2527,10 +2525,7 @@ export declare interface ListGroupItemProps {
|
|
|
2527
2525
|
/**
|
|
2528
2526
|
* @hidden
|
|
2529
2527
|
*/
|
|
2530
|
-
export declare
|
|
2531
|
-
handleClick: React_2.MouseEventHandler<HTMLLIElement>;
|
|
2532
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2533
|
-
}
|
|
2528
|
+
export declare const ListItem: (props: ListItemProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2534
2529
|
|
|
2535
2530
|
/**
|
|
2536
2531
|
* Represents the props of the ListItem component.
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-dropdowns",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1724738501,
|
|
14
14
|
version: "",
|
|
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
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dropdowns",
|
|
3
|
-
"version": "8.3.0-develop.
|
|
3
|
+
"version": "8.3.0-develop.11",
|
|
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",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@progress/kendo-licensing": "^1.3.4",
|
|
26
|
-
"@progress/kendo-react-buttons": "8.3.0-develop.
|
|
27
|
-
"@progress/kendo-react-common": "8.3.0-develop.
|
|
28
|
-
"@progress/kendo-react-inputs": "8.3.0-develop.
|
|
29
|
-
"@progress/kendo-react-intl": "8.3.0-develop.
|
|
30
|
-
"@progress/kendo-react-labels": "8.3.0-develop.
|
|
31
|
-
"@progress/kendo-react-layout": "8.3.0-develop.
|
|
32
|
-
"@progress/kendo-react-popup": "8.3.0-develop.
|
|
33
|
-
"@progress/kendo-react-treeview": "8.3.0-develop.
|
|
26
|
+
"@progress/kendo-react-buttons": "8.3.0-develop.11",
|
|
27
|
+
"@progress/kendo-react-common": "8.3.0-develop.11",
|
|
28
|
+
"@progress/kendo-react-inputs": "8.3.0-develop.11",
|
|
29
|
+
"@progress/kendo-react-intl": "8.3.0-develop.11",
|
|
30
|
+
"@progress/kendo-react-labels": "8.3.0-develop.11",
|
|
31
|
+
"@progress/kendo-react-layout": "8.3.0-develop.11",
|
|
32
|
+
"@progress/kendo-react-popup": "8.3.0-develop.11",
|
|
33
|
+
"@progress/kendo-react-treeview": "8.3.0-develop.11",
|
|
34
34
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
35
35
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
36
36
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|