@progress/kendo-react-dateinputs 7.0.3-develop.3 → 7.0.3-develop.4
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/datetimepicker/DateTimeSelector.d.ts +8 -3
- package/dist/cdn/js/kendo-react-dateinputs.js +4 -4
- package/index.js +4 -4
- package/index.mjs +577 -557
- package/package.json +8 -8
|
@@ -70,6 +70,7 @@ export declare class DateTimeSelector extends React.Component<DateTimeSelectorPr
|
|
|
70
70
|
private _timePart;
|
|
71
71
|
private _cancelButton;
|
|
72
72
|
private _acceptButton;
|
|
73
|
+
private _dateButtonRef;
|
|
73
74
|
private _calendarWrap;
|
|
74
75
|
private shouldFocusPart;
|
|
75
76
|
get calendar(): Calendar | null;
|
|
@@ -79,7 +80,7 @@ export declare class DateTimeSelector extends React.Component<DateTimeSelectorPr
|
|
|
79
80
|
constructor(props: DateTimeSelectorProps);
|
|
80
81
|
componentDidUpdate(): void;
|
|
81
82
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
82
|
-
focus: (args?:
|
|
83
|
+
focus: (args?: FocusOptions) => void;
|
|
83
84
|
private calendarElement;
|
|
84
85
|
protected get minTime(): Date | null;
|
|
85
86
|
protected get maxTime(): Date | null;
|
|
@@ -89,13 +90,17 @@ export declare class DateTimeSelector extends React.Component<DateTimeSelectorPr
|
|
|
89
90
|
protected mergeDate(candidate: Date | null, value: Date): Date | null;
|
|
90
91
|
protected move: (direction: 'left' | 'right') => void;
|
|
91
92
|
private dateTimeFooter;
|
|
92
|
-
handleReject: (event: React.SyntheticEvent<
|
|
93
|
-
handleAccept: (event: React.SyntheticEvent<
|
|
93
|
+
handleReject: (event: React.SyntheticEvent<HTMLButtonElement>) => void;
|
|
94
|
+
handleAccept: (event: React.SyntheticEvent<HTMLButtonElement>, timeOverride?: Date) => void;
|
|
94
95
|
private handleNowClick;
|
|
95
96
|
private handleCalendarValueChange;
|
|
96
97
|
private handleTimeListContainerChange;
|
|
97
98
|
private handleDateClick;
|
|
98
99
|
private handleTimeClick;
|
|
99
100
|
private handleKeyDown;
|
|
101
|
+
private handleCancelKeyDown;
|
|
102
|
+
private handleSetKeyDown;
|
|
103
|
+
private handleDateKeyDown;
|
|
104
|
+
private handleTimeKeyDown;
|
|
100
105
|
private handleTimePartMount;
|
|
101
106
|
}
|