@angular/animations 7.2.2 → 7.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/animations",
3
- "version": "7.2.2",
3
+ "version": "7.2.3",
4
4
  "description": "Angular - animations integration with web-animations",
5
5
  "main": "./bundles/animations.umd.js",
6
6
  "module": "./fesm5/animations.js",
@@ -16,7 +16,7 @@
16
16
  "tslib": "^1.9.0"
17
17
  },
18
18
  "peerDependencies": {
19
- "@angular/core": "7.2.2"
19
+ "@angular/core": "7.2.3"
20
20
  },
21
21
  "repository": {
22
22
  "type": "git",
@@ -661,8 +661,8 @@ export declare function animate(timings: string | number, styles?: AnimationStyl
661
661
  *
662
662
  * ```typescript
663
663
  * group([
664
- * animate("1s", { background: "black" }))
665
- * animate("2s", { color: "white" }))
664
+ * animate("1s", style({ background: "black" })),
665
+ * animate("2s", style({ color: "white" }))
666
666
  * ])
667
667
  * ```
668
668
  *
@@ -694,7 +694,7 @@ export declare function group(steps: AnimationMetadata[], options?: AnimationOpt
694
694
  * ```typescript
695
695
  * sequence([
696
696
  * style({ opacity: 0 })),
697
- * animate("1s", { opacity: 1 }))
697
+ * animate("1s", style({ opacity: 1 }))
698
698
  * ])
699
699
  * ```
700
700
  *