@progress/kendo-angular-dateinputs 17.3.0-develop.1 → 18.0.0-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.
|
@@ -357,6 +357,7 @@ export declare class DateRangePopupComponent implements OnInit, OnDestroy {
|
|
|
357
357
|
private toggleDateRange;
|
|
358
358
|
private toggleActionSheet;
|
|
359
359
|
private updateActionSheetAdaptiveAppearance;
|
|
360
|
+
private addCalendarSubscription;
|
|
360
361
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePopupComponent, [null, null, null, null, null, null, { optional: true; }, null]>;
|
|
361
362
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePopupComponent, "kendo-daterange-popup", ["kendo-daterange-popup"], { "showCalendarHeader": { "alias": "showCalendarHeader"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; "topView": { "alias": "topView"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "allowReverse": { "alias": "allowReverse"; "required": false; }; "animateNavigation": { "alias": "animateNavigation"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "views": { "alias": "views"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; "anchor": { "alias": "anchor"; "required": false; }; "anchorAlign": { "alias": "anchorAlign"; "required": false; }; "showViewHeader": { "alias": "showViewHeader"; "required": false; }; "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "collision": { "alias": "collision"; "required": false; }; "popupAlign": { "alias": "popupAlign"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "open": "open"; "close": "close"; "onBlur": "blur"; "onFocus": "focus"; "cancel": "cancel"; }, ["contentTemplate", "contentCalendar"], never, true, never>;
|
|
362
363
|
}
|
|
@@ -421,13 +421,9 @@ export class DateRangePopupComponent {
|
|
|
421
421
|
this.show = true;
|
|
422
422
|
this.cdr.markForCheck();
|
|
423
423
|
this.zone.runOutsideAngular(() => {
|
|
424
|
-
this.activateSubscription = merge(this.contentCalendar.changes, this.viewCalendar.changes)
|
|
425
|
-
.pipe(filter(changes => changes && changes.first), map(changes => changes.first))
|
|
426
|
-
.subscribe((calendar) => setTimeout(() => {
|
|
424
|
+
this.activateSubscription = merge(this.contentCalendar.changes, this.viewCalendar.changes).pipe(filter(changes => changes && changes.first), map(changes => changes.first)).subscribe((calendar) => setTimeout(() => {
|
|
427
425
|
calendar.focus();
|
|
428
|
-
this.
|
|
429
|
-
this.dateRangeService.setActiveDescendent(id);
|
|
430
|
-
}));
|
|
426
|
+
this.addCalendarSubscription(calendar);
|
|
431
427
|
}));
|
|
432
428
|
});
|
|
433
429
|
}
|
|
@@ -654,6 +650,11 @@ export class DateRangePopupComponent {
|
|
|
654
650
|
this.renderer.setStyle(animationContainer, 'bottom', '0px');
|
|
655
651
|
}
|
|
656
652
|
}
|
|
653
|
+
addCalendarSubscription = (calendar) => {
|
|
654
|
+
this.calendarSubscriptions.add(calendar.viewList.focusedCellChange.subscribe((id) => {
|
|
655
|
+
this.dateRangeService.setActiveDescendent(id);
|
|
656
|
+
}));
|
|
657
|
+
};
|
|
657
658
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateRangePopupComponent, deps: [{ token: i1.PopupService }, { token: i2.DateRangeService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i3.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }, { token: i4.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
658
659
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DateRangePopupComponent, isStandalone: true, selector: "kendo-daterange-popup", inputs: { showCalendarHeader: "showCalendarHeader", focusedDate: "focusedDate", disabledDates: "disabledDates", activeView: "activeView", bottomView: "bottomView", topView: "topView", min: "min", max: "max", allowReverse: "allowReverse", animateNavigation: "animateNavigation", disabled: "disabled", views: "views", weekNumber: "weekNumber", animate: "animate", anchor: "anchor", anchorAlign: "anchorAlign", showViewHeader: "showViewHeader", showOtherMonthDays: "showOtherMonthDays", appendTo: "appendTo", collision: "collision", popupAlign: "popupAlign", margin: "margin", adaptiveMode: "adaptiveMode", title: "title", subtitle: "subtitle", size: "size" }, outputs: { open: "open", close: "close", onBlur: "blur", onFocus: "focus", cancel: "cancel" }, providers: [
|
|
659
660
|
LocalizationService,
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dateinputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '
|
|
12
|
+
publishDate: 1736249808,
|
|
13
|
+
version: '18.0.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -35,8 +35,8 @@ const packageMetadata = {
|
|
|
35
35
|
name: '@progress/kendo-angular-dateinputs',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
38
|
-
publishDate:
|
|
39
|
-
version: '
|
|
38
|
+
publishDate: 1736249808,
|
|
39
|
+
version: '18.0.0-develop.1',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -18755,13 +18755,9 @@ class DateRangePopupComponent {
|
|
|
18755
18755
|
this.show = true;
|
|
18756
18756
|
this.cdr.markForCheck();
|
|
18757
18757
|
this.zone.runOutsideAngular(() => {
|
|
18758
|
-
this.activateSubscription = merge(this.contentCalendar.changes, this.viewCalendar.changes)
|
|
18759
|
-
.pipe(filter(changes => changes && changes.first), map(changes => changes.first))
|
|
18760
|
-
.subscribe((calendar) => setTimeout(() => {
|
|
18758
|
+
this.activateSubscription = merge(this.contentCalendar.changes, this.viewCalendar.changes).pipe(filter(changes => changes && changes.first), map(changes => changes.first)).subscribe((calendar) => setTimeout(() => {
|
|
18761
18759
|
calendar.focus();
|
|
18762
|
-
this.
|
|
18763
|
-
this.dateRangeService.setActiveDescendent(id);
|
|
18764
|
-
}));
|
|
18760
|
+
this.addCalendarSubscription(calendar);
|
|
18765
18761
|
}));
|
|
18766
18762
|
});
|
|
18767
18763
|
}
|
|
@@ -18988,6 +18984,11 @@ class DateRangePopupComponent {
|
|
|
18988
18984
|
this.renderer.setStyle(animationContainer, 'bottom', '0px');
|
|
18989
18985
|
}
|
|
18990
18986
|
}
|
|
18987
|
+
addCalendarSubscription = (calendar) => {
|
|
18988
|
+
this.calendarSubscriptions.add(calendar.viewList.focusedCellChange.subscribe((id) => {
|
|
18989
|
+
this.dateRangeService.setActiveDescendent(id);
|
|
18990
|
+
}));
|
|
18991
|
+
};
|
|
18991
18992
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateRangePopupComponent, deps: [{ token: i1$2.PopupService }, { token: DateRangeService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }, { token: i6.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
18992
18993
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DateRangePopupComponent, isStandalone: true, selector: "kendo-daterange-popup", inputs: { showCalendarHeader: "showCalendarHeader", focusedDate: "focusedDate", disabledDates: "disabledDates", activeView: "activeView", bottomView: "bottomView", topView: "topView", min: "min", max: "max", allowReverse: "allowReverse", animateNavigation: "animateNavigation", disabled: "disabled", views: "views", weekNumber: "weekNumber", animate: "animate", anchor: "anchor", anchorAlign: "anchorAlign", showViewHeader: "showViewHeader", showOtherMonthDays: "showOtherMonthDays", appendTo: "appendTo", collision: "collision", popupAlign: "popupAlign", margin: "margin", adaptiveMode: "adaptiveMode", title: "title", subtitle: "subtitle", size: "size" }, outputs: { open: "open", close: "close", onBlur: "blur", onFocus: "focus", cancel: "cancel" }, providers: [
|
|
18993
18994
|
LocalizationService,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.0.0-develop.1",
|
|
4
4
|
"description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"@angular/forms": "16 - 19",
|
|
35
35
|
"@angular/platform-browser": "16 - 19",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "
|
|
38
|
-
"@progress/kendo-angular-common": "
|
|
39
|
-
"@progress/kendo-angular-utils": "
|
|
40
|
-
"@progress/kendo-angular-intl": "
|
|
41
|
-
"@progress/kendo-angular-l10n": "
|
|
42
|
-
"@progress/kendo-angular-icons": "
|
|
43
|
-
"@progress/kendo-angular-popup": "
|
|
44
|
-
"@progress/kendo-angular-navigation": "
|
|
37
|
+
"@progress/kendo-angular-buttons": "18.0.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-common": "18.0.0-develop.1",
|
|
39
|
+
"@progress/kendo-angular-utils": "18.0.0-develop.1",
|
|
40
|
+
"@progress/kendo-angular-intl": "18.0.0-develop.1",
|
|
41
|
+
"@progress/kendo-angular-l10n": "18.0.0-develop.1",
|
|
42
|
+
"@progress/kendo-angular-icons": "18.0.0-develop.1",
|
|
43
|
+
"@progress/kendo-angular-popup": "18.0.0-develop.1",
|
|
44
|
+
"@progress/kendo-angular-navigation": "18.0.0-develop.1",
|
|
45
45
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.3.1",
|
|
49
|
-
"@progress/kendo-angular-schematics": "
|
|
49
|
+
"@progress/kendo-angular-schematics": "18.0.0-develop.1",
|
|
50
50
|
"@progress/kendo-common": "^1.0.1",
|
|
51
51
|
"@progress/kendo-date-math": "^1.1.0",
|
|
52
52
|
"@progress/kendo-dateinputs-common": "^0.4.1"
|