We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167cbed commit 48c1898Copy full SHA for 48c1898
packages/animations/src/animation_metadata.ts
@@ -787,9 +787,9 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
787
* <button (click)="next()">Next</button>
788
* <hr>
789
* <div [@bannerAnimation]="selectedIndex" class="banner-container">
790
- * <div class="banner"> {{ banner }} </div>
+ * <div class="banner" *ngFor="let banner of banners"> {{ banner }} </div>
791
* </div>
792
- * `
+ * `,
793
* animations: [
794
* trigger('bannerAnimation', [
795
* transition(":increment", group([
@@ -809,7 +809,7 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
809
* query(':leave', [
810
* animate('0.5s ease-out', style({ left: '100%' }))
811
* ])
812
- * ])),
+ * ]))
813
814
* ]
815
* })
0 commit comments