Skip to content

Commit 858e209

Browse files
committed
f2d5cf7 feat(compiler): support exponentiation operator in templates (#59894)
1 parent e211782 commit 858e209

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

BUILD_INFO

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Feb 25 15:54:53 UTC 2025
2-
6c9247cf5830e8e783949a8e2eea6c7c8625a643
1+
Tue Feb 25 16:09:25 UTC 2025
2+
f2d5cf7eddb1ca2d946076d7622778fb12273d31

browser/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.0+sha-6c9247c
2+
* @license Angular v20.0.0-next.0+sha-f2d5cf7
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

browser/testing/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.0+sha-6c9247c
2+
* @license Angular v20.0.0-next.0+sha-f2d5cf7
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

fesm2022/animations.mjs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.0+sha-6c9247c
2+
* @license Angular v20.0.0-next.0+sha-f2d5cf7
33
* (c) 2010-2024 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.0+sha-6c9247c", ngImport: i0, type: AnimationBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
986-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-6c9247c", ngImport: i0, type: AnimationBuilder, providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) });
985+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", ngImport: i0, type: AnimationBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
986+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", ngImport: i0, type: AnimationBuilder, providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) });
987987
}
988-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-6c9247c", ngImport: i0, type: AnimationBuilder, decorators: [{
988+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", 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.0+sha-6c9247c", 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.0+sha-6c9247c", ngImport: i0, type: BrowserAnimationBuilder, providedIn: 'root' });
1028+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", 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.0+sha-f2d5cf7", ngImport: i0, type: BrowserAnimationBuilder, providedIn: 'root' });
10301030
}
1031-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-6c9247c", ngImport: i0, type: BrowserAnimationBuilder, decorators: [{
1031+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", ngImport: i0, type: BrowserAnimationBuilder, decorators: [{
10321032
type: Injectable,
10331033
args: [{ providedIn: 'root' }]
10341034
}], ctorParameters: () => [{ type: i0.RendererFactory2 }, { type: Document, decorators: [{

fesm2022/browser.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.0+sha-6c9247c
2+
* @license Angular v20.0.0-next.0+sha-f2d5cf7
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -548,10 +548,10 @@ class NoopAnimationDriver {
548548
animate(element, keyframes, duration, delay, easing, previousPlayers = [], scrubberAccessRequested) {
549549
return new NoopAnimationPlayer(duration, delay);
550550
}
551-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-6c9247c", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
552-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-6c9247c", ngImport: i0, type: NoopAnimationDriver });
551+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
552+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", ngImport: i0, type: NoopAnimationDriver });
553553
}
554-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-6c9247c", ngImport: i0, type: NoopAnimationDriver, decorators: [{
554+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.0+sha-f2d5cf7", ngImport: i0, type: NoopAnimationDriver, decorators: [{
555555
type: Injectable
556556
}] });
557557
/**

fesm2022/browser/testing.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.0+sha-6c9247c
2+
* @license Angular v20.0.0-next.0+sha-f2d5cf7
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.0+sha-6c9247c
2+
* @license Angular v20.0.0-next.0+sha-f2d5cf7
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/animations",
3-
"version": "20.0.0-next.0+sha-6c9247c",
3+
"version": "20.0.0-next.0+sha-f2d5cf7",
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.0+sha-6c9247c"
14+
"@angular/core": "20.0.0-next.0+sha-f2d5cf7"
1515
},
1616
"repository": {
1717
"type": "git",

0 commit comments

Comments
 (0)