Skip to content

Commit 88abd9e

Browse files
crisbetommalerba
authored andcommitted
refactor(portal): remove 6.0.0 deletion targets (#10257)
Removes the deletion targets for 6.0.0 in the `cdk/portal` entry point. BREAKING CHANGES: * The `portalHost` and `cdkPortalHost` inputs which were deprecated in 5.0.0 have been removed. Use `cdkPortalOutlet` instead.
1 parent c1d4666 commit 88abd9e

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/cdk/portal/portal-directives.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import {
1616
ViewContainerRef,
1717
OnDestroy,
1818
OnInit,
19-
Input,
2019
EventEmitter,
2120
Output,
2221
} from '@angular/core';
@@ -68,22 +67,6 @@ export class CdkPortalOutlet extends BasePortalOutlet implements OnInit, OnDestr
6867
super();
6968
}
7069

71-
/**
72-
* @deprecated
73-
* @deletion-target 6.0.0
74-
*/
75-
@Input('portalHost')
76-
get _deprecatedPortal() { return this.portal; }
77-
set _deprecatedPortal(v) { this.portal = v; }
78-
79-
/**
80-
* @deprecated
81-
* @deletion-target 6.0.0
82-
*/
83-
@Input('cdkPortalHost')
84-
get _deprecatedPortalHost() { return this.portal; }
85-
set _deprecatedPortalHost(v) { this.portal = v; }
86-
8770
/** Portal associated with the Portal outlet. */
8871
get portal(): Portal<any> | null {
8972
return this._attachedPortal;

0 commit comments

Comments
 (0)