@daypilot/daypilot-lite-angular 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.
- package/esm2020/lib/core/daypilot-core.mjs +1005 -877
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +1148 -975
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +1004 -876
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +3 -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;
|
|
@@ -256,6 +257,7 @@ export declare module DayPilot {
|
|
|
256
257
|
cellMarginBottom?: number;
|
|
257
258
|
contextMenu?: DayPilot.Menu;
|
|
258
259
|
eventBarVisible?: boolean;
|
|
260
|
+
eventBorderRadius?: string | number;
|
|
259
261
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
260
262
|
eventRightClickHandling?: "ContextMenu" | "Enabled" | "Disabled";
|
|
261
263
|
eventHeight?: number;
|
|
@@ -303,6 +305,7 @@ export declare module DayPilot {
|
|
|
303
305
|
add(e: DayPilot.Event | EventData): void;
|
|
304
306
|
find(id: string): DayPilot.Event;
|
|
305
307
|
find(filter: (e: DayPilot.Event) => boolean): DayPilot.Event;
|
|
308
|
+
forRange(start?: DayPilot.Date | string, end?: DayPilot.Date | string): DayPilot.Event[];
|
|
306
309
|
load(url: string, success: (args: {
|
|
307
310
|
data: any;
|
|
308
311
|
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.30.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.30.0"
|
|
26
26
|
},
|
|
27
27
|
"module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
|
|
28
28
|
"es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
|