@progress/kendo-react-dropdowns 8.2.0-develop.4 → 8.2.0-develop.40
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 +263 -263
- package/MultiColumnComboBox/MultiColumnComboBox.js +1 -1
- package/MultiColumnComboBox/MultiColumnComboBox.mjs +79 -85
- package/common/SearchBar.js +1 -1
- package/common/SearchBar.mjs +6 -5
- 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 +7 -0
- package/index.d.ts +7 -0
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -765,6 +765,10 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
765
765
|
* Identifies the element(s) which will label the component.
|
|
766
766
|
*/
|
|
767
767
|
ariaLabelledBy?: string;
|
|
768
|
+
/**
|
|
769
|
+
* The accessible label of the component.
|
|
770
|
+
*/
|
|
771
|
+
ariaLabel?: string;
|
|
768
772
|
/**
|
|
769
773
|
* If set, the ComboBox will use it to get the focused item index.
|
|
770
774
|
*
|
|
@@ -954,6 +958,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
954
958
|
required: PropTypes.Requireable<boolean>;
|
|
955
959
|
id: PropTypes.Requireable<string>;
|
|
956
960
|
ariaLabelledBy: PropTypes.Requireable<string>;
|
|
961
|
+
ariaLabel: PropTypes.Requireable<string>;
|
|
957
962
|
ariaDescribedBy: PropTypes.Requireable<string>;
|
|
958
963
|
list: PropTypes.Requireable<any>;
|
|
959
964
|
valueRender: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -974,6 +979,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
974
979
|
dir: PropTypes.Requireable<string>;
|
|
975
980
|
tabIndex: PropTypes.Requireable<number>;
|
|
976
981
|
accessKey: PropTypes.Requireable<string>;
|
|
982
|
+
/** @hidden */
|
|
977
983
|
data: PropTypes.Requireable<any[]>;
|
|
978
984
|
textField: PropTypes.Requireable<string>;
|
|
979
985
|
className: PropTypes.Requireable<string>;
|
|
@@ -3993,6 +3999,7 @@ declare interface SearchBarProps {
|
|
|
3993
3999
|
activedescendant?: string;
|
|
3994
4000
|
accessKey?: string;
|
|
3995
4001
|
ariaLabelledBy?: string;
|
|
4002
|
+
ariaLabel?: string;
|
|
3996
4003
|
ariaDescribedBy?: string;
|
|
3997
4004
|
ariaRequired?: boolean;
|
|
3998
4005
|
}
|
package/index.d.ts
CHANGED
|
@@ -765,6 +765,10 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
765
765
|
* Identifies the element(s) which will label the component.
|
|
766
766
|
*/
|
|
767
767
|
ariaLabelledBy?: string;
|
|
768
|
+
/**
|
|
769
|
+
* The accessible label of the component.
|
|
770
|
+
*/
|
|
771
|
+
ariaLabel?: string;
|
|
768
772
|
/**
|
|
769
773
|
* If set, the ComboBox will use it to get the focused item index.
|
|
770
774
|
*
|
|
@@ -954,6 +958,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
954
958
|
required: PropTypes.Requireable<boolean>;
|
|
955
959
|
id: PropTypes.Requireable<string>;
|
|
956
960
|
ariaLabelledBy: PropTypes.Requireable<string>;
|
|
961
|
+
ariaLabel: PropTypes.Requireable<string>;
|
|
957
962
|
ariaDescribedBy: PropTypes.Requireable<string>;
|
|
958
963
|
list: PropTypes.Requireable<any>;
|
|
959
964
|
valueRender: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -974,6 +979,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
974
979
|
dir: PropTypes.Requireable<string>;
|
|
975
980
|
tabIndex: PropTypes.Requireable<number>;
|
|
976
981
|
accessKey: PropTypes.Requireable<string>;
|
|
982
|
+
/** @hidden */
|
|
977
983
|
data: PropTypes.Requireable<any[]>;
|
|
978
984
|
textField: PropTypes.Requireable<string>;
|
|
979
985
|
className: PropTypes.Requireable<string>;
|
|
@@ -3993,6 +3999,7 @@ declare interface SearchBarProps {
|
|
|
3993
3999
|
activedescendant?: string;
|
|
3994
4000
|
accessKey?: string;
|
|
3995
4001
|
ariaLabelledBy?: string;
|
|
4002
|
+
ariaLabel?: string;
|
|
3996
4003
|
ariaDescribedBy?: string;
|
|
3997
4004
|
ariaRequired?: boolean;
|
|
3998
4005
|
}
|
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: 1722840905,
|
|
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.0-develop.
|
|
3
|
+
"version": "8.2.0-develop.40",
|
|
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.0-develop.
|
|
27
|
-
"@progress/kendo-react-common": "8.2.0-develop.
|
|
28
|
-
"@progress/kendo-react-inputs": "8.2.0-develop.
|
|
29
|
-
"@progress/kendo-react-intl": "8.2.0-develop.
|
|
30
|
-
"@progress/kendo-react-labels": "8.2.0-develop.
|
|
31
|
-
"@progress/kendo-react-layout": "8.2.0-develop.
|
|
32
|
-
"@progress/kendo-react-popup": "8.2.0-develop.
|
|
33
|
-
"@progress/kendo-react-treeview": "8.2.0-develop.
|
|
26
|
+
"@progress/kendo-react-buttons": "8.2.0-develop.40",
|
|
27
|
+
"@progress/kendo-react-common": "8.2.0-develop.40",
|
|
28
|
+
"@progress/kendo-react-inputs": "8.2.0-develop.40",
|
|
29
|
+
"@progress/kendo-react-intl": "8.2.0-develop.40",
|
|
30
|
+
"@progress/kendo-react-labels": "8.2.0-develop.40",
|
|
31
|
+
"@progress/kendo-react-layout": "8.2.0-develop.40",
|
|
32
|
+
"@progress/kendo-react-popup": "8.2.0-develop.40",
|
|
33
|
+
"@progress/kendo-react-treeview": "8.2.0-develop.40",
|
|
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"
|