mn-angular-lib 0.0.72 → 0.0.74

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mn-angular-lib",
3
- "version": "0.0.72",
3
+ "version": "0.0.74",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -3531,6 +3531,7 @@ interface DisplayHourRow$1 extends HourRow {
3531
3531
  */
3532
3532
  declare class CalendarWeekComponent implements OnInit, OnDestroy {
3533
3533
  private layoutService;
3534
+ private cdr;
3534
3535
  /** The date around which the week is centred. */
3535
3536
  focusDay: Date;
3536
3537
  /** Observable that emits the full event list whenever it changes. */
@@ -3556,7 +3557,7 @@ declare class CalendarWeekComponent implements OnInit, OnDestroy {
3556
3557
  private formatter;
3557
3558
  private resolvedConfig;
3558
3559
  private currentTimeInterval?;
3559
- constructor(layoutService: CalendarEventLayoutService);
3560
+ constructor(layoutService: CalendarEventLayoutService, cdr: ChangeDetectorRef);
3560
3561
  ngOnInit(): void;
3561
3562
  ngOnDestroy(): void;
3562
3563
  /** Returns the CSS `grid-row` value for an event based on its start/end times. */
@@ -3598,6 +3599,7 @@ interface DisplayHourRow extends HourRow {
3598
3599
  */
3599
3600
  declare class CalendarDayComponent implements OnInit, OnDestroy {
3600
3601
  private layoutService;
3602
+ private cdr;
3601
3603
  /** The date to display. */
3602
3604
  focusDay: Date;
3603
3605
  /** Observable that emits the full event list whenever it changes. */
@@ -3622,7 +3624,7 @@ declare class CalendarDayComponent implements OnInit, OnDestroy {
3622
3624
  private formatter;
3623
3625
  private resolvedConfig;
3624
3626
  private currentTimeInterval?;
3625
- constructor(layoutService: CalendarEventLayoutService);
3627
+ constructor(layoutService: CalendarEventLayoutService, cdr: ChangeDetectorRef);
3626
3628
  ngOnInit(): void;
3627
3629
  ngOnDestroy(): void;
3628
3630
  /** Returns the CSS `grid-row` value for an event. */