Skip to content

Commit 73ce1fa

Browse files
committed
Merge branch 'mvenkov/do-not-move-overlay-element-from-its-position' of https://github.com/IgniteUI/igniteui-angular into mvenkov/do-not-move-overlay-element-from-its-position
2 parents a15a0f4 + 35d4852 commit 73ce1fa

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

projects/igniteui-angular/core/src/services/overlay/utilities.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,11 @@ export interface OverlaySettings {
132132
closeOnEscape?: boolean;
133133
/* blazorSuppress */
134134
/**
135-
* @deprecated The `outlet` property is deprecated. Use `keepInPlace` property to keep the overlay in its original DOM position.
136-
* Set the outlet container to attach the overlay to */
135+
* @deprecated The `outlet` property is deprecated. There is no direct 1:1 replacement for attaching overlays to an arbitrary outlet
136+
* container. If you only used `outlet` to keep the overlay in its current DOM position (i.e. not moved to the overlay container),
137+
* use the `keepInPlace` property instead.
138+
* Set the outlet container to attach the overlay to.
139+
*/
137140
outlet?: IgxOverlayOutletDirective | ElementRef;
138141
/**
139142
* @hidden @internal

projects/igniteui-angular/date-picker/src/date-range-picker/date-range-picker.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,6 @@ export class IgxDateRangePickerComponent extends PickerBaseDirective
962962
private handleClosing(e: IBaseCancelableBrowserEventArgs): void {
963963
const args = { owner: this, cancel: e?.cancel, event: e?.event };
964964
this.closing.emit(args);
965-
console.log('closing', args);
966965
e.cancel = args.cancel;
967966
if (args.cancel) {
968967
return;

0 commit comments

Comments
 (0)