igniteui-angular 21.2.6 → 21.2.8
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/fesm2022/igniteui-angular-combo.mjs +46 -3
- package/fesm2022/igniteui-angular-combo.mjs.map +1 -1
- package/fesm2022/igniteui-angular-date-picker.mjs +2 -0
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-drop-down.mjs +1 -1
- package/fesm2022/igniteui-angular-drop-down.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +60 -5
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +3 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +20 -0
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-combo.d.ts +22 -1
- package/types/igniteui-angular-drop-down.d.ts +1 -1
- package/types/igniteui-angular-grids-core.d.ts +3 -0
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +9 -0
|
@@ -1030,6 +1030,7 @@ class IgxDatePickerComponent extends PickerBaseDirective {
|
|
|
1030
1030
|
this._initializeCalendarContainer(e.componentRef.instance);
|
|
1031
1031
|
this._calendarContainer = e.componentRef.location.nativeElement;
|
|
1032
1032
|
this._collapsed = false;
|
|
1033
|
+
this.cdr.markForCheck();
|
|
1033
1034
|
});
|
|
1034
1035
|
this._overlayService.opened.pipe(...this._overlaySubFilter).subscribe(() => {
|
|
1035
1036
|
this.opened.emit({ owner: this });
|
|
@@ -1059,6 +1060,7 @@ class IgxDatePickerComponent extends PickerBaseDirective {
|
|
|
1059
1060
|
this._overlayId = null;
|
|
1060
1061
|
this._calendar = null;
|
|
1061
1062
|
this._calendarContainer = undefined;
|
|
1063
|
+
this.cdr.markForCheck();
|
|
1062
1064
|
});
|
|
1063
1065
|
}
|
|
1064
1066
|
getMinMaxDates() {
|