@daypilot/daypilot-lite-angular 3.25.0 → 3.27.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 +462 -441
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +581 -555
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +461 -440
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +6 -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;
|
|
@@ -93,9 +94,11 @@ export declare module DayPilot {
|
|
|
93
94
|
clearSelection(): void;
|
|
94
95
|
dispose(): void;
|
|
95
96
|
disposed(): boolean;
|
|
97
|
+
getScrollY(): number;
|
|
96
98
|
getSelection(): DayPilot.Selection;
|
|
97
99
|
hide(): void;
|
|
98
100
|
init(): void;
|
|
101
|
+
setScrollY(scrollY: number): void;
|
|
99
102
|
show(): void;
|
|
100
103
|
update(options?: CalendarConfig): void;
|
|
101
104
|
visibleStart(): DayPilot.Date;
|
|
@@ -594,6 +597,7 @@ export declare module DayPilot {
|
|
|
594
597
|
}
|
|
595
598
|
export class SwitcherPropsAndEvents {
|
|
596
599
|
selectedClass?: string;
|
|
600
|
+
syncScrollbar?: boolean;
|
|
597
601
|
onChange?: EventHandler<SwitcherChangeArgs>;
|
|
598
602
|
onChanged?: EventHandler<SwitcherChangedArgs>;
|
|
599
603
|
onSelect?: EventHandler<SwitcherSelectArgs>;
|
|
@@ -763,8 +767,8 @@ export declare module DayPilot {
|
|
|
763
767
|
id(): EventId;
|
|
764
768
|
text(): string;
|
|
765
769
|
text(newText: string): void;
|
|
766
|
-
resource():
|
|
767
|
-
resource(newResource:
|
|
770
|
+
resource(): ResourceId;
|
|
771
|
+
resource(newResource: ResourceId): void;
|
|
768
772
|
duration(): DayPilot.Duration;
|
|
769
773
|
}
|
|
770
774
|
export class Selection {
|