@angular/core 19.2.10 → 19.2.11

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 (48) hide show
  1. package/{event_dispatcher.d-DlbccpYq.d.ts → event_dispatcher.d-K56StcHr.d.ts} +50 -1
  2. package/fesm2022/core.mjs +14 -6
  3. package/fesm2022/core.mjs.map +1 -1
  4. package/fesm2022/primitives/di.mjs +1 -1
  5. package/fesm2022/primitives/event-dispatch.mjs +3 -2
  6. package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
  7. package/fesm2022/primitives/signals.mjs +1 -1
  8. package/fesm2022/primitives/signals.mjs.map +1 -1
  9. package/fesm2022/rxjs-interop.mjs +1 -1
  10. package/fesm2022/testing.mjs +37 -37
  11. package/fesm2022/testing.mjs.map +1 -1
  12. package/fesm2022/untracked-BKcld_ew.mjs +1 -1
  13. package/fesm2022/untracked-BKcld_ew.mjs.map +1 -1
  14. package/index.d.ts +2 -51
  15. package/navigation_types.d-fAxd92YV.d.ts +1 -1
  16. package/package.json +1 -1
  17. package/primitives/di/index.d.ts +1 -1
  18. package/primitives/event-dispatch/index.d.ts +3 -3
  19. package/primitives/signals/index.d.ts +1 -1
  20. package/rxjs-interop/index.d.ts +1 -1
  21. package/schematics/bundles/apply_import_manager-DdHXpkne.js +1 -1
  22. package/schematics/bundles/checker-CGGdizaF.js +2 -2
  23. package/schematics/bundles/cleanup-unused-imports.js +1 -1
  24. package/schematics/bundles/compiler_host-BmQrIxJT.js +1 -1
  25. package/schematics/bundles/control-flow-migration.js +1 -1
  26. package/schematics/bundles/explicit-standalone-flag.js +1 -1
  27. package/schematics/bundles/imports-CIX-JgAN.js +1 -1
  28. package/schematics/bundles/index-BF06LaCS.js +11 -11
  29. package/schematics/bundles/index-DGcgCgNa.js +1 -1
  30. package/schematics/bundles/inject-migration.js +1 -1
  31. package/schematics/bundles/leading_space-D9nQ8UQC.js +1 -1
  32. package/schematics/bundles/migrate_ts_type_references-CE_V0IM9.js +1 -1
  33. package/schematics/bundles/ng_decorators-DznZ5jMl.js +1 -1
  34. package/schematics/bundles/nodes-B16H9JUd.js +1 -1
  35. package/schematics/bundles/output-migration.js +1 -1
  36. package/schematics/bundles/pending-tasks.js +1 -1
  37. package/schematics/bundles/project_paths-CmS2U6KE.js +1 -1
  38. package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.js +1 -1
  39. package/schematics/bundles/property_name-BBwFuqMe.js +1 -1
  40. package/schematics/bundles/provide-initializer.js +1 -1
  41. package/schematics/bundles/route-lazy-loading.js +1 -1
  42. package/schematics/bundles/self-closing-tags-migration.js +1 -1
  43. package/schematics/bundles/signal-input-migration.js +1 -1
  44. package/schematics/bundles/signal-queries-migration.js +1 -1
  45. package/schematics/bundles/signals.js +1 -1
  46. package/schematics/bundles/standalone-migration.js +1 -1
  47. package/testing/index.d.ts +3 -3
  48. package/weak_ref.d-DWHPG08n.d.ts +1 -1
@@ -1,9 +1,58 @@
1
1
  /**
2
- * @license Angular v19.2.10
2
+ * @license Angular v19.2.11
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
6
6
 
7
+ declare global {
8
+ /**
9
+ * Values of ngDevMode
10
+ * Depending on the current state of the application, ngDevMode may have one of several values.
11
+ *
12
+ * For convenience, the “truthy” value which enables dev mode is also an object which contains
13
+ * Angular’s performance counters. This is not necessary, but cuts down on boilerplate for the
14
+ * perf counters.
15
+ *
16
+ * ngDevMode may also be set to false. This can happen in one of a few ways:
17
+ * - The user explicitly sets `window.ngDevMode = false` somewhere in their app.
18
+ * - The user calls `enableProdMode()`.
19
+ * - The URL contains a `ngDevMode=false` text.
20
+ * Finally, ngDevMode may not have been defined at all.
21
+ */
22
+ const ngDevMode: null | NgDevModePerfCounters;
23
+ interface NgDevModePerfCounters {
24
+ namedConstructors: boolean;
25
+ firstCreatePass: number;
26
+ tNode: number;
27
+ tView: number;
28
+ rendererCreateTextNode: number;
29
+ rendererSetText: number;
30
+ rendererCreateElement: number;
31
+ rendererAddEventListener: number;
32
+ rendererSetAttribute: number;
33
+ rendererRemoveAttribute: number;
34
+ rendererSetProperty: number;
35
+ rendererSetClassName: number;
36
+ rendererAddClass: number;
37
+ rendererRemoveClass: number;
38
+ rendererSetStyle: number;
39
+ rendererRemoveStyle: number;
40
+ rendererDestroy: number;
41
+ rendererDestroyNode: number;
42
+ rendererMoveNode: number;
43
+ rendererRemoveNode: number;
44
+ rendererAppendChild: number;
45
+ rendererInsertBefore: number;
46
+ rendererCreateComment: number;
47
+ hydratedNodes: number;
48
+ hydratedComponents: number;
49
+ dehydratedViewsRemoved: number;
50
+ dehydratedViewsCleanupRuns: number;
51
+ componentsSkippedHydration: number;
52
+ deferBlocksWithIncrementalHydration: number;
53
+ }
54
+ }
55
+
7
56
  /**
8
57
  * Records information about the action that should handle a given `Event`.
9
58
  */
