@daypilot/daypilot-lite-javascript 3.22.2 → 3.24.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.
|
@@ -59,7 +59,7 @@ export module DayPilot {
|
|
|
59
59
|
timeRangeSelectedHandling?: "Enabled" | "Disabled" | "CallBack";
|
|
60
60
|
viewType?: "Day" | "Days" | "Week" | "WorkWeek" | "Resources";
|
|
61
61
|
visible?: boolean;
|
|
62
|
-
|
|
62
|
+
weekStarts?: "Auto" | number;
|
|
63
63
|
xssProtection?: "Enabled" | "Disabled";
|
|
64
64
|
|
|
65
65
|
onAfterEventRender?: EventHandler<CalendarAfterEventRenderArgs>;
|
|
@@ -314,6 +314,7 @@ export module DayPilot {
|
|
|
314
314
|
cellHeaderClickHandling?: "Enabled" | "Disabled";
|
|
315
315
|
cellHeaderHeight?: number;
|
|
316
316
|
cellHeight?: number;
|
|
317
|
+
cellMarginBottom?: number;
|
|
317
318
|
contextMenu?: DayPilot.Menu;
|
|
318
319
|
eventBarVisible?: boolean;
|
|
319
320
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
@@ -332,7 +333,7 @@ export module DayPilot {
|
|
|
332
333
|
theme?: string;
|
|
333
334
|
timeRangeSelectedHandling?: "Enabled" | "Disabled" | "CallBack";
|
|
334
335
|
visible?: boolean;
|
|
335
|
-
weekStarts?: number;
|
|
336
|
+
weekStarts?: "Auto" | number;
|
|
336
337
|
width?: string;
|
|
337
338
|
xssProtection?: "Enabled" | "Disabled";
|
|
338
339
|
|
|
@@ -358,7 +359,7 @@ export module DayPilot {
|
|
|
358
359
|
}
|
|
359
360
|
|
|
360
361
|
export class MonthConfig extends MonthPropsAndEvents {
|
|
361
|
-
events?: EventData;
|
|
362
|
+
events?: EventData[];
|
|
362
363
|
}
|
|
363
364
|
|
|
364
365
|
export class Month extends MonthPropsAndEvents {
|
|
@@ -373,6 +374,7 @@ export module DayPilot {
|
|
|
373
374
|
error: (args: { request: XMLHttpRequest, exception: any; }) => void
|
|
374
375
|
): void;
|
|
375
376
|
remove(e: DayPilot.Event): void;
|
|
377
|
+
remove(id: EventId): void;
|
|
376
378
|
update(e: DayPilot.Event): void;
|
|
377
379
|
};
|
|
378
380
|
|