@progress/kendo-angular-scheduler 4.3.5-dev.202210121134 → 4.3.5-dev.202210191536

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-scheduler",
3
- "version": "4.3.5-dev.202210121134",
3
+ "version": "4.3.5-dev.202210191536",
4
4
  "description": "Kendo UI Scheduler Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -3,6 +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 { ScrollbarWidthService } from '@progress/kendo-angular-common';
6
7
  import { IntlService } from '@progress/kendo-angular-intl';
7
8
  import { Day } from '@progress/kendo-date-math';
8
9
  import { Subscription, Subject, BehaviorSubject } from 'rxjs';
@@ -29,6 +30,7 @@ export declare abstract class BaseView implements OnInit, OnChanges, AfterViewIn
29
30
  protected pdfService: PDFService;
30
31
  protected localization: LocalizationService;
31
32
  protected cdr: ChangeDetectorRef;
33
+ protected scrollBarWidthService: ScrollbarWidthService;
32
34
  еventTemplate: TemplateRef<any>;
33
35
  groupHeaderTemplate: TemplateRef<any>;
34
36
  selectedDateFormat: string;
@@ -102,7 +104,7 @@ export declare abstract class BaseView implements OnInit, OnChanges, AfterViewIn
102
104
  protected autoHeight: boolean;
103
105
  protected rtl: boolean;
104
106
  isSlotSelected: SlotSelectionCallback;
105
- constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: BaseSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, cdr: ChangeDetectorRef);
107
+ constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: BaseSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, cdr: ChangeDetectorRef, scrollBarWidthService: ScrollbarWidthService);
106
108
  protected abstract onSelectDate(date: Date): void;
107
109
  protected abstract onAction(action: NavigationAction): void;
108
110
  protected abstract onTasksChange(): void;
@@ -3,6 +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 { ScrollbarWidthService } from '@progress/kendo-angular-common';
6
7
  import { ZonedDate } from '@progress/kendo-date-math';
7
8
  import { DateRange, NavigationAction } from '../../types';
8
9
  import { DayTimeSlotService } from './day-time-slot.service';
@@ -59,7 +60,7 @@ export declare abstract class DayTimeViewComponent extends BaseView implements O
59
60
  protected currentDate: ZonedDate;
60
61
  protected verticalTime: boolean;
61
62
  protected initialUpdate: boolean;
62
- constructor(changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, focusService: FocusService);
63
+ constructor(changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, localization: LocalizationService, focusService: FocusService, scrollBarWidthService: ScrollbarWidthService);
63
64
  ngOnChanges(changes: any): void;
64
65
  ngOnDestroy(): void;
65
66
  verticalItem(leafIndex: number, resourceIndex: number): any;
@@ -4,6 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { OnChanges, NgZone, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef, QueryList } from '@angular/core';
6
6
  import { IntlService } from '@progress/kendo-angular-intl';
7
+ import { ScrollbarWidthService } from '@progress/kendo-angular-common';
7
8
  import { DateRange, NavigationAction, ViewItem } from '../../types';
8
9
  import { ViewContextService } from '../view-context.service';
9
10
  import { ViewStateService } from '../view-state.service';
@@ -27,7 +28,7 @@ export declare class MonthViewRendererComponent extends BaseView implements OnCh
27
28
  get monthDaySlotTemplateRef(): TemplateRef<any>;
28
29
  protected ongoingEventsTimeout: any;
29
30
  private schedulerMonthDaySlotTemplate;
30
- constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: MonthSlotService, zone: NgZone, element: ElementRef, renderer: Renderer2, pdfService: PDFService, localization: LocalizationService, changeDetector: ChangeDetectorRef, focusService: FocusService);
31
+ constructor(viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: MonthSlotService, zone: NgZone, element: ElementRef, renderer: Renderer2, pdfService: PDFService, localization: LocalizationService, changeDetector: ChangeDetectorRef, focusService: FocusService, scrollBarWidthService: ScrollbarWidthService);
31
32
  ngOnChanges(changes: any): void;
32
33
  ngAfterViewInit(): void;
33
34
  ngOnDestroy(): void;
@@ -5,6 +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 { ScrollbarWidthService } from '@progress/kendo-angular-common';
8
9
  import { Subject } from 'rxjs';
9
10
  import { DateRange, ViewItem } from '../../types';
10
11
  import { ViewContextService } from '../view-context.service';
@@ -43,7 +44,7 @@ export declare class MultiDayViewRendererComponent extends DayTimeViewComponent
43
44
  private schedulerMinorTimeHeaderTemplate;
44
45
  private schedulerMajorTimeHeaderTemplate;
45
46
  private dragContainers;
46
- constructor(localization: LocalizationService, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, changeDetector: ChangeDetectorRef, pdfService: PDFService, focusService: FocusService);
47
+ constructor(localization: LocalizationService, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, changeDetector: ChangeDetectorRef, pdfService: PDFService, focusService: FocusService, scrollbarWidthService: ScrollbarWidthService);
47
48
  protected optionsChange(changes: any): void;
48
49
  ngOnChanges(changes: any): void;
49
50
  horizontalColspan(resourceIndex: number): any;
@@ -12,6 +12,7 @@ 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
14
  import { FocusService } from '../../navigation';
15
+ import { ScrollbarWidthService } from '@progress/kendo-angular-common';
15
16
  import * as i0 from "@angular/core";
16
17
  /**
17
18
  * @hidden
@@ -23,7 +24,7 @@ export declare class TimelineMultiDayViewComponent extends DayTimeViewComponent
23
24
  verticalResourceRows: QueryList<ElementRef>;
24
25
  get classNames(): string;
25
26
  protected verticalTime: boolean;
26
- constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, focusService: FocusService);
27
+ constructor(localization: LocalizationService, changeDetector: ChangeDetectorRef, viewContext: ViewContextService, viewState: ViewStateService, intl: IntlService, slotService: DayTimeSlotService, zone: NgZone, renderer: Renderer2, element: ElementRef, pdfService: PDFService, focusService: FocusService, scrollBarWidthService: ScrollbarWidthService);
27
28
  ngOnChanges(changes: any): void;
28
29
  reflow(): void;
29
30
  get allEventsMessage(): string;