@daypilot/daypilot-lite-javascript 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.
|
@@ -28,6 +28,7 @@ export module DayPilot {
|
|
|
28
28
|
businessBeginsHour?: number;
|
|
29
29
|
businessEndsHour?: number;
|
|
30
30
|
cellHeight?: number;
|
|
31
|
+
columnMarginLeft?: number;
|
|
31
32
|
columnMarginRight?: number;
|
|
32
33
|
columnsLoadMethod?: "POST" | "GET";
|
|
33
34
|
contextMenu?: DayPilot.Menu;
|
|
@@ -121,12 +122,16 @@ export module DayPilot {
|
|
|
121
122
|
|
|
122
123
|
disposed(): boolean;
|
|
123
124
|
|
|
125
|
+
getScrollY(): number;
|
|
126
|
+
|
|
124
127
|
getSelection(): DayPilot.Selection;
|
|
125
128
|
|
|
126
129
|
hide(): void;
|
|
127
130
|
|
|
128
131
|
init(): void;
|
|
129
132
|
|
|
133
|
+
setScrollY(scrollY: number): void;
|
|
134
|
+
|
|
130
135
|
show(): void;
|
|
131
136
|
|
|
132
137
|
update(options?: CalendarConfig): void;
|
|
@@ -733,6 +738,7 @@ export module DayPilot {
|
|
|
733
738
|
|
|
734
739
|
export class SwitcherPropsAndEvents {
|
|
735
740
|
selectedClass?: string;
|
|
741
|
+
syncScrollbar?: boolean;
|
|
736
742
|
|
|
737
743
|
onChange?: EventHandler<SwitcherChangeArgs>;
|
|
738
744
|
onChanged?: EventHandler<SwitcherChangedArgs>;
|
|
@@ -990,8 +996,8 @@ export module DayPilot {
|
|
|
990
996
|
text(): string;
|
|
991
997
|
text(newText: string): void;
|
|
992
998
|
|
|
993
|
-
resource():
|
|
994
|
-
resource(newResource:
|
|
999
|
+
resource(): ResourceId;
|
|
1000
|
+
resource(newResource: ResourceId): void;
|
|
995
1001
|
|
|
996
1002
|
duration(): DayPilot.Duration;
|
|
997
1003
|
}
|