@daypilot/daypilot-lite-javascript 3.28.0 → 3.30.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.
|
@@ -106,6 +106,7 @@ export module DayPilot {
|
|
|
106
106
|
add(e: DayPilot.Event | EventData): void;
|
|
107
107
|
find(id: string): DayPilot.Event;
|
|
108
108
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
109
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
109
110
|
load(url: string,
|
|
110
111
|
success: (args: { data: any; preventDefault(): void; }) => void,
|
|
111
112
|
error: (args: { request: XMLHttpRequest, exception: any; }) => void
|
|
@@ -323,6 +324,7 @@ export module DayPilot {
|
|
|
323
324
|
cellMarginBottom?: number;
|
|
324
325
|
contextMenu?: DayPilot.Menu;
|
|
325
326
|
eventBarVisible?: boolean;
|
|
327
|
+
eventBorderRadius?: string | number;
|
|
326
328
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
327
329
|
eventRightClickHandling?: "ContextMenu" | "Enabled" | "Disabled";
|
|
328
330
|
eventHeight?: number;
|
|
@@ -375,6 +377,7 @@ export module DayPilot {
|
|
|
375
377
|
add(e: DayPilot.Event | EventData): void;
|
|
376
378
|
find(id: string): DayPilot.Event;
|
|
377
379
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
380
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
378
381
|
load(url: string,
|
|
379
382
|
success: (args: { data: any; preventDefault(): void; }) => void,
|
|
380
383
|
error: (args: { request: XMLHttpRequest, exception: any; }) => void
|