@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.
@@ -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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daypilot/daypilot-lite-angular",
3
- "version": "3.10.1",
3
+ "version": "3.11.0",
4
4
  "description": "DayPilot Lite for Angular",
5
5
  "homepage": "https://javascript.daypilot.org/",
6
6
  "author": "Annpoint, s.r.o.",