@angular/core 12.0.0-rc.3 → 12.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/bundles/core-testing.umd.js +1 -1
- package/bundles/core.umd.js +5 -6
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/version.js +5 -6
- package/fesm2015/core.js +5 -6
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/bundles/core.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.0.0
|
|
2
|
+
* @license Angular v12.0.0
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -22013,17 +22013,16 @@
|
|
|
22013
22013
|
var Version = /** @class */ (function () {
|
|
22014
22014
|
function Version(full) {
|
|
22015
22015
|
this.full = full;
|
|
22016
|
-
|
|
22017
|
-
this.
|
|
22018
|
-
this.
|
|
22019
|
-
this.patch = rest.join('.');
|
|
22016
|
+
this.major = full.split('.')[0];
|
|
22017
|
+
this.minor = full.split('.')[1];
|
|
22018
|
+
this.patch = full.split('.').slice(2).join('.');
|
|
22020
22019
|
}
|
|
22021
22020
|
return Version;
|
|
22022
22021
|
}());
|
|
22023
22022
|
/**
|
|
22024
22023
|
* @publicApi
|
|
22025
22024
|
*/
|
|
22026
|
-
var VERSION = new Version('12.0.0
|
|
22025
|
+
var VERSION = new Version('12.0.0');
|
|
22027
22026
|
|
|
22028
22027
|
/**
|
|
22029
22028
|
* @license
|