@angular/core 13.2.0-next.2 → 14.0.0-next.0

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 (33) hide show
  1. package/core.d.ts +33 -3
  2. package/esm2020/src/change_detection/differs/default_iterable_differ.mjs +6 -2
  3. package/esm2020/src/change_detection/differs/default_keyvalue_differ.mjs +6 -2
  4. package/esm2020/src/change_detection/differs/iterable_differs.mjs +6 -2
  5. package/esm2020/src/change_detection/differs/keyvalue_differs.mjs +6 -2
  6. package/esm2020/src/di/injector_compatibility.mjs +10 -3
  7. package/esm2020/src/di/r3_injector.mjs +16 -5
  8. package/esm2020/src/errors.mjs +1 -1
  9. package/esm2020/src/linker/compiler.mjs +1 -1
  10. package/esm2020/src/linker/component_factory.mjs +4 -1
  11. package/esm2020/src/linker/component_factory_resolver.mjs +4 -1
  12. package/esm2020/src/linker/ng_module_factory.mjs +1 -1
  13. package/esm2020/src/reflection/reflection_capabilities.mjs +2 -2
  14. package/esm2020/src/render3/component_ref.mjs +1 -1
  15. package/esm2020/src/render3/features/inherit_definition_feature.mjs +6 -2
  16. package/esm2020/src/render3/i18n/i18n_apply.mjs +5 -2
  17. package/esm2020/src/render3/namespaces.mjs +10 -3
  18. package/esm2020/src/render3/node_manipulation.mjs +5 -3
  19. package/esm2020/src/render3/view_ref.mjs +6 -3
  20. package/esm2020/src/sanitization/sanitization.mjs +14 -7
  21. package/esm2020/src/version.mjs +1 -1
  22. package/esm2020/src/zone/ng_zone.mjs +3 -2
  23. package/esm2020/testing/src/logger.mjs +3 -3
  24. package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
  25. package/fesm2015/core.mjs +84 -28
  26. package/fesm2015/core.mjs.map +1 -1
  27. package/fesm2015/testing.mjs +1 -1
  28. package/fesm2020/core.mjs +84 -28
  29. package/fesm2020/core.mjs.map +1 -1
  30. package/fesm2020/testing.mjs +1 -1
  31. package/package.json +1 -1
  32. package/schematics/migrations.json +0 -5
  33. package/testing/testing.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.2.0-next.2
2
+ * @license Angular v14.0.0-next.0
3
3
  * (c) 2010-2022 Google LLC. 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": "13.2.0-next.2",
3
+ "version": "14.0.0-next.0",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -19,11 +19,6 @@
19
19
  "version": "14.0.0-beta",
20
20
  "description": "As of Angular version 13, `entryComponents` are no longer necessary.",
21
21
  "factory": "./migrations/entry-components/index"
22
- },
23
- "migration-v14-typed-forms": {
24
- "version": "9999.0.0",
25
- "description": "Experimental migration that adds <any>s for Typed Forms.",
26
- "factory": "./migrations/typed-forms/index"
27
22
  }
28
23
  }
29
24
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.2.0-next.2
2
+ * @license Angular v14.0.0-next.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */