@progress/kendo-react-dropdowns 9.1.1-develop.3 → 9.2.0-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 +87 -85
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +89 -91
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +104 -102
- package/common/SearchBar.js +1 -1
- package/common/SearchBar.mjs +22 -13
- package/dist/cdn/js/kendo-react-dropdowns.js +1 -1
- package/index.d.mts +19 -0
- package/index.d.ts +19 -0
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -330,6 +330,11 @@ export declare interface AutoCompleteProps extends FormComponentProps {
|
|
|
330
330
|
* Sets a custom suffix to the AutoComplete component.
|
|
331
331
|
*/
|
|
332
332
|
suffix?: CustomComponent<any>;
|
|
333
|
+
/**
|
|
334
|
+
* Sets the HTML attributes of the inner focusable input element.
|
|
335
|
+
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
336
|
+
*/
|
|
337
|
+
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
333
338
|
}
|
|
334
339
|
|
|
335
340
|
/**
|
|
@@ -373,6 +378,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
373
378
|
ariaDescribedBy: PropTypes.Requireable<string>;
|
|
374
379
|
list: PropTypes.Requireable<any>;
|
|
375
380
|
skipDisabledItems: PropTypes.Requireable<boolean>;
|
|
381
|
+
inputAttributes: PropTypes.Requireable<object>;
|
|
376
382
|
opened: PropTypes.Requireable<boolean>;
|
|
377
383
|
disabled: PropTypes.Requireable<boolean>;
|
|
378
384
|
dir: PropTypes.Requireable<string>;
|
|
@@ -917,6 +923,11 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
917
923
|
* @hidden
|
|
918
924
|
*/
|
|
919
925
|
unstyled?: DropDownsClassStructure;
|
|
926
|
+
/**
|
|
927
|
+
* Sets the HTML attributes of the inner focusable input element.
|
|
928
|
+
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
929
|
+
*/
|
|
930
|
+
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
920
931
|
}
|
|
921
932
|
|
|
922
933
|
/**
|
|
@@ -967,6 +978,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
967
978
|
list: PropTypes.Requireable<any>;
|
|
968
979
|
valueRender: PropTypes.Requireable<(...args: any[]) => any>;
|
|
969
980
|
skipDisabledItems: PropTypes.Requireable<boolean>;
|
|
981
|
+
inputAttributes: PropTypes.Requireable<object>;
|
|
970
982
|
value: PropTypes.Requireable<any>;
|
|
971
983
|
defaultValue: PropTypes.Requireable<any>;
|
|
972
984
|
filterable: PropTypes.Requireable<boolean>;
|
|
@@ -3123,6 +3135,11 @@ export declare interface MultiSelectProps extends FormComponentProps {
|
|
|
3123
3135
|
* Sets a custom suffix to the MultiSelect component.
|
|
3124
3136
|
*/
|
|
3125
3137
|
suffix?: CustomComponent<any>;
|
|
3138
|
+
/**
|
|
3139
|
+
* Sets the HTML attributes of the inner focusable input element.
|
|
3140
|
+
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
3141
|
+
*/
|
|
3142
|
+
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
3126
3143
|
}
|
|
3127
3144
|
|
|
3128
3145
|
/**
|
|
@@ -3577,6 +3594,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
|
|
|
3577
3594
|
adaptiveTitle: PropTypes.Requireable<string>;
|
|
3578
3595
|
onCancel: PropTypes.Requireable<(...args: any[]) => any>;
|
|
3579
3596
|
skipDisabledItems: PropTypes.Requireable<boolean>;
|
|
3597
|
+
inputAttributes: PropTypes.Requireable<object>;
|
|
3580
3598
|
filterable: PropTypes.Requireable<boolean>;
|
|
3581
3599
|
filter: PropTypes.Requireable<string>;
|
|
3582
3600
|
virtual: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -3835,6 +3853,7 @@ declare interface SearchBarProps {
|
|
|
3835
3853
|
ariaRequired?: boolean;
|
|
3836
3854
|
ariaControls?: string;
|
|
3837
3855
|
unstyled?: DropDownsClassStructure;
|
|
3856
|
+
inputAttributes?: React_2.InputHTMLAttributes<HTMLInputElement>;
|
|
3838
3857
|
}
|
|
3839
3858
|
|
|
3840
3859
|
/**
|
package/index.d.ts
CHANGED
|
@@ -330,6 +330,11 @@ export declare interface AutoCompleteProps extends FormComponentProps {
|
|
|
330
330
|
* Sets a custom suffix to the AutoComplete component.
|
|
331
331
|
*/
|
|
332
332
|
suffix?: CustomComponent<any>;
|
|
333
|
+
/**
|
|
334
|
+
* Sets the HTML attributes of the inner focusable input element.
|
|
335
|
+
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
336
|
+
*/
|
|
337
|
+
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
333
338
|
}
|
|
334
339
|
|
|
335
340
|
/**
|
|
@@ -373,6 +378,7 @@ export declare class AutoCompleteWithoutContext extends React_2.Component<AutoCo
|
|
|
373
378
|
ariaDescribedBy: PropTypes.Requireable<string>;
|
|
374
379
|
list: PropTypes.Requireable<any>;
|
|
375
380
|
skipDisabledItems: PropTypes.Requireable<boolean>;
|
|
381
|
+
inputAttributes: PropTypes.Requireable<object>;
|
|
376
382
|
opened: PropTypes.Requireable<boolean>;
|
|
377
383
|
disabled: PropTypes.Requireable<boolean>;
|
|
378
384
|
dir: PropTypes.Requireable<string>;
|
|
@@ -917,6 +923,11 @@ export declare interface ComboBoxProps extends FormComponentProps {
|
|
|
917
923
|
* @hidden
|
|
918
924
|
*/
|
|
919
925
|
unstyled?: DropDownsClassStructure;
|
|
926
|
+
/**
|
|
927
|
+
* Sets the HTML attributes of the inner focusable input element.
|
|
928
|
+
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
929
|
+
*/
|
|
930
|
+
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
920
931
|
}
|
|
921
932
|
|
|
922
933
|
/**
|
|
@@ -967,6 +978,7 @@ export declare class ComboBoxWithoutContext extends React_2.Component<ComboBoxPr
|
|
|
967
978
|
list: PropTypes.Requireable<any>;
|
|
968
979
|
valueRender: PropTypes.Requireable<(...args: any[]) => any>;
|
|
969
980
|
skipDisabledItems: PropTypes.Requireable<boolean>;
|
|
981
|
+
inputAttributes: PropTypes.Requireable<object>;
|
|
970
982
|
value: PropTypes.Requireable<any>;
|
|
971
983
|
defaultValue: PropTypes.Requireable<any>;
|
|
972
984
|
filterable: PropTypes.Requireable<boolean>;
|
|
@@ -3123,6 +3135,11 @@ export declare interface MultiSelectProps extends FormComponentProps {
|
|
|
3123
3135
|
* Sets a custom suffix to the MultiSelect component.
|
|
3124
3136
|
*/
|
|
3125
3137
|
suffix?: CustomComponent<any>;
|
|
3138
|
+
/**
|
|
3139
|
+
* Sets the HTML attributes of the inner focusable input element.
|
|
3140
|
+
* Attributes which are essential for certain component functionalities cannot be changed.
|
|
3141
|
+
*/
|
|
3142
|
+
inputAttributes?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
3126
3143
|
}
|
|
3127
3144
|
|
|
3128
3145
|
/**
|
|
@@ -3577,6 +3594,7 @@ export declare class MultiSelectWithoutContext extends React_2.Component<MultiSe
|
|
|
3577
3594
|
adaptiveTitle: PropTypes.Requireable<string>;
|
|
3578
3595
|
onCancel: PropTypes.Requireable<(...args: any[]) => any>;
|
|
3579
3596
|
skipDisabledItems: PropTypes.Requireable<boolean>;
|
|
3597
|
+
inputAttributes: PropTypes.Requireable<object>;
|
|
3580
3598
|
filterable: PropTypes.Requireable<boolean>;
|
|
3581
3599
|
filter: PropTypes.Requireable<string>;
|
|
3582
3600
|
virtual: PropTypes.Requireable<PropTypes.InferProps<{
|
|
@@ -3835,6 +3853,7 @@ declare interface SearchBarProps {
|
|
|
3835
3853
|
ariaRequired?: boolean;
|
|
3836
3854
|
ariaControls?: string;
|
|
3837
3855
|
unstyled?: DropDownsClassStructure;
|
|
3856
|
+
inputAttributes?: React_2.InputHTMLAttributes<HTMLInputElement>;
|
|
3838
3857
|
}
|
|
3839
3858
|
|
|
3840
3859
|
/**
|
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: 1734591739,
|
|
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.
|
|
3
|
+
"version": "9.2.0-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": "9.
|
|
27
|
-
"@progress/kendo-react-common": "9.
|
|
28
|
-
"@progress/kendo-react-inputs": "9.
|
|
29
|
-
"@progress/kendo-react-intl": "9.
|
|
30
|
-
"@progress/kendo-react-labels": "9.
|
|
31
|
-
"@progress/kendo-react-layout": "9.
|
|
32
|
-
"@progress/kendo-react-popup": "9.
|
|
33
|
-
"@progress/kendo-react-treeview": "9.
|
|
26
|
+
"@progress/kendo-react-buttons": "9.2.0-develop.1",
|
|
27
|
+
"@progress/kendo-react-common": "9.2.0-develop.1",
|
|
28
|
+
"@progress/kendo-react-inputs": "9.2.0-develop.1",
|
|
29
|
+
"@progress/kendo-react-intl": "9.2.0-develop.1",
|
|
30
|
+
"@progress/kendo-react-labels": "9.2.0-develop.1",
|
|
31
|
+
"@progress/kendo-react-layout": "9.2.0-develop.1",
|
|
32
|
+
"@progress/kendo-react-popup": "9.2.0-develop.1",
|
|
33
|
+
"@progress/kendo-react-treeview": "9.2.0-develop.1",
|
|
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"
|