@angular/core 19.2.0-next.0 → 19.2.0-next.1

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