@progress/kendo-react-dateinputs 11.0.0-develop.9 → 11.0.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/index.d.mts CHANGED
@@ -15,6 +15,7 @@ import { DateFormatPart } from '@progress/kendo-react-intl';
15
15
  import { DateFormatPart as DateFormatPart_2 } from '@progress/kendo-intl';
16
16
  import { DateInputsClassStructure } from '@progress/kendo-react-common';
17
17
  import { default as default_2 } from 'prop-types';
18
+ import { default as default_3 } from 'react';
18
19
  import { FormComponent } from '@progress/kendo-react-common';
19
20
  import { FormComponentProps } from '@progress/kendo-react-common';
20
21
  import { FormComponentValidity } from '@progress/kendo-react-common';
@@ -1161,7 +1162,7 @@ export declare interface DateInputSettings {
1161
1162
  /**
1162
1163
  * Renders a floating label for the DateInput.
1163
1164
  */
1164
- label?: string;
1165
+ label?: default_3.ReactNode;
1165
1166
  /**
1166
1167
  * Sets the `id` of the `input` DOM element.
1167
1168
  */
@@ -1484,7 +1485,7 @@ export declare interface DatePickerSettings {
1484
1485
  /**
1485
1486
  * @deprecated The `DatePicker` no longer renders a `wrapper` around the DatePicker.
1486
1487
  */
1487
- pickerWrap?: React.ComponentType<PickerWrapProps>;
1488
+ pickerWrap?: default_3.ComponentType<PickerWrapProps>;
1488
1489
  /**
1489
1490
  * Enables the customization or the override of the default Toggle button which is rendered by the DatePicker
1490
1491
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-toggle-button)).
@@ -1493,7 +1494,7 @@ export declare interface DatePickerSettings {
1493
1494
  * <DatePicker toggleButton={CustomToggleButton} />
1494
1495
  * ```
1495
1496
  */
1496
- toggleButton?: React.ComponentType<ToggleButtonProps>;
1497
+ toggleButton?: default_3.ComponentType<ToggleButtonProps>;
1497
1498
  /**
1498
1499
  * Enables the customization or the override of the default Calendar which is rendered by the DatePicker
1499
1500
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-calendar)).
@@ -1502,7 +1503,7 @@ export declare interface DatePickerSettings {
1502
1503
  * <DatePicker calendar={CustomCalendar} />
1503
1504
  * ```
1504
1505
  */
1505
- calendar?: React.ComponentType<CalendarProps<any>> | React.ComponentType<MultiViewCalendarProps<any>>;
1506
+ calendar?: default_3.ComponentType<CalendarProps<any>> | default_3.ComponentType<MultiViewCalendarProps<any>>;
1506
1507
  /**
1507
1508
  * Enables the customization or the override of the default Popup which is rendered by the DatePicker
1508
1509
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-popup)).
@@ -1511,7 +1512,7 @@ export declare interface DatePickerSettings {
1511
1512
  * <DatePicker popup={CustomPopup} />
1512
1513
  * ```
1513
1514
  */
1514
- popup?: React.ComponentType<PopupProps>;
1515
+ popup?: default_3.ComponentType<PopupProps>;
1515
1516
  /**
1516
1517
  * Enables the customization or the override of the default DateInput which is rendered by the DatePicker
1517
1518
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-dateinput)).
@@ -1520,7 +1521,7 @@ export declare interface DatePickerSettings {
1520
1521
  * <DatePicker dateInput={CustomDateInput} />
1521
1522
  * ```
1522
1523
  */
1523
- dateInput?: React.ComponentType<DateInputProps<any>>;
1524
+ dateInput?: default_3.ComponentType<DateInputProps<any>>;
1524
1525
  /**
1525
1526
  * Sets the `className` of the DatePicker.
1526
1527
  * Example usage of the `className` property:
@@ -1633,7 +1634,7 @@ export declare interface DatePickerSettings {
1633
1634
  * <DatePicker onBlur={(event) => console.log('Blur event:', event)} />
1634
1635
  * ```
1635
1636
  */
1636
- onBlur?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1637
+ onBlur?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1637
1638
  /**
1638
1639
  * Fires each time the user focuses any of the DatePicker elements.
1639
1640
  * Example usage of the `onFocus` property:
@@ -1641,7 +1642,7 @@ export declare interface DatePickerSettings {
1641
1642
  * <DatePicker onFocus={(event) => console.log('Focus event:', event)} />
1642
1643
  * ```
1643
1644
  */
1644
- onFocus?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1645
+ onFocus?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1645
1646
  /**
1646
1647
  * Configures the popup options of the DatePicker.
1647
1648
  *
@@ -1702,7 +1703,7 @@ export declare interface DatePickerSettings {
1702
1703
  * <DatePicker label="Date Picker Label" />
1703
1704
  * ```
1704
1705
  */
1705
- label?: string;
1706
+ label?: default_3.ReactNode;
1706
1707
  /**
1707
1708
  * Specifies the hint the DateInput displays when its value is `null` or there is no partial selection.
1708
1709
  * For more information, refer to the article on
@@ -2374,17 +2375,17 @@ export declare interface DateTimePickerSettings {
2374
2375
  * Enables the customization or the override of the default Calendar which is rendered by the DateTimePicker
2375
2376
  * ([see example]({% slug custom_rendering_datetimepicker %}#toc-customizing-the-calendar)).
2376
2377
  */
2377
- calendar?: React.ComponentType<CalendarProps>;
2378
+ calendar?: default_3.ComponentType<CalendarProps>;
2378
2379
  /**
2379
2380
  * Enables the customization or the override of the default Popup which is rendered by the DateTimePicker
2380
2381
  * ([see example]({% slug custom_rendering_datetimepicker %}#toc-customizing-the-popup)).
2381
2382
  */
2382
- popup?: React.ComponentType<PopupProps>;
2383
+ popup?: default_3.ComponentType<PopupProps>;
2383
2384
  /**
2384
2385
  * Enables the customization or the override of the default DateInput which is rendered by the DateTimePicker
2385
2386
  * ([see example]({% slug custom_rendering_datetimepicker %}#toc-customizing-the-dateinput)).
2386
2387
  */
2387
- dateInput?: React.ComponentType<DateInputProps>;
2388
+ dateInput?: default_3.ComponentType<DateInputProps>;
2388
2389
  /**
2389
2390
  * Sets the `className` of the DateTimePicker.
2390
2391
  */
@@ -2459,11 +2460,11 @@ export declare interface DateTimePickerSettings {
2459
2460
  /**
2460
2461
  * Fires each time any of the DateTimePicker elements gets blurred.
2461
2462
  */
2462
- onBlur?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2463
+ onBlur?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2463
2464
  /**
2464
2465
  * Fires each time the user focuses any of the DateTimePicker elements.
2465
2466
  */
2466
- onFocus?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2467
+ onFocus?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2467
2468
  /**
2468
2469
  * Specifies if the popup will be displayed
2469
2470
  * ([see example]({% slug controlled_datetimepicker %}#toc-controlling-the-popup-state)).
@@ -2493,7 +2494,7 @@ export declare interface DateTimePickerSettings {
2493
2494
  /**
2494
2495
  * Renders a floating label for the DateTimePicker.
2495
2496
  */
2496
- label?: string;
2497
+ label?: default_3.ReactNode;
2497
2498
  /**
2498
2499
  * Specifies the hint the DateInput displays when its value is `null` or there is no partial selection.
2499
2500
  * For more information, refer to the article on
@@ -4062,11 +4063,11 @@ export declare interface TimePickerSettings {
4062
4063
  /**
4063
4064
  * Fires each time any of the TimePicker elements gets blurred.
4064
4065
  */
4065
- onBlur?: (event: React.FocusEvent<HTMLDivElement>) => void;
4066
+ onBlur?: (event: default_3.FocusEvent<HTMLDivElement>) => void;
4066
4067
  /**
4067
4068
  * Fires each time the user focuses any of the TimePicker elements.
4068
4069
  */
4069
- onFocus?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
4070
+ onFocus?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
4070
4071
  /**
4071
4072
  * Configures the popup options of the TimePicker.
4072
4073
  *
@@ -4106,16 +4107,16 @@ export declare interface TimePickerSettings {
4106
4107
  * Enables the customization or the override of the default Popup which is rendered by the TimePicker
4107
4108
  * ([see example]({% slug custom_rendering_timepicker %}#toc-customizing-the-popup)).
4108
4109
  */
4109
- popup?: React.ComponentType<PopupProps>;
4110
+ popup?: default_3.ComponentType<PopupProps>;
4110
4111
  /**
4111
4112
  * Enables the customization or the override of the default DateInput which is rendered by the TimePicker
4112
4113
  * ([see example]({% slug custom_rendering_timepicker %}#toc-customizing-the-dateinput)).
4113
4114
  */
4114
- dateInput?: React.ComponentType<DateInputProps>;
4115
+ dateInput?: default_3.ComponentType<DateInputProps>;
4115
4116
  /**
4116
4117
  * Renders a floating label for the TimePicker.
4117
4118
  */
4118
- label?: string;
4119
+ label?: default_3.ReactNode;
4119
4120
  /**
4120
4121
  * Specifies the hint the DateInput displays when its value is `null` or there is no partial selection.
4121
4122
  * For more information, refer to the article on
package/index.d.ts CHANGED
@@ -15,6 +15,7 @@ import { DateFormatPart } from '@progress/kendo-react-intl';
15
15
  import { DateFormatPart as DateFormatPart_2 } from '@progress/kendo-intl';
16
16
  import { DateInputsClassStructure } from '@progress/kendo-react-common';
17
17
  import { default as default_2 } from 'prop-types';
18
+ import { default as default_3 } from 'react';
18
19
  import { FormComponent } from '@progress/kendo-react-common';
19
20
  import { FormComponentProps } from '@progress/kendo-react-common';
20
21
  import { FormComponentValidity } from '@progress/kendo-react-common';
@@ -1161,7 +1162,7 @@ export declare interface DateInputSettings {
1161
1162
  /**
1162
1163
  * Renders a floating label for the DateInput.
1163
1164
  */
1164
- label?: string;
1165
+ label?: default_3.ReactNode;
1165
1166
  /**
1166
1167
  * Sets the `id` of the `input` DOM element.
1167
1168
  */
@@ -1484,7 +1485,7 @@ export declare interface DatePickerSettings {
1484
1485
  /**
1485
1486
  * @deprecated The `DatePicker` no longer renders a `wrapper` around the DatePicker.
1486
1487
  */
1487
- pickerWrap?: React.ComponentType<PickerWrapProps>;
1488
+ pickerWrap?: default_3.ComponentType<PickerWrapProps>;
1488
1489
  /**
1489
1490
  * Enables the customization or the override of the default Toggle button which is rendered by the DatePicker
1490
1491
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-toggle-button)).
@@ -1493,7 +1494,7 @@ export declare interface DatePickerSettings {
1493
1494
  * <DatePicker toggleButton={CustomToggleButton} />
1494
1495
  * ```
1495
1496
  */
1496
- toggleButton?: React.ComponentType<ToggleButtonProps>;
1497
+ toggleButton?: default_3.ComponentType<ToggleButtonProps>;
1497
1498
  /**
1498
1499
  * Enables the customization or the override of the default Calendar which is rendered by the DatePicker
1499
1500
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-calendar)).
@@ -1502,7 +1503,7 @@ export declare interface DatePickerSettings {
1502
1503
  * <DatePicker calendar={CustomCalendar} />
1503
1504
  * ```
1504
1505
  */
1505
- calendar?: React.ComponentType<CalendarProps<any>> | React.ComponentType<MultiViewCalendarProps<any>>;
1506
+ calendar?: default_3.ComponentType<CalendarProps<any>> | default_3.ComponentType<MultiViewCalendarProps<any>>;
1506
1507
  /**
1507
1508
  * Enables the customization or the override of the default Popup which is rendered by the DatePicker
1508
1509
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-popup)).
@@ -1511,7 +1512,7 @@ export declare interface DatePickerSettings {
1511
1512
  * <DatePicker popup={CustomPopup} />
1512
1513
  * ```
1513
1514
  */
1514
- popup?: React.ComponentType<PopupProps>;
1515
+ popup?: default_3.ComponentType<PopupProps>;
1515
1516
  /**
1516
1517
  * Enables the customization or the override of the default DateInput which is rendered by the DatePicker
1517
1518
  * ([see example]({% slug custom_rendering_datepicker %}#toc-customizing-the-dateinput)).
@@ -1520,7 +1521,7 @@ export declare interface DatePickerSettings {
1520
1521
  * <DatePicker dateInput={CustomDateInput} />
1521
1522
  * ```
1522
1523
  */
1523
- dateInput?: React.ComponentType<DateInputProps<any>>;
1524
+ dateInput?: default_3.ComponentType<DateInputProps<any>>;
1524
1525
  /**
1525
1526
  * Sets the `className` of the DatePicker.
1526
1527
  * Example usage of the `className` property:
@@ -1633,7 +1634,7 @@ export declare interface DatePickerSettings {
1633
1634
  * <DatePicker onBlur={(event) => console.log('Blur event:', event)} />
1634
1635
  * ```
1635
1636
  */
1636
- onBlur?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1637
+ onBlur?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1637
1638
  /**
1638
1639
  * Fires each time the user focuses any of the DatePicker elements.
1639
1640
  * Example usage of the `onFocus` property:
@@ -1641,7 +1642,7 @@ export declare interface DatePickerSettings {
1641
1642
  * <DatePicker onFocus={(event) => console.log('Focus event:', event)} />
1642
1643
  * ```
1643
1644
  */
1644
- onFocus?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1645
+ onFocus?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
1645
1646
  /**
1646
1647
  * Configures the popup options of the DatePicker.
1647
1648
  *
@@ -1702,7 +1703,7 @@ export declare interface DatePickerSettings {
1702
1703
  * <DatePicker label="Date Picker Label" />
1703
1704
  * ```
1704
1705
  */
1705
- label?: string;
1706
+ label?: default_3.ReactNode;
1706
1707
  /**
1707
1708
  * Specifies the hint the DateInput displays when its value is `null` or there is no partial selection.
1708
1709
  * For more information, refer to the article on
@@ -2374,17 +2375,17 @@ export declare interface DateTimePickerSettings {
2374
2375
  * Enables the customization or the override of the default Calendar which is rendered by the DateTimePicker
2375
2376
  * ([see example]({% slug custom_rendering_datetimepicker %}#toc-customizing-the-calendar)).
2376
2377
  */
2377
- calendar?: React.ComponentType<CalendarProps>;
2378
+ calendar?: default_3.ComponentType<CalendarProps>;
2378
2379
  /**
2379
2380
  * Enables the customization or the override of the default Popup which is rendered by the DateTimePicker
2380
2381
  * ([see example]({% slug custom_rendering_datetimepicker %}#toc-customizing-the-popup)).
2381
2382
  */
2382
- popup?: React.ComponentType<PopupProps>;
2383
+ popup?: default_3.ComponentType<PopupProps>;
2383
2384
  /**
2384
2385
  * Enables the customization or the override of the default DateInput which is rendered by the DateTimePicker
2385
2386
  * ([see example]({% slug custom_rendering_datetimepicker %}#toc-customizing-the-dateinput)).
2386
2387
  */
2387
- dateInput?: React.ComponentType<DateInputProps>;
2388
+ dateInput?: default_3.ComponentType<DateInputProps>;
2388
2389
  /**
2389
2390
  * Sets the `className` of the DateTimePicker.
2390
2391
  */
@@ -2459,11 +2460,11 @@ export declare interface DateTimePickerSettings {
2459
2460
  /**
2460
2461
  * Fires each time any of the DateTimePicker elements gets blurred.
2461
2462
  */
2462
- onBlur?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2463
+ onBlur?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2463
2464
  /**
2464
2465
  * Fires each time the user focuses any of the DateTimePicker elements.
2465
2466
  */
2466
- onFocus?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2467
+ onFocus?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
2467
2468
  /**
2468
2469
  * Specifies if the popup will be displayed
2469
2470
  * ([see example]({% slug controlled_datetimepicker %}#toc-controlling-the-popup-state)).
@@ -2493,7 +2494,7 @@ export declare interface DateTimePickerSettings {
2493
2494
  /**
2494
2495
  * Renders a floating label for the DateTimePicker.
2495
2496
  */
2496
- label?: string;
2497
+ label?: default_3.ReactNode;
2497
2498
  /**
2498
2499
  * Specifies the hint the DateInput displays when its value is `null` or there is no partial selection.
2499
2500
  * For more information, refer to the article on
@@ -4062,11 +4063,11 @@ export declare interface TimePickerSettings {
4062
4063
  /**
4063
4064
  * Fires each time any of the TimePicker elements gets blurred.
4064
4065
  */
4065
- onBlur?: (event: React.FocusEvent<HTMLDivElement>) => void;
4066
+ onBlur?: (event: default_3.FocusEvent<HTMLDivElement>) => void;
4066
4067
  /**
4067
4068
  * Fires each time the user focuses any of the TimePicker elements.
4068
4069
  */
4069
- onFocus?: (event: React.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
4070
+ onFocus?: (event: default_3.FocusEvent<HTMLSpanElement | HTMLDivElement>) => void;
4070
4071
  /**
4071
4072
  * Configures the popup options of the TimePicker.
4072
4073
  *
@@ -4106,16 +4107,16 @@ export declare interface TimePickerSettings {
4106
4107
  * Enables the customization or the override of the default Popup which is rendered by the TimePicker
4107
4108
  * ([see example]({% slug custom_rendering_timepicker %}#toc-customizing-the-popup)).
4108
4109
  */
4109
- popup?: React.ComponentType<PopupProps>;
4110
+ popup?: default_3.ComponentType<PopupProps>;
4110
4111
  /**
4111
4112
  * Enables the customization or the override of the default DateInput which is rendered by the TimePicker
4112
4113
  * ([see example]({% slug custom_rendering_timepicker %}#toc-customizing-the-dateinput)).
4113
4114
  */
4114
- dateInput?: React.ComponentType<DateInputProps>;
4115
+ dateInput?: default_3.ComponentType<DateInputProps>;
4115
4116
  /**
4116
4117
  * Renders a floating label for the TimePicker.
4117
4118
  */
4118
- label?: string;
4119
+ label?: default_3.ReactNode;
4119
4120
  /**
4120
4121
  * Specifies the hint the DateInput displays when its value is `null` or there is no partial selection.
4121
4122
  * For more information, refer to the article on
@@ -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={name:"@progress/kendo-react-dateinputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1747121378,version:"11.0.0-develop.9",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;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-dateinputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1747918898,version:"11.0.1-develop.1",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;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "KendoReact",
11
11
  productCode: "KENDOUIREACT",
12
12
  productCodes: ["KENDOUIREACT"],
13
- publishDate: 1747121378,
14
- version: "11.0.0-develop.9",
13
+ publishDate: 1747918898,
14
+ version: "11.0.1-develop.1",
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-dateinputs",
3
- "version": "11.0.0-develop.9",
3
+ "version": "11.0.1-develop.1",
4
4
  "description": "React DateInput is a perfect input component for handling quick and efficient date values. KendoReact Date Inputs 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-date-math": "^1.4.0",
29
- "@progress/kendo-licensing": "^1.5.1",
29
+ "@progress/kendo-licensing": "^1.6.0",
30
30
  "@progress/kendo-dateinputs-common": "^0.4.0",
31
- "@progress/kendo-react-buttons": "11.0.0-develop.9",
32
- "@progress/kendo-react-common": "11.0.0-develop.9",
33
- "@progress/kendo-react-intl": "11.0.0-develop.9",
34
- "@progress/kendo-react-labels": "11.0.0-develop.9",
35
- "@progress/kendo-react-layout": "11.0.0-develop.9",
36
- "@progress/kendo-react-popup": "11.0.0-develop.9",
31
+ "@progress/kendo-react-buttons": "11.0.1-develop.1",
32
+ "@progress/kendo-react-common": "11.0.1-develop.1",
33
+ "@progress/kendo-react-intl": "11.0.1-develop.1",
34
+ "@progress/kendo-react-labels": "11.0.1-develop.1",
35
+ "@progress/kendo-react-layout": "11.0.1-develop.1",
36
+ "@progress/kendo-react-popup": "11.0.1-develop.1",
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"
@@ -66,10 +66,30 @@
66
66
  "@progress": {
67
67
  "friendlyName": "Date Inputs",
68
68
  "framework": "KendoReact",
69
+ "migrations": {
70
+ "options": {
71
+ "parser": "tsx",
72
+ "pattern": "*.{js,jsx,ts,tsx}"
73
+ },
74
+ "codemods": {
75
+ "11": [
76
+ {
77
+ "description": "Migrate the DateInput type to the new DateInputHandle type.",
78
+ "file": "codemods/v11/dateinput-handle.js",
79
+ "prompt": true
80
+ },
81
+ {
82
+ "description": "Migrate the DatePicker type to the new DatePickerHandle type.",
83
+ "file": "codemods/v11/datepicker-handle.js",
84
+ "prompt": true
85
+ }
86
+ ]
87
+ }
88
+ },
69
89
  "package": {
70
90
  "productName": "KendoReact",
71
91
  "productCode": "KENDOUIREACT",
72
- "publishDate": 1747121378,
92
+ "publishDate": 1747918898,
73
93
  "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"
74
94
  }
75
95
  },