@progress/kendo-react-dropdowns 12.0.0-develop.1 → 12.0.0-develop.10
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 +166 -164
- package/MultiColumnComboBox/MultiColumnComboBox.js +1 -1
- package/MultiColumnComboBox/MultiColumnComboBox.mjs +13 -13
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +43 -58
- package/index.d.ts +43 -58
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/index.d.mts
CHANGED
|
@@ -40,21 +40,18 @@ export declare type AutoComplete = AutoCompleteHandle;
|
|
|
40
40
|
*
|
|
41
41
|
* @example
|
|
42
42
|
* ```jsx
|
|
43
|
-
*
|
|
44
|
-
* autocomplete = null;
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* );
|
|
55
|
-
* }
|
|
43
|
+
* const App = () => {
|
|
44
|
+
* const autocomplete = React.useRef(null);
|
|
45
|
+
* return (
|
|
46
|
+
* <div>
|
|
47
|
+
* <AutoComplete
|
|
48
|
+
* data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
|
|
49
|
+
* ref={autocomplete}
|
|
50
|
+
* />
|
|
51
|
+
* <Button onClick={() => alert(autocomplete.current.value)}>alert value</Button>
|
|
52
|
+
* </div>
|
|
53
|
+
* );
|
|
56
54
|
* }
|
|
57
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
58
55
|
* ```
|
|
59
56
|
*/
|
|
60
57
|
export declare const AutoComplete: React_2.ForwardRefExoticComponent<AutoCompleteProps & React_2.RefAttributes<any>>;
|
|
@@ -828,21 +825,18 @@ export declare type ComboBox = ComboBoxHandle;
|
|
|
828
825
|
*
|
|
829
826
|
* @example
|
|
830
827
|
* ```jsx
|
|
831
|
-
*
|
|
832
|
-
* combobox = null;
|
|
833
|
-
*
|
|
834
|
-
*
|
|
835
|
-
*
|
|
836
|
-
*
|
|
837
|
-
*
|
|
838
|
-
*
|
|
839
|
-
*
|
|
840
|
-
*
|
|
841
|
-
*
|
|
842
|
-
* );
|
|
843
|
-
* }
|
|
828
|
+
* const App = () => {
|
|
829
|
+
* const combobox = React.useRef(null);
|
|
830
|
+
* return (
|
|
831
|
+
* <div>
|
|
832
|
+
* <ComboBox
|
|
833
|
+
* data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
|
|
834
|
+
* ref={combobox}
|
|
835
|
+
* />
|
|
836
|
+
* <Button onClick={() => alert(combobox.current.value)}>alert value</Button>
|
|
837
|
+
* </div>
|
|
838
|
+
* );
|
|
844
839
|
* }
|
|
845
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
846
840
|
* ```
|
|
847
841
|
*/
|
|
848
842
|
export declare const ComboBox: React_2.ForwardRefExoticComponent<ComboBoxProps & React_2.RefAttributes<any>>;
|
|
@@ -2218,20 +2212,17 @@ export declare interface DropDownListProps extends FormComponentProps {
|
|
|
2218
2212
|
*
|
|
2219
2213
|
* @example
|
|
2220
2214
|
* ```jsx
|
|
2221
|
-
*
|
|
2222
|
-
*
|
|
2223
|
-
*
|
|
2224
|
-
*
|
|
2225
|
-
*
|
|
2226
|
-
*
|
|
2227
|
-
*
|
|
2228
|
-
*
|
|
2229
|
-
*
|
|
2230
|
-
*
|
|
2231
|
-
* );
|
|
2232
|
-
* }
|
|
2215
|
+
* const App = () => {
|
|
2216
|
+
* return (
|
|
2217
|
+
* <form>
|
|
2218
|
+
* <DropDownList
|
|
2219
|
+
* data={[ { text: "Austria", id: 1 } , { text: "Belarus", id: 2 } ]}
|
|
2220
|
+
* valueMap={value => value && value.id}
|
|
2221
|
+
* />
|
|
2222
|
+
* <Button type="submit">Submit</Button>
|
|
2223
|
+
* </form>
|
|
2224
|
+
* );
|
|
2233
2225
|
* }
|
|
2234
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
2235
2226
|
* ```
|
|
2236
2227
|
*/
|
|
2237
2228
|
valueMap?: (value: any) => any;
|
|
@@ -2693,7 +2684,6 @@ declare interface DropDownStateBase {
|
|
|
2693
2684
|
* />
|
|
2694
2685
|
* );
|
|
2695
2686
|
* };
|
|
2696
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
2697
2687
|
* ```
|
|
2698
2688
|
*/
|
|
2699
2689
|
export declare const DropDownTree: React_2.ForwardRefExoticComponent<DropDownTreeProps & React_2.RefAttributes<DropDownTreeHandle | null>>;
|
|
@@ -3524,7 +3514,6 @@ declare interface ListProps {
|
|
|
3524
3514
|
* </div>
|
|
3525
3515
|
* );
|
|
3526
3516
|
* };
|
|
3527
|
-
* ReactDOM.render(<App />, document.querySelector("my-app"));
|
|
3528
3517
|
* ```
|
|
3529
3518
|
*/
|
|
3530
3519
|
export declare const MultiColumnComboBox: React_2.ForwardRefExoticComponent<MultiColumnComboBoxProps & React_2.RefAttributes<MultiColumnComboBoxHandle | null>>;
|
|
@@ -3791,21 +3780,18 @@ export declare type MultiSelect = MultiSelectHandle;
|
|
|
3791
3780
|
*
|
|
3792
3781
|
* @example
|
|
3793
3782
|
* ```jsx
|
|
3794
|
-
*
|
|
3795
|
-
* multiselect = null;
|
|
3796
|
-
*
|
|
3797
|
-
*
|
|
3798
|
-
*
|
|
3799
|
-
*
|
|
3800
|
-
*
|
|
3801
|
-
*
|
|
3802
|
-
*
|
|
3803
|
-
*
|
|
3804
|
-
*
|
|
3805
|
-
* );
|
|
3806
|
-
* }
|
|
3783
|
+
* const App = () => {
|
|
3784
|
+
* const multiselect = React.useRef(null);
|
|
3785
|
+
* return (
|
|
3786
|
+
* <div>
|
|
3787
|
+
* <MultiSelect
|
|
3788
|
+
* data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
|
|
3789
|
+
* ref={multiselect}
|
|
3790
|
+
* />
|
|
3791
|
+
* <Button onClick={() => alert(multiselect.current.value)}>alert value</Button>
|
|
3792
|
+
* </div>
|
|
3793
|
+
* );
|
|
3807
3794
|
* }
|
|
3808
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
3809
3795
|
* ```
|
|
3810
3796
|
*/
|
|
3811
3797
|
export declare const MultiSelect: React_2.ForwardRefExoticComponent<MultiSelectProps & React_2.RefAttributes<any>>;
|
|
@@ -4512,7 +4498,6 @@ declare interface MultiSelectState extends DropDownStateBase {
|
|
|
4512
4498
|
* </div>
|
|
4513
4499
|
* );
|
|
4514
4500
|
* };
|
|
4515
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
4516
4501
|
* ```
|
|
4517
4502
|
*/
|
|
4518
4503
|
export declare const MultiSelectTree: React_2.ForwardRefExoticComponent<MultiSelectTreeProps & React_2.RefAttributes<MultiSelectTreeHandle | null>>;
|
package/index.d.ts
CHANGED
|
@@ -40,21 +40,18 @@ export declare type AutoComplete = AutoCompleteHandle;
|
|
|
40
40
|
*
|
|
41
41
|
* @example
|
|
42
42
|
* ```jsx
|
|
43
|
-
*
|
|
44
|
-
* autocomplete = null;
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* );
|
|
55
|
-
* }
|
|
43
|
+
* const App = () => {
|
|
44
|
+
* const autocomplete = React.useRef(null);
|
|
45
|
+
* return (
|
|
46
|
+
* <div>
|
|
47
|
+
* <AutoComplete
|
|
48
|
+
* data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
|
|
49
|
+
* ref={autocomplete}
|
|
50
|
+
* />
|
|
51
|
+
* <Button onClick={() => alert(autocomplete.current.value)}>alert value</Button>
|
|
52
|
+
* </div>
|
|
53
|
+
* );
|
|
56
54
|
* }
|
|
57
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
58
55
|
* ```
|
|
59
56
|
*/
|
|
60
57
|
export declare const AutoComplete: React_2.ForwardRefExoticComponent<AutoCompleteProps & React_2.RefAttributes<any>>;
|
|
@@ -828,21 +825,18 @@ export declare type ComboBox = ComboBoxHandle;
|
|
|
828
825
|
*
|
|
829
826
|
* @example
|
|
830
827
|
* ```jsx
|
|
831
|
-
*
|
|
832
|
-
* combobox = null;
|
|
833
|
-
*
|
|
834
|
-
*
|
|
835
|
-
*
|
|
836
|
-
*
|
|
837
|
-
*
|
|
838
|
-
*
|
|
839
|
-
*
|
|
840
|
-
*
|
|
841
|
-
*
|
|
842
|
-
* );
|
|
843
|
-
* }
|
|
828
|
+
* const App = () => {
|
|
829
|
+
* const combobox = React.useRef(null);
|
|
830
|
+
* return (
|
|
831
|
+
* <div>
|
|
832
|
+
* <ComboBox
|
|
833
|
+
* data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
|
|
834
|
+
* ref={combobox}
|
|
835
|
+
* />
|
|
836
|
+
* <Button onClick={() => alert(combobox.current.value)}>alert value</Button>
|
|
837
|
+
* </div>
|
|
838
|
+
* );
|
|
844
839
|
* }
|
|
845
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
846
840
|
* ```
|
|
847
841
|
*/
|
|
848
842
|
export declare const ComboBox: React_2.ForwardRefExoticComponent<ComboBoxProps & React_2.RefAttributes<any>>;
|
|
@@ -2218,20 +2212,17 @@ export declare interface DropDownListProps extends FormComponentProps {
|
|
|
2218
2212
|
*
|
|
2219
2213
|
* @example
|
|
2220
2214
|
* ```jsx
|
|
2221
|
-
*
|
|
2222
|
-
*
|
|
2223
|
-
*
|
|
2224
|
-
*
|
|
2225
|
-
*
|
|
2226
|
-
*
|
|
2227
|
-
*
|
|
2228
|
-
*
|
|
2229
|
-
*
|
|
2230
|
-
*
|
|
2231
|
-
* );
|
|
2232
|
-
* }
|
|
2215
|
+
* const App = () => {
|
|
2216
|
+
* return (
|
|
2217
|
+
* <form>
|
|
2218
|
+
* <DropDownList
|
|
2219
|
+
* data={[ { text: "Austria", id: 1 } , { text: "Belarus", id: 2 } ]}
|
|
2220
|
+
* valueMap={value => value && value.id}
|
|
2221
|
+
* />
|
|
2222
|
+
* <Button type="submit">Submit</Button>
|
|
2223
|
+
* </form>
|
|
2224
|
+
* );
|
|
2233
2225
|
* }
|
|
2234
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
2235
2226
|
* ```
|
|
2236
2227
|
*/
|
|
2237
2228
|
valueMap?: (value: any) => any;
|
|
@@ -2693,7 +2684,6 @@ declare interface DropDownStateBase {
|
|
|
2693
2684
|
* />
|
|
2694
2685
|
* );
|
|
2695
2686
|
* };
|
|
2696
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
2697
2687
|
* ```
|
|
2698
2688
|
*/
|
|
2699
2689
|
export declare const DropDownTree: React_2.ForwardRefExoticComponent<DropDownTreeProps & React_2.RefAttributes<DropDownTreeHandle | null>>;
|
|
@@ -3524,7 +3514,6 @@ declare interface ListProps {
|
|
|
3524
3514
|
* </div>
|
|
3525
3515
|
* );
|
|
3526
3516
|
* };
|
|
3527
|
-
* ReactDOM.render(<App />, document.querySelector("my-app"));
|
|
3528
3517
|
* ```
|
|
3529
3518
|
*/
|
|
3530
3519
|
export declare const MultiColumnComboBox: React_2.ForwardRefExoticComponent<MultiColumnComboBoxProps & React_2.RefAttributes<MultiColumnComboBoxHandle | null>>;
|
|
@@ -3791,21 +3780,18 @@ export declare type MultiSelect = MultiSelectHandle;
|
|
|
3791
3780
|
*
|
|
3792
3781
|
* @example
|
|
3793
3782
|
* ```jsx
|
|
3794
|
-
*
|
|
3795
|
-
* multiselect = null;
|
|
3796
|
-
*
|
|
3797
|
-
*
|
|
3798
|
-
*
|
|
3799
|
-
*
|
|
3800
|
-
*
|
|
3801
|
-
*
|
|
3802
|
-
*
|
|
3803
|
-
*
|
|
3804
|
-
*
|
|
3805
|
-
* );
|
|
3806
|
-
* }
|
|
3783
|
+
* const App = () => {
|
|
3784
|
+
* const multiselect = React.useRef(null);
|
|
3785
|
+
* return (
|
|
3786
|
+
* <div>
|
|
3787
|
+
* <MultiSelect
|
|
3788
|
+
* data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
|
|
3789
|
+
* ref={multiselect}
|
|
3790
|
+
* />
|
|
3791
|
+
* <Button onClick={() => alert(multiselect.current.value)}>alert value</Button>
|
|
3792
|
+
* </div>
|
|
3793
|
+
* );
|
|
3807
3794
|
* }
|
|
3808
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
3809
3795
|
* ```
|
|
3810
3796
|
*/
|
|
3811
3797
|
export declare const MultiSelect: React_2.ForwardRefExoticComponent<MultiSelectProps & React_2.RefAttributes<any>>;
|
|
@@ -4512,7 +4498,6 @@ declare interface MultiSelectState extends DropDownStateBase {
|
|
|
4512
4498
|
* </div>
|
|
4513
4499
|
* );
|
|
4514
4500
|
* };
|
|
4515
|
-
* ReactDOM.render(<App />, document.querySelector('my-app'));
|
|
4516
4501
|
* ```
|
|
4517
4502
|
*/
|
|
4518
4503
|
export declare const MultiSelectTree: React_2.ForwardRefExoticComponent<MultiSelectTreeProps & React_2.RefAttributes<MultiSelectTreeHandle | null>>;
|
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=Object.freeze({name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-dropdowns",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1756120840,version:"12.0.0-develop.10",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 = Object.freeze({
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "12.0.0-develop.
|
|
13
|
+
publishDate: 1756120840,
|
|
14
|
+
version: "12.0.0-develop.10",
|
|
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": "12.0.0-develop.
|
|
3
|
+
"version": "12.0.0-develop.10",
|
|
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.7.0",
|
|
29
|
-
"@progress/kendo-react-buttons": "12.0.0-develop.
|
|
30
|
-
"@progress/kendo-react-common": "12.0.0-develop.
|
|
31
|
-
"@progress/kendo-react-inputs": "12.0.0-develop.
|
|
32
|
-
"@progress/kendo-react-intl": "12.0.0-develop.
|
|
33
|
-
"@progress/kendo-react-labels": "12.0.0-develop.
|
|
34
|
-
"@progress/kendo-react-layout": "12.0.0-develop.
|
|
35
|
-
"@progress/kendo-react-popup": "12.0.0-develop.
|
|
36
|
-
"@progress/kendo-react-treeview": "12.0.0-develop.
|
|
29
|
+
"@progress/kendo-react-buttons": "12.0.0-develop.10",
|
|
30
|
+
"@progress/kendo-react-common": "12.0.0-develop.10",
|
|
31
|
+
"@progress/kendo-react-inputs": "12.0.0-develop.10",
|
|
32
|
+
"@progress/kendo-react-intl": "12.0.0-develop.10",
|
|
33
|
+
"@progress/kendo-react-labels": "12.0.0-develop.10",
|
|
34
|
+
"@progress/kendo-react-layout": "12.0.0-develop.10",
|
|
35
|
+
"@progress/kendo-react-popup": "12.0.0-develop.10",
|
|
36
|
+
"@progress/kendo-react-treeview": "12.0.0-develop.10",
|
|
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": 1756120840,
|
|
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
|
},
|