@daypilot/daypilot-lite-angular 3.10.1 → 3.11.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 +419 -260
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +406 -205
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +418 -259
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +6 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare module DayPilot {
|
|
|
17
17
|
eventResizeHandling?: "Update" | "CallBack" | "Disabled";
|
|
18
18
|
eventRightClickHandling?: "ContextMenu" | "Enabled" | "Disabled";
|
|
19
19
|
headerClickHandling?: "Enabled" | "Disabled";
|
|
20
|
+
headerDateFormat?: string;
|
|
20
21
|
headerHeight?: number;
|
|
21
22
|
headerTextWrappingEnabled?: boolean;
|
|
22
23
|
height?: number;
|
|
@@ -572,6 +573,11 @@ export declare module DayPilot {
|
|
|
572
573
|
static overlaps(start1: number, end1: number, start2: number, end2: number): boolean;
|
|
573
574
|
static escapeHtml(text: string): string;
|
|
574
575
|
}
|
|
576
|
+
export class ColorUtil {
|
|
577
|
+
static darker(color: string, steps?: number): string;
|
|
578
|
+
static lighter(color: string, steps?: number): string;
|
|
579
|
+
static contrasting(color: string, light?: string, dark?: string): string;
|
|
580
|
+
}
|
|
575
581
|
export class Http {
|
|
576
582
|
static get(url: string, options?: HttpGetOptions): Promise<HttpPromiseArgs>;
|
|
577
583
|
static post(url: string, data?: object | string, options?: HttpPostOptions): Promise<HttpPromiseArgs>;
|