@daypilot/daypilot-lite-angular 3.2.0 → 3.4.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 +139 -131
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +163 -148
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +138 -130
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +12 -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;
|
|
@@ -140,6 +140,7 @@ export declare module DayPilot {
|
|
|
140
140
|
}
|
|
141
141
|
export class MonthPropsAndEvents {
|
|
142
142
|
backendUrl?: string;
|
|
143
|
+
cellHeaderClickHandling?: "Enabled" | "Disabled";
|
|
143
144
|
cellHeaderHeight?: number;
|
|
144
145
|
cellHeight?: number;
|
|
145
146
|
eventBarVisible?: number;
|
|
@@ -148,6 +149,7 @@ export declare module DayPilot {
|
|
|
148
149
|
eventDeleteHandling?: "Update" | "Disabled";
|
|
149
150
|
eventMoveHandling?: "Update" | "CallBack" | "Notify" | "Disabled";
|
|
150
151
|
eventResizeHandling?: "Update" | "CallBack" | "Notify" | "Disabled";
|
|
152
|
+
headerClickHandling?: "Enabled" | "Disabled" | "CallBack";
|
|
151
153
|
headerHeight?: number;
|
|
152
154
|
hideUntilInit?: boolean;
|
|
153
155
|
lineSpace?: number;
|
|
@@ -311,6 +313,10 @@ export declare module DayPilot {
|
|
|
311
313
|
export class NavigatorConfig extends NavigatorPropsAndEvents {
|
|
312
314
|
events?: EventData[];
|
|
313
315
|
}
|
|
316
|
+
interface NavigatorSelectOptions {
|
|
317
|
+
dontFocus?: boolean;
|
|
318
|
+
dontNotify?: boolean;
|
|
319
|
+
}
|
|
314
320
|
export class Navigator extends NavigatorPropsAndEvents {
|
|
315
321
|
v: string;
|
|
316
322
|
events: {
|
|
@@ -320,7 +326,8 @@ export declare module DayPilot {
|
|
|
320
326
|
init(): void;
|
|
321
327
|
dispose(): void;
|
|
322
328
|
update(options?: NavigatorConfig): void;
|
|
323
|
-
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;
|
|
324
331
|
hide(): void;
|
|
325
332
|
show(): void;
|
|
326
333
|
visibleEnd(): DayPilot.Date;
|