@angular/core 13.3.0-rc.0 → 13.3.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.3.0-rc.0
2
+ * @license Angular v13.3.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/fesm2020/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.3.0-rc.0
2
+ * @license Angular v13.3.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -21102,7 +21102,7 @@ class Version {
21102
21102
  /**
21103
21103
  * @publicApi
21104
21104
  */
21105
- const VERSION = new Version('13.3.0-rc.0');
21105
+ const VERSION = new Version('13.3.0');
21106
21106
 
21107
21107
  /**
21108
21108
  * @license
@@ -24940,16 +24940,16 @@ Console.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Console, factory: C
24940
24940
  /**
24941
24941
  * Work out the locale from the potential global properties.
24942
24942
  *
24943
- * * Closure Compiler: use `goog.getLocale()`.
24943
+ * * Closure Compiler: use `goog.LOCALE`.
24944
24944
  * * Ivy enabled: use `$localize.locale`
24945
24945
  */
24946
24946
  function getGlobalLocale() {
24947
24947
  if (typeof ngI18nClosureMode !== 'undefined' && ngI18nClosureMode &&
24948
- typeof goog !== 'undefined' && goog.getLocale() !== 'en') {
24949
- // * The default `goog.getLocale()` value is `en`, while Angular used `en-US`.
24948
+ typeof goog !== 'undefined' && goog.LOCALE !== 'en') {
24949
+ // * The default `goog.LOCALE` value is `en`, while Angular used `en-US`.
24950
24950
  // * In order to preserve backwards compatibility, we use Angular default value over
24951
24951
  // Closure Compiler's one.
24952
- return goog.getLocale();
24952
+ return goog.LOCALE;
24953
24953
  }
24954
24954
  else {
24955
24955
  // KEEP `typeof $localize !== 'undefined' && $localize.locale` IN SYNC WITH THE LOCALIZE