@daypilot/daypilot-lite-angular 3.16.0 → 3.17.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/esm2020/lib/core/daypilot-core.mjs +26 -26
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +35 -35
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +25 -25
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +3 -1
- package/package.json +1 -1
|
@@ -109,6 +109,7 @@ export declare module DayPilot {
|
|
|
109
109
|
readonly div: HTMLElement;
|
|
110
110
|
}
|
|
111
111
|
export interface CalendarBeforeEventRenderArgs {
|
|
112
|
+
readonly control: DayPilot.Calendar;
|
|
112
113
|
readonly data: EventData;
|
|
113
114
|
}
|
|
114
115
|
export interface CalendarEventClickArgs {
|
|
@@ -214,7 +215,7 @@ export declare module DayPilot {
|
|
|
214
215
|
cellHeaderHeight?: number;
|
|
215
216
|
cellHeight?: number;
|
|
216
217
|
contextMenu?: DayPilot.Menu;
|
|
217
|
-
eventBarVisible?:
|
|
218
|
+
eventBarVisible?: boolean;
|
|
218
219
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
219
220
|
eventRightClickHandling?: "ContextMenu" | "Enabled" | "Disabled";
|
|
220
221
|
eventHeight?: number;
|
|
@@ -286,6 +287,7 @@ export declare module DayPilot {
|
|
|
286
287
|
readonly div: HTMLElement;
|
|
287
288
|
}
|
|
288
289
|
export interface MonthBeforeEventRenderArgs {
|
|
290
|
+
readonly control: DayPilot.Month;
|
|
289
291
|
readonly data: EventData;
|
|
290
292
|
}
|
|
291
293
|
export interface MonthCellHeaderClickArgs {
|