mn-angular-lib 0.0.71 → 0.0.72
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
|
@@ -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():
|
|
3560
|
+
ngOnInit(): 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():
|
|
3626
|
+
ngOnInit(): void;
|
|
3627
3627
|
ngOnDestroy(): void;
|
|
3628
3628
|
/** Returns the CSS `grid-row` value for an event. */
|
|
3629
3629
|
getEventRow(event: CalendarEvent): string;
|