Skip to content

Commit ccabb58

Browse files
1c7b356 fix(core): release hasPendingTasks observers (#59723)
1 parent 766481e commit ccabb58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+177
-121
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Wed Apr 2 17:37:01 UTC 2025
2-
0bb4bd661e8fafe3228692181397272898fb9e9a
1+
Wed Apr 2 18:32:55 UTC 2025
2+
1c7b35662587de8c3245ca26ba7a04aba2c0a341

api.d-mxcXqDpA.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.4+sha-0bb4bd6
2+
* @license Angular v20.0.0-next.4+sha-1c7b356
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.4+sha-0bb4bd6
2+
* @license Angular v20.0.0-next.4+sha-1c7b356
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -3008,11 +3008,13 @@ interface SchedulableEffect {
30083008
zone: {
30093009
run<T>(fn: () => T): T;
30103010
} | null;
3011+
dirty: boolean;
30113012
}
30123013
/**
30133014
* A scheduler which manages the execution of effects.
30143015
*/
30153016
declare abstract class EffectScheduler {
3017+
abstract add(e: SchedulableEffect): void;
30163018
/**
30173019
* Schedule the given effect to be executed at a later time.
30183020
*
@@ -6597,10 +6599,11 @@ declare class ApplicationRef {
65976599
* Get a list of components registered to this application.
65986600
*/
65996601
readonly components: ComponentRef<any>[];
6602+
private internalPendingTask;
66006603
/**
66016604
* Returns an Observable that indicates when the application is stable or unstable.
66026605
*/
6603-
readonly isStable: Observable<boolean>;
6606+
get isStable(): Observable<boolean>;
66046607
constructor();
66056608
/**
66066609
* @returns A promise that resolves when the application becomes stable

event_dispatcher.d-PWnbqZDx.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.4+sha-0bb4bd6
2+
* @license Angular v20.0.0-next.4+sha-1c7b356
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

fesm2022/attribute-B17mgaqe.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.4+sha-0bb4bd6
2+
* @license Angular v20.0.0-next.4+sha-1c7b356
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

fesm2022/core.mjs

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

fesm2022/core.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 9 additions & 5 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fesm2022/primitives/di.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.4+sha-0bb4bd6
2+
* @license Angular v20.0.0-next.4+sha-1c7b356
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

0 commit comments

Comments
 (0)