@daypilot/daypilot-lite-javascript 4.8.0 → 4.8.2-sandbox.756

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 - 2025 Annpoint s.r.o.
4
4
  https://www.daypilot.org/
5
5
  Licensed under Apache Software License 2.0
6
- Version: 2025.4.750-lite
6
+ Version: 2025.4.756-lite
7
7
  */
8
8
  type GlobalDate = Date;
9
9
 
@@ -1034,6 +1034,7 @@ export module DayPilot {
1034
1034
  cellWidth?: number;
1035
1035
  command?: string;
1036
1036
  dayHeaderHeight?: number;
1037
+ eventEndSpec?: "DateTime" | "Date";
1037
1038
  freeHandSelectionEnabled?: boolean;
1038
1039
  locale?: string;
1039
1040
  orientation?: "Vertical" | "Horizontal";
@@ -1111,6 +1112,9 @@ export module DayPilot {
1111
1112
  readonly isWeekend: boolean;
1112
1113
  html: string;
1113
1114
  cssClass: string;
1115
+ readonly events: {
1116
+ all(): DayPilot.Event[];
1117
+ }
1114
1118
  };
1115
1119
  }
1116
1120