@angular/core 19.0.2 → 19.1.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 (33) hide show
  1. package/fesm2022/core.mjs +9 -3
  2. package/fesm2022/core.mjs.map +1 -1
  3. package/fesm2022/primitives/event-dispatch.mjs +1 -1
  4. package/fesm2022/primitives/signals.mjs +4 -1
  5. package/fesm2022/primitives/signals.mjs.map +1 -1
  6. package/fesm2022/rxjs-interop.mjs +1 -1
  7. package/fesm2022/testing.mjs +4 -4
  8. package/index.d.ts +1 -1
  9. package/package.json +1 -1
  10. package/primitives/event-dispatch/index.d.ts +1 -1
  11. package/primitives/signals/index.d.ts +10 -1
  12. package/rxjs-interop/index.d.ts +1 -1
  13. package/schematics/bundles/checker-a00b735e.js +2 -2
  14. package/schematics/bundles/{combine_units-60865867.js → combine_units-4983dfd3.js} +2 -2
  15. package/schematics/bundles/compiler_host-3e96c3f7.js +1 -1
  16. package/schematics/bundles/control-flow-migration.js +1 -1
  17. package/schematics/bundles/explicit-standalone-flag.js +1 -1
  18. package/schematics/bundles/imports-44987700.js +1 -1
  19. package/schematics/bundles/inject-migration.js +1 -1
  20. package/schematics/bundles/leading_space-6e7a8ec6.js +1 -1
  21. package/schematics/bundles/{migrate_ts_type_references-676612f5.js → migrate_ts_type_references-58326be5.js} +3 -3
  22. package/schematics/bundles/nodes-b12e919a.js +1 -1
  23. package/schematics/bundles/output-migration.js +3 -3
  24. package/schematics/bundles/pending-tasks.js +1 -1
  25. package/schematics/bundles/{program-a6be5d4a.js → program-37562cc3.js} +11 -11
  26. package/schematics/bundles/project_tsconfig_paths-6c9cde78.js +1 -1
  27. package/schematics/bundles/provide-initializer.js +1 -1
  28. package/schematics/bundles/route-lazy-loading.js +1 -1
  29. package/schematics/bundles/signal-input-migration.js +4 -4
  30. package/schematics/bundles/signal-queries-migration.js +4 -4
  31. package/schematics/bundles/signals.js +4 -4
  32. package/schematics/bundles/standalone-migration.js +3 -3
  33. package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.0.2
2
+ * @license Angular v19.1.0-next.1
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -14660,6 +14660,7 @@ function maybeReturnReactiveLViewConsumer(consumer) {
14660
14660
  const REACTIVE_LVIEW_CONSUMER_NODE = {
14661
14661
  ...REACTIVE_NODE$1,
14662
14662
  consumerIsAlwaysLive: true,
14663
+ kind: 'template',
14663
14664
  consumerMarkedDirty: (node) => {
14664
14665
  markAncestorsForTraversal(node.lView);
14665
14666
  },
@@ -14687,6 +14688,7 @@ function getOrCreateTemporaryConsumer(lView) {
14687
14688
  const TEMPORARY_CONSUMER_NODE = {
14688
14689
  ...REACTIVE_NODE$1,
14689
14690
  consumerIsAlwaysLive: true,
14691
+ kind: 'template',
14690
14692
  consumerMarkedDirty: (node) => {
14691
14693
  let parent = getLViewParent(node.lView);
14692
14694
  while (parent && !viewShouldHaveReactiveConsumer(parent[TVIEW])) {
@@ -18079,7 +18081,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
18079
18081
  function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
18080
18082
  if (rootSelectorOrNode) {
18081
18083
  // The placeholder will be replaced with the actual version at build time.
18082
- setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.2']);
18084
+ setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.1.0-next.1']);
18083
18085
  }
18084
18086
  else {
18085
18087
  // If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
@@ -34573,7 +34575,7 @@ class Version {
34573
34575
  /**
34574
34576
  * @publicApi
34575
34577
  */
34576
- const VERSION = new Version('19.0.2');
34578
+ const VERSION = new Version('19.1.0-next.1');
34577
34579
 
34578
34580
  /**
34579
34581
  * Combination of NgModuleFactory and ComponentFactories.
@@ -38014,6 +38016,7 @@ const REACTIVE_NODE = {
38014
38016
  liveConsumerIndexOfThis: undefined,
38015
38017
  consumerAllowSignalWrites: false,
38016
38018
  consumerIsAlwaysLive: false,
38019
+ kind: 'unknown',
38017
38020
  producerMustRecompute: () => false,
38018
38021
  producerRecomputeValue: () => { },
38019
38022
  consumerMarkedDirty: () => { },
@@ -38330,6 +38333,7 @@ const COMPUTED_NODE = /* @__PURE__ */ (() => {
38330
38333
  dirty: true,
38331
38334
  error: null,
38332
38335
  equal: defaultEquals,
38336
+ kind: 'computed',
38333
38337
  producerMustRecompute(node) {
38334
38338
  // Force a recomputation if there's no current value, or if the current value is in the
38335
38339
  // process of being calculated (which should throw an error).
@@ -38435,6 +38439,7 @@ const SIGNAL_NODE = /* @__PURE__ */ (() => {
38435
38439
  ...REACTIVE_NODE,
38436
38440
  equal: defaultEquals,
38437
38441
  value: undefined,
38442
+ kind: 'signal',
38438
38443
  };
38439
38444
  })();
38440
38445
  function signalValueChanged(node) {
@@ -40430,6 +40435,7 @@ const BASE_EFFECT_NODE =
40430
40435
  hasRun: false,
40431
40436
  cleanupFns: undefined,
40432
40437
  zone: null,
40438
+ kind: 'effect',
40433
40439
  onDestroyFn: noop,
40434
40440
  run() {
40435
40441
  this.dirty = false;