@angular/cdk 8.1.3 → 8.1.4
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/bundles/cdk-overlay.umd.js +3 -0
- package/bundles/cdk-overlay.umd.js.map +1 -1
- package/bundles/cdk-overlay.umd.min.js +1 -1
- package/bundles/cdk-overlay.umd.min.js.map +1 -1
- package/bundles/cdk-portal.umd.js +84 -9
- package/bundles/cdk-portal.umd.js.map +1 -1
- package/bundles/cdk-portal.umd.min.js +1 -1
- package/bundles/cdk-portal.umd.min.js.map +1 -1
- package/bundles/cdk-stepper.umd.js +6 -6
- package/bundles/cdk-stepper.umd.js.map +1 -1
- package/bundles/cdk-stepper.umd.min.js.map +1 -1
- package/bundles/cdk.umd.js +1 -1
- package/bundles/cdk.umd.js.map +1 -1
- package/bundles/cdk.umd.min.js +1 -1
- package/bundles/cdk.umd.min.js.map +1 -1
- package/esm2015/cdk.js +1 -1
- package/esm2015/cdk.js.map +1 -1
- package/esm2015/overlay.js +3 -0
- package/esm2015/overlay.js.map +1 -1
- package/esm2015/portal.js +52 -6
- package/esm2015/portal.js.map +1 -1
- package/esm2015/stepper.js +2 -2
- package/esm2015/stepper.js.map +1 -1
- package/esm5/cdk.es5.js +1 -1
- package/esm5/cdk.es5.js.map +1 -1
- package/esm5/overlay.es5.js +3 -0
- package/esm5/overlay.es5.js.map +1 -1
- package/esm5/portal.es5.js +81 -6
- package/esm5/portal.es5.js.map +1 -1
- package/esm5/stepper.es5.js +6 -6
- package/esm5/stepper.es5.js.map +1 -1
- package/package.json +3 -3
- package/portal/typings/dom-portal-outlet.d.ts +6 -0
- package/portal/typings/index.metadata.json +1 -1
- package/portal/typings/portal-directives.d.ts +12 -0
- package/portal/typings/portal.d.ts +11 -0
- package/portal/typings/public-api.d.ts +0 -3
- package/schematics/tsconfig.tsbuildinfo +2896 -2896
- package/schematics/utils/version-agnostic-typescript.js +12 -4
- package/schematics/utils/version-agnostic-typescript.js.map +1 -1
- package/typings/esm5/index.metadata.json +1 -1
- package/typings/esm5/portal/dom-portal-outlet.d.ts +6 -0
- package/typings/esm5/portal/index.metadata.json +1 -1
- package/typings/esm5/portal/portal-directives.d.ts +12 -0
- package/typings/esm5/portal/portal.d.ts +11 -0
- package/typings/esm5/portal/public-api.d.ts +0 -3
- package/typings/index.metadata.json +1 -1
- package/typings/portal/dom-portal-outlet.d.ts +6 -0
- package/typings/portal/index.metadata.json +1 -1
- package/typings/portal/portal-directives.d.ts +12 -0
- package/typings/portal/portal.d.ts +11 -0
- package/typings/portal/public-api.d.ts +0 -3
|
@@ -14,6 +14,12 @@ import { BasePortalOutlet, ComponentPortal, Portal, TemplatePortal } from './por
|
|
|
14
14
|
export declare class CdkPortal extends TemplatePortal {
|
|
15
15
|
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Use `CdkPortal` instead.
|
|
19
|
+
* @breaking-change 9.0.0
|
|
20
|
+
*/
|
|
21
|
+
export declare class TemplatePortalDirective extends CdkPortal {
|
|
22
|
+
}
|
|
17
23
|
/**
|
|
18
24
|
* Possible attached references to the CdkPortalOutlet.
|
|
19
25
|
*/
|
|
@@ -55,5 +61,11 @@ export declare class CdkPortalOutlet extends BasePortalOutlet implements OnInit,
|
|
|
55
61
|
*/
|
|
56
62
|
attachTemplatePortal<C>(portal: TemplatePortal<C>): EmbeddedViewRef<C>;
|
|
57
63
|
}
|
|
64
|
+
/**
|
|
65
|
+
* @deprecated Use `CdkPortalOutlet` instead.
|
|
66
|
+
* @breaking-change 9.0.0
|
|
67
|
+
*/
|
|
68
|
+
export declare class PortalHostDirective extends CdkPortalOutlet {
|
|
69
|
+
}
|
|
58
70
|
export declare class PortalModule {
|
|
59
71
|
}
|
|
@@ -80,6 +80,11 @@ export interface PortalOutlet {
|
|
|
80
80
|
/** Whether there is currently a portal attached to this outlet. */
|
|
81
81
|
hasAttached(): boolean;
|
|
82
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* @deprecated Use `PortalOutlet` instead.
|
|
85
|
+
* @breaking-change 9.0.0
|
|
86
|
+
*/
|
|
87
|
+
export declare type PortalHost = PortalOutlet;
|
|
83
88
|
/**
|
|
84
89
|
* Partial implementation of PortalOutlet that handles attaching
|
|
85
90
|
* ComponentPortal and TemplatePortal.
|
|
@@ -106,3 +111,9 @@ export declare abstract class BasePortalOutlet implements PortalOutlet {
|
|
|
106
111
|
setDisposeFn(fn: () => void): void;
|
|
107
112
|
private _invokeDisposeFn;
|
|
108
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* @deprecated Use `BasePortalOutlet` instead.
|
|
116
|
+
* @breaking-change 9.0.0
|
|
117
|
+
*/
|
|
118
|
+
export declare abstract class BasePortalHost extends BasePortalOutlet {
|
|
119
|
+
}
|
|
@@ -9,6 +9,3 @@ export * from './portal';
|
|
|
9
9
|
export * from './dom-portal-outlet';
|
|
10
10
|
export * from './portal-directives';
|
|
11
11
|
export * from './portal-injector';
|
|
12
|
-
export { DomPortalOutlet as DomPortalHost } from './dom-portal-outlet';
|
|
13
|
-
export { CdkPortalOutlet as PortalHostDirective, CdkPortal as TemplatePortalDirective, } from './portal-directives';
|
|
14
|
-
export { PortalOutlet as PortalHost, BasePortalOutlet as BasePortalHost } from './portal';
|