@progress/kendo-react-dropdowns 13.3.0-develop.8 → 13.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/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +297 -295
- package/common/utils.js +1 -1
- package/common/utils.mjs +30 -30
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +13 -0
- package/index.d.ts +13 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/index.d.mts
CHANGED
|
@@ -1049,6 +1049,17 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
1049
1049
|
* ```
|
|
1050
1050
|
*/
|
|
1051
1051
|
allowCustom?: boolean;
|
|
1052
|
+
/**
|
|
1053
|
+
* Specifies whether the ComboBox text matching should be case-insensitive when selecting values on blur or Enter key.
|
|
1054
|
+
* When set to `true`, typing "football" will match and select "Football" from the list.
|
|
1055
|
+
* Defaults to `false` (case-sensitive matching).
|
|
1056
|
+
*
|
|
1057
|
+
* @example
|
|
1058
|
+
* ```jsx
|
|
1059
|
+
* <ComboBox ignoreCase={true} />
|
|
1060
|
+
* ```
|
|
1061
|
+
*/
|
|
1062
|
+
ignoreCase?: boolean;
|
|
1052
1063
|
/**
|
|
1053
1064
|
* Sets the disabled state of the ComboBox.
|
|
1054
1065
|
*
|
|
@@ -1545,6 +1556,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1545
1556
|
placeholder: default_2.Requireable<string>;
|
|
1546
1557
|
title: default_2.Requireable<string>;
|
|
1547
1558
|
allowCustom: default_2.Requireable<boolean>;
|
|
1559
|
+
ignoreCase: default_2.Requireable<boolean>;
|
|
1548
1560
|
clearButton: default_2.Requireable<boolean>;
|
|
1549
1561
|
iconClassName: default_2.Requireable<string>;
|
|
1550
1562
|
svgIcon: default_2.Requireable<default_2.InferProps<{
|
|
@@ -1611,6 +1623,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1611
1623
|
rounded: "small" | "medium" | "large" | "full" | null | undefined;
|
|
1612
1624
|
fillMode: "flat" | "solid" | "outline" | null | undefined;
|
|
1613
1625
|
allowCustom: boolean;
|
|
1626
|
+
ignoreCase: boolean;
|
|
1614
1627
|
clearButton: boolean;
|
|
1615
1628
|
required: boolean;
|
|
1616
1629
|
groupMode: string | undefined;
|
package/index.d.ts
CHANGED
|
@@ -1049,6 +1049,17 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
1049
1049
|
* ```
|
|
1050
1050
|
*/
|
|
1051
1051
|
allowCustom?: boolean;
|
|
1052
|
+
/**
|
|
1053
|
+
* Specifies whether the ComboBox text matching should be case-insensitive when selecting values on blur or Enter key.
|
|
1054
|
+
* When set to `true`, typing "football" will match and select "Football" from the list.
|
|
1055
|
+
* Defaults to `false` (case-sensitive matching).
|
|
1056
|
+
*
|
|
1057
|
+
* @example
|
|
1058
|
+
* ```jsx
|
|
1059
|
+
* <ComboBox ignoreCase={true} />
|
|
1060
|
+
* ```
|
|
1061
|
+
*/
|
|
1062
|
+
ignoreCase?: boolean;
|
|
1052
1063
|
/**
|
|
1053
1064
|
* Sets the disabled state of the ComboBox.
|
|
1054
1065
|
*
|
|
@@ -1545,6 +1556,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1545
1556
|
placeholder: default_2.Requireable<string>;
|
|
1546
1557
|
title: default_2.Requireable<string>;
|
|
1547
1558
|
allowCustom: default_2.Requireable<boolean>;
|
|
1559
|
+
ignoreCase: default_2.Requireable<boolean>;
|
|
1548
1560
|
clearButton: default_2.Requireable<boolean>;
|
|
1549
1561
|
iconClassName: default_2.Requireable<string>;
|
|
1550
1562
|
svgIcon: default_2.Requireable<default_2.InferProps<{
|
|
@@ -1611,6 +1623,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
1611
1623
|
rounded: "small" | "medium" | "large" | "full" | null | undefined;
|
|
1612
1624
|
fillMode: "flat" | "solid" | "outline" | null | undefined;
|
|
1613
1625
|
allowCustom: boolean;
|
|
1626
|
+
ignoreCase: boolean;
|
|
1614
1627
|
clearButton: boolean;
|
|
1615
1628
|
required: boolean;
|
|
1616
1629
|
groupMode: string | undefined;
|
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: 1768549987,version:"13.3.0",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: "13.3.0
|
|
13
|
+
publishDate: 1768549987,
|
|
14
|
+
version: "13.3.0",
|
|
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": "13.3.0
|
|
3
|
+
"version": "13.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",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.7.2",
|
|
29
|
-
"@progress/kendo-react-buttons": "13.3.0
|
|
30
|
-
"@progress/kendo-react-common": "13.3.0
|
|
31
|
-
"@progress/kendo-react-inputs": "13.3.0
|
|
32
|
-
"@progress/kendo-react-intl": "13.3.0
|
|
33
|
-
"@progress/kendo-react-labels": "13.3.0
|
|
34
|
-
"@progress/kendo-react-layout": "13.3.0
|
|
35
|
-
"@progress/kendo-react-popup": "13.3.0
|
|
36
|
-
"@progress/kendo-react-treeview": "13.3.0
|
|
29
|
+
"@progress/kendo-react-buttons": "13.3.0",
|
|
30
|
+
"@progress/kendo-react-common": "13.3.0",
|
|
31
|
+
"@progress/kendo-react-inputs": "13.3.0",
|
|
32
|
+
"@progress/kendo-react-intl": "13.3.0",
|
|
33
|
+
"@progress/kendo-react-labels": "13.3.0",
|
|
34
|
+
"@progress/kendo-react-layout": "13.3.0",
|
|
35
|
+
"@progress/kendo-react-popup": "13.3.0",
|
|
36
|
+
"@progress/kendo-react-treeview": "13.3.0",
|
|
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": 1768549987,
|
|
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
|
},
|