@angular/core 19.2.12 → 19.2.13

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 (45) hide show
  1. package/event_dispatcher.d-K56StcHr.d.ts +1 -1
  2. package/fesm2022/core.mjs +4 -4
  3. package/fesm2022/core.mjs.map +1 -1
  4. package/fesm2022/primitives/di.mjs +1 -1
  5. package/fesm2022/primitives/event-dispatch.mjs +1 -1
  6. package/fesm2022/primitives/signals.mjs +1 -1
  7. package/fesm2022/rxjs-interop.mjs +1 -1
  8. package/fesm2022/testing.mjs +28 -2
  9. package/fesm2022/testing.mjs.map +1 -1
  10. package/fesm2022/untracked-BKcld_ew.mjs +1 -1
  11. package/index.d.ts +155 -21
  12. package/navigation_types.d-fAxd92YV.d.ts +1 -1
  13. package/package.json +1 -1
  14. package/primitives/di/index.d.ts +1 -1
  15. package/primitives/event-dispatch/index.d.ts +1 -1
  16. package/primitives/signals/index.d.ts +1 -1
  17. package/rxjs-interop/index.d.ts +1 -1
  18. package/schematics/bundles/{apply_import_manager-Celp9ClC.cjs → apply_import_manager-QQDfWa1Z.cjs} +2 -2
  19. package/schematics/bundles/checker-5pyJrZ9G.cjs +2 -2
  20. package/schematics/bundles/cleanup-unused-imports.cjs +22 -51
  21. package/schematics/bundles/compiler_host-B1Gyeytz.cjs +1 -1
  22. package/schematics/bundles/control-flow-migration.cjs +1 -1
  23. package/schematics/bundles/explicit-standalone-flag.cjs +1 -1
  24. package/schematics/bundles/imports-CIX-JgAN.cjs +1 -1
  25. package/schematics/bundles/index-BIvVb6in.cjs +11 -11
  26. package/schematics/bundles/{index-DZhSIkG9.cjs → index-BPhQoCcF.cjs} +2 -2
  27. package/schematics/bundles/inject-migration.cjs +1 -1
  28. package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
  29. package/schematics/bundles/{migrate_ts_type_references-CjGOIOBV.cjs → migrate_ts_type_references-Czrg1gcB.cjs} +3 -3
  30. package/schematics/bundles/ng_decorators-B5HCqr20.cjs +1 -1
  31. package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
  32. package/schematics/bundles/output-migration.cjs +4 -4
  33. package/schematics/bundles/pending-tasks.cjs +1 -1
  34. package/schematics/bundles/{project_paths-HwOMxrvM.cjs → project_paths-CyWVEsbT.cjs} +63 -34
  35. package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.cjs +1 -1
  36. package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
  37. package/schematics/bundles/provide-initializer.cjs +1 -1
  38. package/schematics/bundles/route-lazy-loading.cjs +1 -1
  39. package/schematics/bundles/self-closing-tags-migration.cjs +5 -19
  40. package/schematics/bundles/signal-input-migration.cjs +15 -11
  41. package/schematics/bundles/signal-queries-migration.cjs +5 -5
  42. package/schematics/bundles/signals.cjs +5 -5
  43. package/schematics/bundles/standalone-migration.cjs +1 -1
  44. package/testing/index.d.ts +14 -2
  45. package/weak_ref.d-DWHPG08n.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.12
2
+ * @license Angular v19.2.13
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.12
2
+ * @license Angular v19.2.13
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.12
2
+ * @license Angular v19.2.13
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.12
2
+ * @license Angular v19.2.13
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.12
2
+ * @license Angular v19.2.13
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3226,5 +3226,31 @@ class InternalNavigationResult {
3226
3226
  }
3227
3227
  }
3228
3228
 
3229
- export { ComponentFixture, ComponentFixtureAutoDetect, ComponentFixtureNoNgZone, DeferBlockFixture, InjectSetupWrapper, TestBed, TestComponentRenderer, __core_private_testing_placeholder__, discardPeriodicTasks, fakeAsync, flush, flushMicrotasks, getTestBed, inject, resetFakeAsyncZone, tick, waitForAsync, withModule, FakeNavigation as ɵFakeNavigation, MetadataOverrider as ɵMetadataOverrider };
3229
+ class Log {
3230
+ logItems;
3231
+ constructor() {
3232
+ this.logItems = [];
3233
+ }
3234
+ add(value) {
3235
+ this.logItems.push(value);
3236
+ }
3237
+ fn(value) {
3238
+ return () => {
3239
+ this.logItems.push(value);
3240
+ };
3241
+ }
3242
+ clear() {
3243
+ this.logItems = [];
3244
+ }
3245
+ result() {
3246
+ return this.logItems.join('; ');
3247
+ }
3248
+ static ɵfac = function Log_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || Log)(); };
3249
+ static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: Log, factory: Log.ɵfac });
3250
+ }
3251
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Log, [{
3252
+ type: Injectable
3253
+ }], () => [], null); })();
3254
+
3255
+ export { ComponentFixture, ComponentFixtureAutoDetect, ComponentFixtureNoNgZone, DeferBlockFixture, InjectSetupWrapper, TestBed, TestComponentRenderer, __core_private_testing_placeholder__, discardPeriodicTasks, fakeAsync, flush, flushMicrotasks, getTestBed, inject, resetFakeAsyncZone, tick, waitForAsync, withModule, FakeNavigation as ɵFakeNavigation, Log as ɵLog, MetadataOverrider as ɵMetadataOverrider };
3230
3256
  //# sourceMappingURL=testing.mjs.map