@daypilot/daypilot-lite-vue 5.7.0 → 5.9.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.
- package/daypilot-vue.min.d.ts +13 -2
- package/daypilot-vue.min.js +10 -10
- package/package.json +2 -2
package/daypilot-vue.min.d.ts
CHANGED
|
@@ -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.839-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;
|
|
@@ -1133,7 +1144,7 @@ export namespace DayPilot {
|
|
|
1133
1144
|
}
|
|
1134
1145
|
|
|
1135
1146
|
export class NavigatorConfig extends NavigatorPropsAndEvents {
|
|
1136
|
-
events?:
|
|
1147
|
+
events?: EventDataShort[];
|
|
1137
1148
|
}
|
|
1138
1149
|
|
|
1139
1150
|
export interface NavigatorSelectOptions {
|