@angular/core 12.2.12 → 12.2.13
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 +12 -7
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/src/render3/di.js +3 -3
- package/esm2015/src/render3/error_code.js +2 -5
- package/esm2015/src/render3/error_details_base_url.js +16 -0
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +19 -7
- 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.13
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -457,10 +457,15 @@
|
|
|
457
457
|
* Use of this source code is governed by an MIT-style license that can be
|
|
458
458
|
* found in the LICENSE file at https://angular.io/license
|
|
459
459
|
*/
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
460
|
+
/**
|
|
461
|
+
* Base URL for the error details page.
|
|
462
|
+
*
|
|
463
|
+
* Keep the files below in sync:
|
|
464
|
+
* - packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.ts
|
|
465
|
+
* - packages/core/src/render3/error_details_base_url.ts
|
|
466
|
+
*/
|
|
463
467
|
var ERROR_DETAILS_PAGE_BASE_URL = 'https://angular.io/errors';
|
|
468
|
+
|
|
464
469
|
var RuntimeError = /** @class */ (function (_super) {
|
|
465
470
|
__extends(RuntimeError, _super);
|
|
466
471
|
function RuntimeError(code, message) {
|
|
@@ -3918,8 +3923,8 @@
|
|
|
3918
3923
|
this._tNode = _tNode;
|
|
3919
3924
|
this._lView = _lView;
|
|
3920
3925
|
}
|
|
3921
|
-
NodeInjector.prototype.get = function (token, notFoundValue) {
|
|
3922
|
-
return getOrCreateInjectable(this._tNode, this._lView, token,
|
|
3926
|
+
NodeInjector.prototype.get = function (token, notFoundValue, flags) {
|
|
3927
|
+
return getOrCreateInjectable(this._tNode, this._lView, token, flags, notFoundValue);
|
|
3923
3928
|
};
|
|
3924
3929
|
return NodeInjector;
|
|
3925
3930
|
}());
|
|
@@ -22041,7 +22046,7 @@
|
|
|
22041
22046
|
/**
|
|
22042
22047
|
* @publicApi
|
|
22043
22048
|
*/
|
|
22044
|
-
var VERSION = new Version('12.2.
|
|
22049
|
+
var VERSION = new Version('12.2.13');
|
|
22045
22050
|
|
|
22046
22051
|
/**
|
|
22047
22052
|
* @license
|