@angular/animations 6.0.6 → 6.0.7

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.
Files changed (34) hide show
  1. package/browser/browser.metadata.json +1 -1
  2. package/browser/src/render/shared.d.ts +1 -0
  3. package/bundles/animations-browser-testing.umd.js +1 -1
  4. package/bundles/animations-browser-testing.umd.js.map +1 -1
  5. package/bundles/animations-browser-testing.umd.min.js +1 -1
  6. package/bundles/animations-browser-testing.umd.min.js.map +1 -1
  7. package/bundles/animations-browser.umd.js +50 -3
  8. package/bundles/animations-browser.umd.js.map +1 -1
  9. package/bundles/animations-browser.umd.min.js +11 -11
  10. package/bundles/animations-browser.umd.min.js.map +1 -1
  11. package/bundles/animations.umd.js +5 -5
  12. package/bundles/animations.umd.js.map +1 -1
  13. package/bundles/animations.umd.min.js +1 -1
  14. package/bundles/animations.umd.min.js.map +1 -1
  15. package/esm2015/browser/src/render/shared.js +12 -3
  16. package/esm2015/browser/src/util.js +57 -1
  17. package/esm2015/src/animation_metadata.js +7 -7
  18. package/esm2015/src/version.js +1 -1
  19. package/esm5/browser/src/render/shared.js +9 -3
  20. package/esm5/browser/src/util.js +43 -1
  21. package/esm5/src/animation_metadata.js +5 -5
  22. package/esm5/src/version.js +1 -1
  23. package/fesm2015/animations.js +6 -6
  24. package/fesm2015/animations.js.map +1 -1
  25. package/fesm2015/browser/testing.js +1 -1
  26. package/fesm2015/browser.js +67 -3
  27. package/fesm2015/browser.js.map +1 -1
  28. package/fesm5/animations.js +5 -5
  29. package/fesm5/animations.js.map +1 -1
  30. package/fesm5/browser/testing.js +1 -1
  31. package/fesm5/browser.js +50 -3
  32. package/fesm5/browser.js.map +1 -1
  33. package/package.json +2 -2
  34. package/src/animation_metadata.d.ts +8 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/animations",
3
- "version": "6.0.6",
3
+ "version": "6.0.7",
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": "6.0.6"
19
+ "@angular/core": "6.0.7"
20
20
  },
21
21
  "repository": {
22
22
  "type": "git",
@@ -39,11 +39,12 @@ export declare type AnimateTimings = {
39
39
  };
40
40
  /**
41
41
  * @description Options that control animation styling and timing.
42
+ *
42
43
  * The following animation functions accept `AnimationOptions` data:
43
44
  *
44
45
  * - `transition()`
45
46
  * - `sequence()`
46
- * - `group()`
47
+ * - `{@link animations/group group()}`
47
48
  * - `query()`
48
49
  * - `animation()`
49
50
  * - `useAnimation()`
@@ -101,7 +102,7 @@ export declare const enum AnimationMetadataType {
101
102
  Sequence = 2,
102
103
  /**
103
104
  * Contains a set of animation steps.
104
- * See `group()`
105
+ * See `{@link animations/group group()}`
105
106
  */
106
107
  Group = 3,
107
108
  /**
@@ -353,7 +354,7 @@ export interface AnimationSequenceMetadata extends AnimationMetadata {
353
354
  }
354
355
  /**
355
356
  * Encapsulates an animation group.
356
- * Instantiated and returned by the `group()` function.
357
+ * Instantiated and returned by the `{@link animations/group group()}` function.
357
358
  */
358
359
  export interface AnimationGroupMetadata extends AnimationMetadata {
359
360
  /**
@@ -574,7 +575,7 @@ export declare function trigger(name: string, definitions: AnimationMetadata[]):
574
575
  * @returns An object that encapsulates the animation step.
575
576
  *
576
577
  * @usageNotes
577
- * Call within an animation `sequence()`, `group()`, or
578
+ * Call within an animation `sequence()`, `{@link animations/group group()}`, or
578
579
  * `transition()` call to specify an animation step
579
580
  * that applies given style data to the parent animation for a given amount of time.
580
581
  *
@@ -662,9 +663,9 @@ export declare function group(steps: AnimationMetadata[], options?: AnimationOpt
662
663
  * @usageNotes
663
664
  * When you pass an array of steps to a
664
665
  * `transition()` call, the steps run sequentially by default.
665
- * Compare this to the `group()` call, which runs animation steps in parallel.
666
+ * Compare this to the `{@link animations/group group()}` call, which runs animation steps in parallel.
666
667
  *
667
- * When a sequence is used within a `group()` or a `transition()` call,
668
+ * When a sequence is used within a `{@link animations/group group()}` or a `transition()` call,
668
669
  * execution continues to the next instruction only after each of the inner animation
669
670
  * steps have completed.
670
671
  *
@@ -840,7 +841,7 @@ export declare function keyframes(steps: AnimationStyleMetadata[]): AnimationKey
840
841
  * ...]
841
842
  * ```
842
843
  *
843
- * Note that when you call the `sequence()` function within a `group()`
844
+ * Note that when you call the `sequence()` function within a `{@link animations/group group()}`
844
845
  * or a `transition()` call, execution does not continue to the next instruction
845
846
  * until each of the inner animation steps have completed.
846
847
  *