@progress/kendo-angular-scheduler 23.3.0-develop.11 → 23.3.0-develop.12
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/fesm2022/progress-kendo-angular-scheduler.mjs +36 -30
- package/package-metadata.mjs +2 -2
- package/package.json +15 -15
- package/schematics/ngAdd/index.js +3 -3
- package/views/common/base-view.d.ts +3 -3
- package/views/day-time/day-time-view.component.d.ts +2 -2
- package/views/month/month-view-renderer.component.d.ts +2 -2
- package/views/multi-day/multi-day-view-renderer.component.d.ts +2 -2
- package/views/timeline/timeline-multi-day-view.component.d.ts +2 -2
- package/views/year/year-view-internal.component.d.ts +2 -2
|
@@ -43,8 +43,8 @@ const packageMetadata = {
|
|
|
43
43
|
productName: 'Kendo UI for Angular',
|
|
44
44
|
productCode: 'KENDOUIANGULAR',
|
|
45
45
|
productCodes: ['KENDOUIANGULAR'],
|
|
46
|
-
publishDate:
|
|
47
|
-
version: '23.3.0-develop.
|
|
46
|
+
publishDate: 1774364451,
|
|
47
|
+
version: '23.3.0-develop.12',
|
|
48
48
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
49
49
|
};
|
|
50
50
|
|
|
@@ -12624,7 +12624,7 @@ class BaseView {
|
|
|
12624
12624
|
pdfService;
|
|
12625
12625
|
localization;
|
|
12626
12626
|
cdr;
|
|
12627
|
-
|
|
12627
|
+
scrollbarService;
|
|
12628
12628
|
eventTemplate;
|
|
12629
12629
|
groupHeaderTemplate;
|
|
12630
12630
|
selectedDateFormat;
|
|
@@ -12705,7 +12705,7 @@ class BaseView {
|
|
|
12705
12705
|
autoHeight = false;
|
|
12706
12706
|
rtl = false;
|
|
12707
12707
|
isEventTarget = false;
|
|
12708
|
-
constructor(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, cdr,
|
|
12708
|
+
constructor(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, cdr, scrollbarService) {
|
|
12709
12709
|
this.viewContext = viewContext;
|
|
12710
12710
|
this.viewState = viewState;
|
|
12711
12711
|
this.intl = intl;
|
|
@@ -12716,7 +12716,7 @@ class BaseView {
|
|
|
12716
12716
|
this.pdfService = pdfService;
|
|
12717
12717
|
this.localization = localization;
|
|
12718
12718
|
this.cdr = cdr;
|
|
12719
|
-
this.
|
|
12719
|
+
this.scrollbarService = scrollbarService;
|
|
12720
12720
|
this.setSlotClass = this.setSlotClass.bind(this);
|
|
12721
12721
|
this.setHintClass = this.setHintClass.bind(this);
|
|
12722
12722
|
this.weekStart = intl.firstDay();
|
|
@@ -13496,11 +13496,17 @@ class BaseView {
|
|
|
13496
13496
|
if (this.timesTable) {
|
|
13497
13497
|
this.renderer.setStyle(this.timesTable.nativeElement, 'height', `${this.contentTable.nativeElement.offsetHeight}px`);
|
|
13498
13498
|
}
|
|
13499
|
-
// Need to explicitly set 'padding-inline-xxx' to 0px when the Scheduler has no height set
|
|
13499
|
+
// Need to explicitly set 'padding-inline-xxx' to 0px when the Scheduler has no height set.
|
|
13500
|
+
// Always clear the opposite side to avoid stale inline styles when RTL/LTR toggles at runtime.
|
|
13501
|
+
const activePadding = this.localization.rtl ? 'padding-inline-start' : 'padding-inline-end';
|
|
13502
|
+
const oppositePadding = this.localization.rtl ? 'padding-inline-end' : 'padding-inline-start';
|
|
13503
|
+
this.renderer.removeStyle(this.header.nativeElement, oppositePadding);
|
|
13500
13504
|
if (!hasScrollbar(this.content.nativeElement, 'vertical')) {
|
|
13501
|
-
this.renderer.setStyle(this.header.nativeElement,
|
|
13505
|
+
this.renderer.setStyle(this.header.nativeElement, activePadding, '0');
|
|
13506
|
+
}
|
|
13507
|
+
else {
|
|
13508
|
+
this.renderer.removeStyle(this.header.nativeElement, activePadding);
|
|
13502
13509
|
}
|
|
13503
|
-
this.renderer.removeStyle(this.header.nativeElement, this.localization.rtl ? 'padding-inline-end' : 'padding-inline-start');
|
|
13504
13510
|
if (this.times) {
|
|
13505
13511
|
const times = this.times.nativeElement;
|
|
13506
13512
|
this.timesHeader.nativeElement.style.width = `${times.offsetWidth}px`;
|
|
@@ -13636,12 +13642,12 @@ class BaseView {
|
|
|
13636
13642
|
this.zone.onStable.pipe(take(1)).subscribe(() => this.updateView());
|
|
13637
13643
|
}
|
|
13638
13644
|
}
|
|
13639
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BaseView, deps: [{ token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: BaseSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i7.
|
|
13645
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BaseView, deps: [{ token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: BaseSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i7.ScrollbarService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13640
13646
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: BaseView, isStandalone: true, inputs: { eventTemplate: "eventTemplate", groupHeaderTemplate: "groupHeaderTemplate", selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", eventHeight: "eventHeight", showToolbar: "showToolbar", showFooter: "showFooter", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", weekStart: "weekStart" }, viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }, { propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "contentTable", first: true, predicate: ["contentTable"], descendants: true }, { propertyName: "times", first: true, predicate: ["times"], descendants: true }, { propertyName: "timesHeader", first: true, predicate: ["timesHeader"], descendants: true }, { propertyName: "timesTable", first: true, predicate: ["timesTable"], descendants: true }, { propertyName: "headerWrap", first: true, predicate: ["headerWrap"], descendants: true }, { propertyName: "hintContainer", first: true, predicate: ["hintContainer"], descendants: true }], usesOnChanges: true, ngImport: i0 });
|
|
13641
13647
|
}
|
|
13642
13648
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BaseView, decorators: [{
|
|
13643
13649
|
type: Directive
|
|
13644
|
-
}], ctorParameters: () => [{ type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: BaseSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i7.
|
|
13650
|
+
}], ctorParameters: () => [{ type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: BaseSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i7.ScrollbarService }], propDecorators: { eventTemplate: [{
|
|
13645
13651
|
type: Input
|
|
13646
13652
|
}], groupHeaderTemplate: [{
|
|
13647
13653
|
type: Input
|
|
@@ -14440,8 +14446,8 @@ class MonthViewRendererComponent extends BaseView {
|
|
|
14440
14446
|
}
|
|
14441
14447
|
ongoingEventsTimeout;
|
|
14442
14448
|
schedulerMonthDaySlotTemplate;
|
|
14443
|
-
constructor(viewContext, viewState, intl, slotService, zone, element, renderer, pdfService, localization, changeDetector,
|
|
14444
|
-
super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector,
|
|
14449
|
+
constructor(viewContext, viewState, intl, slotService, zone, element, renderer, pdfService, localization, changeDetector, scrollbarService) {
|
|
14450
|
+
super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector, scrollbarService);
|
|
14445
14451
|
this.updateOngoingEvents = this.updateOngoingEvents.bind(this);
|
|
14446
14452
|
}
|
|
14447
14453
|
ngOnChanges(changes) {
|
|
@@ -14651,7 +14657,7 @@ class MonthViewRendererComponent extends BaseView {
|
|
|
14651
14657
|
}
|
|
14652
14658
|
return weeks;
|
|
14653
14659
|
}
|
|
14654
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MonthViewRendererComponent, deps: [{ token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: MonthSlotService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i7.
|
|
14660
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MonthViewRendererComponent, deps: [{ token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: MonthSlotService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i7.ScrollbarService }], target: i0.ɵɵFactoryTarget.Component });
|
|
14655
14661
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: MonthViewRendererComponent, isStandalone: true, selector: "month-view", inputs: { hiddenDays: "hiddenDays", monthDaySlotTemplate: "monthDaySlotTemplate", highlightOngoingEvents: "highlightOngoingEvents", type: "type", eventsPerDay: "eventsPerDay", adaptiveSlotHeight: "adaptiveSlotHeight", numberOfWeeks: "numberOfWeeks", newRange: "newRange", dateRangeFn: "dateRangeFn" }, outputs: { moreEventsClick: "moreEventsClick" }, providers: [
|
|
14656
14662
|
MonthSlotService
|
|
14657
14663
|
], viewQueries: [{ propertyName: "eventElements", predicate: MonthViewItemComponent, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -15031,7 +15037,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15031
15037
|
standalone: true,
|
|
15032
15038
|
imports: [NgTemplateOutlet, NgClass, MonthSlotComponent, MonthViewItemComponent, NgStyle, FocusableDirective, HintContainerComponent, ResizeHintComponent, RepeatPipe, ResourceIteratorPipe, DatePipe, AsyncPipe]
|
|
15033
15039
|
}]
|
|
15034
|
-
}], ctorParameters: () => [{ type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: MonthSlotService }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i7.
|
|
15040
|
+
}], ctorParameters: () => [{ type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: MonthSlotService }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i7.ScrollbarService }], propDecorators: { hiddenDays: [{
|
|
15035
15041
|
type: Input
|
|
15036
15042
|
}], monthDaySlotTemplate: [{
|
|
15037
15043
|
type: Input
|
|
@@ -16781,8 +16787,8 @@ class DayTimeViewComponent extends BaseView {
|
|
|
16781
16787
|
verticalTime = true;
|
|
16782
16788
|
initialUpdate = true;
|
|
16783
16789
|
dates = [];
|
|
16784
|
-
constructor(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization,
|
|
16785
|
-
super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector,
|
|
16790
|
+
constructor(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, scrollbarService) {
|
|
16791
|
+
super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector, scrollbarService);
|
|
16786
16792
|
this.changeDetector = changeDetector;
|
|
16787
16793
|
this.updateCurrentTime = this.updateCurrentTime.bind(this);
|
|
16788
16794
|
this.toggleOngoingClass = this.toggleOngoingClass.bind(this);
|
|
@@ -17070,13 +17076,13 @@ class DayTimeViewComponent extends BaseView {
|
|
|
17070
17076
|
}
|
|
17071
17077
|
return fields;
|
|
17072
17078
|
}
|
|
17073
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DayTimeViewComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i7.
|
|
17079
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DayTimeViewComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i1$1.LocalizationService }, { token: i7.ScrollbarService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17074
17080
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DayTimeViewComponent, isStandalone: true, selector: "kendo-day-time-view", inputs: { timeSlotTemplate: "timeSlotTemplate", dateHeaderTemplate: "dateHeaderTemplate", majorTimeHeaderTemplate: "majorTimeHeaderTemplate", minorTimeHeaderTemplate: "minorTimeHeaderTemplate", numberOfDays: "numberOfDays", scrollTime: "scrollTime", startTime: "startTime", endTime: "endTime", workDayStart: "workDayStart", workDayEnd: "workDayEnd", workWeekStart: "workWeekStart", workWeekEnd: "workWeekEnd", slotDuration: "slotDuration", slotDivisions: "slotDivisions", showWorkHours: "showWorkHours", getStartDate: "getStartDate", getEndDate: "getEndDate", getNextDate: "getNextDate", currentTimeMarker: "currentTimeMarker", highlightOngoingEvents: "highlightOngoingEvents" }, viewQueries: [{ propertyName: "currentTimeElements", predicate: ["currentTimeMarker"], descendants: true }, { propertyName: "eventElements", predicate: DayTimeViewItemComponent, descendants: true }, { propertyName: "currentTimeArrows", predicate: ["currentTimeArrow"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
17075
17081
|
}
|
|
17076
17082
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DayTimeViewComponent, decorators: [{
|
|
17077
17083
|
type: Component,
|
|
17078
17084
|
args: [{ selector: 'kendo-day-time-view', template: '' }]
|
|
17079
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: DayTimeSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i7.
|
|
17085
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: DayTimeSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i1$1.LocalizationService }, { type: i7.ScrollbarService }], propDecorators: { timeSlotTemplate: [{
|
|
17080
17086
|
type: Input
|
|
17081
17087
|
}], dateHeaderTemplate: [{
|
|
17082
17088
|
type: Input
|
|
@@ -17284,8 +17290,8 @@ class MultiDayViewRendererComponent extends DayTimeViewComponent {
|
|
|
17284
17290
|
schedulerAllDaySlotTemplate;
|
|
17285
17291
|
schedulerAllDayEventTemplate;
|
|
17286
17292
|
dragContainers;
|
|
17287
|
-
constructor(localization, viewContext, viewState, intl, slotService, zone, renderer, element, changeDetector, pdfService,
|
|
17288
|
-
super(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization,
|
|
17293
|
+
constructor(localization, viewContext, viewState, intl, slotService, zone, renderer, element, changeDetector, pdfService, scrollbarService) {
|
|
17294
|
+
super(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, scrollbarService);
|
|
17289
17295
|
}
|
|
17290
17296
|
optionsChange(changes) {
|
|
17291
17297
|
this.schedulerAllDaySlotTemplate = changes.allDaySlotTemplate;
|
|
@@ -17478,7 +17484,7 @@ class MultiDayViewRendererComponent extends DayTimeViewComponent {
|
|
|
17478
17484
|
}
|
|
17479
17485
|
return 0;
|
|
17480
17486
|
}
|
|
17481
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MultiDayViewRendererComponent, deps: [{ token: i1$1.LocalizationService }, { token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: PDFService }, { token: i7.
|
|
17487
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MultiDayViewRendererComponent, deps: [{ token: i1$1.LocalizationService }, { token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: PDFService }, { token: i7.ScrollbarService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17482
17488
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: MultiDayViewRendererComponent, isStandalone: true, selector: "multi-day-view", inputs: { hiddenDays: "hiddenDays", allDaySlot: "allDaySlot", name: "name", slotFill: "slotFill", allDaySlotTemplate: "allDaySlotTemplate", allDayEventTemplate: "allDayEventTemplate" }, providers: [
|
|
17483
17489
|
DayTimeSlotService
|
|
17484
17490
|
], viewQueries: [{ propertyName: "headerHintContainer", first: true, predicate: ["headerHintContainer"], descendants: true }, { propertyName: "dayCells", predicate: ["allDayCell"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -18202,7 +18208,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
18202
18208
|
standalone: true,
|
|
18203
18209
|
imports: [NgClass, NgTemplateOutlet, DaySlotDirective, DayTimeViewItemComponent, NgStyle, FocusableDirective, HintContainerComponent, ResizeHintComponent, TimeSlotDirective, ResourceIteratorPipe, DatePipe, AsyncPipe]
|
|
18204
18210
|
}]
|
|
18205
|
-
}], ctorParameters: () => [{ type: i1$1.LocalizationService }, { type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: DayTimeSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: PDFService }, { type: i7.
|
|
18211
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }, { type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: DayTimeSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: PDFService }, { type: i7.ScrollbarService }], propDecorators: { hiddenDays: [{
|
|
18206
18212
|
type: Input
|
|
18207
18213
|
}], allDaySlot: [{
|
|
18208
18214
|
type: Input
|
|
@@ -18994,8 +19000,8 @@ class TimelineMultiDayViewComponent extends DayTimeViewComponent {
|
|
|
18994
19000
|
}
|
|
18995
19001
|
verticalTime = false;
|
|
18996
19002
|
contentWidth;
|
|
18997
|
-
constructor(localization, changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService,
|
|
18998
|
-
super(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization,
|
|
19003
|
+
constructor(localization, changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, scrollbarService) {
|
|
19004
|
+
super(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, scrollbarService);
|
|
18999
19005
|
}
|
|
19000
19006
|
ngOnChanges(changes) {
|
|
19001
19007
|
if (changes.columnWidth) {
|
|
@@ -19093,7 +19099,7 @@ class TimelineMultiDayViewComponent extends DayTimeViewComponent {
|
|
|
19093
19099
|
currentTimeArrowOffset() {
|
|
19094
19100
|
return this.headerWrap.nativeElement.querySelector('tr:last-child').offsetTop;
|
|
19095
19101
|
}
|
|
19096
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TimelineMultiDayViewComponent, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i7.
|
|
19102
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TimelineMultiDayViewComponent, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }, { token: i4.IntlService }, { token: DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PDFService }, { token: i7.ScrollbarService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19097
19103
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: TimelineMultiDayViewComponent, isStandalone: true, selector: "timeline-multi-day-view", inputs: { hiddenDays: "hiddenDays", name: "name", columnWidth: "columnWidth", viewName: "viewName" }, providers: [
|
|
19098
19104
|
DayTimeSlotService
|
|
19099
19105
|
], viewQueries: [{ propertyName: "headerTable", first: true, predicate: ["headerTable"], descendants: true }, { propertyName: "verticalResourceRows", predicate: ["verticalResourceRows"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -19577,7 +19583,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19577
19583
|
standalone: true,
|
|
19578
19584
|
imports: [NgClass, NgTemplateOutlet, NgStyle, TimeSlotDirective, DayTimeViewItemComponent, FocusableDirective, HintContainerComponent, ResizeHintComponent, ResourceIteratorPipe, DatePipe, AsyncPipe, SortPipe]
|
|
19579
19585
|
}]
|
|
19580
|
-
}], ctorParameters: () => [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: DayTimeSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i7.
|
|
19586
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }, { type: i4.IntlService }, { type: DayTimeSlotService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: PDFService }, { type: i7.ScrollbarService }], propDecorators: { hiddenDays: [{
|
|
19581
19587
|
type: Input
|
|
19582
19588
|
}], name: [{
|
|
19583
19589
|
type: Input
|
|
@@ -20213,8 +20219,8 @@ class YearViewInternalComponent extends BaseView {
|
|
|
20213
20219
|
currentTd;
|
|
20214
20220
|
tds = [];
|
|
20215
20221
|
isTooltipClicked = false;
|
|
20216
|
-
constructor(localization, focusService, intl, viewContext, viewState, zone, renderer, pdfService, element, slotService,
|
|
20217
|
-
super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector,
|
|
20222
|
+
constructor(localization, focusService, intl, viewContext, viewState, zone, renderer, pdfService, element, slotService, scrollbarService, changeDetector) {
|
|
20223
|
+
super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector, scrollbarService);
|
|
20218
20224
|
this.localization = localization;
|
|
20219
20225
|
this.focusService = focusService;
|
|
20220
20226
|
this.intl = intl;
|
|
@@ -20429,7 +20435,7 @@ class YearViewInternalComponent extends BaseView {
|
|
|
20429
20435
|
}
|
|
20430
20436
|
return [];
|
|
20431
20437
|
}
|
|
20432
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: YearViewInternalComponent, deps: [{ token: i1$1.LocalizationService }, { token: FocusService }, { token: i4.IntlService }, { token: ViewContextService }, { token: ViewStateService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: PDFService }, { token: i0.ElementRef }, { token: MonthSlotService }, { token: i7.
|
|
20438
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: YearViewInternalComponent, deps: [{ token: i1$1.LocalizationService }, { token: FocusService }, { token: i4.IntlService }, { token: ViewContextService }, { token: ViewStateService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: PDFService }, { token: i0.ElementRef }, { token: MonthSlotService }, { token: i7.ScrollbarService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
20433
20439
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: YearViewInternalComponent, isStandalone: true, selector: "year-view-internal", inputs: { newRange: "newRange", dateRangeFn: "dateRangeFn" }, providers: [MonthSlotService], viewQueries: [{ propertyName: "calendar", first: true, predicate: MultiViewCalendarComponent, descendants: true }, { propertyName: "tooltip", first: true, predicate: TooltipDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
20434
20440
|
<div #content class="k-scheduler-layout k-scheduler-layout-flex k-scheduler-yearview">
|
|
20435
20441
|
<div class="k-scheduler-body">
|
|
@@ -20603,7 +20609,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
20603
20609
|
standalone: true,
|
|
20604
20610
|
imports: [MultiViewCalendarComponent, TooltipDirective, MonthCellTemplateDirective, NgClass, NgStyle, IconWrapperComponent]
|
|
20605
20611
|
}]
|
|
20606
|
-
}], ctorParameters: () => [{ type: i1$1.LocalizationService }, { type: FocusService }, { type: i4.IntlService }, { type: ViewContextService }, { type: ViewStateService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: PDFService }, { type: i0.ElementRef }, { type: MonthSlotService }, { type: i7.
|
|
20612
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }, { type: FocusService }, { type: i4.IntlService }, { type: ViewContextService }, { type: ViewStateService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: PDFService }, { type: i0.ElementRef }, { type: MonthSlotService }, { type: i7.ScrollbarService }, { type: i0.ChangeDetectorRef }], propDecorators: { newRange: [{
|
|
20607
20613
|
type: Input
|
|
20608
20614
|
}], dateRangeFn: [{
|
|
20609
20615
|
type: Input
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.3.0-develop.
|
|
10
|
+
"publishDate": 1774364451,
|
|
11
|
+
"version": "23.3.0-develop.12",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "23.3.0-develop.
|
|
3
|
+
"version": "23.3.0-develop.12",
|
|
4
4
|
"description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1774364451,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -32,23 +32,23 @@
|
|
|
32
32
|
"@progress/kendo-data-query": "^1.7.3",
|
|
33
33
|
"@progress/kendo-drawing": "^1.24.1",
|
|
34
34
|
"@progress/kendo-licensing": "^1.10.0",
|
|
35
|
-
"@progress/kendo-angular-tooltip": "23.3.0-develop.
|
|
36
|
-
"@progress/kendo-angular-buttons": "23.3.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "23.3.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "23.3.0-develop.
|
|
39
|
-
"@progress/kendo-angular-dialog": "23.3.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "23.3.0-develop.
|
|
41
|
-
"@progress/kendo-angular-icons": "23.3.0-develop.
|
|
42
|
-
"@progress/kendo-angular-inputs": "23.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-intl": "23.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-l10n": "23.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-label": "23.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-popup": "23.3.0-develop.
|
|
35
|
+
"@progress/kendo-angular-tooltip": "23.3.0-develop.12",
|
|
36
|
+
"@progress/kendo-angular-buttons": "23.3.0-develop.12",
|
|
37
|
+
"@progress/kendo-angular-common": "23.3.0-develop.12",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "23.3.0-develop.12",
|
|
39
|
+
"@progress/kendo-angular-dialog": "23.3.0-develop.12",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "23.3.0-develop.12",
|
|
41
|
+
"@progress/kendo-angular-icons": "23.3.0-develop.12",
|
|
42
|
+
"@progress/kendo-angular-inputs": "23.3.0-develop.12",
|
|
43
|
+
"@progress/kendo-angular-intl": "23.3.0-develop.12",
|
|
44
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.12",
|
|
45
|
+
"@progress/kendo-angular-label": "23.3.0-develop.12",
|
|
46
|
+
"@progress/kendo-angular-popup": "23.3.0-develop.12",
|
|
47
47
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.3.1",
|
|
51
|
-
"@progress/kendo-angular-schematics": "23.3.0-develop.
|
|
51
|
+
"@progress/kendo-angular-schematics": "23.3.0-develop.12",
|
|
52
52
|
"@progress/kendo-date-math": "^1.3.2",
|
|
53
53
|
"@progress/kendo-draggable": "^3.0.2",
|
|
54
54
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -9,10 +9,10 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '23.3.0-develop.
|
|
13
|
-
'@progress/kendo-angular-navigation': '23.3.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.3.0-develop.12',
|
|
13
|
+
'@progress/kendo-angular-navigation': '23.3.0-develop.12',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '23.3.0-develop.
|
|
15
|
+
'@progress/kendo-angular-dialog': '23.3.0-develop.12',
|
|
16
16
|
// peer dependency of kendo-angular-icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
18
18
|
} });
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { OnInit, AfterViewInit, OnDestroy, OnChanges, NgZone, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef } from '@angular/core';
|
|
6
|
-
import {
|
|
6
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
7
7
|
import { IntlService } from '@progress/kendo-angular-intl';
|
|
8
8
|
import { Day } from '@progress/kendo-date-math';
|
|
9
9
|
import { Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
@@ -30,7 +30,7 @@ export declare abstract class BaseView implements OnInit, OnChanges, AfterViewIn
|
|
|
30
30
|
protected pdfService: PDFService;
|
|
31
31
|
protected localization: LocalizationService;
|
|
32
32
|
protected cdr: ChangeDetectorRef;
|
|
33
|
-
protected
|
|
33
|
+
protected scrollbarService: ScrollbarService;
|
|
34
34
|
eventTemplate: TemplateRef<any>;
|
|
35
35
|
groupHeaderTemplate: TemplateRef<any>;
|
|
36
36
|
selectedDateFormat: string;
|
|
@@ -107,7 +107,7 @@ export declare abstract class BaseView implements OnInit, OnChanges, AfterViewIn
|
|
|
107
107
|
protected autoHeight: boolean;
|
|
108
108
|
protected rtl: boolean;
|
|
109
109
|
private isEventTarget;
|
|
110
|
-
constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: BaseSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, cdr: ChangeDetectorRef,
|
|
110
|
+
constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: BaseSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, cdr: ChangeDetectorRef, scrollbarService: ScrollbarService);
|
|
111
111
|
/**
|
|
112
112
|
* Generates a list of space-separated IDs based on a collection of items to associate scrollable containers
|
|
113
113
|
* with the respective tasks through the aria-owns attribute for a11y compliance.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { OnChanges, TemplateRef, QueryList, ElementRef, ChangeDetectorRef, NgZone, Renderer2 } from '@angular/core';
|
|
6
|
-
import {
|
|
6
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
7
7
|
import { ZonedDate } from '@progress/kendo-date-math';
|
|
8
8
|
import { DateRange, NavigationAction } from '../../types';
|
|
9
9
|
import { DayTimeSlotService } from './day-time-slot.service';
|
|
@@ -65,7 +65,7 @@ export declare abstract class DayTimeViewComponent extends BaseView implements O
|
|
|
65
65
|
protected verticalTime: boolean;
|
|
66
66
|
protected initialUpdate: boolean;
|
|
67
67
|
private dates;
|
|
68
|
-
constructor(changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService,
|
|
68
|
+
constructor(changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, scrollbarService: ScrollbarService);
|
|
69
69
|
ngOnChanges(changes: any): void;
|
|
70
70
|
ngOnDestroy(): void;
|
|
71
71
|
verticalItem(leafIndex: number, resourceIndex: number): any;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { OnChanges, NgZone, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef, QueryList, EventEmitter } from '@angular/core';
|
|
6
6
|
import { IntlService } from '@progress/kendo-angular-intl';
|
|
7
|
-
import {
|
|
7
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
8
8
|
import { Day } from '@progress/kendo-date-math';
|
|
9
9
|
import { DateRange, NavigationAction, ViewItem } from '../../types';
|
|
10
10
|
import { ViewContextService } from '../view-context.service';
|
|
@@ -45,7 +45,7 @@ export declare class MonthViewRendererComponent extends BaseView implements OnCh
|
|
|
45
45
|
get monthDaySlotTemplateRef(): TemplateRef<any>;
|
|
46
46
|
protected ongoingEventsTimeout: any;
|
|
47
47
|
private schedulerMonthDaySlotTemplate;
|
|
48
|
-
constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: MonthSlotService, zone: NgZone, element: ElementRef, renderer: Renderer2, pdfService: PDFService, localization: LocalizationService, changeDetector: ChangeDetectorRef,
|
|
48
|
+
constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: MonthSlotService, zone: NgZone, element: ElementRef, renderer: Renderer2, pdfService: PDFService, localization: LocalizationService, changeDetector: ChangeDetectorRef, scrollbarService: ScrollbarService);
|
|
49
49
|
ngOnChanges(changes: any): void;
|
|
50
50
|
ngOnInit(): void;
|
|
51
51
|
ngAfterViewInit(): void;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { NgZone, QueryList, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { IntlService } from '@progress/kendo-angular-intl';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
|
-
import {
|
|
8
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
9
9
|
import { Subject } from 'rxjs';
|
|
10
10
|
import { DateRange, ViewItem } from '../../types';
|
|
11
11
|
import { ViewContextService } from '../view-context.service';
|
|
@@ -40,7 +40,7 @@ export declare class MultiDayViewRendererComponent extends DayTimeViewComponent
|
|
|
40
40
|
private schedulerAllDaySlotTemplate;
|
|
41
41
|
private schedulerAllDayEventTemplate;
|
|
42
42
|
private dragContainers;
|
|
43
|
-
constructor(localization: LocalizationService, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, changeDetector: ChangeDetectorRef, pdfService: PDFService,
|
|
43
|
+
constructor(localization: LocalizationService, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, changeDetector: ChangeDetectorRef, pdfService: PDFService, scrollbarService: ScrollbarService);
|
|
44
44
|
protected optionsChange(changes: any): void;
|
|
45
45
|
ngOnChanges(changes: any): void;
|
|
46
46
|
horizontalColspan(resourceIndex: number): any;
|
|
@@ -11,7 +11,7 @@ import { ViewStateService } from '../view-state.service';
|
|
|
11
11
|
import { DayTimeSlotService } from '../day-time/day-time-slot.service';
|
|
12
12
|
import { DayTimeViewComponent } from '../day-time/day-time-view.component';
|
|
13
13
|
import { PDFService } from '../../pdf/pdf.service';
|
|
14
|
-
import {
|
|
14
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
15
15
|
import { Day } from '@progress/kendo-date-math';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
/**
|
|
@@ -28,7 +28,7 @@ export declare class TimelineMultiDayViewComponent extends DayTimeViewComponent
|
|
|
28
28
|
get contentWidthPercentage(): number;
|
|
29
29
|
protected verticalTime: boolean;
|
|
30
30
|
private contentWidth;
|
|
31
|
-
constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService,
|
|
31
|
+
constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, scrollbarService: ScrollbarService);
|
|
32
32
|
ngOnChanges(changes: any): void;
|
|
33
33
|
reflow(): void;
|
|
34
34
|
get allEventsMessage(): string;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, Renderer2 } from '@angular/core';
|
|
6
|
-
import {
|
|
6
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
7
7
|
import { ViewContextService } from '../view-context.service';
|
|
8
8
|
import { ViewStateService } from '../view-state.service';
|
|
9
9
|
import { IntlService } from '@progress/kendo-angular-intl';
|
|
@@ -43,7 +43,7 @@ export declare class YearViewInternalComponent extends BaseView implements After
|
|
|
43
43
|
private currentTd;
|
|
44
44
|
private tds;
|
|
45
45
|
private isTooltipClicked;
|
|
46
|
-
constructor(localization: LocalizationService, focusService: FocusService, intl: IntlService, viewContext: ViewContextService, viewState: ViewStateService, zone: NgZone, renderer: Renderer2, pdfService: PDFService, element: ElementRef, slotService: MonthSlotService,
|
|
46
|
+
constructor(localization: LocalizationService, focusService: FocusService, intl: IntlService, viewContext: ViewContextService, viewState: ViewStateService, zone: NgZone, renderer: Renderer2, pdfService: PDFService, element: ElementRef, slotService: MonthSlotService, scrollbarService: ScrollbarService, changeDetector: ChangeDetectorRef);
|
|
47
47
|
ngAfterViewInit(): void;
|
|
48
48
|
getSlotClass(date: any): string[];
|
|
49
49
|
getEventClasses(item: any, resources: any, isAllDay?: boolean): any;
|