@daypilot/daypilot-lite-angular 3.28.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.
- package/esm2020/lib/core/daypilot-core.mjs +994 -868
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +1136 -967
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +995 -869
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +2 -0
- package/package.json +2 -2
|
@@ -80,6 +80,7 @@ export declare module DayPilot {
|
|
|
80
80
|
add(e: DayPilot.Event | EventData): void;
|
|
81
81
|
find(id: string): DayPilot.Event;
|
|
82
82
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
83
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
83
84
|
load(url: string, success: (args: {
|
|
84
85
|
data: any;
|
|
85
86
|
preventDefault(): void;
|
|
@@ -303,6 +304,7 @@ export declare module DayPilot {
|
|
|
303
304
|
add(e: DayPilot.Event | EventData): void;
|
|
304
305
|
find(id: string): DayPilot.Event;
|
|
305
306
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
307
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
306
308
|
load(url: string, success: (args: {
|
|
307
309
|
data: any;
|
|
308
310
|
preventDefault(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daypilot/daypilot-lite-angular",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.0",
|
|
4
4
|
"description": "DayPilot Lite for Angular",
|
|
5
5
|
"homepage": "https://javascript.daypilot.org/",
|
|
6
6
|
"author": "Annpoint, s.r.o.",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"tslib": "^2.3.0",
|
|
25
|
-
"@daypilot/daypilot-lite-javascript": "3.
|
|
25
|
+
"@daypilot/daypilot-lite-javascript": "3.29.0"
|
|
26
26
|
},
|
|
27
27
|
"module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
|
|
28
28
|
"es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
|