@progress/kendo-react-dropdowns 8.2.0-develop.9 → 8.2.1-develop.1
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 +206 -208
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +216 -218
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +222 -227
- package/MultiColumnComboBox/MultiColumnComboBox.js +1 -1
- package/MultiColumnComboBox/MultiColumnComboBox.mjs +79 -85
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +329 -330
- package/common/utils.js +1 -1
- package/common/utils.mjs +25 -21
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +10 -2
- package/index.d.ts +10 -2
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -395,7 +395,9 @@ 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>;
|
|
398
|
+
onClose: PropTypes.Requireable<(...args: any[]) => any>; /**
|
|
399
|
+
* @hidden
|
|
400
|
+
*/
|
|
399
401
|
onFocus: PropTypes.Requireable<(...args: any[]) => any>;
|
|
400
402
|
onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
401
403
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -979,6 +981,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
979
981
|
dir: PropTypes.Requireable<string>;
|
|
980
982
|
tabIndex: PropTypes.Requireable<number>;
|
|
981
983
|
accessKey: PropTypes.Requireable<string>;
|
|
984
|
+
/** @hidden */
|
|
982
985
|
data: PropTypes.Requireable<any[]>;
|
|
983
986
|
textField: PropTypes.Requireable<string>;
|
|
984
987
|
className: PropTypes.Requireable<string>;
|
|
@@ -1729,7 +1732,9 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1729
1732
|
total: PropTypes.Validator<number>;
|
|
1730
1733
|
}>>;
|
|
1731
1734
|
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1732
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1735
|
+
onPageChange: PropTypes.Requireable<(...args: any[]) => any>; /**
|
|
1736
|
+
* @hidden
|
|
1737
|
+
*/
|
|
1733
1738
|
opened: PropTypes.Requireable<boolean>;
|
|
1734
1739
|
disabled: PropTypes.Requireable<boolean>;
|
|
1735
1740
|
dir: PropTypes.Requireable<string>;
|
|
@@ -1737,6 +1742,9 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1737
1742
|
accessKey: PropTypes.Requireable<string>;
|
|
1738
1743
|
data: PropTypes.Requireable<any[]>;
|
|
1739
1744
|
textField: PropTypes.Requireable<string>;
|
|
1745
|
+
/**
|
|
1746
|
+
* @hidden
|
|
1747
|
+
*/
|
|
1740
1748
|
className: PropTypes.Requireable<string>;
|
|
1741
1749
|
label: PropTypes.Requireable<string>;
|
|
1742
1750
|
loading: PropTypes.Requireable<boolean>;
|
package/index.d.ts
CHANGED
|
@@ -395,7 +395,9 @@ 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>;
|
|
398
|
+
onClose: PropTypes.Requireable<(...args: any[]) => any>; /**
|
|
399
|
+
* @hidden
|
|
400
|
+
*/
|
|
399
401
|
onFocus: PropTypes.Requireable<(...args: any[]) => any>;
|
|
400
402
|
onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
401
403
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -979,6 +981,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
979
981
|
dir: PropTypes.Requireable<string>;
|
|
980
982
|
tabIndex: PropTypes.Requireable<number>;
|
|
981
983
|
accessKey: PropTypes.Requireable<string>;
|
|
984
|
+
/** @hidden */
|
|
982
985
|
data: PropTypes.Requireable<any[]>;
|
|
983
986
|
textField: PropTypes.Requireable<string>;
|
|
984
987
|
className: PropTypes.Requireable<string>;
|
|
@@ -1729,7 +1732,9 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1729
1732
|
total: PropTypes.Validator<number>;
|
|
1730
1733
|
}>>;
|
|
1731
1734
|
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1732
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1735
|
+
onPageChange: PropTypes.Requireable<(...args: any[]) => any>; /**
|
|
1736
|
+
* @hidden
|
|
1737
|
+
*/
|
|
1733
1738
|
opened: PropTypes.Requireable<boolean>;
|
|
1734
1739
|
disabled: PropTypes.Requireable<boolean>;
|
|
1735
1740
|
dir: PropTypes.Requireable<string>;
|
|
@@ -1737,6 +1742,9 @@ declare class DropDownListWithoutContext extends React_2.Component<DropDownListP
|
|
|
1737
1742
|
accessKey: PropTypes.Requireable<string>;
|
|
1738
1743
|
data: PropTypes.Requireable<any[]>;
|
|
1739
1744
|
textField: PropTypes.Requireable<string>;
|
|
1745
|
+
/**
|
|
1746
|
+
* @hidden
|
|
1747
|
+
*/
|
|
1740
1748
|
className: PropTypes.Requireable<string>;
|
|
1741
1749
|
label: PropTypes.Requireable<string>;
|
|
1742
1750
|
loading: PropTypes.Requireable<boolean>;
|
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: 1723022555,
|
|
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.2.
|
|
3
|
+
"version": "8.2.1-develop.1",
|
|
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.2.
|
|
27
|
-
"@progress/kendo-react-common": "8.2.
|
|
28
|
-
"@progress/kendo-react-inputs": "8.2.
|
|
29
|
-
"@progress/kendo-react-intl": "8.2.
|
|
30
|
-
"@progress/kendo-react-labels": "8.2.
|
|
31
|
-
"@progress/kendo-react-layout": "8.2.
|
|
32
|
-
"@progress/kendo-react-popup": "8.2.
|
|
33
|
-
"@progress/kendo-react-treeview": "8.2.
|
|
26
|
+
"@progress/kendo-react-buttons": "8.2.1-develop.1",
|
|
27
|
+
"@progress/kendo-react-common": "8.2.1-develop.1",
|
|
28
|
+
"@progress/kendo-react-inputs": "8.2.1-develop.1",
|
|
29
|
+
"@progress/kendo-react-intl": "8.2.1-develop.1",
|
|
30
|
+
"@progress/kendo-react-labels": "8.2.1-develop.1",
|
|
31
|
+
"@progress/kendo-react-layout": "8.2.1-develop.1",
|
|
32
|
+
"@progress/kendo-react-popup": "8.2.1-develop.1",
|
|
33
|
+
"@progress/kendo-react-treeview": "8.2.1-develop.1",
|
|
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"
|