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.
|
@@ -5625,9 +5625,9 @@ class CalendarWeekComponent {
|
|
|
5625
5625
|
this.layoutService = layoutService;
|
|
5626
5626
|
this.formatter = new DefaultCalendarDateFormatter();
|
|
5627
5627
|
}
|
|
5628
|
-
ngOnInit() {
|
|
5628
|
+
async ngOnInit() {
|
|
5629
5629
|
this.resolvedConfig = this.config ? resolveCalendarConfig(this.config) : { ...DEFAULT_CALENDAR_CONFIG };
|
|
5630
|
-
this.buildHourRows();
|
|
5630
|
+
await this.buildHourRows();
|
|
5631
5631
|
this.buildColumns();
|
|
5632
5632
|
this.updateCurrentTime();
|
|
5633
5633
|
this.currentTimeInterval = setInterval(() => this.updateCurrentTime(), 60000);
|
|
@@ -5841,9 +5841,9 @@ class CalendarDayComponent {
|
|
|
5841
5841
|
this.layoutService = layoutService;
|
|
5842
5842
|
this.formatter = new DefaultCalendarDateFormatter();
|
|
5843
5843
|
}
|
|
5844
|
-
ngOnInit() {
|
|
5844
|
+
async ngOnInit() {
|
|
5845
5845
|
this.resolvedConfig = this.config ? resolveCalendarConfig(this.config) : { ...DEFAULT_CALENDAR_CONFIG };
|
|
5846
|
-
this.buildHourRows();
|
|
5846
|
+
await this.buildHourRows();
|
|
5847
5847
|
this.updateDayInfo();
|
|
5848
5848
|
this.updateCurrentTime();
|
|
5849
5849
|
this.currentTimeInterval = setInterval(() => this.updateCurrentTime(), 60000);
|