@angular/core 12.2.11 → 12.2.15

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.2.11
2
+ * @license Angular v12.2.15
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.2.11
2
+ * @license Angular v12.2.15
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
- // Base URL for the error details page.
461
- // Keep this value in sync with a similar const in
462
- // `packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.ts`.
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, undefined, notFoundValue);
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.11');
22049
+ var VERSION = new Version('12.2.15');
22045
22050
 
22046
22051
  /**
22047
22052
  * @license