@angular/core 12.0.4 → 12.0.5
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 +17 -17
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/render3/definition.js +16 -16
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +17 -17
- 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.
|
|
2
|
+
* @license Angular v12.0.5
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1236,22 +1236,22 @@
|
|
|
1236
1236
|
* @codeGenApi
|
|
1237
1237
|
*/
|
|
1238
1238
|
function ɵɵdefineNgModule(def) {
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1239
|
+
return noSideEffects(function () {
|
|
1240
|
+
var res = {
|
|
1241
|
+
type: def.type,
|
|
1242
|
+
bootstrap: def.bootstrap || EMPTY_ARRAY,
|
|
1243
|
+
declarations: def.declarations || EMPTY_ARRAY,
|
|
1244
|
+
imports: def.imports || EMPTY_ARRAY,
|
|
1245
|
+
exports: def.exports || EMPTY_ARRAY,
|
|
1246
|
+
transitiveCompileScopes: null,
|
|
1247
|
+
schemas: def.schemas || null,
|
|
1248
|
+
id: def.id || null,
|
|
1249
|
+
};
|
|
1250
|
+
if (def.id != null) {
|
|
1251
1251
|
autoRegisterModuleById[def.id] = def.type;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
|
|
1252
|
+
}
|
|
1253
|
+
return res;
|
|
1254
|
+
});
|
|
1255
1255
|
}
|
|
1256
1256
|
/**
|
|
1257
1257
|
* Adds the module metadata that is necessary to compute the module's transitive scope to an
|
|
@@ -22038,7 +22038,7 @@
|
|
|
22038
22038
|
/**
|
|
22039
22039
|
* @publicApi
|
|
22040
22040
|
*/
|
|
22041
|
-
var VERSION = new Version('12.0.
|
|
22041
|
+
var VERSION = new Version('12.0.5');
|
|
22042
22042
|
|
|
22043
22043
|
/**
|
|
22044
22044
|
* @license
|