@daypilot/daypilot-lite-javascript 3.27.0 → 3.29.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.
|
@@ -35,6 +35,7 @@ export module DayPilot {
|
|
|
35
35
|
days?: number;
|
|
36
36
|
doubleClickTimeout?: number;
|
|
37
37
|
durationBarVisible?: boolean;
|
|
38
|
+
eventBorderRadius?: string | number;
|
|
38
39
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
39
40
|
eventDeleteHandling?: "Update" | "Disabled" | "CallBack";
|
|
40
41
|
eventMoveHandling?: "Update" | "CallBack" | "Disabled";
|
|
@@ -105,6 +106,7 @@ export module DayPilot {
|
|
|
105
106
|
add(e: DayPilot.Event | EventData): void;
|
|
106
107
|
find(id: string): DayPilot.Event;
|
|
107
108
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
109
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
108
110
|
load(url: string,
|
|
109
111
|
success: (args: { data: any; preventDefault(): void; }) => void,
|
|
110
112
|
error: (args: { request: XMLHttpRequest, exception: any; }) => void
|
|
@@ -374,6 +376,7 @@ export module DayPilot {
|
|
|
374
376
|
add(e: DayPilot.Event | EventData): void;
|
|
375
377
|
find(id: string): DayPilot.Event;
|
|
376
378
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
379
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
377
380
|
load(url: string,
|
|
378
381
|
success: (args: { data: any; preventDefault(): void; }) => void,
|
|
379
382
|
error: (args: { request: XMLHttpRequest, exception: any; }) => void
|