@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/fesm5/testing.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.2
2
+ * @license Angular v7.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "7.2.2",
3
+ "version": "7.2.3",
4
4
  "description": "Angular - the core framework",
5
5
  "main": "./bundles/core.umd.js",
6
6
  "module": "./fesm5/core.js",
@@ -40,9 +40,11 @@ export declare abstract class TemplateRef<C> {
40
40
  */
41
41
  abstract readonly elementRef: ElementRef;
42
42
  /**
43
- * Creates a view object and attaches it to the view container of the parent view.
44
- * @param context The context for the new view, inherited from the anchor element.
45
- * @returns The new view object.
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
  }
@@ -234,8 +234,6 @@ export interface ContentChildDecorator {
234
234
  /**
235
235
  * Type of the ContentChild metadata.
236
236
  *
237
- * @see `ContentChild`.
238
- *
239
237
  * @publicApi
240
238
  */
241
239
  export declare type ContentChild = Query;
@@ -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. If provided,
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
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.2
2
+ * @license Angular v7.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */