@daypilot/daypilot-lite-javascript 5.7.0-sandbox.824 → 5.8.0-sandbox.828
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.
|
|
6
|
+
Version: 2026.2.828-lite
|
|
7
7
|
*/
|
|
8
8
|
type GlobalDate = Date;
|
|
9
9
|
|
|
@@ -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;
|