@daypilot/daypilot-lite-javascript 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.
|
@@ -122,12 +122,16 @@ export module DayPilot {
|
|
|
122
122
|
|
|
123
123
|
disposed(): boolean;
|
|
124
124
|
|
|
125
|
+
getScrollY(): number;
|
|
126
|
+
|
|
125
127
|
getSelection(): DayPilot.Selection;
|
|
126
128
|
|
|
127
129
|
hide(): void;
|
|
128
130
|
|
|
129
131
|
init(): void;
|
|
130
132
|
|
|
133
|
+
setScrollY(scrollY: number): void;
|
|
134
|
+
|
|
131
135
|
show(): void;
|
|
132
136
|
|
|
133
137
|
update(options?: CalendarConfig): void;
|
|
@@ -734,6 +738,7 @@ export module DayPilot {
|
|
|
734
738
|
|
|
735
739
|
export class SwitcherPropsAndEvents {
|
|
736
740
|
selectedClass?: string;
|
|
741
|
+
syncScrollbar?: boolean;
|
|
737
742
|
|
|
738
743
|
onChange?: EventHandler<SwitcherChangeArgs>;
|
|
739
744
|
onChanged?: EventHandler<SwitcherChangedArgs>;
|