@daypilot/daypilot-lite-angular 5.3.0 → 5.4.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/esm2022/lib/core/daypilot-core.mjs +797 -794
- package/esm2022/lib/daypilot-navigator.component.mjs +20 -5
- package/fesm2022/daypilot-daypilot-lite-angular.mjs +815 -797
- package/fesm2022/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +6 -0
- package/lib/daypilot-navigator.component.d.ts +0 -1
- package/package.json +2 -2
|
@@ -100,6 +100,7 @@ export declare module DayPilot {
|
|
|
100
100
|
onTimeRangeClicked?: EventHandler<SchedulerTimeRangeClickedArgs>;
|
|
101
101
|
onTimeRangeSelect?: EventHandler<SchedulerTimeRangeSelectArgs>;
|
|
102
102
|
onTimeRangeSelected?: EventHandler<SchedulerTimeRangeSelectedArgs>;
|
|
103
|
+
onScroll?: EventHandler<SchedulerScrollArgs>;
|
|
103
104
|
}
|
|
104
105
|
export class SchedulerConfig extends SchedulerPropsAndEvents {
|
|
105
106
|
events?: EventData[];
|
|
@@ -404,6 +405,10 @@ export declare module DayPilot {
|
|
|
404
405
|
readonly resource: ResourceId;
|
|
405
406
|
readonly control: DayPilot.Scheduler;
|
|
406
407
|
}
|
|
408
|
+
export interface SchedulerScrollArgs {
|
|
409
|
+
readonly viewport: SchedulerViewport;
|
|
410
|
+
readonly control: DayPilot.Scheduler;
|
|
411
|
+
}
|
|
407
412
|
export type GroupBy = "Minute" | "Hour" | "Day" | "Week" | "Month" | "Quarter" | "Year" | "Cell" | "None";
|
|
408
413
|
export interface ZoomLevel {
|
|
409
414
|
properties: any;
|
|
@@ -466,6 +471,7 @@ export declare module DayPilot {
|
|
|
466
471
|
businessBeginsHour?: number;
|
|
467
472
|
businessEndsHour?: number;
|
|
468
473
|
cellHeight?: number;
|
|
474
|
+
cellDuration?: number;
|
|
469
475
|
columnMarginLeft?: number;
|
|
470
476
|
columnMarginRight?: number;
|
|
471
477
|
columnsLoadMethod?: "POST" | "GET";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daypilot/daypilot-lite-angular",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "DayPilot Lite for Angular",
|
|
5
5
|
"homepage": "https://javascript.daypilot.org/",
|
|
6
6
|
"author": "Annpoint, s.r.o.",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.3.0",
|
|
35
|
-
"@daypilot/daypilot-lite-javascript": "5.
|
|
35
|
+
"@daypilot/daypilot-lite-javascript": "5.4.0"
|
|
36
36
|
},
|
|
37
37
|
"module": "fesm2022/daypilot-daypilot-lite-angular.mjs",
|
|
38
38
|
"typings": "index.d.ts",
|