@angular/core 19.1.5 → 19.2.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 (37) hide show
  1. package/fesm2022/core.mjs +1060 -833
  2. package/fesm2022/core.mjs.map +1 -1
  3. package/fesm2022/primitives/event-dispatch.mjs +1 -2
  4. package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
  5. package/fesm2022/primitives/signals.mjs +1 -1
  6. package/fesm2022/rxjs-interop.mjs +28 -17
  7. package/fesm2022/rxjs-interop.mjs.map +1 -1
  8. package/fesm2022/testing.mjs +4 -4
  9. package/index.d.ts +82 -30
  10. package/package.json +1 -1
  11. package/primitives/event-dispatch/index.d.ts +1 -1
  12. package/primitives/signals/index.d.ts +1 -1
  13. package/rxjs-interop/index.d.ts +3 -3
  14. package/schematics/bundles/{apply_import_manager-57619f3c.js → apply_import_manager-deecd687.js} +3 -3
  15. package/schematics/bundles/{checker-ce908760.js → checker-78667e44.js} +391 -99
  16. package/schematics/bundles/cleanup-unused-imports.js +6 -6
  17. package/schematics/bundles/{compiler_host-33b24174.js → compiler_host-38c8eab2.js} +2 -2
  18. package/schematics/bundles/control-flow-migration.js +3 -3
  19. package/schematics/bundles/explicit-standalone-flag.js +5 -5
  20. package/schematics/bundles/{imports-31a38653.js → imports-abe29092.js} +1 -1
  21. package/schematics/bundles/{index-d6e51169.js → index-6713e562.js} +4 -4
  22. package/schematics/bundles/{index-59a1204f.js → index-de135c2f.js} +4 -4
  23. package/schematics/bundles/inject-migration.js +6 -6
  24. package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
  25. package/schematics/bundles/{migrate_ts_type_references-2c37e645.js → migrate_ts_type_references-e6411f51.js} +6 -6
  26. package/schematics/bundles/{nodes-88c2157f.js → nodes-a9f0b985.js} +2 -2
  27. package/schematics/bundles/output-migration.js +6 -6
  28. package/schematics/bundles/pending-tasks.js +5 -5
  29. package/schematics/bundles/{program-5512058c.js → program-b0d98952.js} +26 -100
  30. package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
  31. package/schematics/bundles/provide-initializer.js +5 -5
  32. package/schematics/bundles/route-lazy-loading.js +4 -4
  33. package/schematics/bundles/signal-input-migration.js +8 -8
  34. package/schematics/bundles/signal-queries-migration.js +8 -8
  35. package/schematics/bundles/signals.js +8 -8
  36. package/schematics/bundles/standalone-migration.js +8 -8
  37. package/testing/index.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.1.5
2
+ * @license Angular v19.2.0-next.0
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -818,7 +818,6 @@ function createMouseSpecialEvent(e, target) {
818
818
  }
819
819
  copy['target'] = copy['srcElement'] = target;
820
820
  copy['bubbles'] = false;
821
- copy['_originalEvent'] = e;
822
821
  return copy;
823
822
  }
824
823
  /**