@daypilot/daypilot-lite-angular 5.3.1 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daypilot/daypilot-lite-angular",
3
- "version": "5.3.1",
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.1"
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",