@daypilot/daypilot-lite-angular 3.15.0 → 3.16.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 +89 -72
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +60 -34
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +88 -71
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +3 -0
- package/package.json +1 -1
|
@@ -74,6 +74,7 @@ export declare module DayPilot {
|
|
|
74
74
|
list: EventData[];
|
|
75
75
|
add(e: DayPilot.Event | EventData): void;
|
|
76
76
|
find(id: string): DayPilot.Event;
|
|
77
|
+
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
77
78
|
load(url: string, success: (args: {
|
|
78
79
|
data: any;
|
|
79
80
|
preventDefault(): void;
|
|
@@ -258,6 +259,8 @@ export declare module DayPilot {
|
|
|
258
259
|
events: {
|
|
259
260
|
list: EventData[];
|
|
260
261
|
add(e: DayPilot.Event | EventData): void;
|
|
262
|
+
find(id: string): DayPilot.Event;
|
|
263
|
+
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
261
264
|
load(url: string, success: (args: {
|
|
262
265
|
data: any;
|
|
263
266
|
preventDefault(): void;
|