@progress/kendo-react-dateinputs 7.0.2 → 7.0.3-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-dateinputs",
3
- "version": "7.0.2",
3
+ "version": "7.0.3-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",
@@ -24,12 +24,12 @@
24
24
  "peerDependencies": {
25
25
  "@progress/kendo-date-math": "^1.4.0",
26
26
  "@progress/kendo-licensing": "^1.3.4",
27
- "@progress/kendo-react-buttons": "7.0.2",
28
- "@progress/kendo-react-common": "7.0.2",
29
- "@progress/kendo-react-intl": "7.0.2",
30
- "@progress/kendo-react-labels": "7.0.2",
31
- "@progress/kendo-react-layout": "7.0.2",
32
- "@progress/kendo-react-popup": "7.0.2",
27
+ "@progress/kendo-react-buttons": "7.0.3-develop.1",
28
+ "@progress/kendo-react-common": "7.0.3-develop.1",
29
+ "@progress/kendo-react-intl": "7.0.3-develop.1",
30
+ "@progress/kendo-react-labels": "7.0.3-develop.1",
31
+ "@progress/kendo-react-layout": "7.0.3-develop.1",
32
+ "@progress/kendo-react-popup": "7.0.3-develop.1",
33
33
  "@progress/kendo-svg-icons": "^2.0.0",
34
34
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
35
35
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
@@ -40,6 +40,7 @@ export interface TimePartProps {
40
40
  onNowClick?: any;
41
41
  className?: string;
42
42
  onMount?: (value: Date) => void;
43
+ onNowKeyDown?: (event: React.KeyboardEvent) => void;
43
44
  show?: boolean;
44
45
  mobileMode?: boolean;
45
46
  }
@@ -124,7 +125,7 @@ export declare class TimePart extends React.Component<TimePartProps, TimePartSta
124
125
  * @hidden
125
126
  */
126
127
  render(): import("react/jsx-runtime").JSX.Element;
127
- focus: (args?: any) => void;
128
+ focus: (args?: FocusOptions, focusNowButton?: boolean) => void;
128
129
  protected timeFormatReducer: (acc: string, current: DateFormatPart) => string;
129
130
  protected timeFormatFilter: (part: DateFormatPart, index: number, all: DateFormatPart[]) => boolean;
130
131
  protected nextTick(f: () => any): void;
@@ -135,6 +135,8 @@ export declare class TimeSelector extends React.Component<TimeSelectorProps, Tim
135
135
  protected nextTick(f: () => any): void;
136
136
  protected hasActiveButton(): boolean | null;
137
137
  private handleKeyDown;
138
+ private revertToNowButton;
139
+ private handleNowKeyDown;
138
140
  private handleAccept;
139
141
  private handleReject;
140
142
  private handleNowClick;