@daypilot/daypilot-lite-angular 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.
@@ -12,6 +12,7 @@ export declare module DayPilot {
12
12
  days?: number;
13
13
  doubleClickTimeout?: number;
14
14
  durationBarVisible?: boolean;
15
+ eventBorderRadius?: string | number;
15
16
  eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
16
17
  eventDeleteHandling?: "Update" | "Disabled" | "CallBack";
17
18
  eventMoveHandling?: "Update" | "CallBack" | "Disabled";
@@ -79,6 +80,7 @@ export declare module DayPilot {
79
80
  add(e: DayPilot.Event | EventData): void;
80
81
  find(id: string): DayPilot.Event;
81
82
  find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
83
+ forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
82
84
  load(url: string, success: (args: {
83
85
  data: any;
84
86
  preventDefault(): void;
@@ -302,6 +304,7 @@ export declare module DayPilot {
302
304
  add(e: DayPilot.Event | EventData): void;
303
305
  find(id: string): DayPilot.Event;
304
306
  find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
307
+ forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
305
308
  load(url: string, success: (args: {
306
309
  data: any;
307
310
  preventDefault(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daypilot/daypilot-lite-angular",
3
- "version": "3.27.0",
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.",
@@ -21,7 +21,8 @@
21
21
  "@angular/core": ">=12.0.0"
22
22
  },
23
23
  "dependencies": {
24
- "tslib": "^2.3.0"
24
+ "tslib": "^2.3.0",
25
+ "@daypilot/daypilot-lite-javascript": "3.29.0"
25
26
  },
26
27
  "module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
27
28
  "es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",