package/fesm2022/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.10
2
+ * @license Angular v19.2.11
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -674,8 +674,12 @@ function getInjectorDef(type) {
674
674
  const NG_PROV_DEF = getClosureSafeProperty({ ɵprov: getClosureSafeProperty });
675
675
  const NG_INJ_DEF = getClosureSafeProperty({ ɵinj: getClosureSafeProperty });
676
676
  // We need to keep these around so we can read off old defs if new defs are unavailable
677
- const NG_INJECTABLE_DEF = getClosureSafeProperty({ ngInjectableDef: getClosureSafeProperty });
678
- const NG_INJECTOR_DEF = getClosureSafeProperty({ ngInjectorDef: getClosureSafeProperty });
677
+ const NG_INJECTABLE_DEF = getClosureSafeProperty({
678
+ ngInjectableDef: getClosureSafeProperty,
679
+ });
680
+ const NG_INJECTOR_DEF = getClosureSafeProperty({
681
+ ngInjectorDef: getClosureSafeProperty,
682
+ });
679
683
 
680
684
  /**
681
685
  * Creates a token that can be used in a DI Provider.
@@ -899,7 +903,9 @@ const NG_FACTORY_DEF = getClosureSafeProperty({ ɵfac: getClosureSafeProperty })
899
903
  * bloom filter bit for DI.
900
904
  */
901
905
  // TODO(misko): This is wrong. The NG_ELEMENT_ID should never be minified.
902
- const NG_ELEMENT_ID = getClosureSafeProperty({ __NG_ELEMENT_ID__: getClosureSafeProperty });
906
+ const NG_ELEMENT_ID = getClosureSafeProperty({
907
+ __NG_ELEMENT_ID__: getClosureSafeProperty,
908
+ });
903
909
  /**
904
910
  * The `NG_ENV_ID` field on a DI token indicates special processing in the `EnvironmentInjector`:
905
911
  * getting such tokens from the `EnvironmentInjector` will bypass the standard DI resolution
@@ -17944,7 +17950,7 @@ class ComponentFactory extends ComponentFactory$1 {
17944
17950
  const cmpDef = this.componentDef;
17945
17951
  ngDevMode && verifyNotAnOrphanComponent(cmpDef);
17946
17952
  const tAttributes = rootSelectorOrNode
17947
- ? ['ng-version', '19.2.10']
17953
+ ? ['ng-version', '19.2.11']
17948
17954
  : // Extract attributes and classes from the first selector only to match VE behavior.
17949
17955
  extractAttrsAndClassesFromSelector(this.componentDef.selectors[0]);
17950
17956
  // Create the root view. Uses empty TView and ContentTemplate.
@@ -22561,6 +22567,7 @@ function getSignalGraph(injector) {
22561
22567
  return getNodesAndEdgesFromSignalMap(signalDependenciesMap);
22562
22568
  }
22563
22569
 
22570
+ /// <reference path="../../../../goog.d.ts" />
22564
22571
  /**
22565
22572
  * This file introduces series of globally accessible debug tools
22566
22573
  * to allow for the Angular debugging story to function.
@@ -34683,7 +34690,7 @@ class Version {
34683
34690
  /**
34684
34691
  * @publicApi
34685
34692
  */
34686
- const VERSION = new Version('19.2.10');
34693
+ const VERSION = new Version('19.2.11');
34687
34694
 
34688
34695
  /**
34689
34696
  * Combination of NgModuleFactory and ComponentFactories.
@@ -35332,6 +35339,7 @@ function provideExperimentalZonelessChangeDetection() {
35332
35339
  ]);
35333
35340
  }
35334
35341
 
35342
+ /// <reference path="../../../goog.d.ts" />
35335
35343
  /**
35336
35344
  * Work out the locale from the potential global properties.
35337
35345
  *