@daypilot/daypilot-lite-react 5.7.0-sandbox.822 → 5.8.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.
@@ -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.2.822-lite
6
+ Version: 2026.2.833-lite
7
7
  */
8
8
  type GlobalDate = Date;
9
9
 
@@ -552,7 +552,6 @@ export namespace DayPilot {
552
552
  toolTip: string;
553
553
  }
554
554
 
555
-
556
555
  export class CalendarPropsAndEvents {
557
556
  backendUrl?: string;
558
557
  businessBeginsHour?: number;
@@ -563,6 +562,7 @@ export namespace DayPilot {
563
562
  columnMarginRight?: number;
564
563
  columnsLoadMethod?: "POST" | "GET";
565
564
  contextMenu?: DayPilot.Menu;
565
+ cssClass?: string;
566
566
  days?: number;
567
567
  doubleClickTimeout?: number;
568
568
  durationBarVisible?: boolean;
@@ -902,6 +902,7 @@ export namespace DayPilot {
902
902
 
903
903
  onBeforeEventRender?: EventHandler<MonthBeforeEventRenderArgs>;
904
904
  onBeforeCellRender?: EventHandler<MonthBeforeCellRenderArgs>;
905
+ onBeforeHeaderRender?: EventHandler<MonthBeforeHeaderRenderArgs>;
905
906
 
906
907
  onCellHeaderClick?: EventHandler<MonthCellHeaderClickArgs>;
907
908
  onCellHeaderClicked?: EventHandler<MonthCellHeaderClickedArgs>;
@@ -979,6 +980,7 @@ export namespace DayPilot {
979
980
  readonly end: DayPilot.Date;
980
981
  readonly properties: {
981
982
  business: boolean;
983
+ cssClass: string;
982
984
  headerHtml: string;
983
985
  html: string;
984
986
  backColor: string;
@@ -986,6 +988,15 @@ export namespace DayPilot {
986
988
  }
987
989
  }
988
990
 
991
+ export interface MonthBeforeHeaderRenderArgs {
992
+ readonly header: {
993
+ readonly dayOfWeek: number;
994
+ html: string;
995
+ backColor: string;
996
+ cssClass: string;
997
+ };
998
+ }
999
+
989
1000
  export interface MonthCellHeaderClickArgs {
990
1001
  readonly control: DayPilot.Month;
991
1002
  readonly start: DayPilot.Date;