@daypilot/daypilot-lite-angular 3.25.0 → 3.26.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 +132 -125
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +149 -126
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +131 -124
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +3 -2
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare module DayPilot {
|
|
|
5
5
|
businessBeginsHour?: number;
|
|
6
6
|
businessEndsHour?: number;
|
|
7
7
|
cellHeight?: number;
|
|
8
|
+
columnMarginLeft?: number;
|
|
8
9
|
columnMarginRight?: number;
|
|
9
10
|
columnsLoadMethod?: "POST" | "GET";
|
|
10
11
|
contextMenu?: DayPilot.Menu;
|
|
@@ -763,8 +764,8 @@ export declare module DayPilot {
|
|
|
763
764
|
id(): EventId;
|
|
764
765
|
text(): string;
|
|
765
766
|
text(newText: string): void;
|
|
766
|
-
resource():
|
|
767
|
-
resource(newResource:
|
|
767
|
+
resource(): ResourceId;
|
|
768
|
+
resource(newResource: ResourceId): void;
|
|
768
769
|
duration(): DayPilot.Duration;
|
|
769
770
|
}
|
|
770
771
|
export class Selection {
|