@progress/kendo-vue-dateinputs 2.6.3 → 2.6.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/dist/cdn/js/kendo-vue-dateinputs.js +1 -1
- package/dist/es/calendar/components/Calendar.js +1 -1
- package/dist/es/daterangepicker/DateRangePicker.d.ts +3 -2
- package/dist/es/daterangepicker/DateRangePicker.js +274 -182
- package/dist/es/main.d.ts +3 -1
- package/dist/es/main.js +2 -20
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/calendar/components/Calendar.js +1 -1
- package/dist/npm/daterangepicker/DateRangePicker.d.ts +3 -2
- package/dist/npm/daterangepicker/DateRangePicker.js +272 -178
- package/dist/npm/main.d.ts +3 -1
- package/dist/npm/main.js +3 -12
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +7 -7
|
@@ -414,7 +414,7 @@ var Calendar = {
|
|
|
414
414
|
rangeWithFocused: function rangeWithFocused(range, focusedDate) {
|
|
415
415
|
return {
|
|
416
416
|
start: range.start,
|
|
417
|
-
end: range.end === null && range.start !== null && this.$data.isActive ? focusedDate : range.end
|
|
417
|
+
end: range.end === null && range.start !== null && this.$data.isActive ? focusedDate.end : range.end
|
|
418
418
|
};
|
|
419
419
|
}
|
|
420
420
|
},
|
|
@@ -22,7 +22,7 @@ export interface DateRangePickerChangeEvent {
|
|
|
22
22
|
target: any;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* Represents the props of the [
|
|
25
|
+
* Represents the props of the [Kendo UI for Vue DateRangePicker component]({% slug overview_daterangepicker %}).
|
|
26
26
|
*/
|
|
27
27
|
export interface DateRangePickerProps extends DateRangePickerSettings {
|
|
28
28
|
/**
|
|
@@ -65,12 +65,12 @@ export interface DateRangePickerState {
|
|
|
65
65
|
_endDateInput: any;
|
|
66
66
|
valueDuringOnChange?: SelectionRange | null;
|
|
67
67
|
showDuringOnChange?: boolean;
|
|
68
|
-
nextTickId: any;
|
|
69
68
|
_popupId: string;
|
|
70
69
|
_startInputId: string;
|
|
71
70
|
_endInputId: string;
|
|
72
71
|
shouldFocusDateInput: boolean;
|
|
73
72
|
shouldFocusCalendar: boolean;
|
|
73
|
+
initialAnimation: boolean;
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* @hidden
|
|
@@ -78,6 +78,7 @@ export interface DateRangePickerState {
|
|
|
78
78
|
export interface DateRangePickerComputed {
|
|
79
79
|
[key: string]: any;
|
|
80
80
|
computedValue: SelectionRange;
|
|
81
|
+
computedShow: boolean;
|
|
81
82
|
}
|
|
82
83
|
/**
|
|
83
84
|
* @hidden
|