docs: deprecate DynamicComponentLoader
and DebugNode.inject
This commit is contained in:
parent
cacdead96d
commit
a0b5964a63
@ -38,6 +38,11 @@ export class DebugNode {
|
|||||||
|
|
||||||
get source(): string { return isPresent(this._debugInfo) ? this._debugInfo.source : null; }
|
get source(): string { return isPresent(this._debugInfo) ? this._debugInfo.source : null; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use injector.get(token) instead.
|
||||||
|
*
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
inject(token: any): any { return this.injector.get(token); }
|
inject(token: any): any { return this.injector.get(token); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +10,9 @@ import {ComponentRef} from './component_factory';
|
|||||||
import {ViewContainerRef} from './view_container_ref';
|
import {ViewContainerRef} from './view_container_ref';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Service for instantiating a Component and attaching it to a View at a specified location.
|
* Use ComponentResolver and ViewContainerRef directly.
|
||||||
|
*
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
export abstract class DynamicComponentLoader {
|
export abstract class DynamicComponentLoader {
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user