@progress/kendo-react-dropdowns 8.3.0-develop.4 → 8.3.0-develop.6
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/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +284 -279
- 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 +15 -19
- package/index.d.ts +15 -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
|
/**
|
|
@@ -1724,6 +1731,9 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1724
1731
|
static propTypes: {
|
|
1725
1732
|
value: PropTypes.Requireable<any>;
|
|
1726
1733
|
defaultValue: PropTypes.Requireable<any>;
|
|
1734
|
+
/**
|
|
1735
|
+
* @hidden
|
|
1736
|
+
*/
|
|
1727
1737
|
filterable: PropTypes.Requireable<boolean>;
|
|
1728
1738
|
filter: PropTypes.Requireable<string>;
|
|
1729
1739
|
virtual: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -1732,9 +1742,7 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1732
1742
|
total: PropTypes.Validator<number>;
|
|
1733
1743
|
}>>;
|
|
1734
1744
|
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1735
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1736
|
-
* @hidden
|
|
1737
|
-
*/
|
|
1745
|
+
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1738
1746
|
opened: PropTypes.Requireable<boolean>;
|
|
1739
1747
|
disabled: PropTypes.Requireable<boolean>;
|
|
1740
1748
|
dir: PropTypes.Requireable<string>;
|
|
@@ -1742,9 +1750,6 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1742
1750
|
accessKey: PropTypes.Requireable<string>;
|
|
1743
1751
|
data: PropTypes.Requireable<any[]>;
|
|
1744
1752
|
textField: PropTypes.Requireable<string>;
|
|
1745
|
-
/**
|
|
1746
|
-
* @hidden
|
|
1747
|
-
*/
|
|
1748
1753
|
className: PropTypes.Requireable<string>;
|
|
1749
1754
|
label: PropTypes.Requireable<string>;
|
|
1750
1755
|
loading: PropTypes.Requireable<boolean>;
|
|
@@ -2453,18 +2458,12 @@ export declare interface ItemProps extends ItemRenderProps {
|
|
|
2453
2458
|
/**
|
|
2454
2459
|
* @hidden
|
|
2455
2460
|
*/
|
|
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
|
-
}
|
|
2461
|
+
export declare const List: (props: ListProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2461
2462
|
|
|
2462
2463
|
/**
|
|
2463
2464
|
* @hidden
|
|
2464
2465
|
*/
|
|
2465
|
-
export declare
|
|
2466
|
-
render(): JSX_2.Element;
|
|
2467
|
-
}
|
|
2466
|
+
export declare const ListContainer: (props: ListContainerProps) => JSX_2.Element;
|
|
2468
2467
|
|
|
2469
2468
|
/**
|
|
2470
2469
|
* @hidden
|
|
@@ -2527,10 +2526,7 @@ export declare interface ListGroupItemProps {
|
|
|
2527
2526
|
/**
|
|
2528
2527
|
* @hidden
|
|
2529
2528
|
*/
|
|
2530
|
-
export declare
|
|
2531
|
-
handleClick: React_2.MouseEventHandler<HTMLLIElement>;
|
|
2532
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2533
|
-
}
|
|
2529
|
+
export declare const ListItem: (props: ListItemProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2534
2530
|
|
|
2535
2531
|
/**
|
|
2536
2532
|
* 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
|
/**
|
|
@@ -1724,6 +1731,9 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1724
1731
|
static propTypes: {
|
|
1725
1732
|
value: PropTypes.Requireable<any>;
|
|
1726
1733
|
defaultValue: PropTypes.Requireable<any>;
|
|
1734
|
+
/**
|
|
1735
|
+
* @hidden
|
|
1736
|
+
*/
|
|
1727
1737
|
filterable: PropTypes.Requireable<boolean>;
|
|
1728
1738
|
filter: PropTypes.Requireable<string>;
|
|
1729
1739
|
virtual: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -1732,9 +1742,7 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1732
1742
|
total: PropTypes.Validator<number>;
|
|
1733
1743
|
}>>;
|
|
1734
1744
|
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1735
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1736
|
-
* @hidden
|
|
1737
|
-
*/
|
|
1745
|
+
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1738
1746
|
opened: PropTypes.Requireable<boolean>;
|
|
1739
1747
|
disabled: PropTypes.Requireable<boolean>;
|
|
1740
1748
|
dir: PropTypes.Requireable<string>;
|
|
@@ -1742,9 +1750,6 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1742
1750
|
accessKey: PropTypes.Requireable<string>;
|
|
1743
1751
|
data: PropTypes.Requireable<any[]>;
|
|
1744
1752
|
textField: PropTypes.Requireable<string>;
|
|
1745
|
-
/**
|
|
1746
|
-
* @hidden
|
|
1747
|
-
*/
|
|
1748
1753
|
className: PropTypes.Requireable<string>;
|
|
1749
1754
|
label: PropTypes.Requireable<string>;
|
|
1750
1755
|
loading: PropTypes.Requireable<boolean>;
|
|
@@ -2453,18 +2458,12 @@ export declare interface ItemProps extends ItemRenderProps {
|
|
|
2453
2458
|
/**
|
|
2454
2459
|
* @hidden
|
|
2455
2460
|
*/
|
|
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
|
-
}
|
|
2461
|
+
export declare const List: (props: ListProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2461
2462
|
|
|
2462
2463
|
/**
|
|
2463
2464
|
* @hidden
|
|
2464
2465
|
*/
|
|
2465
|
-
export declare
|
|
2466
|
-
render(): JSX_2.Element;
|
|
2467
|
-
}
|
|
2466
|
+
export declare const ListContainer: (props: ListContainerProps) => JSX_2.Element;
|
|
2468
2467
|
|
|
2469
2468
|
/**
|
|
2470
2469
|
* @hidden
|
|
@@ -2527,10 +2526,7 @@ export declare interface ListGroupItemProps {
|
|
|
2527
2526
|
/**
|
|
2528
2527
|
* @hidden
|
|
2529
2528
|
*/
|
|
2530
|
-
export declare
|
|
2531
|
-
handleClick: React_2.MouseEventHandler<HTMLLIElement>;
|
|
2532
|
-
render(): string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2533
|
-
}
|
|
2529
|
+
export declare const ListItem: (props: ListItemProps) => string | number | boolean | Iterable<React_2.ReactNode> | JSX_2.Element | null | undefined;
|
|
2534
2530
|
|
|
2535
2531
|
/**
|
|
2536
2532
|
* 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: 1724316175,
|
|
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.6",
|
|
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.6",
|
|
27
|
+
"@progress/kendo-react-common": "8.3.0-develop.6",
|
|
28
|
+
"@progress/kendo-react-inputs": "8.3.0-develop.6",
|
|
29
|
+
"@progress/kendo-react-intl": "8.3.0-develop.6",
|
|
30
|
+
"@progress/kendo-react-labels": "8.3.0-develop.6",
|
|
31
|
+
"@progress/kendo-react-layout": "8.3.0-develop.6",
|
|
32
|
+
"@progress/kendo-react-popup": "8.3.0-develop.6",
|
|
33
|
+
"@progress/kendo-react-treeview": "8.3.0-develop.6",
|
|
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"
|