mn-angular-lib 0.0.70 → 0.0.71

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.70",
3
+ "version": "0.0.71",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -3557,7 +3557,7 @@ declare class CalendarWeekComponent implements OnInit, OnDestroy {
3557
3557
  private resolvedConfig;
3558
3558
  private currentTimeInterval?;
3559
3559
  constructor(layoutService: CalendarEventLayoutService);
3560
- ngOnInit(): void;
3560
+ ngOnInit(): Promise<void>;
3561
3561
  ngOnDestroy(): void;
3562
3562
  /** Returns the CSS `grid-row` value for an event based on its start/end times. */
3563
3563
  getEventRow(event: CalendarEvent): string;
@@ -3623,7 +3623,7 @@ declare class CalendarDayComponent implements OnInit, OnDestroy {
3623
3623
  private resolvedConfig;
3624
3624
  private currentTimeInterval?;
3625
3625
  constructor(layoutService: CalendarEventLayoutService);
3626
- ngOnInit(): void;
3626
+ ngOnInit(): Promise<void>;
3627
3627
  ngOnDestroy(): void;
3628
3628
  /** Returns the CSS `grid-row` value for an event. */
3629
3629
  getEventRow(event: CalendarEvent): string;