@ui5/webcomponents-base 0.31.21 → 0.31.22

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.31.22](https://github.com/SAP/ui5-webcomponents/compare/v0.31.21...v0.31.22) (2021-10-26)
7
+
8
+
9
+ ### Features
10
+
11
+ * **framework:** allow using a custom i18n library ([#4119](https://github.com/SAP/ui5-webcomponents/issues/4119)) ([947889a](https://github.com/SAP/ui5-webcomponents/commit/947889a))
12
+
13
+
14
+ ### Reverts
15
+
16
+ * feat(framework): allow using a custom i18n library ([debc848](https://github.com/SAP/ui5-webcomponents/commit/debc848))
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.31.21](https://github.com/SAP/ui5-webcomponents/compare/v0.31.20...v0.31.21) (2021-10-16)
7
23
 
8
24
 
@@ -39,7 +39,6 @@ const getI18nBundle = packageName => {
39
39
  if (I18nBundleInstances.has(packageName)) {
40
40
  return I18nBundleInstances.get(packageName);
41
41
  }
42
-
43
42
  const i18nBundle = new I18nBundle(packageName);
44
43
  I18nBundleInstances.set(packageName, i18nBundle);
45
44
  return i18nBundle;