File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
projects/igniteui-angular
core/src/services/overlay
date-picker/src/date-range-picker Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments