igniteui-angular 21.0.12 → 21.0.13
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-action-strip.mjs.map +1 -1
- package/fesm2022/igniteui-angular-date-picker.mjs +7 -3
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +7 -3
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-time-picker.mjs +6 -1
- package/fesm2022/igniteui-angular-time-picker.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-time-picker.d.ts +1 -0
|
@@ -743,6 +743,9 @@ class IgxTimePickerComponent extends PickerBaseDirective {
|
|
|
743
743
|
get dropDownOverlaySettings() {
|
|
744
744
|
return Object.assign({}, this._defaultDropDownOverlaySettings, this.overlaySettings);
|
|
745
745
|
}
|
|
746
|
+
get inputGroupElement() {
|
|
747
|
+
return this.inputGroup?.element.nativeElement.querySelector('.igx-input-group__bundle');
|
|
748
|
+
}
|
|
746
749
|
/**
|
|
747
750
|
* The currently selected value / time from the drop-down/dialog
|
|
748
751
|
*
|
|
@@ -944,7 +947,6 @@ class IgxTimePickerComponent extends PickerBaseDirective {
|
|
|
944
947
|
outlet: this.outlet
|
|
945
948
|
};
|
|
946
949
|
this._defaultDropDownOverlaySettings = {
|
|
947
|
-
target: this.element.nativeElement,
|
|
948
950
|
modal: false,
|
|
949
951
|
closeOnOutsideClick: true,
|
|
950
952
|
scrollStrategy: new AbsoluteScrollStrategy(),
|
|
@@ -1092,6 +1094,9 @@ class IgxTimePickerComponent extends PickerBaseDirective {
|
|
|
1092
1094
|
const overlaySettings = Object.assign({}, this.isDropdown
|
|
1093
1095
|
? this.dropDownOverlaySettings
|
|
1094
1096
|
: this.dialogOverlaySettings, settings);
|
|
1097
|
+
if (this.isDropdown && this.inputGroupElement) {
|
|
1098
|
+
overlaySettings.target = this.inputGroupElement;
|
|
1099
|
+
}
|
|
1095
1100
|
this.toggleRef.open(overlaySettings);
|
|
1096
1101
|
}
|
|
1097
1102
|
/**
|