@progress/kendo-react-dropdowns 9.2.0-develop.4 → 9.2.0-develop.5
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 +21 -20
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +145 -140
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +335 -332
- package/DropDownTree/DropDownTree.js +1 -1
- package/DropDownTree/DropDownTree.mjs +192 -192
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +147 -146
- package/MultiSelectTree/MultiSelectTree.js +1 -1
- package/MultiSelectTree/MultiSelectTree.mjs +143 -143
- package/common/AdaptiveMode.js +1 -1
- package/common/AdaptiveMode.mjs +17 -17
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +18 -9
- package/index.d.ts +18 -9
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
import { AdaptiveModeContextType } from '@progress/kendo-react-common';
|
|
8
9
|
import { CustomComponent } from '@progress/kendo-react-common';
|
|
9
10
|
import { DropDownsClassStructure } from '@progress/kendo-react-common';
|
|
10
11
|
import { FormComponent } from '@progress/kendo-react-common';
|
|
@@ -343,6 +344,11 @@ export declare interface AutoCompleteProps extends FormComponentProps {
|
|
|
343
344
|
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
344
345
|
*/
|
|
345
346
|
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
347
|
+
/**
|
|
348
|
+
* @hidden
|
|
349
|
+
* This prop is provided by the withAdaptiveModeContext HOC to subscribe to AdaptiveModeContext.
|
|
350
|
+
*/
|
|
351
|
+
_adaptiveMode?: AdaptiveModeContextType;
|
|
346
352
|
}
|
|
347
353
|
|
|
348
354
|
/**
|
|
@@ -479,7 +485,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
479
485
|
/** @hidden */
|
|
480
486
|
get opened(): boolean;
|
|
481
487
|
/**
|
|
482
|
-
* The mobile mode of the
|
|
488
|
+
* The mobile mode of the AutoComplete.
|
|
483
489
|
*/
|
|
484
490
|
get mobileMode(): boolean;
|
|
485
491
|
/**
|
|
@@ -957,6 +963,11 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
957
963
|
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
958
964
|
*/
|
|
959
965
|
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
966
|
+
/**
|
|
967
|
+
* @hidden
|
|
968
|
+
* This prop is provided by the withAdaptiveModeContext HOC to subscribe to AdaptiveModeContext.
|
|
969
|
+
*/
|
|
970
|
+
_adaptiveMode?: AdaptiveModeContextType;
|
|
960
971
|
}
|
|
961
972
|
|
|
962
973
|
/**
|
|
@@ -1034,7 +1045,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1034
1045
|
openDuration: PropTypes.Requireable<number>;
|
|
1035
1046
|
closeDuration: PropTypes.Requireable<number>;
|
|
1036
1047
|
}> | null | undefined>>;
|
|
1037
|
-
popupClass: PropTypes.Requireable<string>;
|
|
1048
|
+
popupClass: PropTypes.Requireable<string>; /** @hidden */
|
|
1038
1049
|
className: PropTypes.Requireable<string>;
|
|
1039
1050
|
appendTo: PropTypes.Requireable<any>;
|
|
1040
1051
|
width: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
@@ -1777,13 +1788,6 @@ export declare interface DropDownListProps extends FormComponentProps {
|
|
|
1777
1788
|
*/
|
|
1778
1789
|
export declare const DropDownListPropsContext: React_2.Context<(p: DropDownListProps) => DropDownListProps>;
|
|
1779
1790
|
|
|
1780
|
-
/**
|
|
1781
|
-
* @hidden
|
|
1782
|
-
*/
|
|
1783
|
-
export declare interface DropDownListState extends DropDownStateBase {
|
|
1784
|
-
windowWidth?: number;
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
1791
|
/**
|
|
1788
1792
|
* @hidden
|
|
1789
1793
|
*/
|
|
@@ -3169,6 +3173,11 @@ export declare interface MultiSelectProps extends FormComponentProps {
|
|
|
3169
3173
|
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
3170
3174
|
*/
|
|
3171
3175
|
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
3176
|
+
/**
|
|
3177
|
+
* @hidden
|
|
3178
|
+
* This prop is provided by the withAdaptiveModeContext HOC to subscribe to AdaptiveModeContext.
|
|
3179
|
+
*/
|
|
3180
|
+
_adaptiveMode?: AdaptiveModeContextType;
|
|
3172
3181
|
}
|
|
3173
3182
|
|
|
3174
3183
|
/**
|
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
import { AdaptiveModeContextType } from '@progress/kendo-react-common';
|
|
8
9
|
import { CustomComponent } from '@progress/kendo-react-common';
|
|
9
10
|
import { DropDownsClassStructure } from '@progress/kendo-react-common';
|
|
10
11
|
import { FormComponent } from '@progress/kendo-react-common';
|
|
@@ -343,6 +344,11 @@ export declare interface AutoCompleteProps extends FormComponentProps {
|
|
|
343
344
|
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
344
345
|
*/
|
|
345
346
|
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
347
|
+
/**
|
|
348
|
+
* @hidden
|
|
349
|
+
* This prop is provided by the withAdaptiveModeContext HOC to subscribe to AdaptiveModeContext.
|
|
350
|
+
*/
|
|
351
|
+
_adaptiveMode?: AdaptiveModeContextType;
|
|
346
352
|
}
|
|
347
353
|
|
|
348
354
|
/**
|
|
@@ -479,7 +485,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
479
485
|
/** @hidden */
|
|
480
486
|
get opened(): boolean;
|
|
481
487
|
/**
|
|
482
|
-
* The mobile mode of the
|
|
488
|
+
* The mobile mode of the AutoComplete.
|
|
483
489
|
*/
|
|
484
490
|
get mobileMode(): boolean;
|
|
485
491
|
/**
|
|
@@ -957,6 +963,11 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
957
963
|
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
958
964
|
*/
|
|
959
965
|
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
966
|
+
/**
|
|
967
|
+
* @hidden
|
|
968
|
+
* This prop is provided by the withAdaptiveModeContext HOC to subscribe to AdaptiveModeContext.
|
|
969
|
+
*/
|
|
970
|
+
_adaptiveMode?: AdaptiveModeContextType;
|
|
960
971
|
}
|
|
961
972
|
|
|
962
973
|
/**
|
|
@@ -1034,7 +1045,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1034
1045
|
openDuration: PropTypes.Requireable<number>;
|
|
1035
1046
|
closeDuration: PropTypes.Requireable<number>;
|
|
1036
1047
|
}> | null | undefined>>;
|
|
1037
|
-
popupClass: PropTypes.Requireable<string>;
|
|
1048
|
+
popupClass: PropTypes.Requireable<string>; /** @hidden */
|
|
1038
1049
|
className: PropTypes.Requireable<string>;
|
|
1039
1050
|
appendTo: PropTypes.Requireable<any>;
|
|
1040
1051
|
width: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
@@ -1777,13 +1788,6 @@ export declare interface DropDownListProps extends FormComponentProps {
|
|
|
1777
1788
|
*/
|
|
1778
1789
|
export declare const DropDownListPropsContext: React_2.Context<(p: DropDownListProps) => DropDownListProps>;
|
|
1779
1790
|
|
|
1780
|
-
/**
|
|
1781
|
-
* @hidden
|
|
1782
|
-
*/
|
|
1783
|
-
export declare interface DropDownListState extends DropDownStateBase {
|
|
1784
|
-
windowWidth?: number;
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
1791
|
/**
|
|
1788
1792
|
* @hidden
|
|
1789
1793
|
*/
|
|
@@ -3169,6 +3173,11 @@ export declare interface MultiSelectProps extends FormComponentProps {
|
|
|
3169
3173
|
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
3170
3174
|
*/
|
|
3171
3175
|
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
3176
|
+
/**
|
|
3177
|
+
* @hidden
|
|
3178
|
+
* This prop is provided by the withAdaptiveModeContext HOC to subscribe to AdaptiveModeContext.
|
|
3179
|
+
*/
|
|
3180
|
+
_adaptiveMode?: AdaptiveModeContextType;
|
|
3172
3181
|
}
|
|
3173
3182
|
|
|
3174
3183
|
/**
|
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: 1736756828,
|
|
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": "9.2.0-develop.
|
|
3
|
+
"version": "9.2.0-develop.5",
|
|
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": "9.2.0-develop.
|
|
27
|
-
"@progress/kendo-react-common": "9.2.0-develop.
|
|
28
|
-
"@progress/kendo-react-inputs": "9.2.0-develop.
|
|
29
|
-
"@progress/kendo-react-intl": "9.2.0-develop.
|
|
30
|
-
"@progress/kendo-react-labels": "9.2.0-develop.
|
|
31
|
-
"@progress/kendo-react-layout": "9.2.0-develop.
|
|
32
|
-
"@progress/kendo-react-popup": "9.2.0-develop.
|
|
33
|
-
"@progress/kendo-react-treeview": "9.2.0-develop.
|
|
26
|
+
"@progress/kendo-react-buttons": "9.2.0-develop.5",
|
|
27
|
+
"@progress/kendo-react-common": "9.2.0-develop.5",
|
|
28
|
+
"@progress/kendo-react-inputs": "9.2.0-develop.5",
|
|
29
|
+
"@progress/kendo-react-intl": "9.2.0-develop.5",
|
|
30
|
+
"@progress/kendo-react-labels": "9.2.0-develop.5",
|
|
31
|
+
"@progress/kendo-react-layout": "9.2.0-develop.5",
|
|
32
|
+
"@progress/kendo-react-popup": "9.2.0-develop.5",
|
|
33
|
+
"@progress/kendo-react-treeview": "9.2.0-develop.5",
|
|
34
34
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
35
35
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
36
36
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|