@daypilot/daypilot-lite-angular 5.7.0 → 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.
|
@@ -778,6 +778,7 @@ export declare namespace DayPilot {
|
|
|
778
778
|
onAfterEventRender?: EventHandler<MonthAfterEventRenderArgs>;
|
|
779
779
|
onBeforeEventRender?: EventHandler<MonthBeforeEventRenderArgs>;
|
|
780
780
|
onBeforeCellRender?: EventHandler<MonthBeforeCellRenderArgs>;
|
|
781
|
+
onBeforeHeaderRender?: EventHandler<MonthBeforeHeaderRenderArgs>;
|
|
781
782
|
onCellHeaderClick?: EventHandler<MonthCellHeaderClickArgs>;
|
|
782
783
|
onCellHeaderClicked?: EventHandler<MonthCellHeaderClickedArgs>;
|
|
783
784
|
onEventClick?: EventHandler<MonthEventClickArgs>;
|
|
@@ -841,12 +842,21 @@ export declare namespace DayPilot {
|
|
|
841
842
|
readonly end: DayPilot.Date;
|
|
842
843
|
readonly properties: {
|
|
843
844
|
business: boolean;
|
|
845
|
+
cssClass: string;
|
|
844
846
|
headerHtml: string;
|
|
845
847
|
html: string;
|
|
846
848
|
backColor: string;
|
|
847
849
|
};
|
|
848
850
|
};
|
|
849
851
|
}
|
|
852
|
+
interface MonthBeforeHeaderRenderArgs {
|
|
853
|
+
readonly header: {
|
|
854
|
+
readonly dayOfWeek: number;
|
|
855
|
+
html: string;
|
|
856
|
+
backColor: string;
|
|
857
|
+
cssClass: string;
|
|
858
|
+
};
|
|
859
|
+
}
|
|
850
860
|
interface MonthCellHeaderClickArgs {
|
|
851
861
|
readonly control: DayPilot.Month;
|
|
852
862
|
readonly start: DayPilot.Date;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daypilot/daypilot-lite-angular",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.0-sandbox.828",
|
|
4
4
|
"description": "DayPilot Lite for Angular",
|
|
5
5
|
"homepage": "https://javascript.daypilot.org/",
|
|
6
6
|
"author": "Annpoint, s.r.o.",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.3.0",
|
|
35
|
-
"@daypilot/daypilot-lite-javascript": "5.
|
|
35
|
+
"@daypilot/daypilot-lite-javascript": "5.8.0-sandbox.828"
|
|
36
36
|
},
|
|
37
37
|
"module": "fesm2022/daypilot-daypilot-lite-angular.mjs",
|
|
38
38
|
"typings": "index.d.ts",
|