@daypilot/daypilot-lite-angular 3.2.1 → 3.3.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 +129 -127
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +150 -145
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +128 -126
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +10 -5
- package/package.json +1 -1
|
@@ -9,13 +9,13 @@ export declare module DayPilot {
|
|
|
9
9
|
days?: number;
|
|
10
10
|
doubleClickTimeout?: number;
|
|
11
11
|
durationBarVisible?: boolean;
|
|
12
|
-
eventClickHandling?: "Enabled" | "Disabled" | "CallBack"
|
|
12
|
+
eventClickHandling?: "Enabled" | "Disabled" | "CallBack";
|
|
13
13
|
eventDeleteHandling?: "Update" | "Disabled" | "CallBack";
|
|
14
|
-
eventMoveHandling?: "Update" | "CallBack" | "
|
|
15
|
-
eventResizeHandling?: "Update" | "CallBack" | "
|
|
14
|
+
eventMoveHandling?: "Update" | "CallBack" | "Disabled";
|
|
15
|
+
eventResizeHandling?: "Update" | "CallBack" | "Disabled";
|
|
16
16
|
headerHeight?: number;
|
|
17
17
|
height?: number;
|
|
18
|
-
heightSpec?: "BusinessHours" | "BusinessHoursNoScroll" | "
|
|
18
|
+
heightSpec?: "BusinessHours" | "BusinessHoursNoScroll" | "Full";
|
|
19
19
|
hideUntilInit?: boolean;
|
|
20
20
|
hourWidth?: number;
|
|
21
21
|
initScrollPos?: number;
|
|
@@ -313,6 +313,10 @@ export declare module DayPilot {
|
|
|
313
313
|
export class NavigatorConfig extends NavigatorPropsAndEvents {
|
|
314
314
|
events?: EventData[];
|
|
315
315
|
}
|
|
316
|
+
interface NavigatorSelectOptions {
|
|
317
|
+
dontFocus?: boolean;
|
|
318
|
+
dontNotify?: boolean;
|
|
319
|
+
}
|
|
316
320
|
export class Navigator extends NavigatorPropsAndEvents {
|
|
317
321
|
v: string;
|
|
318
322
|
events: {
|
|
@@ -322,7 +326,8 @@ export declare module DayPilot {
|
|
|
322
326
|
init(): void;
|
|
323
327
|
dispose(): void;
|
|
324
328
|
update(options?: NavigatorConfig): void;
|
|
325
|
-
select(date: DayPilot.Date | string): void;
|
|
329
|
+
select(date: DayPilot.Date | string, options?: NavigatorSelectOptions): void;
|
|
330
|
+
select(start: DayPilot.Date | string, end: DayPilot.Date | string, options?: NavigatorSelectOptions): void;
|
|
326
331
|
hide(): void;
|
|
327
332
|
show(): void;
|
|
328
333
|
visibleEnd(): DayPilot.Date;
|