@angular/core 9.1.3 → 9.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.
Files changed (36) hide show
  1. package/bundles/core-testing.umd.js +1 -1
  2. package/bundles/core-testing.umd.min.js +1 -1
  3. package/bundles/core-testing.umd.min.js.map +1 -1
  4. package/bundles/core.umd.js +68 -28
  5. package/bundles/core.umd.js.map +1 -1
  6. package/bundles/core.umd.min.js +126 -126
  7. package/bundles/core.umd.min.js.map +1 -1
  8. package/core.d.ts +8 -3
  9. package/core.metadata.json +1 -1
  10. package/esm2015/src/render3/instructions/all.js +2 -2
  11. package/esm2015/src/render3/instructions/host_property.js +6 -4
  12. package/esm2015/src/render3/instructions/listener.js +7 -5
  13. package/esm2015/src/render3/instructions/lview_debug.js +6 -2
  14. package/esm2015/src/render3/instructions/shared.js +41 -12
  15. package/esm2015/src/render3/instructions/styling.js +3 -15
  16. package/esm2015/src/render3/interfaces/view.js +7 -1
  17. package/esm2015/src/render3/state.js +23 -2
  18. package/esm2015/src/version.js +1 -1
  19. package/esm5/src/render3/instructions/host_property.js +5 -4
  20. package/esm5/src/render3/instructions/listener.js +5 -4
  21. package/esm5/src/render3/instructions/lview_debug.js +5 -2
  22. package/esm5/src/render3/instructions/shared.js +38 -11
  23. package/esm5/src/render3/instructions/styling.js +3 -13
  24. package/esm5/src/render3/interfaces/view.js +1 -1
  25. package/esm5/src/render3/state.js +20 -2
  26. package/esm5/src/version.js +1 -1
  27. package/fesm2015/core.js +84 -32
  28. package/fesm2015/core.js.map +1 -1
  29. package/fesm2015/testing.js +1 -1
  30. package/fesm5/core.js +68 -28
  31. package/fesm5/core.js.map +1 -1
  32. package/fesm5/testing.js +1 -1
  33. package/package.json +1 -1
  34. package/src/r3_symbols.d.ts +1 -1
  35. package/testing/testing.d.ts +1 -1
  36. package/testing.d.ts +1 -1
package/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v9.1.3
2
+ * @license Angular v9.1.4
3
3
  * (c) 2010-2020 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -7772,6 +7772,11 @@ declare interface TView {
7772
7772
  * Used for directive matching, attribute bindings, local definitions and more.
7773
7773
  */
7774
7774
  consts: TConstants | null;
7775
+ /**
7776
+ * Indicates that there was an error before we managed to complete the first create pass of the
7777
+ * view. This means that the view is likely corrupted and we should try to recover it.
7778
+ */
7779
+ incompleteFirstPass: boolean;
7775
7780
  }
7776
7781
 
7777
7782
  /** Static data for a view */
@@ -11440,7 +11445,7 @@ export declare type ɵɵComponentDefWithMeta<T, Selector extends String, ExportA
11440
11445
  }, QueryFields extends string[], NgContentSelectors extends string[]> = ɵComponentDef<T>;
11441
11446
 
11442
11447
  /**
11443
- * Registers a synthetic host listener (e.g. `(@foo.start)`) on a component.
11448
+ * Registers a synthetic host listener (e.g. `(@foo.start)`) on a component or directive.
11444
11449
  *
11445
11450
  * This instruction is for compatibility purposes and is designed to ensure that a
11446
11451
  * synthetic host listener (e.g. `@HostListener('@foo.start')`) properly gets rendered
@@ -14445,7 +14450,7 @@ export declare function ɵɵtextInterpolate8(prefix: string, v0: any, i0: string
14445
14450
  export declare function ɵɵtextInterpolateV(values: any[]): typeof ɵɵtextInterpolateV;
14446
14451
 
14447
14452
  /**
14448
- * Updates a synthetic host binding (e.g. `[@foo]`) on a component.
14453
+ * Updates a synthetic host binding (e.g. `[@foo]`) on a component or directive.
14449
14454
  *
14450
14455
  * This instruction is for compatibility purposes and is designed to ensure that a
14451
14456
  * synthetic host binding (e.g. `@HostBinding('@foo')`) properly gets rendered in