@progress/kendo-react-dropdowns 8.3.0-develop.9 → 8.3.0
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 +58 -79
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +369 -300
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +99 -95
- package/DropDownTree/DropDownTree.mjs +62 -84
- package/MultiSelect/MultiSelect.mjs +34 -24
- package/MultiSelectTree/MultiSelectTree.js +1 -1
- package/MultiSelectTree/MultiSelectTree.mjs +428 -434
- package/common/DropDownBase.mjs +11 -12
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +8 -7
- package/index.d.ts +8 -7
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -395,9 +395,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
395
395
|
height: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
396
396
|
}>>;
|
|
397
397
|
onOpen: PropTypes.Requireable<(...args: any[]) => any>;
|
|
398
|
-
onClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
399
|
-
* @hidden
|
|
400
|
-
*/
|
|
398
|
+
onClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
401
399
|
onFocus: PropTypes.Requireable<(...args: any[]) => any>;
|
|
402
400
|
onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
403
401
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -915,6 +913,10 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
915
913
|
* Sets a custom suffix to the ComboBox component.
|
|
916
914
|
*/
|
|
917
915
|
suffix?: CustomComponent<any>;
|
|
916
|
+
/**
|
|
917
|
+
* @hidden
|
|
918
|
+
*/
|
|
919
|
+
unstyled?: DropDownsClassStructure;
|
|
918
920
|
}
|
|
919
921
|
|
|
920
922
|
/**
|
|
@@ -981,7 +983,6 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
981
983
|
dir: PropTypes.Requireable<string>;
|
|
982
984
|
tabIndex: PropTypes.Requireable<number>;
|
|
983
985
|
accessKey: PropTypes.Requireable<string>;
|
|
984
|
-
/** @hidden */
|
|
985
986
|
data: PropTypes.Requireable<any[]>;
|
|
986
987
|
textField: PropTypes.Requireable<string>;
|
|
987
988
|
className: PropTypes.Requireable<string>;
|
|
@@ -1731,9 +1732,6 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1731
1732
|
static propTypes: {
|
|
1732
1733
|
value: PropTypes.Requireable<any>;
|
|
1733
1734
|
defaultValue: PropTypes.Requireable<any>;
|
|
1734
|
-
/**
|
|
1735
|
-
* @hidden
|
|
1736
|
-
*/
|
|
1737
1735
|
filterable: PropTypes.Requireable<boolean>;
|
|
1738
1736
|
filter: PropTypes.Requireable<string>;
|
|
1739
1737
|
virtual: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -1907,6 +1905,8 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1907
1905
|
private handleListFilterChange;
|
|
1908
1906
|
private onPopupOpened;
|
|
1909
1907
|
private onPopupClosed;
|
|
1908
|
+
private onPopupMouseDown;
|
|
1909
|
+
togglePopup: () => void;
|
|
1910
1910
|
private getFocusedIndex;
|
|
1911
1911
|
private focusElement;
|
|
1912
1912
|
private setValidity;
|
|
@@ -3778,6 +3778,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
|
|
|
3778
3778
|
closeDuration: PropTypes.Requireable<number>;
|
|
3779
3779
|
}> | null | undefined>>;
|
|
3780
3780
|
popupClass: PropTypes.Requireable<string>;
|
|
3781
|
+
/** @hidden */
|
|
3781
3782
|
className: PropTypes.Requireable<string>;
|
|
3782
3783
|
appendTo: PropTypes.Requireable<any>;
|
|
3783
3784
|
width: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
package/index.d.ts
CHANGED
|
@@ -395,9 +395,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
395
395
|
height: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
396
396
|
}>>;
|
|
397
397
|
onOpen: PropTypes.Requireable<(...args: any[]) => any>;
|
|
398
|
-
onClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
399
|
-
* @hidden
|
|
400
|
-
*/
|
|
398
|
+
onClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
401
399
|
onFocus: PropTypes.Requireable<(...args: any[]) => any>;
|
|
402
400
|
onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
403
401
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -915,6 +913,10 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
915
913
|
* Sets a custom suffix to the ComboBox component.
|
|
916
914
|
*/
|
|
917
915
|
suffix?: CustomComponent<any>;
|
|
916
|
+
/**
|
|
917
|
+
* @hidden
|
|
918
|
+
*/
|
|
919
|
+
unstyled?: DropDownsClassStructure;
|
|
918
920
|
}
|
|
919
921
|
|
|
920
922
|
/**
|
|
@@ -981,7 +983,6 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
981
983
|
dir: PropTypes.Requireable<string>;
|
|
982
984
|
tabIndex: PropTypes.Requireable<number>;
|
|
983
985
|
accessKey: PropTypes.Requireable<string>;
|
|
984
|
-
/** @hidden */
|
|
985
986
|
data: PropTypes.Requireable<any[]>;
|
|
986
987
|
textField: PropTypes.Requireable<string>;
|
|
987
988
|
className: PropTypes.Requireable<string>;
|
|
@@ -1731,9 +1732,6 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1731
1732
|
static propTypes: {
|
|
1732
1733
|
value: PropTypes.Requireable<any>;
|
|
1733
1734
|
defaultValue: PropTypes.Requireable<any>;
|
|
1734
|
-
/**
|
|
1735
|
-
* @hidden
|
|
1736
|
-
*/
|
|
1737
1735
|
filterable: PropTypes.Requireable<boolean>;
|
|
1738
1736
|
filter: PropTypes.Requireable<string>;
|
|
1739
1737
|
virtual: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -1907,6 +1905,8 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1907
1905
|
private handleListFilterChange;
|
|
1908
1906
|
private onPopupOpened;
|
|
1909
1907
|
private onPopupClosed;
|
|
1908
|
+
private onPopupMouseDown;
|
|
1909
|
+
togglePopup: () => void;
|
|
1910
1910
|
private getFocusedIndex;
|
|
1911
1911
|
private focusElement;
|
|
1912
1912
|
private setValidity;
|
|
@@ -3778,6 +3778,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
|
|
|
3778
3778
|
closeDuration: PropTypes.Requireable<number>;
|
|
3779
3779
|
}> | null | undefined>>;
|
|
3780
3780
|
popupClass: PropTypes.Requireable<string>;
|
|
3781
|
+
/** @hidden */
|
|
3781
3782
|
className: PropTypes.Requireable<string>;
|
|
3782
3783
|
appendTo: PropTypes.Requireable<any>;
|
|
3783
3784
|
width: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
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: 1726561337,
|
|
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
|
|
3
|
+
"version": "8.3.0",
|
|
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
|
|
27
|
-
"@progress/kendo-react-common": "8.3.0
|
|
28
|
-
"@progress/kendo-react-inputs": "8.3.0
|
|
29
|
-
"@progress/kendo-react-intl": "8.3.0
|
|
30
|
-
"@progress/kendo-react-labels": "8.3.0
|
|
31
|
-
"@progress/kendo-react-layout": "8.3.0
|
|
32
|
-
"@progress/kendo-react-popup": "8.3.0
|
|
33
|
-
"@progress/kendo-react-treeview": "8.3.0
|
|
26
|
+
"@progress/kendo-react-buttons": "8.3.0",
|
|
27
|
+
"@progress/kendo-react-common": "8.3.0",
|
|
28
|
+
"@progress/kendo-react-inputs": "8.3.0",
|
|
29
|
+
"@progress/kendo-react-intl": "8.3.0",
|
|
30
|
+
"@progress/kendo-react-labels": "8.3.0",
|
|
31
|
+
"@progress/kendo-react-layout": "8.3.0",
|
|
32
|
+
"@progress/kendo-react-popup": "8.3.0",
|
|
33
|
+
"@progress/kendo-react-treeview": "8.3.0",
|
|
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"
|