@daypilot/daypilot-lite-angular 3.1.0 → 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.
@@ -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" | "Edit" | "Select" | "ContextMenu" | "Bubble";
12
+ eventClickHandling?: "Enabled" | "Disabled" | "CallBack";
13
13
  eventDeleteHandling?: "Update" | "Disabled" | "CallBack";
14
- eventMoveHandling?: "Update" | "CallBack" | "Notify" | "Disabled";
15
- eventResizeHandling?: "Update" | "CallBack" | "Notify" | "Disabled";
14
+ eventMoveHandling?: "Update" | "CallBack" | "Disabled";
15
+ eventResizeHandling?: "Update" | "CallBack" | "Disabled";
16
16
  headerHeight?: number;
17
17
  height?: number;
18
- heightSpec?: "BusinessHours" | "BusinessHoursNoScroll" | "Fixed" | "Full" | "Parent100Pct";
18
+ heightSpec?: "BusinessHours" | "BusinessHoursNoScroll" | "Full";
19
19
  hideUntilInit?: boolean;
20
20
  hourWidth?: number;
21
21
  initScrollPos?: number;
@@ -140,13 +140,16 @@ 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;
146
+ eventBarVisible?: number;
145
147
  eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "Select" | "ContextMenu" | "Bubble";
146
148
  eventHeight?: number;
147
149
  eventDeleteHandling?: "Update" | "Disabled";
148
150
  eventMoveHandling?: "Update" | "CallBack" | "Notify" | "Disabled";
149
151
  eventResizeHandling?: "Update" | "CallBack" | "Notify" | "Disabled";
152
+ headerClickHandling?: "Enabled" | "Disabled" | "CallBack";
150
153
  headerHeight?: number;
151
154
  hideUntilInit?: boolean;
152
155
  lineSpace?: number;
@@ -310,6 +313,10 @@ export declare module DayPilot {
310
313
  export class NavigatorConfig extends NavigatorPropsAndEvents {
311
314
  events?: EventData[];
312
315
  }
316
+ interface NavigatorSelectOptions {
317
+ dontFocus?: boolean;
318
+ dontNotify?: boolean;
319
+ }
313
320
  export class Navigator extends NavigatorPropsAndEvents {
314
321
  v: string;
315
322
  events: {
@@ -319,7 +326,8 @@ export declare module DayPilot {
319
326
  init(): void;
320
327
  dispose(): void;
321
328
  update(options?: NavigatorConfig): void;
322
- 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;
323
331
  hide(): void;
324
332
  show(): void;
325
333
  visibleEnd(): DayPilot.Date;
@@ -518,34 +526,14 @@ export declare module DayPilot {
518
526
  text: string;
519
527
  resource?: ResourceId;
520
528
  backColor?: string;
521
- backImage?: string;
522
- backRepeat?: string;
529
+ barBackColor?: string;
530
+ barColor?: string;
531
+ barHidden?: boolean;
523
532
  borderColor?: string;
524
- bubbleHtml?: string;
525
- clickDisabled?: boolean;
526
533
  cssClass?: string;
527
- deleteDisabled?: boolean;
528
- doubleClickDisabled?: boolean;
529
534
  fontColor?: string;
530
- hidden?: boolean;
531
535
  html?: string;
532
- line?: "dedicated" | number;
533
- moveDisabled?: boolean;
534
- resizeDisabled?: boolean;
535
- rightClickDisabled?: boolean;
536
- sort?: string[];
537
536
  tags?: any;
538
- toolTip?: string;
539
- barBackColor?: string;
540
- barColor?: string;
541
- barHidden?: boolean;
542
- complete?: number;
543
- container?: number | string;
544
- height?: number;
545
- htmlLeft?: string;
546
- htmlRight?: string;
547
- moveVDisabled?: boolean;
548
- moveHDisabled?: boolean;
549
537
  }
550
538
  export function guid(): string;
551
539
  export interface EventHandler<T> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daypilot/daypilot-lite-angular",
3
- "version": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "DayPilot Lite for Angular",
5
5
  "homepage": "https://javascript.daypilot.org/",
6
6
  "author": "Annpoint, s.r.o.",