@daypilot/daypilot-lite-angular 5.3.0 → 5.4.0

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.
@@ -100,6 +100,7 @@ export declare module DayPilot {
100
100
  onTimeRangeClicked?: EventHandler<SchedulerTimeRangeClickedArgs>;
101
101
  onTimeRangeSelect?: EventHandler<SchedulerTimeRangeSelectArgs>;
102
102
  onTimeRangeSelected?: EventHandler<SchedulerTimeRangeSelectedArgs>;
103
+ onScroll?: EventHandler<SchedulerScrollArgs>;
103
104
  }
104
105
  export class SchedulerConfig extends SchedulerPropsAndEvents {
105
106
  events?: EventData[];
@@ -404,6 +405,10 @@ export declare module DayPilot {
404
405
  readonly resource: ResourceId;
405
406
  readonly control: DayPilot.Scheduler;
406
407
  }
408
+ export interface SchedulerScrollArgs {
409
+ readonly viewport: SchedulerViewport;
410
+ readonly control: DayPilot.Scheduler;
411
+ }
407
412
  export type GroupBy = "Minute" | "Hour" | "Day" | "Week" | "Month" | "Quarter" | "Year" | "Cell" | "None";
408
413
  export interface ZoomLevel {
409
414
  properties: any;
@@ -466,6 +471,7 @@ export declare module DayPilot {
466
471
  businessBeginsHour?: number;
467
472
  businessEndsHour?: number;
468
473
  cellHeight?: number;
474
+ cellDuration?: number;
469
475
  columnMarginLeft?: number;
470
476
  columnMarginRight?: number;
471
477
  columnsLoadMethod?: "POST" | "GET";
@@ -12,7 +12,6 @@ export declare class DayPilotNavigatorComponent implements OnInit, OnDestroy, Af
12
12
  private _hashEvents;
13
13
  private _onTrs;
14
14
  private _dateSet;
15
- private _currentDate;
16
15
  private _eventsSet;
17
16
  private _date;
18
17
  get date(): DayPilot.Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daypilot/daypilot-lite-angular",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "DayPilot Lite for Angular",
5
5
  "homepage": "https://javascript.daypilot.org/",
6
6
  "author": "Annpoint, s.r.o.",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "tslib": "^2.3.0",
35
- "@daypilot/daypilot-lite-javascript": "5.3.0"
35
+ "@daypilot/daypilot-lite-javascript": "5.4.0"
36
36
  },
37
37
  "module": "fesm2022/daypilot-daypilot-lite-angular.mjs",
38
38
  "typings": "index.d.ts",