@angular/core 12.2.3 → 12.2.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.
- package/bundles/core-testing.umd.js +2 -2
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core.umd.js +6 -6
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/di/injector.js +2 -2
- package/esm2015/src/di/reflective_injector.js +2 -2
- package/esm2015/src/linker/component_factory_resolver.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +5 -5
- 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.2.
|
|
2
|
+
* @license Angular v12.2.7
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
ar[i] = from[i];
|
|
368
368
|
}
|
|
369
369
|
}
|
|
370
|
-
return to.concat(ar || from);
|
|
370
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
371
371
|
}
|
|
372
372
|
function __await(v) {
|
|
373
373
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
@@ -12143,7 +12143,7 @@
|
|
|
12143
12143
|
return Injector;
|
|
12144
12144
|
}());
|
|
12145
12145
|
Injector.THROW_IF_NOT_FOUND = THROW_IF_NOT_FOUND;
|
|
12146
|
-
Injector.NULL = new NullInjector();
|
|
12146
|
+
Injector.NULL = ( /* @__PURE__ */new NullInjector());
|
|
12147
12147
|
/** @nocollapse */
|
|
12148
12148
|
Injector.ɵprov = ɵɵdefineInjectable({
|
|
12149
12149
|
token: Injector,
|
|
@@ -15238,7 +15238,7 @@
|
|
|
15238
15238
|
};
|
|
15239
15239
|
return ReflectiveInjector_;
|
|
15240
15240
|
}());
|
|
15241
|
-
ReflectiveInjector_.INJECTOR_KEY = ReflectiveKey.get(Injector);
|
|
15241
|
+
ReflectiveInjector_.INJECTOR_KEY = ( /* @__PURE__ */ReflectiveKey.get(Injector));
|
|
15242
15242
|
function _mapProviders(injector, fn) {
|
|
15243
15243
|
var res = [];
|
|
15244
15244
|
for (var i = 0; i < injector._providers.length; ++i) {
|
|
@@ -21800,7 +21800,7 @@
|
|
|
21800
21800
|
}
|
|
21801
21801
|
return ComponentFactoryResolver;
|
|
21802
21802
|
}());
|
|
21803
|
-
ComponentFactoryResolver.NULL = new _NullComponentFactoryResolver();
|
|
21803
|
+
ComponentFactoryResolver.NULL = ( /* @__PURE__ */new _NullComponentFactoryResolver());
|
|
21804
21804
|
var CodegenComponentFactoryResolver = /** @class */ (function () {
|
|
21805
21805
|
function CodegenComponentFactoryResolver(factories, _parent, _ngModule) {
|
|
21806
21806
|
this._parent = _parent;
|
|
@@ -22033,7 +22033,7 @@
|
|
|
22033
22033
|
/**
|
|
22034
22034
|
* @publicApi
|
|
22035
22035
|
*/
|
|
22036
|
-
var VERSION = new Version('12.2.
|
|
22036
|
+
var VERSION = new Version('12.2.7');
|
|
22037
22037
|
|
|
22038
22038
|
/**
|
|
22039
22039
|
* @license
|