@angular/core 11.1.0-next.4 → 11.1.1

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 (49) hide show
  1. package/bundles/core-testing.umd.js +2 -2
  2. package/bundles/core-testing.umd.js.map +1 -1
  3. package/bundles/core-testing.umd.min.js +2 -2
  4. package/bundles/core-testing.umd.min.js.map +1 -1
  5. package/bundles/core.umd.js +475 -342
  6. package/bundles/core.umd.js.map +1 -1
  7. package/bundles/core.umd.min.js +123 -124
  8. package/bundles/core.umd.min.js.map +1 -1
  9. package/core.d.ts +227 -144
  10. package/core.metadata.json +1 -1
  11. package/esm2015/core.js +33 -33
  12. package/esm2015/src/compiler/compiler_facade_interface.js +1 -1
  13. package/esm2015/src/core_render3_private_export.js +2 -2
  14. package/esm2015/src/di/injector_compatibility.js +39 -16
  15. package/esm2015/src/di/interface/injector.js +3 -2
  16. package/esm2015/src/di/metadata.js +22 -6
  17. package/esm2015/src/linker/compiler.js +2 -2
  18. package/esm2015/src/linker/element_ref.js +10 -1
  19. package/esm2015/src/linker/query_list.js +39 -11
  20. package/esm2015/src/linker/view_container_ref.js +2 -2
  21. package/esm2015/src/metadata/di.js +7 -3
  22. package/esm2015/src/metadata/view.js +2 -2
  23. package/esm2015/src/render3/component.js +2 -2
  24. package/esm2015/src/render3/di.js +17 -32
  25. package/esm2015/src/render3/error_code.js +27 -2
  26. package/esm2015/src/render3/index.js +2 -2
  27. package/esm2015/src/render3/instructions/lview_debug.js +24 -4
  28. package/esm2015/src/render3/interfaces/query.js +1 -1
  29. package/esm2015/src/render3/interfaces/view.js +1 -1
  30. package/esm2015/src/render3/jit/directive.js +3 -2
  31. package/esm2015/src/render3/jit/environment.js +1 -3
  32. package/esm2015/src/render3/query.js +28 -54
  33. package/esm2015/src/render3/view_ref.js +23 -12
  34. package/esm2015/src/util/array_utils.js +25 -1
  35. package/esm2015/src/util/dom.js +25 -12
  36. package/esm2015/src/version.js +1 -1
  37. package/esm2015/src/view/query.js +5 -5
  38. package/esm2015/src/view/types.js +1 -1
  39. package/esm2015/src/view/view.js +3 -2
  40. package/esm2015/testing/src/fake_async.js +2 -2
  41. package/fesm2015/core.js +422 -293
  42. package/fesm2015/core.js.map +1 -1
  43. package/fesm2015/testing.js +2 -2
  44. package/fesm2015/testing.js.map +1 -1
  45. package/package.json +1 -1
  46. package/schematics/migrations/static-queries/index.js +3 -8
  47. package/src/r3_symbols.d.ts +1 -2
  48. package/testing/testing.d.ts +1 -1
  49. package/testing.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v11.1.0-next.4
2
+ * @license Angular v11.1.1
3
3
  * (c) 2010-2020 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -258,7 +258,7 @@ function scheduleMicroTask(fn) {
258
258
  */
259
259
  const _Zone = typeof Zone !== 'undefined' ? Zone : null;
260
260
  const fakeAsyncTestModule = _Zone && _Zone[_Zone.__symbol__('fakeAsyncTest')];
261
- const fakeAsyncTestModuleNotLoadedErrorMessage = `zone-testing.js is needed for the async() test helper but could not be found.
261
+ const fakeAsyncTestModuleNotLoadedErrorMessage = `zone-testing.js is needed for the fakeAsync() test helper but could not be found.
262
262
  Please make sure that your environment includes zone.js/dist/zone-testing.js`;
263
263
  /**
264
264
  * Clears out the shared fake async zone for a test.