@angular/core 17.1.0-next.1 → 17.1.0-next.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 (32) hide show
  1. package/esm2022/src/application_init.mjs +2 -2
  2. package/esm2022/src/hydration/annotate.mjs +30 -20
  3. package/esm2022/src/hydration/interfaces.mjs +1 -1
  4. package/esm2022/src/hydration/node_lookup_utils.mjs +23 -2
  5. package/esm2022/src/render3/features/host_directives_feature.mjs +20 -13
  6. package/esm2022/src/render3/instructions/change_detection.mjs +3 -4
  7. package/esm2022/src/render3/node_manipulation.mjs +2 -2
  8. package/esm2022/src/render3/util/view_utils.mjs +11 -12
  9. package/esm2022/src/render3/view_manipulation.mjs +13 -5
  10. package/esm2022/src/version.mjs +1 -1
  11. package/esm2022/testing/src/logger.mjs +3 -3
  12. package/esm2022/testing/src/test_bed.mjs +3 -3
  13. package/esm2022/testing/src/test_bed_compiler.mjs +19 -10
  14. package/fesm2022/core.mjs +94 -50
  15. package/fesm2022/core.mjs.map +1 -1
  16. package/fesm2022/primitives/signals.mjs +1 -1
  17. package/fesm2022/rxjs-interop.mjs +1 -1
  18. package/fesm2022/testing.mjs +21 -12
  19. package/fesm2022/testing.mjs.map +1 -1
  20. package/index.d.ts +8 -3
  21. package/package.json +1 -1
  22. package/primitives/signals/index.d.ts +1 -1
  23. package/rxjs-interop/index.d.ts +1 -1
  24. package/schematics/migrations/block-template-entities/bundle.js +812 -457
  25. package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
  26. package/schematics/migrations/compiler-options/bundle.js +13 -13
  27. package/schematics/migrations/transfer-state/bundle.js +13 -13
  28. package/schematics/ng-generate/control-flow-migration/bundle.js +1126 -557
  29. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  30. package/schematics/ng-generate/standalone-migration/bundle.js +1225 -744
  31. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  32. package/testing/index.d.ts +1 -1
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.1.0-next.1
2
+ * @license Angular v17.1.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -490,7 +490,7 @@ export declare const APP_ID: InjectionToken<string>;
490
490
  * provideHttpClient(),
491
491
  * {
492
492
  * provide: APP_INITIALIZER,
493
- * useFactory: initializeApp,
493
+ * useFactory: initializeAppFactory,
494
494
  * multi: true,
495
495
  * deps: [HttpClient],
496
496
  * },
@@ -2598,6 +2598,11 @@ declare interface DehydratedView {
2598
2598
  /**
2599
2599
  * A reference to the first child in a DOM segment associated
2600
2600
  * with a given hydration boundary.
2601
+ *
2602
+ * Once a view becomes hydrated, the value is set to `null`, which
2603
+ * indicates that further detaching/attaching view actions should result
2604
+ * in invoking corresponding DOM actions (attaching DOM nodes action is
2605
+ * skipped when we hydrate, since nodes are already in the DOM).
2601
2606
  */
2602
2607
  firstChild: RNode | null;
2603
2608
  /**
@@ -13926,7 +13931,7 @@ export declare function ɵɵgetInheritedFactory<T>(type: Type<any>): (type: Type
13926
13931
  *
13927
13932
  * @codeGenApi
13928
13933
  */
13929
- export declare function ɵɵHostDirectivesFeature(rawHostDirectives: HostDirectiveConfig[] | (() => HostDirectiveConfig[])): (definition: ɵDirectiveDef<unknown>) => void;
13934
+ export declare function ɵɵHostDirectivesFeature(rawHostDirectives: HostDirectiveConfig[] | (() => HostDirectiveConfig[])): DirectiveDefFeature;
13930
13935
 
13931
13936
  /**
13932
13937
  * Update a property on a host element. Only applies to native node properties, not inputs.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "17.1.0-next.1",
3
+ "version": "17.1.0-next.3",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.1.0-next.1
2
+ * @license Angular v17.1.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.1.0-next.1
2
+ * @license Angular v17.1.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */