Skip to content

Commit 9e64a3b

Browse files
cd7c170 fix(upgrade): handle output emitters when downgrading a component (#60369)
1 parent d17f233 commit 9e64a3b

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Thu Mar 13 16:30:36 UTC 2025
2-
adecf4c77249288bc19a5880efb3d96654acfbf9
1+
Thu Mar 13 16:42:32 UTC 2025
2+
cd7c170763b9f1f0b4215bf151a431481591ce73

browser/index.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.2+sha-adecf4c
2+
* @license Angular v20.0.0-next.2+sha-cd7c170
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

browser/testing/index.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.2+sha-adecf4c
2+
* @license Angular v20.0.0-next.2+sha-cd7c170
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

fesm2022/animations.mjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.2+sha-adecf4c
2+
* @license Angular v20.0.0-next.2+sha-cd7c170
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -982,10 +982,10 @@ function stagger(timings, animation) {
982982
* @publicApi
983983
*/
984984
class AnimationBuilder {
985-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: AnimationBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
986-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: AnimationBuilder, providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) });
985+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: AnimationBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
986+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: AnimationBuilder, providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) });
987987
}
988-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: AnimationBuilder, decorators: [{
988+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: AnimationBuilder, decorators: [{
989989
type: Injectable,
990990
args: [{ providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) }]
991991
}] });
@@ -1025,10 +1025,10 @@ class BrowserAnimationBuilder extends AnimationBuilder {
10251025
issueAnimationCommand(this._renderer, null, id, 'register', [entry]);
10261026
return new BrowserAnimationFactory(id, this._renderer);
10271027
}
1028-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: BrowserAnimationBuilder, deps: [{ token: i0.RendererFactory2 }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
1029-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: BrowserAnimationBuilder, providedIn: 'root' });
1028+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: BrowserAnimationBuilder, deps: [{ token: i0.RendererFactory2 }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
1029+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: BrowserAnimationBuilder, providedIn: 'root' });
10301030
}
1031-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: BrowserAnimationBuilder, decorators: [{
1031+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: BrowserAnimationBuilder, decorators: [{
10321032
type: Injectable,
10331033
args: [{ providedIn: 'root' }]
10341034
}], ctorParameters: () => [{ type: i0.RendererFactory2 }, { type: Document, decorators: [{

fesm2022/browser.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.2+sha-adecf4c
2+
* @license Angular v20.0.0-next.2+sha-cd7c170
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -530,10 +530,10 @@ class NoopAnimationDriver {
530530
animate(element, keyframes, duration, delay, easing, previousPlayers = [], scrubberAccessRequested) {
531531
return new NoopAnimationPlayer(duration, delay);
532532
}
533-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
534-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: NoopAnimationDriver });
533+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
534+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: NoopAnimationDriver });
535535
}
536-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-adecf4c", ngImport: i0, type: NoopAnimationDriver, decorators: [{
536+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.2+sha-cd7c170", ngImport: i0, type: NoopAnimationDriver, decorators: [{
537537
type: Injectable
538538
}] });
539539
/**

fesm2022/browser/testing.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.2+sha-adecf4c
2+
* @license Angular v20.0.0-next.2+sha-cd7c170
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

index.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.2+sha-adecf4c
2+
* @license Angular v20.0.0-next.2+sha-cd7c170
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/animations",
3-
"version": "20.0.0-next.2+sha-adecf4c",
3+
"version": "20.0.0-next.2+sha-cd7c170",
44
"description": "Angular - animations integration with web-animations",
55
"author": "angular",
66
"license": "MIT",
@@ -11,7 +11,7 @@
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "20.0.0-next.2+sha-adecf4c"
14+
"@angular/core": "20.0.0-next.2+sha-cd7c170"
1515
},
1616
"repository": {
1717
"type": "git",

0 commit comments

Comments
 (0)