@daypilot/daypilot-lite-angular 3.22.1 → 3.23.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 +55 -44
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +31 -15
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +54 -43
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +3 -1
- package/package.json +1 -1
|
@@ -248,6 +248,7 @@ export declare module DayPilot {
|
|
|
248
248
|
cellHeaderClickHandling?: "Enabled" | "Disabled";
|
|
249
249
|
cellHeaderHeight?: number;
|
|
250
250
|
cellHeight?: number;
|
|
251
|
+
cellMarginBottom?: number;
|
|
251
252
|
contextMenu?: DayPilot.Menu;
|
|
252
253
|
eventBarVisible?: boolean;
|
|
253
254
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
@@ -288,7 +289,7 @@ export declare module DayPilot {
|
|
|
288
289
|
onTimeRangeSelected?: EventHandler<MonthTimeRangeSelectedArgs>;
|
|
289
290
|
}
|
|
290
291
|
export class MonthConfig extends MonthPropsAndEvents {
|
|
291
|
-
events?: EventData;
|
|
292
|
+
events?: EventData[];
|
|
292
293
|
}
|
|
293
294
|
export class Month extends MonthPropsAndEvents {
|
|
294
295
|
v: string;
|
|
@@ -305,6 +306,7 @@ export declare module DayPilot {
|
|
|
305
306
|
exception: any;
|
|
306
307
|
}) => void): void;
|
|
307
308
|
remove(e: DayPilot.Event): void;
|
|
309
|
+
remove(id: EventId): void;
|
|
308
310
|
update(e: DayPilot.Event): void;
|
|
309
311
|
};
|
|
310
312
|
constructor(id: string | HTMLElement, options?: MonthConfig);
|