@angular/core 19.2.6 → 19.2.8
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.
- package/event_dispatcher.d-DlbccpYq.d.ts +1 -1
- package/fesm2022/core.mjs +5 -3
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/di.mjs +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +3 -1
- package/fesm2022/testing.mjs.map +1 -1
- package/fesm2022/untracked-BKcld_ew.mjs +1 -1
- package/index.d.ts +5 -3
- package/navigation_types.d-fAxd92YV.d.ts +1 -1
- package/package.json +1 -1
- package/primitives/di/index.d.ts +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{apply_import_manager-DFADpdFu.js → apply_import_manager-COqnCltX.js} +3 -3
- package/schematics/bundles/{checker-DoX_7XCa.js → checker-BNmiXJIJ.js} +5 -4
- package/schematics/bundles/cleanup-unused-imports.js +5 -5
- package/schematics/bundles/{compiler_host-BUKEE1cA.js → compiler_host-BafHjBMK.js} +2 -2
- package/schematics/bundles/control-flow-migration.js +3 -3
- package/schematics/bundles/explicit-standalone-flag.js +3 -3
- package/schematics/bundles/imports-CIX-JgAN.js +1 -1
- package/schematics/bundles/{index-B4b0V0Vo.js → index-CAJ-Rm56.js} +44 -21
- package/schematics/bundles/{index-CpZKzrqM.js → index-rvZ5aROS.js} +4 -4
- package/schematics/bundles/inject-migration.js +107 -18
- package/schematics/bundles/leading_space-D9nQ8UQC.js +1 -1
- package/schematics/bundles/{migrate_ts_type_references-DQVDid4G.js → migrate_ts_type_references-BIV-FPWl.js} +5 -5
- package/schematics/bundles/ng_decorators-DznZ5jMl.js +1 -1
- package/schematics/bundles/nodes-B16H9JUd.js +1 -1
- package/schematics/bundles/output-migration.js +6 -6
- package/schematics/bundles/pending-tasks.js +3 -3
- package/schematics/bundles/{project_paths-C3etOlgT.js → project_paths-A9I0g_ID.js} +3 -3
- package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.js +1 -1
- package/schematics/bundles/property_name-BBwFuqMe.js +1 -1
- package/schematics/bundles/provide-initializer.js +3 -3
- package/schematics/bundles/route-lazy-loading.js +3 -3
- package/schematics/bundles/self-closing-tags-migration.js +4 -4
- package/schematics/bundles/signal-input-migration.js +7 -7
- package/schematics/bundles/signal-queries-migration.js +7 -7
- package/schematics/bundles/signals.js +7 -7
- package/schematics/bundles/standalone-migration.js +4 -4
- package/testing/index.d.ts +1 -1
- package/weak_ref.d-DWHPG08n.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.
|
|
2
|
+
* @license Angular v19.2.8
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1666,6 +1666,8 @@ function isStandalone(type) {
|
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Wrap an array of `Provider`s into `EnvironmentProviders`, preventing them from being accidentally
|
|
1668
1668
|
* referenced in `@Component` in a component injector.
|
|
1669
|
+
*
|
|
1670
|
+
* @publicApi
|
|
1669
1671
|
*/
|
|
1670
1672
|
function makeEnvironmentProviders(providers) {
|
|
1671
1673
|
return {
|
|
@@ -17911,7 +17913,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
17911
17913
|
const cmpDef = this.componentDef;
|
|
17912
17914
|
ngDevMode && verifyNotAnOrphanComponent(cmpDef);
|
|
17913
17915
|
const tAttributes = rootSelectorOrNode
|
|
17914
|
-
? ['ng-version', '19.2.
|
|
17916
|
+
? ['ng-version', '19.2.8']
|
|
17915
17917
|
: // Extract attributes and classes from the first selector only to match VE behavior.
|
|
17916
17918
|
extractAttrsAndClassesFromSelector(this.componentDef.selectors[0]);
|
|
17917
17919
|
// Create the root view. Uses empty TView and ContentTemplate.
|
|
@@ -34651,7 +34653,7 @@ class Version {
|
|
|
34651
34653
|
/**
|
|
34652
34654
|
* @publicApi
|
|
34653
34655
|
*/
|
|
34654
|
-
const VERSION = new Version('19.2.
|
|
34656
|
+
const VERSION = new Version('19.2.8');
|
|
34655
34657
|
|
|
34656
34658
|
/**
|
|
34657
34659
|
* Combination of NgModuleFactory and ComponentFactories.
|