@progress/kendo-react-dateinputs 5.4.0-dev.202205200719 → 5.4.0-dev.202206061009
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/dist/cdn/js/kendo-react-dateinputs.js +1 -1
- package/dist/es/PopupSettings.js +1 -0
- package/dist/es/calendar/components/Calendar.d.ts +10 -10
- package/dist/es/calendar/components/Calendar.js +26 -12
- package/dist/es/calendar/components/CalendarCell.js +7 -3
- package/dist/es/calendar/components/CalendarHeaderTitle.js +7 -3
- package/dist/es/calendar/components/CalendarNavigationItem.js +7 -3
- package/dist/es/calendar/components/CalendarWeekCell.js +7 -3
- package/dist/es/calendar/components/Header.d.ts +5 -4
- package/dist/es/calendar/components/Header.js +8 -6
- package/dist/es/calendar/components/HorizontalViewList.d.ts +4 -4
- package/dist/es/calendar/components/HorizontalViewList.js +8 -5
- package/dist/es/calendar/components/MultiViewCalendar.d.ts +13 -13
- package/dist/es/calendar/components/MultiViewCalendar.js +24 -15
- package/dist/es/calendar/components/Navigation.d.ts +1 -1
- package/dist/es/calendar/components/Navigation.js +13 -6
- package/dist/es/calendar/components/TodayCommand.d.ts +3 -3
- package/dist/es/calendar/components/TodayCommand.js +10 -6
- package/dist/es/calendar/components/View.d.ts +11 -11
- package/dist/es/calendar/components/View.js +17 -13
- package/dist/es/calendar/components/ViewList.d.ts +6 -6
- package/dist/es/calendar/components/ViewList.js +19 -9
- package/dist/es/calendar/models/ActiveView.js +1 -0
- package/dist/es/calendar/models/CalendarSettings.js +1 -0
- package/dist/es/calendar/models/CellContext.js +1 -0
- package/dist/es/calendar/models/MultiViewCalendarMode.js +1 -0
- package/dist/es/calendar/models/MultiViewCalendarSettings.js +1 -0
- package/dist/es/calendar/models/SelectionRangeEnd.js +1 -0
- package/dist/es/calendar/models/ViewService.js +1 -0
- package/dist/es/calendar/services/BusViewService.js +1 -1
- package/dist/es/calendar/services/CenturyViewService.js +2 -2
- package/dist/es/calendar/services/DOMService.js +24 -6
- package/dist/es/calendar/services/DecadeViewService.js +2 -2
- package/dist/es/calendar/services/MonthViewService.js +2 -2
- package/dist/es/calendar/services/NavigationService.js +1 -1
- package/dist/es/calendar/services/ScrollSyncService.js +5 -1
- package/dist/es/calendar/services/YearViewService.js +2 -2
- package/dist/es/dateinput/DateInput.d.ts +24 -20
- package/dist/es/dateinput/DateInput.js +32 -19
- package/dist/es/dateinput/models/DateInputSettings.js +1 -0
- package/dist/es/dateinput/models/format-placeholder.js +1 -0
- package/dist/es/dateinput/models/incremental-steps.js +1 -0
- package/dist/es/dateinput/models/kendo-date.d.ts +2 -2
- package/dist/es/dateinput/models/kendo-date.js +2 -2
- package/dist/es/dateinput/models/mask.js +1 -0
- package/dist/es/dateinput/models/selection.js +1 -0
- package/dist/es/dateinput/utils.d.ts +1 -1
- package/dist/es/datepicker/DatePicker.d.ts +25 -25
- package/dist/es/datepicker/DatePicker.js +28 -23
- package/dist/es/datepicker/models/DatePickerSettings.js +1 -0
- package/dist/es/datepicker/models/index.js +1 -0
- package/dist/es/daterangepicker/DateRangePicker.d.ts +12 -12
- package/dist/es/daterangepicker/DateRangePicker.js +16 -14
- package/dist/es/daterangepicker/models/DateRangePickerCalendarSettings.js +1 -0
- package/dist/es/daterangepicker/models/DateRangePickerDateInputSettings.js +1 -0
- package/dist/es/daterangepicker/models/DateRangePickerPopupSettings.js +1 -0
- package/dist/es/daterangepicker/models/DateRangePickerSettings.js +1 -0
- package/dist/es/daterangepicker/models/index.js +1 -0
- package/dist/es/datetimepicker/DateTimePicker.d.ts +19 -19
- package/dist/es/datetimepicker/DateTimePicker.js +33 -18
- package/dist/es/datetimepicker/DateTimeSelector.d.ts +7 -7
- package/dist/es/datetimepicker/DateTimeSelector.js +17 -7
- package/dist/es/datetimepicker/models/DateTimePickerSettings.js +1 -0
- package/dist/es/datetimepicker/models/index.js +1 -0
- package/dist/es/hooks/usePickerFloatingLabel.d.ts +1 -1
- package/dist/es/messages/index.d.ts +21 -21
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/TimeList.d.ts +8 -8
- package/dist/es/timepicker/TimeList.js +33 -13
- package/dist/es/timepicker/TimePart.d.ts +10 -10
- package/dist/es/timepicker/TimePart.js +14 -9
- package/dist/es/timepicker/TimePicker.d.ts +22 -22
- package/dist/es/timepicker/TimePicker.js +27 -22
- package/dist/es/timepicker/TimeSelector.d.ts +6 -6
- package/dist/es/timepicker/TimeSelector.js +11 -5
- package/dist/es/timepicker/models/IncrementalSteps.js +1 -0
- package/dist/es/timepicker/models/ListItem.js +1 -0
- package/dist/es/timepicker/models/ListService.js +1 -0
- package/dist/es/timepicker/models/ListServiceSettings.js +1 -0
- package/dist/es/timepicker/models/TimePickerSettings.js +1 -0
- package/dist/es/timepicker/services/DOMService.js +2 -0
- package/dist/es/timepicker/services/DayPeriodService.js +9 -3
- package/dist/es/timepicker/services/HoursService.js +14 -5
- package/dist/es/timepicker/services/MinutesService.js +12 -6
- package/dist/es/timepicker/services/SecondsService.js +12 -6
- package/dist/es/timepicker/utils.d.ts +4 -4
- package/dist/es/utils.d.ts +1 -1
- package/dist/es/utils.js +10 -1
- package/dist/es/virtualization/Virtualization.d.ts +8 -7
- package/dist/es/virtualization/Virtualization.js +22 -12
- package/dist/es/virtualization/services/RowHeightService.js +10 -1
- package/dist/es/virtualization/services/ScrollerService.js +9 -3
- package/dist/npm/calendar/components/Calendar.d.ts +10 -10
- package/dist/npm/calendar/components/Calendar.js +53 -38
- package/dist/npm/calendar/components/CalendarCell.js +9 -4
- package/dist/npm/calendar/components/CalendarHeaderTitle.js +8 -3
- package/dist/npm/calendar/components/CalendarNavigationItem.js +9 -4
- package/dist/npm/calendar/components/CalendarWeekCell.js +9 -4
- package/dist/npm/calendar/components/Header.d.ts +5 -4
- package/dist/npm/calendar/components/Header.js +11 -8
- package/dist/npm/calendar/components/HorizontalViewList.d.ts +4 -4
- package/dist/npm/calendar/components/HorizontalViewList.js +11 -7
- package/dist/npm/calendar/components/MultiViewCalendar.d.ts +13 -13
- package/dist/npm/calendar/components/MultiViewCalendar.js +62 -52
- package/dist/npm/calendar/components/Navigation.d.ts +1 -1
- package/dist/npm/calendar/components/Navigation.js +18 -10
- package/dist/npm/calendar/components/TodayCommand.d.ts +3 -3
- package/dist/npm/calendar/components/TodayCommand.js +16 -11
- package/dist/npm/calendar/components/View.d.ts +11 -11
- package/dist/npm/calendar/components/View.js +27 -22
- package/dist/npm/calendar/components/ViewList.d.ts +6 -6
- package/dist/npm/calendar/components/ViewList.js +29 -18
- package/dist/npm/calendar/models/CalendarViewEnum.js +1 -0
- package/dist/npm/calendar/models/NavigationAction.js +1 -0
- package/dist/npm/calendar/models/SelectionRange.js +1 -0
- package/dist/npm/calendar/models/index.js +4 -3
- package/dist/npm/calendar/services/BusViewService.js +3 -2
- package/dist/npm/calendar/services/CenturyViewService.js +40 -39
- package/dist/npm/calendar/services/DOMService.js +34 -15
- package/dist/npm/calendar/services/DecadeViewService.js +34 -33
- package/dist/npm/calendar/services/MonthViewService.js +38 -37
- package/dist/npm/calendar/services/NavigationService.js +2 -1
- package/dist/npm/calendar/services/ScrollSyncService.js +6 -1
- package/dist/npm/calendar/services/WeekNamesService.js +2 -1
- package/dist/npm/calendar/services/YearViewService.js +35 -34
- package/dist/npm/calendar/services/index.js +10 -9
- package/dist/npm/common/PickerWrap.js +2 -1
- package/dist/npm/dateinput/DateInput.d.ts +24 -20
- package/dist/npm/dateinput/DateInput.js +51 -37
- package/dist/npm/dateinput/models/index.js +3 -2
- package/dist/npm/dateinput/models/kendo-date.d.ts +2 -2
- package/dist/npm/dateinput/models/kendo-date.js +14 -13
- package/dist/npm/dateinput/models/mask.js +2 -0
- package/dist/npm/dateinput/utils.d.ts +1 -1
- package/dist/npm/dateinput/utils.js +9 -4
- package/dist/npm/datepicker/DatePicker.d.ts +25 -25
- package/dist/npm/datepicker/DatePicker.js +42 -36
- package/dist/npm/datepicker/ToggleButton.js +1 -0
- package/dist/npm/daterangepicker/DateRangePicker.d.ts +12 -12
- package/dist/npm/daterangepicker/DateRangePicker.js +34 -31
- package/dist/npm/datetimepicker/DateTimePicker.d.ts +19 -19
- package/dist/npm/datetimepicker/DateTimePicker.js +46 -30
- package/dist/npm/datetimepicker/DateTimeSelector.d.ts +7 -7
- package/dist/npm/datetimepicker/DateTimeSelector.js +26 -15
- package/dist/npm/defaults.js +1 -0
- package/dist/npm/hooks/usePickerFloatingLabel.d.ts +1 -1
- package/dist/npm/hooks/usePickerFloatingLabel.js +6 -3
- package/dist/npm/main.js +22 -21
- package/dist/npm/messages/index.d.ts +21 -21
- package/dist/npm/messages/index.js +2 -1
- package/dist/npm/package-metadata.js +2 -1
- package/dist/npm/timepicker/TimeList.d.ts +8 -8
- package/dist/npm/timepicker/TimeList.js +39 -18
- package/dist/npm/timepicker/TimePart.d.ts +10 -10
- package/dist/npm/timepicker/TimePart.js +25 -19
- package/dist/npm/timepicker/TimePicker.d.ts +22 -22
- package/dist/npm/timepicker/TimePicker.js +43 -37
- package/dist/npm/timepicker/TimeSelector.d.ts +6 -6
- package/dist/npm/timepicker/TimeSelector.js +22 -15
- package/dist/npm/timepicker/models/TimePart.js +1 -0
- package/dist/npm/timepicker/models/index.js +2 -1
- package/dist/npm/timepicker/services/DOMService.js +7 -4
- package/dist/npm/timepicker/services/DayPeriodService.js +11 -4
- package/dist/npm/timepicker/services/HoursService.js +21 -11
- package/dist/npm/timepicker/services/MinutesService.js +17 -10
- package/dist/npm/timepicker/services/SecondsService.js +17 -10
- package/dist/npm/timepicker/services/index.js +6 -5
- package/dist/npm/timepicker/utils.d.ts +4 -4
- package/dist/npm/timepicker/utils.js +30 -20
- package/dist/npm/utils.d.ts +1 -1
- package/dist/npm/utils.js +43 -20
- package/dist/npm/virtualization/Virtualization.d.ts +8 -7
- package/dist/npm/virtualization/Virtualization.js +26 -15
- package/dist/npm/virtualization/services/RowHeightService.js +11 -1
- package/dist/npm/virtualization/services/ScrollerService.js +10 -3
- package/dist/npm/virtualization/services/index.js +5 -4
- package/dist/systemjs/kendo-react-dateinputs.js +1 -1
- package/package.json +13 -13
|
@@ -2,10 +2,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
2
2
|
var extendStatics = function (d, b) {
|
|
3
3
|
extendStatics = Object.setPrototypeOf ||
|
|
4
4
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (
|
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
6
|
return extendStatics(d, b);
|
|
7
7
|
};
|
|
8
8
|
return function (d, b) {
|
|
9
|
+
if (typeof b !== "function" && b !== null)
|
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
9
11
|
extendStatics(d, b);
|
|
10
12
|
function __() { this.constructor = d; }
|
|
11
13
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -40,7 +42,12 @@ var DateTimeSelector = /** @class */ (function (_super) {
|
|
|
40
42
|
__extends(DateTimeSelector, _super);
|
|
41
43
|
function DateTimeSelector(props) {
|
|
42
44
|
var _this = _super.call(this, props) || this;
|
|
45
|
+
_this._calendar = null;
|
|
46
|
+
_this._timePart = null;
|
|
47
|
+
_this._cancelButton = null;
|
|
48
|
+
_this._acceptButton = null;
|
|
43
49
|
_this._calendarWrap = null;
|
|
50
|
+
_this.shouldFocusPart = false;
|
|
44
51
|
_this.focus = function (args) {
|
|
45
52
|
// Async to avoid stealing the focus from the DateInput on close
|
|
46
53
|
Promise.resolve().then(function () {
|
|
@@ -151,21 +158,21 @@ var DateTimeSelector = /** @class */ (function (_super) {
|
|
|
151
158
|
get: function () {
|
|
152
159
|
return this._calendar;
|
|
153
160
|
},
|
|
154
|
-
enumerable:
|
|
161
|
+
enumerable: false,
|
|
155
162
|
configurable: true
|
|
156
163
|
});
|
|
157
164
|
Object.defineProperty(DateTimeSelector.prototype, "timePart", {
|
|
158
165
|
get: function () {
|
|
159
166
|
return this._timePart;
|
|
160
167
|
},
|
|
161
|
-
enumerable:
|
|
168
|
+
enumerable: false,
|
|
162
169
|
configurable: true
|
|
163
170
|
});
|
|
164
171
|
Object.defineProperty(DateTimeSelector.prototype, "hasDateValue", {
|
|
165
172
|
get: function () {
|
|
166
173
|
return this.state.dateValue !== null;
|
|
167
174
|
},
|
|
168
|
-
enumerable:
|
|
175
|
+
enumerable: false,
|
|
169
176
|
configurable: true
|
|
170
177
|
});
|
|
171
178
|
DateTimeSelector.prototype.componentDidUpdate = function () {
|
|
@@ -188,7 +195,10 @@ var DateTimeSelector = /** @class */ (function (_super) {
|
|
|
188
195
|
var cancelMessage = localizationService.toLanguageString(cancel, messages[cancel]);
|
|
189
196
|
var setMessage = localizationService.toLanguageString(set, messages[set]);
|
|
190
197
|
var calendarProps = {
|
|
191
|
-
min: min,
|
|
198
|
+
min: min,
|
|
199
|
+
max: max,
|
|
200
|
+
weekNumber: weekNumber,
|
|
201
|
+
focusedDate: focusedDate,
|
|
192
202
|
disabled: disabled || this.state.tab !== 'date',
|
|
193
203
|
value: this.state.dateValue,
|
|
194
204
|
onChange: this.handleCalendarValueChange,
|
|
@@ -214,7 +224,7 @@ var DateTimeSelector = /** @class */ (function (_super) {
|
|
|
214
224
|
? this.props.minTime
|
|
215
225
|
: this.normalizeRange(this.props.min, this.state.dateValue);
|
|
216
226
|
},
|
|
217
|
-
enumerable:
|
|
227
|
+
enumerable: false,
|
|
218
228
|
configurable: true
|
|
219
229
|
});
|
|
220
230
|
Object.defineProperty(DateTimeSelector.prototype, "maxTime", {
|
|
@@ -223,7 +233,7 @@ var DateTimeSelector = /** @class */ (function (_super) {
|
|
|
223
233
|
? this.props.maxTime
|
|
224
234
|
: this.normalizeRange(this.props.max, this.state.dateValue);
|
|
225
235
|
},
|
|
226
|
-
enumerable:
|
|
236
|
+
enumerable: false,
|
|
227
237
|
configurable: true
|
|
228
238
|
});
|
|
229
239
|
DateTimeSelector.prototype.normalizeRange = function (candidate, value) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -11,7 +11,7 @@ export declare type PickerFloatingLabelProps = FloatingLabelProps & {
|
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
14
|
-
export declare const usePickerFloatingLabel: (dateInput: React.RefObject<
|
|
14
|
+
export declare const usePickerFloatingLabel: (dateInput: React.RefObject<DateInput>) => {
|
|
15
15
|
editorValue: boolean;
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
@@ -86,25 +86,25 @@ export declare const dateTimePickerSet = "datetimepicker.set";
|
|
|
86
86
|
* @hidden
|
|
87
87
|
*/
|
|
88
88
|
export declare const messages: {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
89
|
+
"calendar.today": string;
|
|
90
|
+
"timepicker.now": string;
|
|
91
|
+
"timepicker.set": string;
|
|
92
|
+
"timepicker.cancel": string;
|
|
93
|
+
"datetimepicker.date": string;
|
|
94
|
+
"datetimepicker.time": string;
|
|
95
|
+
"datetimepicker.cancel": string;
|
|
96
|
+
"datetimepicker.set": string;
|
|
97
|
+
"daterangepicker.start": string;
|
|
98
|
+
"daterangepicker.end": string;
|
|
99
|
+
"daterangepicker.separator": string;
|
|
100
|
+
"timepicker.selectNow": string;
|
|
101
|
+
"timepicker.toggleTimeSelector": string;
|
|
102
|
+
"timepicker.toggleClock": string;
|
|
103
|
+
"dateinput.increment": string;
|
|
104
|
+
"dateinput.decrement": string;
|
|
105
|
+
"datepicker.toggleCalendar": string;
|
|
106
|
+
"multiviewcalendar.prevView": string;
|
|
107
|
+
"multiviewcalendar.nextView": string;
|
|
108
|
+
"daterangepicker.swapStartEnd": string;
|
|
109
|
+
"datetimepicker.toggleDateTimeSelector": string;
|
|
110
110
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-react-dateinputs',
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1654509015,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -29,8 +29,8 @@ export declare class TimeList extends React.Component<TimeListProps, {}> {
|
|
|
29
29
|
id: PropTypes.Requireable<number>;
|
|
30
30
|
max: PropTypes.Requireable<Date>;
|
|
31
31
|
min: PropTypes.Requireable<Date>;
|
|
32
|
-
part: (props: TimeListProps, propName: string, componentName: string) =>
|
|
33
|
-
step: (props: TimeListProps, propName: string, componentName: string) =>
|
|
32
|
+
part: (props: TimeListProps, propName: string, componentName: string) => null;
|
|
33
|
+
step: (props: TimeListProps, propName: string, componentName: string) => null;
|
|
34
34
|
value: PropTypes.Requireable<Date>;
|
|
35
35
|
smoothScroll: PropTypes.Requireable<boolean>;
|
|
36
36
|
show: PropTypes.Requireable<boolean>;
|
|
@@ -55,11 +55,11 @@ export declare class TimeList extends React.Component<TimeListProps, {}> {
|
|
|
55
55
|
private bottomThreshold;
|
|
56
56
|
private animateToIndex;
|
|
57
57
|
constructor(props: TimeListProps);
|
|
58
|
-
|
|
59
|
-
protected
|
|
60
|
-
private
|
|
61
|
-
private
|
|
62
|
-
private
|
|
58
|
+
get element(): HTMLDivElement | null;
|
|
59
|
+
protected get animate(): boolean;
|
|
60
|
+
private get min();
|
|
61
|
+
private get max();
|
|
62
|
+
private get step();
|
|
63
63
|
/**
|
|
64
64
|
* @hidden
|
|
65
65
|
*/
|
|
@@ -71,7 +71,7 @@ export declare class TimeList extends React.Component<TimeListProps, {}> {
|
|
|
71
71
|
/**
|
|
72
72
|
* @hidden
|
|
73
73
|
*/
|
|
74
|
-
render(): JSX.Element;
|
|
74
|
+
render(): JSX.Element | undefined;
|
|
75
75
|
focus: (args?: any) => void;
|
|
76
76
|
protected itemOffset: (scrollTop: number) => number;
|
|
77
77
|
protected calculateHeights: () => void;
|
|
@@ -2,10 +2,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
2
2
|
var extendStatics = function (d, b) {
|
|
3
3
|
extendStatics = Object.setPrototypeOf ||
|
|
4
4
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (
|
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
6
|
return extendStatics(d, b);
|
|
7
7
|
};
|
|
8
8
|
return function (d, b) {
|
|
9
|
+
if (typeof b !== "function" && b !== null)
|
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
9
11
|
extendStatics(d, b);
|
|
10
12
|
function __() { this.constructor = d; }
|
|
11
13
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -43,6 +45,16 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
43
45
|
__extends(TimeList, _super);
|
|
44
46
|
function TimeList(props) {
|
|
45
47
|
var _this = _super.call(this, props) || this;
|
|
48
|
+
_this.intl = null;
|
|
49
|
+
_this._element = null;
|
|
50
|
+
_this.service = null;
|
|
51
|
+
_this.virtualization = null;
|
|
52
|
+
_this.topOffset = 0;
|
|
53
|
+
_this.bottomOffset = 0;
|
|
54
|
+
_this.itemHeight = 0;
|
|
55
|
+
_this.listHeight = 0;
|
|
56
|
+
_this.topThreshold = 0;
|
|
57
|
+
_this.bottomThreshold = 0;
|
|
46
58
|
_this.animateToIndex = false;
|
|
47
59
|
_this.focus = function (args) {
|
|
48
60
|
Promise.resolve().then(function () {
|
|
@@ -53,7 +65,7 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
53
65
|
});
|
|
54
66
|
};
|
|
55
67
|
_this.itemOffset = function (scrollTop) {
|
|
56
|
-
if (!_this.virtualization) {
|
|
68
|
+
if (!_this.virtualization || !_this.service) {
|
|
57
69
|
return -1;
|
|
58
70
|
}
|
|
59
71
|
var valueIndex = _this.service.selectedIndex(_this.props.value);
|
|
@@ -80,8 +92,10 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
80
92
|
};
|
|
81
93
|
_this.configureServices = function (_a) {
|
|
82
94
|
var _b = _a === void 0 ? _this.props : _a, min = _b.min, max = _b.max, value = _b.value;
|
|
83
|
-
|
|
84
|
-
|
|
95
|
+
if (_this.service) {
|
|
96
|
+
var _c = _this.service.limitRange(min || _this.min, max || _this.max, value || _this.props.value), newMin = _c[0], newMax = _c[1];
|
|
97
|
+
_this.service.configure(_this.serviceSettings({ min: newMin, max: newMax }));
|
|
98
|
+
}
|
|
85
99
|
};
|
|
86
100
|
_this.serviceSettings = function (settings) {
|
|
87
101
|
var defaults = {
|
|
@@ -98,7 +112,7 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
98
112
|
};
|
|
99
113
|
_this.handleScrollAction = function (_a) {
|
|
100
114
|
var target = _a.target, animationInProgress = _a.animationInProgress;
|
|
101
|
-
if (!_this.virtualization) {
|
|
115
|
+
if (!_this.virtualization || !_this.service) {
|
|
102
116
|
return;
|
|
103
117
|
}
|
|
104
118
|
if (target && !animationInProgress) {
|
|
@@ -129,6 +143,9 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
129
143
|
}
|
|
130
144
|
};
|
|
131
145
|
_this.handleKeyDown = function (event) {
|
|
146
|
+
if (!_this.service) {
|
|
147
|
+
return;
|
|
148
|
+
}
|
|
132
149
|
var keyCode = event.keyCode;
|
|
133
150
|
if (keyCode === Keys.down
|
|
134
151
|
|| keyCode === Keys.up
|
|
@@ -143,6 +160,9 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
143
160
|
}
|
|
144
161
|
};
|
|
145
162
|
_this.handleChange = function (dataItem) {
|
|
163
|
+
if (!_this.service) {
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
146
166
|
var candidate = _this.service.apply(_this.props.value, dataItem.value);
|
|
147
167
|
if (_this.props.value.getTime() === candidate.getTime()) {
|
|
148
168
|
return;
|
|
@@ -162,28 +182,28 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
162
182
|
get: function () {
|
|
163
183
|
return this._element;
|
|
164
184
|
},
|
|
165
|
-
enumerable:
|
|
185
|
+
enumerable: false,
|
|
166
186
|
configurable: true
|
|
167
187
|
});
|
|
168
188
|
Object.defineProperty(TimeList.prototype, "animate", {
|
|
169
189
|
get: function () {
|
|
170
190
|
return Boolean(this.props.smoothScroll && this.animateToIndex);
|
|
171
191
|
},
|
|
172
|
-
enumerable:
|
|
192
|
+
enumerable: false,
|
|
173
193
|
configurable: true
|
|
174
194
|
});
|
|
175
195
|
Object.defineProperty(TimeList.prototype, "min", {
|
|
176
196
|
get: function () {
|
|
177
197
|
return this.props.min || TimeList.defaultProps.min;
|
|
178
198
|
},
|
|
179
|
-
enumerable:
|
|
199
|
+
enumerable: false,
|
|
180
200
|
configurable: true
|
|
181
201
|
});
|
|
182
202
|
Object.defineProperty(TimeList.prototype, "max", {
|
|
183
203
|
get: function () {
|
|
184
204
|
return this.props.max || TimeList.defaultProps.max;
|
|
185
205
|
},
|
|
186
|
-
enumerable:
|
|
206
|
+
enumerable: false,
|
|
187
207
|
configurable: true
|
|
188
208
|
});
|
|
189
209
|
Object.defineProperty(TimeList.prototype, "step", {
|
|
@@ -192,7 +212,7 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
192
212
|
? Math.floor(this.props.step)
|
|
193
213
|
: TimeList.defaultProps.step;
|
|
194
214
|
},
|
|
195
|
-
enumerable:
|
|
215
|
+
enumerable: false,
|
|
196
216
|
configurable: true
|
|
197
217
|
});
|
|
198
218
|
/**
|
|
@@ -213,7 +233,7 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
213
233
|
* @hidden
|
|
214
234
|
*/
|
|
215
235
|
TimeList.prototype.componentDidUpdate = function () {
|
|
216
|
-
if (!this.virtualization) {
|
|
236
|
+
if (!this.virtualization || !this.service) {
|
|
217
237
|
return;
|
|
218
238
|
}
|
|
219
239
|
var index = this.service.selectedIndex(this.props.value);
|
|
@@ -250,14 +270,14 @@ var TimeList = /** @class */ (function (_super) {
|
|
|
250
270
|
part: function (props, propName, componentName) {
|
|
251
271
|
var prop = props[propName];
|
|
252
272
|
if (!prop || !services[prop.type]) {
|
|
253
|
-
throw new Error("\n Invalid prop '"
|
|
273
|
+
throw new Error("\n Invalid prop '".concat(propName, "' supplied to ").concat(componentName, ".\n Supported part types are hour|minute|second|dayperiod.\n "));
|
|
254
274
|
}
|
|
255
275
|
return null;
|
|
256
276
|
},
|
|
257
277
|
step: function (props, propName, componentName) {
|
|
258
278
|
var prop = props[propName];
|
|
259
279
|
if (prop !== undefined && prop <= 0) {
|
|
260
|
-
throw new Error("\n Invalid prop '"
|
|
280
|
+
throw new Error("\n Invalid prop '".concat(propName, "' supplied to ").concat(componentName, ".\n ").concat(propName, " cannot be less than 1.\n "));
|
|
261
281
|
}
|
|
262
282
|
return null;
|
|
263
283
|
},
|
|
@@ -82,7 +82,7 @@ export declare class TimePart extends React.Component<TimePartProps, TimePartSta
|
|
|
82
82
|
show: PropTypes.Requireable<boolean>;
|
|
83
83
|
};
|
|
84
84
|
static defaultProps: {
|
|
85
|
-
value:
|
|
85
|
+
value: null;
|
|
86
86
|
disabled: boolean;
|
|
87
87
|
nowButton: boolean;
|
|
88
88
|
cancelButton: boolean;
|
|
@@ -103,13 +103,13 @@ export declare class TimePart extends React.Component<TimePartProps, TimePartSta
|
|
|
103
103
|
/**
|
|
104
104
|
* @hidden
|
|
105
105
|
*/
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
protected
|
|
109
|
-
private
|
|
110
|
-
private
|
|
111
|
-
private
|
|
112
|
-
protected
|
|
106
|
+
get element(): HTMLSpanElement | null;
|
|
107
|
+
get value(): Date;
|
|
108
|
+
protected get intl(): IntlService;
|
|
109
|
+
private get min();
|
|
110
|
+
private get max();
|
|
111
|
+
private get steps();
|
|
112
|
+
protected get boundRange(): boolean;
|
|
113
113
|
/**
|
|
114
114
|
* @hidden
|
|
115
115
|
*/
|
|
@@ -123,10 +123,10 @@ export declare class TimePart extends React.Component<TimePartProps, TimePartSta
|
|
|
123
123
|
protected timeFormatReducer: (acc: string, current: DateFormatPart) => string;
|
|
124
124
|
protected timeFormatFilter: (part: DateFormatPart, index: number, all: DateFormatPart[]) => boolean;
|
|
125
125
|
protected nextTick(f: () => any): void;
|
|
126
|
-
protected hasActiveButton(): boolean;
|
|
126
|
+
protected hasActiveButton(): boolean | null;
|
|
127
127
|
protected focusList: (dir: Direction) => void;
|
|
128
128
|
protected listReducer: (state: any, list: any, idx: any, all: any) => any;
|
|
129
|
-
protected showNowButton: () => boolean;
|
|
129
|
+
protected showNowButton: () => boolean | undefined;
|
|
130
130
|
protected hasSteps(): boolean;
|
|
131
131
|
private handleKeyDown;
|
|
132
132
|
private handleListBlur;
|
|
@@ -2,10 +2,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
2
2
|
var extendStatics = function (d, b) {
|
|
3
3
|
extendStatics = Object.setPrototypeOf ||
|
|
4
4
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (
|
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
6
|
return extendStatics(d, b);
|
|
7
7
|
};
|
|
8
8
|
return function (d, b) {
|
|
9
|
+
if (typeof b !== "function" && b !== null)
|
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
9
11
|
extendStatics(d, b);
|
|
10
12
|
function __() { this.constructor = d; }
|
|
11
13
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -33,7 +35,7 @@ import { MIDNIGHT_DATE, MIN_TIME, MAX_TIME } from '../utils';
|
|
|
33
35
|
import { TIME_PART } from './models/TimePart';
|
|
34
36
|
import { generateSnappers, getNow, isInTimeRange, snapTime, timeInRange } from './utils';
|
|
35
37
|
import { Button } from '@progress/kendo-react-buttons';
|
|
36
|
-
var formatRegExp = new RegExp(TIME_PART.hour
|
|
38
|
+
var formatRegExp = new RegExp("".concat(TIME_PART.hour, "|").concat(TIME_PART.minute, "|").concat(TIME_PART.second, "|").concat(TIME_PART.dayperiod, "|literal"));
|
|
37
39
|
/**
|
|
38
40
|
* @hidden
|
|
39
41
|
*/
|
|
@@ -49,6 +51,9 @@ var TimePart = /** @class */ (function (_super) {
|
|
|
49
51
|
__extends(TimePart, _super);
|
|
50
52
|
function TimePart(props) {
|
|
51
53
|
var _this = _super.call(this, props) || this;
|
|
54
|
+
_this._element = null;
|
|
55
|
+
_this._nowButton = null;
|
|
56
|
+
_this.dateFormatParts = [];
|
|
52
57
|
_this.timeLists = [];
|
|
53
58
|
_this.focus = function (args) {
|
|
54
59
|
Promise.resolve().then(function () {
|
|
@@ -138,42 +143,42 @@ var TimePart = /** @class */ (function (_super) {
|
|
|
138
143
|
get: function () {
|
|
139
144
|
return this._element;
|
|
140
145
|
},
|
|
141
|
-
enumerable:
|
|
146
|
+
enumerable: false,
|
|
142
147
|
configurable: true
|
|
143
148
|
});
|
|
144
149
|
Object.defineProperty(TimePart.prototype, "value", {
|
|
145
150
|
get: function () {
|
|
146
151
|
return timeInRange(this.snapTime(cloneDate(this.props.value || MIDNIGHT_DATE)), this.min, this.max);
|
|
147
152
|
},
|
|
148
|
-
enumerable:
|
|
153
|
+
enumerable: false,
|
|
149
154
|
configurable: true
|
|
150
155
|
});
|
|
151
156
|
Object.defineProperty(TimePart.prototype, "intl", {
|
|
152
157
|
get: function () {
|
|
153
158
|
return provideIntlService(this);
|
|
154
159
|
},
|
|
155
|
-
enumerable:
|
|
160
|
+
enumerable: false,
|
|
156
161
|
configurable: true
|
|
157
162
|
});
|
|
158
163
|
Object.defineProperty(TimePart.prototype, "min", {
|
|
159
164
|
get: function () {
|
|
160
165
|
return this.snapTime(this.props.min || TimePart.defaultProps.min);
|
|
161
166
|
},
|
|
162
|
-
enumerable:
|
|
167
|
+
enumerable: false,
|
|
163
168
|
configurable: true
|
|
164
169
|
});
|
|
165
170
|
Object.defineProperty(TimePart.prototype, "max", {
|
|
166
171
|
get: function () {
|
|
167
172
|
return this.snapTime(this.props.max || TimePart.defaultProps.max);
|
|
168
173
|
},
|
|
169
|
-
enumerable:
|
|
174
|
+
enumerable: false,
|
|
170
175
|
configurable: true
|
|
171
176
|
});
|
|
172
177
|
Object.defineProperty(TimePart.prototype, "steps", {
|
|
173
178
|
get: function () {
|
|
174
179
|
return this.props.steps || TimePart.defaultProps.steps;
|
|
175
180
|
},
|
|
176
|
-
enumerable:
|
|
181
|
+
enumerable: false,
|
|
177
182
|
configurable: true
|
|
178
183
|
});
|
|
179
184
|
Object.defineProperty(TimePart.prototype, "boundRange", {
|
|
@@ -182,7 +187,7 @@ var TimePart = /** @class */ (function (_super) {
|
|
|
182
187
|
? this.props.boundRange
|
|
183
188
|
: TimePart.defaultProps.boundRange;
|
|
184
189
|
},
|
|
185
|
-
enumerable:
|
|
190
|
+
enumerable: false,
|
|
186
191
|
configurable: true
|
|
187
192
|
});
|
|
188
193
|
/**
|
|
@@ -111,7 +111,7 @@ export declare class TimePickerWithoutContext extends React.Component<TimePicker
|
|
|
111
111
|
second: PropTypes.Requireable<string>;
|
|
112
112
|
timeZoneName: PropTypes.Requireable<string>;
|
|
113
113
|
}>>;
|
|
114
|
-
formatPlaceholder: PropTypes.Requireable<"
|
|
114
|
+
formatPlaceholder: PropTypes.Requireable<"short" | "narrow" | "wide" | "formatPattern" | PropTypes.InferProps<{
|
|
115
115
|
year: PropTypes.Requireable<string>;
|
|
116
116
|
month: PropTypes.Requireable<string>;
|
|
117
117
|
day: PropTypes.Requireable<string>;
|
|
@@ -145,16 +145,16 @@ export declare class TimePickerWithoutContext extends React.Component<TimePicker
|
|
|
145
145
|
required: PropTypes.Requireable<boolean>;
|
|
146
146
|
validate: PropTypes.Requireable<boolean>;
|
|
147
147
|
valid: PropTypes.Requireable<boolean>;
|
|
148
|
-
size: PropTypes.Requireable<"small" | "medium" | "large">;
|
|
149
|
-
rounded: PropTypes.Requireable<"small" | "medium" | "
|
|
150
|
-
fillMode: PropTypes.Requireable<"
|
|
148
|
+
size: PropTypes.Requireable<"small" | "medium" | "large" | null | undefined>;
|
|
149
|
+
rounded: PropTypes.Requireable<"small" | "medium" | "full" | "large" | null | undefined>;
|
|
150
|
+
fillMode: PropTypes.Requireable<"flat" | "outline" | "solid" | null | undefined>;
|
|
151
151
|
};
|
|
152
152
|
/**
|
|
153
153
|
* @hidden
|
|
154
154
|
*/
|
|
155
155
|
static defaultProps: {
|
|
156
156
|
defaultShow: boolean;
|
|
157
|
-
defaultValue:
|
|
157
|
+
defaultValue: null;
|
|
158
158
|
disabled: boolean;
|
|
159
159
|
format: string;
|
|
160
160
|
max: Date;
|
|
@@ -165,9 +165,9 @@ export declare class TimePickerWithoutContext extends React.Component<TimePicker
|
|
|
165
165
|
required: boolean;
|
|
166
166
|
validityStyles: boolean;
|
|
167
167
|
dateInput: React.ComponentType<DateInputProps<any>>;
|
|
168
|
-
size: "small" | "medium" | "large";
|
|
169
|
-
rounded: "small" | "medium" | "
|
|
170
|
-
fillMode: "
|
|
168
|
+
size: "small" | "medium" | "large" | null | undefined;
|
|
169
|
+
rounded: "small" | "medium" | "full" | "large" | null | undefined;
|
|
170
|
+
fillMode: "flat" | "outline" | "solid" | null | undefined;
|
|
171
171
|
};
|
|
172
172
|
/**
|
|
173
173
|
* @hidden
|
|
@@ -185,43 +185,43 @@ export declare class TimePickerWithoutContext extends React.Component<TimePicker
|
|
|
185
185
|
/**
|
|
186
186
|
* Gets the wrapping element of the TimePicker.
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
get element(): HTMLSpanElement | null;
|
|
189
189
|
/**
|
|
190
190
|
* Gets the DateInput component inside the TimePicker component.
|
|
191
191
|
*/
|
|
192
|
-
|
|
192
|
+
get dateInput(): DateInput | null;
|
|
193
193
|
/**
|
|
194
194
|
* Gets the TimeSelector component inside the TimePicker component.
|
|
195
195
|
*/
|
|
196
|
-
|
|
196
|
+
get timeSelector(): TimeSelector | null;
|
|
197
197
|
/**
|
|
198
198
|
* Gets the value of the TimePicker.
|
|
199
199
|
*/
|
|
200
|
-
|
|
200
|
+
get value(): Date | null;
|
|
201
201
|
/**
|
|
202
202
|
* Gets the popup state of the TimeSelector.
|
|
203
203
|
*/
|
|
204
|
-
|
|
204
|
+
get show(): boolean;
|
|
205
205
|
/**
|
|
206
206
|
* Gets the `name` property of the TimePicker.
|
|
207
207
|
*/
|
|
208
|
-
|
|
208
|
+
get name(): string | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* Represents the validity state into which the TimePicker is set.
|
|
211
211
|
*/
|
|
212
|
-
|
|
212
|
+
get validity(): FormComponentValidity;
|
|
213
213
|
/**
|
|
214
214
|
* @hidden
|
|
215
215
|
*/
|
|
216
|
-
protected
|
|
216
|
+
protected get validityStyles(): boolean;
|
|
217
217
|
/**
|
|
218
218
|
* @hidden
|
|
219
219
|
*/
|
|
220
|
-
protected
|
|
221
|
-
private
|
|
222
|
-
private
|
|
223
|
-
private
|
|
224
|
-
protected
|
|
220
|
+
protected get required(): boolean;
|
|
221
|
+
private get popupSettings();
|
|
222
|
+
private get min();
|
|
223
|
+
private get max();
|
|
224
|
+
protected get dateInputComp(): React.ComponentType<DateInputProps<any>>;
|
|
225
225
|
/**
|
|
226
226
|
* @hidden
|
|
227
227
|
*/
|
|
@@ -239,7 +239,7 @@ export declare class TimePickerWithoutContext extends React.Component<TimePicker
|
|
|
239
239
|
*/
|
|
240
240
|
render(): JSX.Element;
|
|
241
241
|
protected setTimeSelectorRef: (timeSelector: any) => void;
|
|
242
|
-
protected nextValue: (nextProps: TimePickerProps, nextState: TimePickerState) => Date;
|
|
242
|
+
protected nextValue: (nextProps: TimePickerProps, nextState: TimePickerState) => Date | null;
|
|
243
243
|
protected nextShow: (nextProps: TimePickerProps, nextState: TimePickerState) => boolean;
|
|
244
244
|
protected normalizeTime(date: Date): Date;
|
|
245
245
|
protected setShow(show: boolean): void;
|