@daypilot/daypilot-lite-angular 3.26.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 +440 -426
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +559 -556
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +439 -425
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +3 -0
- package/package.json +1 -1
|
@@ -94,9 +94,11 @@ export declare module DayPilot {
|
|
|
94
94
|
clearSelection(): void;
|
|
95
95
|
dispose(): void;
|
|
96
96
|
disposed(): boolean;
|
|
97
|
+
getScrollY(): number;
|
|
97
98
|
getSelection(): DayPilot.Selection;
|
|
98
99
|
hide(): void;
|
|
99
100
|
init(): void;
|
|
101
|
+
setScrollY(scrollY: number): void;
|
|
100
102
|
show(): void;
|
|
101
103
|
update(options?: CalendarConfig): void;
|
|
102
104
|
visibleStart(): DayPilot.Date;
|
|
@@ -595,6 +597,7 @@ export declare module DayPilot {
|
|
|
595
597
|
}
|
|
596
598
|
export class SwitcherPropsAndEvents {
|
|
597
599
|
selectedClass?: string;
|
|
600
|
+
syncScrollbar?: boolean;
|
|
598
601
|
onChange?: EventHandler<SwitcherChangeArgs>;
|
|
599
602
|
onChanged?: EventHandler<SwitcherChangedArgs>;
|
|
600
603
|
onSelect?: EventHandler<SwitcherSelectArgs>;
|