@angular/core 20.3.12 → 20.3.14
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/api.d.d.ts +8 -1
- package/chrome_dev_tools_performance.d.d.ts +11 -1
- package/discovery.d.d.ts +33 -2
- package/effect.d.d.ts +1 -1
- package/event_dispatcher.d.d.ts +1 -1
- package/fesm2022/attribute.mjs +1 -1
- package/fesm2022/core.mjs +29 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/debug_node.mjs +12 -2
- package/fesm2022/debug_node.mjs.map +1 -1
- package/fesm2022/effect.mjs +1 -1
- package/fesm2022/not_found.mjs +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/resource.mjs +7 -1
- package/fesm2022/resource.mjs.map +1 -1
- package/fesm2022/root_effect_scheduler.mjs +22 -3
- package/fesm2022/root_effect_scheduler.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +11 -1
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/signal.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/fesm2022/weak_ref.mjs +1 -1
- package/formatter.d.d.ts +1 -1
- package/index.d.ts +54 -3
- package/package.json +2 -2
- 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 +11 -1
- package/schematics/bundles/add-bootstrap-context-to-server-main.cjs +1 -1
- package/schematics/bundles/apply_import_manager-D4J7SXHI.cjs +1 -1
- package/schematics/bundles/cleanup-unused-imports.cjs +1 -1
- package/schematics/bundles/compiler_host-C306_97v.cjs +1 -1
- package/schematics/bundles/control-flow-migration.cjs +1 -1
- package/schematics/bundles/document-core.cjs +1 -1
- package/schematics/bundles/imports-CIX-JgAN.cjs +1 -1
- package/schematics/bundles/index-AeYmwRJL.cjs +11 -11
- package/schematics/bundles/index-u3tqvIQa.cjs +1 -1
- package/schematics/bundles/inject-flags.cjs +1 -1
- package/schematics/bundles/inject-migration.cjs +1 -1
- package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
- package/schematics/bundles/migrate_ts_type_references-D0f8FXVW.cjs +1 -1
- package/schematics/bundles/ng_decorators-B5HCqr20.cjs +1 -1
- package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
- package/schematics/bundles/output-migration.cjs +1 -1
- package/schematics/bundles/project_paths-CMd3bdgw.cjs +1 -1
- package/schematics/bundles/project_tsconfig_paths-CopGppNj.cjs +2 -2
- package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
- package/schematics/bundles/route-lazy-loading.cjs +1 -1
- package/schematics/bundles/router-current-navigation.cjs +1 -1
- package/schematics/bundles/self-closing-tags-migration.cjs +1 -1
- package/schematics/bundles/signal-input-migration.cjs +1 -1
- package/schematics/bundles/signal-queries-migration.cjs +1 -1
- package/schematics/bundles/signals.cjs +1 -1
- package/schematics/bundles/standalone-migration.cjs +1 -1
- package/schematics/bundles/symbol-VPWguRxr.cjs +1 -1
- package/schematics/bundles/test-bed-get.cjs +1 -1
- package/testing/index.d.ts +1 -1
- package/weak_ref.d.d.ts +1 -1
package/fesm2022/debug_node.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.3.
|
|
2
|
+
* @license Angular v20.3.14
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -2401,6 +2401,8 @@ function createElementRef(tNode, lView) {
|
|
|
2401
2401
|
* XSS attacks. Carefully review any use of `ElementRef` in your code. For more detail, see the
|
|
2402
2402
|
* [Security Guide](https://g.co/ng/security).
|
|
2403
2403
|
*
|
|
2404
|
+
* @see [Using DOM APIs](guide/components/dom-apis)
|
|
2405
|
+
*
|
|
2404
2406
|
* @publicApi
|
|
2405
2407
|
*/
|
|
2406
2408
|
// Note: We don't expose things like `Injector`, `ViewContainer`, ... here,
|
|
@@ -7596,6 +7598,8 @@ let ngZoneInstanceId = 0;
|
|
|
7596
7598
|
* }
|
|
7597
7599
|
* ```
|
|
7598
7600
|
*
|
|
7601
|
+
* @see [Resolving zone pollution](best-practices/zone-pollution#run-tasks-outside-ngzone)
|
|
7602
|
+
*
|
|
7599
7603
|
* @publicApi
|
|
7600
7604
|
*/
|
|
7601
7605
|
class NgZone {
|
|
@@ -14366,6 +14370,7 @@ function inputBindingUpdate(targetDirectiveIdx, publicName, value) {
|
|
|
14366
14370
|
* bindings: [inputBinding('disabled', isDisabled)]
|
|
14367
14371
|
* });
|
|
14368
14372
|
* ```
|
|
14373
|
+
* @see [Binding inputs, outputs and setting host directives at creation](guide/components/programmatic-rendering#binding-inputs-outputs-and-setting-host-directives-at-creation)
|
|
14369
14374
|
*/
|
|
14370
14375
|
function inputBinding(publicName, value) {
|
|
14371
14376
|
// Note: ideally we would use a class here, but it seems like they
|
|
@@ -14396,6 +14401,7 @@ function inputBinding(publicName, value) {
|
|
|
14396
14401
|
* ],
|
|
14397
14402
|
* });
|
|
14398
14403
|
* ```
|
|
14404
|
+
* @see [Binding inputs, outputs and setting host directives at creation](guide/components/programmatic-rendering#binding-inputs-outputs-and-setting-host-directives-at-creation)
|
|
14399
14405
|
*/
|
|
14400
14406
|
function outputBinding(eventName, listener) {
|
|
14401
14407
|
// Note: ideally we would use a class here, but it seems like they
|
|
@@ -14431,6 +14437,7 @@ function outputBinding(eventName, listener) {
|
|
|
14431
14437
|
* ],
|
|
14432
14438
|
* });
|
|
14433
14439
|
* ```
|
|
14440
|
+
* @see [Binding inputs, outputs and setting host directives at creation](guide/components/programmatic-rendering#binding-inputs-outputs-and-setting-host-directives-at-creation)
|
|
14434
14441
|
*/
|
|
14435
14442
|
function twoWayBinding(publicName, value) {
|
|
14436
14443
|
const input = inputBinding(publicName, value);
|
|
@@ -14644,7 +14651,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
14644
14651
|
}
|
|
14645
14652
|
function createRootTView(rootSelectorOrNode, componentDef, componentBindings, directives) {
|
|
14646
14653
|
const tAttributes = rootSelectorOrNode
|
|
14647
|
-
? ['ng-version', '20.3.
|
|
14654
|
+
? ['ng-version', '20.3.14']
|
|
14648
14655
|
: // Extract attributes and classes from the first selector only to match VE behavior.
|
|
14649
14656
|
extractAttrsAndClassesFromSelector(componentDef.selectors[0]);
|
|
14650
14657
|
let creationBindings = null;
|
|
@@ -19534,6 +19541,7 @@ function getProviderTokenMeasureName(token) {
|
|
|
19534
19541
|
* @experimental
|
|
19535
19542
|
*
|
|
19536
19543
|
* @returns a function that can be invoked to stop sending profiling data.
|
|
19544
|
+
* @see [Profiling with the Chrome DevTools](best-practices/profiling-with-chrome-devtools#recording-a-profile)
|
|
19537
19545
|
*/
|
|
19538
19546
|
function enableProfiling() {
|
|
19539
19547
|
performanceMarkFeature('Chrome DevTools profiling');
|
|
@@ -21992,6 +22000,7 @@ const ANIMATIONS_DISABLED = new InjectionToken(typeof ngDevMode !== 'undefined'
|
|
|
21992
22000
|
* for when stylesheets are pruned.
|
|
21993
22001
|
*
|
|
21994
22002
|
* @publicApi 20.2
|
|
22003
|
+
* @see [Animating your applications with animate.enter and animate.leave](guide/animations)
|
|
21995
22004
|
*/
|
|
21996
22005
|
const MAX_ANIMATION_TIMEOUT = new InjectionToken(typeof ngDevMode !== 'undefined' && ngDevMode ? 'MaxAnimationTimeout' : '', {
|
|
21997
22006
|
providedIn: 'root',
|
|
@@ -31214,6 +31223,7 @@ class ChangeDetectionSchedulerImpl {
|
|
|
31214
31223
|
* @publicApi 20.2
|
|
31215
31224
|
*
|
|
31216
31225
|
* @see {@link /api/platform-browser/bootstrapApplication bootstrapApplication}
|
|
31226
|
+
* @see [Angular without ZoneJS (Zoneless)](guide/zoneless)
|
|
31217
31227
|
*/
|
|
31218
31228
|
function provideZonelessChangeDetection() {
|
|
31219
31229
|
performanceMarkFeature('NgZoneless');
|