@daypilot/daypilot-lite-javascript 5.3.0 → 5.4.0-sandbox.800
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.800-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,10 @@ export module DayPilot {
|
|
|
463
465
|
readonly control: DayPilot.Scheduler;
|
|
464
466
|
}
|
|
465
467
|
|
|
468
|
+
export interface SchedulerScrollArgs {
|
|
469
|
+
|
|
470
|
+
}
|
|
471
|
+
|
|
466
472
|
// TODO check if all values are supported
|
|
467
473
|
export type GroupBy = "Minute" | "Hour" | "Day" | "Week" | "Month" | "Quarter" | "Year" | "Cell" | "None";
|
|
468
474
|
|
|
@@ -540,6 +546,7 @@ export module DayPilot {
|
|
|
540
546
|
businessBeginsHour?: number;
|
|
541
547
|
businessEndsHour?: number;
|
|
542
548
|
cellHeight?: number;
|
|
549
|
+
cellDuration?: number;
|
|
543
550
|
columnMarginLeft?: number;
|
|
544
551
|
columnMarginRight?: number;
|
|
545
552
|
columnsLoadMethod?: "POST" | "GET";
|