@angular/core 16.0.0-rc.2 → 16.0.0-rc.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.
Files changed (38) hide show
  1. package/esm2022/rxjs-interop/src/take_until_destroyed.mjs +3 -2
  2. package/esm2022/rxjs-interop/src/to_observable.mjs +19 -18
  3. package/esm2022/src/application_init.mjs +9 -3
  4. package/esm2022/src/application_ref.mjs +2 -1
  5. package/esm2022/src/errors.mjs +3 -3
  6. package/esm2022/src/hydration/error_handling.mjs +13 -5
  7. package/esm2022/src/linker/template_ref.mjs +3 -2
  8. package/esm2022/src/render3/component_ref.mjs +3 -2
  9. package/esm2022/src/render3/definition.mjs +4 -5
  10. package/esm2022/src/render3/instructions/change_detection.mjs +263 -3
  11. package/esm2022/src/render3/instructions/element.mjs +2 -2
  12. package/esm2022/src/render3/instructions/element_container.mjs +2 -2
  13. package/esm2022/src/render3/instructions/render.mjs +125 -0
  14. package/esm2022/src/render3/instructions/shared.mjs +23 -405
  15. package/esm2022/src/render3/instructions/template.mjs +22 -9
  16. package/esm2022/src/render3/interfaces/container.mjs +3 -3
  17. package/esm2022/src/render3/interfaces/view.mjs +2 -2
  18. package/esm2022/src/render3/node_manipulation.mjs +4 -8
  19. package/esm2022/src/render3/util/view_utils.mjs +35 -11
  20. package/esm2022/src/render3/view_ref.mjs +2 -2
  21. package/esm2022/src/version.mjs +1 -1
  22. package/esm2022/testing/src/logger.mjs +3 -3
  23. package/esm2022/testing/src/test_bed.mjs +1 -3
  24. package/esm2022/testing/src/test_bed_common.mjs +1 -1
  25. package/fesm2022/core.mjs +647 -618
  26. package/fesm2022/core.mjs.map +1 -1
  27. package/fesm2022/rxjs-interop.mjs +23 -21
  28. package/fesm2022/rxjs-interop.mjs.map +1 -1
  29. package/fesm2022/testing.mjs +639 -618
  30. package/fesm2022/testing.mjs.map +1 -1
  31. package/index.d.ts +24 -10
  32. package/package.json +1 -1
  33. package/rxjs-interop/index.d.ts +1 -1
  34. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
  35. package/schematics/migrations/remove-module-id/bundle.js +14 -14
  36. package/schematics/ng-generate/standalone-migration/bundle.js +360 -346
  37. package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
  38. package/testing/index.d.ts +3 -3
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.0-rc.2
2
+ * @license Angular v16.0.0-rc.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -119,12 +119,12 @@ export declare class ComponentFixture<T> {
119
119
  /**
120
120
  * @publicApi
121
121
  */
122
- export declare const ComponentFixtureAutoDetect: InjectionToken<boolean[]>;
122
+ export declare const ComponentFixtureAutoDetect: InjectionToken<boolean>;
123
123
 
124
124
  /**
125
125
  * @publicApi
126
126
  */
127
- export declare const ComponentFixtureNoNgZone: InjectionToken<boolean[]>;
127
+ export declare const ComponentFixtureNoNgZone: InjectionToken<boolean>;
128
128
 
129
129
  /**
130
130
  * Discard all remaining periodic tasks.