@angular/core 7.2.2 → 7.2.3
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/core-testing.umd.js +1 -1
- package/bundles/core-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +2 -2
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +2 -2
- package/bundles/core.umd.min.js.map +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/linker/template_ref.js +6 -4
- package/esm2015/src/metadata/di.js +1 -1
- package/esm2015/src/metadata/directives.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/src/linker/template_ref.js +1 -1
- package/esm5/src/metadata/di.js +1 -1
- package/esm5/src/metadata/directives.js +1 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +2 -2
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +2 -2
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/package.json +1 -1
- package/src/linker/template_ref.d.ts +5 -3
- package/src/metadata/di.d.ts +0 -2
- package/src/metadata/directives.d.ts +3 -3
- package/testing.d.ts +1 -1
package/fesm5/testing.js
CHANGED
package/package.json
CHANGED
|
@@ -40,9 +40,11 @@ export declare abstract class TemplateRef<C> {
|
|
|
40
40
|
*/
|
|
41
41
|
abstract readonly elementRef: ElementRef;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
* @
|
|
43
|
+
* Instantiates an embedded view based on this template,
|
|
44
|
+
* and attaches it to the view container.
|
|
45
|
+
* @param context The data-binding context of the embedded view, as declared
|
|
46
|
+
* in the `<ng-template>` usage.
|
|
47
|
+
* @returns The new embedded view object.
|
|
46
48
|
*/
|
|
47
49
|
abstract createEmbeddedView(context: C): EmbeddedViewRef<C>;
|
|
48
50
|
}
|
package/src/metadata/di.d.ts
CHANGED
|
@@ -461,8 +461,8 @@ export interface Component extends Directive {
|
|
|
461
461
|
*/
|
|
462
462
|
moduleId?: string;
|
|
463
463
|
/**
|
|
464
|
-
* The URL of a template file for an Angular component.
|
|
465
|
-
* do not supply an inline template using `template`.
|
|
464
|
+
* The relative path or absolute URL of a template file for an Angular component.
|
|
465
|
+
* If provided, do not supply an inline template using `template`.
|
|
466
466
|
*
|
|
467
467
|
*/
|
|
468
468
|
templateUrl?: string;
|
|
@@ -473,7 +473,7 @@ export interface Component extends Directive {
|
|
|
473
473
|
*/
|
|
474
474
|
template?: string;
|
|
475
475
|
/**
|
|
476
|
-
* One or more URLs for files containing CSS stylesheets to use
|
|
476
|
+
* One or more relative paths or absolute URLs for files containing CSS stylesheets to use
|
|
477
477
|
* in this component.
|
|
478
478
|
*/
|
|
479
479
|
styleUrls?: string[];
|
package/testing.d.ts
CHANGED