@daypilot/daypilot-lite-javascript 5.3.1 → 5.4.0-sandbox.802
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.
|
@@ -3,7 +3,7 @@ DayPilot Lite
|
|
|
3
3
|
Copyright (c) 2005 - 2026 Annpoint s.r.o.
|
|
4
4
|
https://www.daypilot.org/
|
|
5
5
|
Licensed under Apache Software License 2.0
|
|
6
|
-
Version: 2026.1.
|
|
6
|
+
Version: 2026.1.802-lite
|
|
7
7
|
*/
|
|
8
8
|
type GlobalDate = Date;
|
|
9
9
|
|
|
@@ -112,6 +112,8 @@ export module DayPilot {
|
|
|
112
112
|
onTimeRangeClicked?: EventHandler<SchedulerTimeRangeClickedArgs>;
|
|
113
113
|
onTimeRangeSelect?: EventHandler<SchedulerTimeRangeSelectArgs>;
|
|
114
114
|
onTimeRangeSelected?: EventHandler<SchedulerTimeRangeSelectedArgs>;
|
|
115
|
+
|
|
116
|
+
onScroll?: EventHandler<SchedulerScrollArgs>;
|
|
115
117
|
}
|
|
116
118
|
|
|
117
119
|
export class SchedulerConfig extends SchedulerPropsAndEvents {
|
|
@@ -463,6 +465,11 @@ export module DayPilot {
|
|
|
463
465
|
readonly control: DayPilot.Scheduler;
|
|
464
466
|
}
|
|
465
467
|
|
|
468
|
+
export interface SchedulerScrollArgs {
|
|
469
|
+
readonly viewport: SchedulerViewport;
|
|
470
|
+
readonly control: DayPilot.Scheduler;
|
|
471
|
+
}
|
|
472
|
+
|
|
466
473
|
// TODO check if all values are supported
|
|
467
474
|
export type GroupBy = "Minute" | "Hour" | "Day" | "Week" | "Month" | "Quarter" | "Year" | "Cell" | "None";
|
|
468
475
|
|