@progress/kendo-react-dateinputs 10.2.0-develop.1 → 10.2.0-develop.3
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/calendar/components/ViewList.js +1 -1
- package/calendar/components/ViewList.mjs +3 -1
- package/dateinput/DateInput.js +1 -1
- package/dateinput/DateInput.mjs +6 -2
- package/datetimepicker/DateTimeSelector.js +1 -1
- package/datetimepicker/DateTimeSelector.mjs +6 -2
- package/dist/cdn/js/kendo-react-dateinputs.js +1 -1
- package/index.d.mts +20 -20
- package/index.d.ts +20 -20
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +8 -8
package/index.d.mts
CHANGED
|
@@ -20,7 +20,7 @@ import { FormComponentProps } from '@progress/kendo-react-common';
|
|
|
20
20
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
21
21
|
import { ForwardRefExoticComponent } from 'react';
|
|
22
22
|
import { IntlService } from '@progress/kendo-react-intl';
|
|
23
|
-
import { JSX
|
|
23
|
+
import { JSX } from 'react/jsx-runtime';
|
|
24
24
|
import { LocalizationService } from '@progress/kendo-react-intl';
|
|
25
25
|
import { NumberFormatOptions } from '@progress/kendo-intl';
|
|
26
26
|
import { PopupProps } from '@progress/kendo-react-popup';
|
|
@@ -89,7 +89,7 @@ export declare class CalendarCell extends React_2.Component<CalendarCellProps> {
|
|
|
89
89
|
* @hidden
|
|
90
90
|
*/
|
|
91
91
|
shouldComponentUpdate(nextProps: CalendarCellProps): boolean;
|
|
92
|
-
render():
|
|
92
|
+
render(): JSX.Element;
|
|
93
93
|
private handleClick;
|
|
94
94
|
private handleMouseEnter;
|
|
95
95
|
private handleMouseLeave;
|
|
@@ -164,7 +164,7 @@ declare interface CalendarHeaderProps {
|
|
|
164
164
|
* * [Customizing the title for the current Calendar view]({% slug custom_rendering_calendar %}#toc-cells-inside-the-view)
|
|
165
165
|
* * [Customizing the title for the current MultiViewCalendar view]({% slug custom_rendering_multiviewcalendar %}#toc-cells-inside-the-view)
|
|
166
166
|
*/
|
|
167
|
-
export declare const CalendarHeaderTitle: (props: CalendarHeaderTitleProps) =>
|
|
167
|
+
export declare const CalendarHeaderTitle: (props: CalendarHeaderTitleProps) => JSX.Element;
|
|
168
168
|
|
|
169
169
|
/**
|
|
170
170
|
* The props which will be received by the custom header title of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-headertitle) and the [MultiViewCalendar]({% slug api_dateinputs_multiviewcalendarprops %}#toc-headertitle).
|
|
@@ -185,7 +185,7 @@ export declare interface CalendarHeaderTitleProps {
|
|
|
185
185
|
* Also used as a custom navigation item for the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-navigationitem)
|
|
186
186
|
* ([see example]({% slug custom_rendering_calendar %}#toc-items-in-the-side-navigation)).
|
|
187
187
|
*/
|
|
188
|
-
export declare const CalendarNavigationItem: (props: CalendarNavigationItemProps) =>
|
|
188
|
+
export declare const CalendarNavigationItem: (props: CalendarNavigationItemProps) => JSX.Element;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* The props which will be received by the custom navigation item of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-navigationitem).
|
|
@@ -378,7 +378,7 @@ export declare enum CalendarViewEnum {
|
|
|
378
378
|
* * [Customizing week-column cells in the Calendar]({% slug custom_rendering_calendar %}#toc-cells-inside-the-week-column)
|
|
379
379
|
* * [Customizing week-column cells in the MultiViewCalendar]({% slug custom_rendering_multiviewcalendar %}#toc-cells-inside-the-week-column)
|
|
380
380
|
*/
|
|
381
|
-
export declare const CalendarWeekCell: (props: CalendarWeekCellProps) =>
|
|
381
|
+
export declare const CalendarWeekCell: (props: CalendarWeekCellProps) => JSX.Element;
|
|
382
382
|
|
|
383
383
|
/**
|
|
384
384
|
* The props which will be received by the custom week cell of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-weekcell) and the [MultiViewCalendar]({% slug api_dateinputs_multiviewcalendarprops %}#toc-weekcell).
|
|
@@ -489,7 +489,7 @@ export declare class CalendarWithoutContext extends React_2.Component<CalendarPr
|
|
|
489
489
|
/**
|
|
490
490
|
* @hidden
|
|
491
491
|
*/
|
|
492
|
-
render():
|
|
492
|
+
render(): JSX.Element;
|
|
493
493
|
private shouldScroll;
|
|
494
494
|
private handleScroll;
|
|
495
495
|
private handleNavigationChange;
|
|
@@ -1886,7 +1886,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1886
1886
|
/**
|
|
1887
1887
|
* @hidden
|
|
1888
1888
|
*/
|
|
1889
|
-
render():
|
|
1889
|
+
render(): JSX.Element;
|
|
1890
1890
|
protected setCalendarRef: (calendar: MultiViewCalendarHandle | null) => void;
|
|
1891
1891
|
protected focusCalendarElement: () => void;
|
|
1892
1892
|
protected focusDateInputElement(): void;
|
|
@@ -2414,7 +2414,7 @@ export declare class DateTimePickerWithoutContext extends React_2.Component<Date
|
|
|
2414
2414
|
/**
|
|
2415
2415
|
* @hidden
|
|
2416
2416
|
*/
|
|
2417
|
-
render():
|
|
2417
|
+
render(): JSX.Element;
|
|
2418
2418
|
private renderPicker;
|
|
2419
2419
|
private renderAdaptivePopup;
|
|
2420
2420
|
protected setShow(show: boolean): void;
|
|
@@ -2599,7 +2599,7 @@ export declare class Header extends React_2.Component<HeaderProps> {
|
|
|
2599
2599
|
protected get max(): Date;
|
|
2600
2600
|
protected get rangeLength(): number;
|
|
2601
2601
|
protected get canMoveUp(): boolean;
|
|
2602
|
-
render():
|
|
2602
|
+
render(): JSX.Element;
|
|
2603
2603
|
protected getTitle: () => string;
|
|
2604
2604
|
private handleTitleClick;
|
|
2605
2605
|
}
|
|
@@ -2656,7 +2656,7 @@ export declare class HorizontalViewList extends React_2.Component<HorizontalView
|
|
|
2656
2656
|
focusActiveDate: () => void;
|
|
2657
2657
|
blurActiveDate: () => void;
|
|
2658
2658
|
componentDidUpdate(): void;
|
|
2659
|
-
render():
|
|
2659
|
+
render(): JSX.Element;
|
|
2660
2660
|
protected rotateSelectionRange: (selectionRange: SelectionRange) => SelectionRange;
|
|
2661
2661
|
private handleWeekCellClick;
|
|
2662
2662
|
private handleDateChange;
|
|
@@ -3171,7 +3171,7 @@ export declare class MultiViewCalendarWithoutContext extends React_2.Component<M
|
|
|
3171
3171
|
/**
|
|
3172
3172
|
* @hidden
|
|
3173
3173
|
*/
|
|
3174
|
-
render():
|
|
3174
|
+
render(): JSX.Element;
|
|
3175
3175
|
protected clampRange: (value: Date) => SelectionRange;
|
|
3176
3176
|
protected rangeWithFocused: (range: SelectionRange, focusedDate: Date) => SelectionRange;
|
|
3177
3177
|
protected generateRange: (candidate: Date, value: SelectionRange) => SelectionRange;
|
|
@@ -3391,7 +3391,7 @@ export declare class TimeList extends React_2.Component<TimeListProps, {}> {
|
|
|
3391
3391
|
/**
|
|
3392
3392
|
* @hidden
|
|
3393
3393
|
*/
|
|
3394
|
-
render():
|
|
3394
|
+
render(): JSX.Element | undefined;
|
|
3395
3395
|
focus: (args?: any) => void;
|
|
3396
3396
|
protected itemOffset: (scrollTop: number) => number;
|
|
3397
3397
|
protected calculateHeights: () => void;
|
|
@@ -3500,7 +3500,7 @@ export declare class TimePart extends React_2.Component<TimePartProps, TimePartS
|
|
|
3500
3500
|
/**
|
|
3501
3501
|
* @hidden
|
|
3502
3502
|
*/
|
|
3503
|
-
render():
|
|
3503
|
+
render(): JSX.Element;
|
|
3504
3504
|
focus: (args?: FocusOptions, focusNowButton?: boolean) => void;
|
|
3505
3505
|
protected timeFormatReducer: (acc: string, current: DateFormatPart) => string;
|
|
3506
3506
|
protected timeFormatFilter: (part: DateFormatPart, index: number, all: DateFormatPart[]) => boolean;
|
|
@@ -4033,7 +4033,7 @@ export declare class TimePickerWithoutContext extends React_2.Component<TimePick
|
|
|
4033
4033
|
/**
|
|
4034
4034
|
* @hidden
|
|
4035
4035
|
*/
|
|
4036
|
-
render():
|
|
4036
|
+
render(): JSX.Element;
|
|
4037
4037
|
private renderTimeSelector;
|
|
4038
4038
|
private renderPopup;
|
|
4039
4039
|
private renderAdaptivePopup;
|
|
@@ -4127,7 +4127,7 @@ export declare class TimeSelector extends React_2.Component<TimeSelectorProps, T
|
|
|
4127
4127
|
/**
|
|
4128
4128
|
* @hidden
|
|
4129
4129
|
*/
|
|
4130
|
-
render():
|
|
4130
|
+
render(): JSX.Element;
|
|
4131
4131
|
focusActiveList: () => void;
|
|
4132
4132
|
protected nextTick(f: () => any): void;
|
|
4133
4133
|
protected hasActiveButton(): boolean | null;
|
|
@@ -4194,7 +4194,7 @@ export declare class TodayCommand extends React_2.Component<TodayCommandProps> {
|
|
|
4194
4194
|
private localization;
|
|
4195
4195
|
protected get todayIsInRange(): boolean;
|
|
4196
4196
|
private handleClick;
|
|
4197
|
-
render():
|
|
4197
|
+
render(): JSX.Element;
|
|
4198
4198
|
}
|
|
4199
4199
|
|
|
4200
4200
|
/**
|
|
@@ -4282,10 +4282,10 @@ export declare class ViewList extends React_2.Component<ViewListProps, ViewListS
|
|
|
4282
4282
|
componentDidUpdate(_prevProps: ViewListProps, _prevState: ViewListState): void;
|
|
4283
4283
|
focusActiveDate: () => void;
|
|
4284
4284
|
blurActiveDate: () => void;
|
|
4285
|
-
render():
|
|
4285
|
+
render(): JSX.Element;
|
|
4286
4286
|
protected handleVirtualizationMount: (virtualization: Virtualization) => void;
|
|
4287
|
-
protected buildMonthView: (cols: any[], weekNames: any[]) =>
|
|
4288
|
-
protected buildDates: (cols: any[], dates: Date[]) =>
|
|
4287
|
+
protected buildMonthView: (cols: any[], weekNames: any[]) => JSX.Element;
|
|
4288
|
+
protected buildDates: (cols: any[], dates: Date[]) => JSX.Element;
|
|
4289
4289
|
protected calculateHeights: () => void;
|
|
4290
4290
|
protected getTake: (skip: number, total: number) => number;
|
|
4291
4291
|
private handleScrollAction;
|
|
@@ -4426,7 +4426,7 @@ export declare class Virtualization extends React_2.Component<VirtualizationProp
|
|
|
4426
4426
|
animateToIndex: (index: number) => void;
|
|
4427
4427
|
scrollToBottom: () => void;
|
|
4428
4428
|
componentDidMount(): void;
|
|
4429
|
-
render():
|
|
4429
|
+
render(): JSX.Element;
|
|
4430
4430
|
protected scrollStep: (start: number, end: number) => number;
|
|
4431
4431
|
protected scrollRange: (indexOffset: number, direction: ScrollDirection) => any;
|
|
4432
4432
|
protected containerMaxScroll: () => number;
|
package/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ import { FormComponentProps } from '@progress/kendo-react-common';
|
|
|
20
20
|
import { FormComponentValidity } from '@progress/kendo-react-common';
|
|
21
21
|
import { ForwardRefExoticComponent } from 'react';
|
|
22
22
|
import { IntlService } from '@progress/kendo-react-intl';
|
|
23
|
-
import { JSX
|
|
23
|
+
import { JSX } from 'react/jsx-runtime';
|
|
24
24
|
import { LocalizationService } from '@progress/kendo-react-intl';
|
|
25
25
|
import { NumberFormatOptions } from '@progress/kendo-intl';
|
|
26
26
|
import { PopupProps } from '@progress/kendo-react-popup';
|
|
@@ -89,7 +89,7 @@ export declare class CalendarCell extends React_2.Component<CalendarCellProps> {
|
|
|
89
89
|
* @hidden
|
|
90
90
|
*/
|
|
91
91
|
shouldComponentUpdate(nextProps: CalendarCellProps): boolean;
|
|
92
|
-
render():
|
|
92
|
+
render(): JSX.Element;
|
|
93
93
|
private handleClick;
|
|
94
94
|
private handleMouseEnter;
|
|
95
95
|
private handleMouseLeave;
|
|
@@ -164,7 +164,7 @@ declare interface CalendarHeaderProps {
|
|
|
164
164
|
* * [Customizing the title for the current Calendar view]({% slug custom_rendering_calendar %}#toc-cells-inside-the-view)
|
|
165
165
|
* * [Customizing the title for the current MultiViewCalendar view]({% slug custom_rendering_multiviewcalendar %}#toc-cells-inside-the-view)
|
|
166
166
|
*/
|
|
167
|
-
export declare const CalendarHeaderTitle: (props: CalendarHeaderTitleProps) =>
|
|
167
|
+
export declare const CalendarHeaderTitle: (props: CalendarHeaderTitleProps) => JSX.Element;
|
|
168
168
|
|
|
169
169
|
/**
|
|
170
170
|
* The props which will be received by the custom header title of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-headertitle) and the [MultiViewCalendar]({% slug api_dateinputs_multiviewcalendarprops %}#toc-headertitle).
|
|
@@ -185,7 +185,7 @@ export declare interface CalendarHeaderTitleProps {
|
|
|
185
185
|
* Also used as a custom navigation item for the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-navigationitem)
|
|
186
186
|
* ([see example]({% slug custom_rendering_calendar %}#toc-items-in-the-side-navigation)).
|
|
187
187
|
*/
|
|
188
|
-
export declare const CalendarNavigationItem: (props: CalendarNavigationItemProps) =>
|
|
188
|
+
export declare const CalendarNavigationItem: (props: CalendarNavigationItemProps) => JSX.Element;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* The props which will be received by the custom navigation item of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-navigationitem).
|
|
@@ -378,7 +378,7 @@ export declare enum CalendarViewEnum {
|
|
|
378
378
|
* * [Customizing week-column cells in the Calendar]({% slug custom_rendering_calendar %}#toc-cells-inside-the-week-column)
|
|
379
379
|
* * [Customizing week-column cells in the MultiViewCalendar]({% slug custom_rendering_multiviewcalendar %}#toc-cells-inside-the-week-column)
|
|
380
380
|
*/
|
|
381
|
-
export declare const CalendarWeekCell: (props: CalendarWeekCellProps) =>
|
|
381
|
+
export declare const CalendarWeekCell: (props: CalendarWeekCellProps) => JSX.Element;
|
|
382
382
|
|
|
383
383
|
/**
|
|
384
384
|
* The props which will be received by the custom week cell of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-weekcell) and the [MultiViewCalendar]({% slug api_dateinputs_multiviewcalendarprops %}#toc-weekcell).
|
|
@@ -489,7 +489,7 @@ export declare class CalendarWithoutContext extends React_2.Component<CalendarPr
|
|
|
489
489
|
/**
|
|
490
490
|
* @hidden
|
|
491
491
|
*/
|
|
492
|
-
render():
|
|
492
|
+
render(): JSX.Element;
|
|
493
493
|
private shouldScroll;
|
|
494
494
|
private handleScroll;
|
|
495
495
|
private handleNavigationChange;
|
|
@@ -1886,7 +1886,7 @@ export declare class DateRangePickerWithoutContext extends React_2.Component<Dat
|
|
|
1886
1886
|
/**
|
|
1887
1887
|
* @hidden
|
|
1888
1888
|
*/
|
|
1889
|
-
render():
|
|
1889
|
+
render(): JSX.Element;
|
|
1890
1890
|
protected setCalendarRef: (calendar: MultiViewCalendarHandle | null) => void;
|
|
1891
1891
|
protected focusCalendarElement: () => void;
|
|
1892
1892
|
protected focusDateInputElement(): void;
|
|
@@ -2414,7 +2414,7 @@ export declare class DateTimePickerWithoutContext extends React_2.Component<Date
|
|
|
2414
2414
|
/**
|
|
2415
2415
|
* @hidden
|
|
2416
2416
|
*/
|
|
2417
|
-
render():
|
|
2417
|
+
render(): JSX.Element;
|
|
2418
2418
|
private renderPicker;
|
|
2419
2419
|
private renderAdaptivePopup;
|
|
2420
2420
|
protected setShow(show: boolean): void;
|
|
@@ -2599,7 +2599,7 @@ export declare class Header extends React_2.Component<HeaderProps> {
|
|
|
2599
2599
|
protected get max(): Date;
|
|
2600
2600
|
protected get rangeLength(): number;
|
|
2601
2601
|
protected get canMoveUp(): boolean;
|
|
2602
|
-
render():
|
|
2602
|
+
render(): JSX.Element;
|
|
2603
2603
|
protected getTitle: () => string;
|
|
2604
2604
|
private handleTitleClick;
|
|
2605
2605
|
}
|
|
@@ -2656,7 +2656,7 @@ export declare class HorizontalViewList extends React_2.Component<HorizontalView
|
|
|
2656
2656
|
focusActiveDate: () => void;
|
|
2657
2657
|
blurActiveDate: () => void;
|
|
2658
2658
|
componentDidUpdate(): void;
|
|
2659
|
-
render():
|
|
2659
|
+
render(): JSX.Element;
|
|
2660
2660
|
protected rotateSelectionRange: (selectionRange: SelectionRange) => SelectionRange;
|
|
2661
2661
|
private handleWeekCellClick;
|
|
2662
2662
|
private handleDateChange;
|
|
@@ -3171,7 +3171,7 @@ export declare class MultiViewCalendarWithoutContext extends React_2.Component<M
|
|
|
3171
3171
|
/**
|
|
3172
3172
|
* @hidden
|
|
3173
3173
|
*/
|
|
3174
|
-
render():
|
|
3174
|
+
render(): JSX.Element;
|
|
3175
3175
|
protected clampRange: (value: Date) => SelectionRange;
|
|
3176
3176
|
protected rangeWithFocused: (range: SelectionRange, focusedDate: Date) => SelectionRange;
|
|
3177
3177
|
protected generateRange: (candidate: Date, value: SelectionRange) => SelectionRange;
|
|
@@ -3391,7 +3391,7 @@ export declare class TimeList extends React_2.Component<TimeListProps, {}> {
|
|
|
3391
3391
|
/**
|
|
3392
3392
|
* @hidden
|
|
3393
3393
|
*/
|
|
3394
|
-
render():
|
|
3394
|
+
render(): JSX.Element | undefined;
|
|
3395
3395
|
focus: (args?: any) => void;
|
|
3396
3396
|
protected itemOffset: (scrollTop: number) => number;
|
|
3397
3397
|
protected calculateHeights: () => void;
|
|
@@ -3500,7 +3500,7 @@ export declare class TimePart extends React_2.Component<TimePartProps, TimePartS
|
|
|
3500
3500
|
/**
|
|
3501
3501
|
* @hidden
|
|
3502
3502
|
*/
|
|
3503
|
-
render():
|
|
3503
|
+
render(): JSX.Element;
|
|
3504
3504
|
focus: (args?: FocusOptions, focusNowButton?: boolean) => void;
|
|
3505
3505
|
protected timeFormatReducer: (acc: string, current: DateFormatPart) => string;
|
|
3506
3506
|
protected timeFormatFilter: (part: DateFormatPart, index: number, all: DateFormatPart[]) => boolean;
|
|
@@ -4033,7 +4033,7 @@ export declare class TimePickerWithoutContext extends React_2.Component<TimePick
|
|
|
4033
4033
|
/**
|
|
4034
4034
|
* @hidden
|
|
4035
4035
|
*/
|
|
4036
|
-
render():
|
|
4036
|
+
render(): JSX.Element;
|
|
4037
4037
|
private renderTimeSelector;
|
|
4038
4038
|
private renderPopup;
|
|
4039
4039
|
private renderAdaptivePopup;
|
|
@@ -4127,7 +4127,7 @@ export declare class TimeSelector extends React_2.Component<TimeSelectorProps, T
|
|
|
4127
4127
|
/**
|
|
4128
4128
|
* @hidden
|
|
4129
4129
|
*/
|
|
4130
|
-
render():
|
|
4130
|
+
render(): JSX.Element;
|
|
4131
4131
|
focusActiveList: () => void;
|
|
4132
4132
|
protected nextTick(f: () => any): void;
|
|
4133
4133
|
protected hasActiveButton(): boolean | null;
|
|
@@ -4194,7 +4194,7 @@ export declare class TodayCommand extends React_2.Component<TodayCommandProps> {
|
|
|
4194
4194
|
private localization;
|
|
4195
4195
|
protected get todayIsInRange(): boolean;
|
|
4196
4196
|
private handleClick;
|
|
4197
|
-
render():
|
|
4197
|
+
render(): JSX.Element;
|
|
4198
4198
|
}
|
|
4199
4199
|
|
|
4200
4200
|
/**
|
|
@@ -4282,10 +4282,10 @@ export declare class ViewList extends React_2.Component<ViewListProps, ViewListS
|
|
|
4282
4282
|
componentDidUpdate(_prevProps: ViewListProps, _prevState: ViewListState): void;
|
|
4283
4283
|
focusActiveDate: () => void;
|
|
4284
4284
|
blurActiveDate: () => void;
|
|
4285
|
-
render():
|
|
4285
|
+
render(): JSX.Element;
|
|
4286
4286
|
protected handleVirtualizationMount: (virtualization: Virtualization) => void;
|
|
4287
|
-
protected buildMonthView: (cols: any[], weekNames: any[]) =>
|
|
4288
|
-
protected buildDates: (cols: any[], dates: Date[]) =>
|
|
4287
|
+
protected buildMonthView: (cols: any[], weekNames: any[]) => JSX.Element;
|
|
4288
|
+
protected buildDates: (cols: any[], dates: Date[]) => JSX.Element;
|
|
4289
4289
|
protected calculateHeights: () => void;
|
|
4290
4290
|
protected getTake: (skip: number, total: number) => number;
|
|
4291
4291
|
private handleScrollAction;
|
|
@@ -4426,7 +4426,7 @@ export declare class Virtualization extends React_2.Component<VirtualizationProp
|
|
|
4426
4426
|
animateToIndex: (index: number) => void;
|
|
4427
4427
|
scrollToBottom: () => void;
|
|
4428
4428
|
componentDidMount(): void;
|
|
4429
|
-
render():
|
|
4429
|
+
render(): JSX.Element;
|
|
4430
4430
|
protected scrollStep: (start: number, end: number) => number;
|
|
4431
4431
|
protected scrollRange: (indexOffset: number, direction: ScrollDirection) => any;
|
|
4432
4432
|
protected containerMaxScroll: () => number;
|
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={name:"@progress/kendo-react-dateinputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-dateinputs",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1744013825,version:"10.2.0-develop.3",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 = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "10.2.0-develop.
|
|
13
|
+
publishDate: 1744013825,
|
|
14
|
+
version: "10.2.0-develop.3",
|
|
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": "10.2.0-develop.
|
|
3
|
+
"version": "10.2.0-develop.3",
|
|
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",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"@progress/kendo-date-math": "^1.4.0",
|
|
29
29
|
"@progress/kendo-licensing": "^1.5.1",
|
|
30
30
|
"@progress/kendo-dateinputs-common": "^0.4.0",
|
|
31
|
-
"@progress/kendo-react-buttons": "10.2.0-develop.
|
|
32
|
-
"@progress/kendo-react-common": "10.2.0-develop.
|
|
33
|
-
"@progress/kendo-react-intl": "10.2.0-develop.
|
|
34
|
-
"@progress/kendo-react-labels": "10.2.0-develop.
|
|
35
|
-
"@progress/kendo-react-layout": "10.2.0-develop.
|
|
36
|
-
"@progress/kendo-react-popup": "10.2.0-develop.
|
|
31
|
+
"@progress/kendo-react-buttons": "10.2.0-develop.3",
|
|
32
|
+
"@progress/kendo-react-common": "10.2.0-develop.3",
|
|
33
|
+
"@progress/kendo-react-intl": "10.2.0-develop.3",
|
|
34
|
+
"@progress/kendo-react-labels": "10.2.0-develop.3",
|
|
35
|
+
"@progress/kendo-react-layout": "10.2.0-develop.3",
|
|
36
|
+
"@progress/kendo-react-popup": "10.2.0-develop.3",
|
|
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"
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"package": {
|
|
70
70
|
"productName": "KendoReact",
|
|
71
71
|
"productCode": "KENDOUIREACT",
|
|
72
|
-
"publishDate":
|
|
72
|
+
"publishDate": 1744013825,
|
|
73
73
|
"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
74
|
}
|
|
75
75
|
},
|