@angular/animations 6.0.0-rc.3 → 6.0.0
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/browser/testing.d.ts +1 -1
- package/browser.d.ts +1 -1
- package/bundles/animations-browser-testing.umd.js +32 -6
- package/bundles/animations-browser-testing.umd.js.map +1 -1
- package/bundles/animations-browser-testing.umd.min.js +3 -3
- package/bundles/animations-browser-testing.umd.min.js.map +1 -1
- package/bundles/animations-browser.umd.js +101 -19
- package/bundles/animations-browser.umd.js.map +1 -1
- package/bundles/animations-browser.umd.min.js +6 -6
- package/bundles/animations-browser.umd.min.js.map +1 -1
- package/bundles/animations.umd.js +3 -3
- package/bundles/animations.umd.js.map +1 -1
- package/bundles/animations.umd.min.js +4 -4
- package/bundles/animations.umd.min.js.map +1 -1
- package/esm2015/src/version.js +5 -5
- package/esm5/src/version.js +9 -9
- package/fesm2015/animations.js +1 -1
- package/fesm2015/animations.js.map +1 -1
- package/fesm2015/browser/testing.js +1 -1
- package/fesm2015/browser/testing.js.map +1 -1
- package/fesm2015/browser.js +1 -1
- package/fesm2015/browser.js.map +1 -1
- package/fesm5/animations.js +1 -1
- package/fesm5/animations.js.map +1 -1
- package/fesm5/browser/testing.js +1 -1
- package/fesm5/browser/testing.js.map +1 -1
- package/fesm5/browser.js +1 -1
- package/fesm5/browser.js.map +1 -1
- package/package.json +4 -3
- package/src/version.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/animations",
|
|
3
|
-
"version": "6.0.0
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Angular - animations integration with web-animationss",
|
|
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.0
|
|
19
|
+
"@angular/core": "6.0.0"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
@@ -24,12 +24,13 @@
|
|
|
24
24
|
},
|
|
25
25
|
"ng-update": {
|
|
26
26
|
"packageGroup": [
|
|
27
|
-
"@angular/bazel",
|
|
28
27
|
"@angular/core",
|
|
28
|
+
"@angular/bazel",
|
|
29
29
|
"@angular/common",
|
|
30
30
|
"@angular/compiler",
|
|
31
31
|
"@angular/compiler-cli",
|
|
32
32
|
"@angular/animations",
|
|
33
|
+
"@angular/elements",
|
|
33
34
|
"@angular/platform-browser",
|
|
34
35
|
"@angular/platform-browser-dynamic",
|
|
35
36
|
"@angular/forms",
|
package/src/version.d.ts
CHANGED
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
* Entry point for all public APIs of the animation package.
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
|
-
* @
|
|
14
|
+
* @description
|
|
15
15
|
*
|
|
16
|
-
*
|
|
16
|
+
* Represents the version of angular/animations
|
|
17
17
|
*/
|
|
18
18
|
export declare class Version {
|
|
19
19
|
full: string;
|
|
@@ -23,6 +23,6 @@ export declare class Version {
|
|
|
23
23
|
constructor(full: string);
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
*
|
|
27
27
|
*/
|
|
28
28
|
export declare const VERSION: Version;
|