@daypilot/daypilot-lite-javascript 3.26.0 → 3.28.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.
|
@@ -35,6 +35,7 @@ export module DayPilot {
|
|
|
35
35
|
days?: number;
|
|
36
36
|
doubleClickTimeout?: number;
|
|
37
37
|
durationBarVisible?: boolean;
|
|
38
|
+
eventBorderRadius?: string | number;
|
|
38
39
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
39
40
|
eventDeleteHandling?: "Update" | "Disabled" | "CallBack";
|
|
40
41
|
eventMoveHandling?: "Update" | "CallBack" | "Disabled";
|
|
@@ -122,12 +123,16 @@ export module DayPilot {
|
|
|
122
123
|
|
|
123
124
|
disposed(): boolean;
|
|
124
125
|
|
|
126
|
+
getScrollY(): number;
|
|
127
|
+
|
|
125
128
|
getSelection(): DayPilot.Selection;
|
|
126
129
|
|
|
127
130
|
hide(): void;
|
|
128
131
|
|
|
129
132
|
init(): void;
|
|
130
133
|
|
|
134
|
+
setScrollY(scrollY: number): void;
|
|
135
|
+
|
|
131
136
|
show(): void;
|
|
132
137
|
|
|
133
138
|
update(options?: CalendarConfig): void;
|
|
@@ -734,6 +739,7 @@ export module DayPilot {
|
|
|
734
739
|
|
|
735
740
|
export class SwitcherPropsAndEvents {
|
|
736
741
|
selectedClass?: string;
|
|
742
|
+
syncScrollbar?: boolean;
|
|
737
743
|
|
|
738
744
|
onChange?: EventHandler<SwitcherChangeArgs>;
|
|
739
745
|
onChanged?: EventHandler<SwitcherChangedArgs>;
|