@progress/kendo-angular-dateinputs 5.2.3 → 5.3.0-dev.202110290637
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-angular-dateinputs.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/calendar/calendar.component.js +37 -2
- package/dist/es/calendar/header.component.js +3 -4
- package/dist/es/calendar/horizontal-view-list.component.js +3 -1
- package/dist/es/calendar/multiview-calendar.component.js +40 -3
- package/dist/es/calendar/services/century-view.service.js +7 -1
- package/dist/es/calendar/services/decade-view.service.js +6 -1
- package/dist/es/calendar/services/month-view.service.js +3 -0
- package/dist/es/calendar/services/year-view.service.js +5 -1
- package/dist/es/daterange/date-range-input.js +3 -3
- package/dist/es/daterange/date-range-popup.component.js +2 -2
- package/dist/es/daterange/date-range-selection.directive.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es2015/calendar/calendar.component.d.ts +18 -0
- package/dist/es2015/calendar/calendar.component.js +38 -2
- package/dist/es2015/calendar/header.component.js +3 -4
- package/dist/es2015/calendar/horizontal-view-list.component.js +3 -1
- package/dist/es2015/calendar/models/view-service.interface.d.ts +1 -0
- package/dist/es2015/calendar/multiview-calendar.component.d.ts +20 -1
- package/dist/es2015/calendar/multiview-calendar.component.js +42 -5
- package/dist/es2015/calendar/services/century-view.service.d.ts +1 -0
- package/dist/es2015/calendar/services/century-view.service.js +7 -1
- package/dist/es2015/calendar/services/decade-view.service.d.ts +1 -0
- package/dist/es2015/calendar/services/decade-view.service.js +6 -1
- package/dist/es2015/calendar/services/month-view.service.d.ts +1 -0
- package/dist/es2015/calendar/services/month-view.service.js +3 -0
- package/dist/es2015/calendar/services/year-view.service.d.ts +1 -0
- package/dist/es2015/calendar/services/year-view.service.js +5 -1
- package/dist/es2015/daterange/date-range-input.js +3 -3
- package/dist/es2015/daterange/date-range-popup.component.js +2 -2
- package/dist/es2015/daterange/date-range-selection.directive.js +1 -1
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/fesm2015/index.js +112 -20
- package/dist/fesm5/index.js +109 -18
- package/dist/npm/calendar/calendar.component.js +37 -2
- package/dist/npm/calendar/header.component.js +3 -4
- package/dist/npm/calendar/horizontal-view-list.component.js +3 -1
- package/dist/npm/calendar/multiview-calendar.component.js +40 -3
- package/dist/npm/calendar/services/century-view.service.js +6 -0
- package/dist/npm/calendar/services/decade-view.service.js +5 -0
- package/dist/npm/calendar/services/month-view.service.js +3 -0
- package/dist/npm/calendar/services/year-view.service.js +4 -0
- package/dist/npm/daterange/date-range-input.js +3 -3
- package/dist/npm/daterange/date-range-popup.component.js +2 -2
- package/dist/npm/daterange/date-range-selection.directive.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-angular-dateinputs.js +1 -1
- package/package.json +5 -5
|
@@ -21,8 +21,8 @@ var DateRangeInput = /** @class */ (function () {
|
|
|
21
21
|
this.renderer = renderer;
|
|
22
22
|
this.zone = zone;
|
|
23
23
|
this.navigateCalendarOnFocus = false;
|
|
24
|
-
this.popupSubscriptions = new rxjs_1.Subscription(
|
|
25
|
-
this.subscriptions = new rxjs_1.Subscription(
|
|
24
|
+
this.popupSubscriptions = new rxjs_1.Subscription();
|
|
25
|
+
this.subscriptions = new rxjs_1.Subscription();
|
|
26
26
|
}
|
|
27
27
|
Object.defineProperty(DateRangeInput.prototype, "isActiveEnd", {
|
|
28
28
|
get: function () {
|
|
@@ -81,7 +81,7 @@ var DateRangeInput = /** @class */ (function () {
|
|
|
81
81
|
};
|
|
82
82
|
DateRangeInput.prototype.unsubscribePopup = function () {
|
|
83
83
|
this.popupSubscriptions.unsubscribe();
|
|
84
|
-
this.popupSubscriptions = new rxjs_1.Subscription(
|
|
84
|
+
this.popupSubscriptions = new rxjs_1.Subscription();
|
|
85
85
|
};
|
|
86
86
|
DateRangeInput.prototype.activate = function () {
|
|
87
87
|
this.dateRangeService.setActiveRangeEnd(this.activeRangeEnd);
|
|
@@ -86,8 +86,8 @@ var DateRangePopupComponent = /** @class */ (function () {
|
|
|
86
86
|
* @hidden
|
|
87
87
|
*/
|
|
88
88
|
this.popupUID = kendo_angular_common_1.guid();
|
|
89
|
-
this.calendarSubscriptions = new rxjs_1.Subscription(
|
|
90
|
-
this.popupSubscriptions = new rxjs_1.Subscription(
|
|
89
|
+
this.calendarSubscriptions = new rxjs_1.Subscription();
|
|
90
|
+
this.popupSubscriptions = new rxjs_1.Subscription();
|
|
91
91
|
this.resolvedPromise = Promise.resolve();
|
|
92
92
|
}
|
|
93
93
|
Object.defineProperty(DateRangePopupComponent.prototype, "calendar", {
|
|
@@ -40,7 +40,7 @@ var DateRangeSelectionDirective = /** @class */ (function () {
|
|
|
40
40
|
* the section on [events]({% slug overview_multiviewcalendar %}#toc-events).
|
|
41
41
|
*/
|
|
42
42
|
this.selectionRangeChange = new core_1.EventEmitter();
|
|
43
|
-
this.calendarSubscriptions = new rxjs_1.Subscription(
|
|
43
|
+
this.calendarSubscriptions = new rxjs_1.Subscription();
|
|
44
44
|
this.dateRangeService = this.dateRangeService || new date_range_service_1.DateRangeService();
|
|
45
45
|
renderer.setAttribute(element.nativeElement, 'aria-multiselectable', 'true');
|
|
46
46
|
}
|
|
@@ -11,7 +11,7 @@ exports.packageMetadata = {
|
|
|
11
11
|
name: '@progress/kendo-angular-dateinputs',
|
|
12
12
|
productName: 'Kendo UI for Angular',
|
|
13
13
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
14
|
-
publishDate:
|
|
14
|
+
publishDate: 1635489253,
|
|
15
15
|
version: '',
|
|
16
16
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
17
17
|
};
|