react-i18next 13.0.3 → 13.1.1
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/.husky/pre-commit +4 -0
- package/.prettierignore +3 -0
- package/CHANGELOG.md +8 -0
- package/dist/amd/react-i18next.js +824 -805
- package/dist/amd/react-i18next.min.js +1 -1
- package/dist/commonjs/TransWithoutContext.js +31 -24
- package/dist/es/TransWithoutContext.js +29 -24
- package/dist/es/package.json +1 -1
- package/dist/umd/react-i18next.js +827 -808
- package/dist/umd/react-i18next.min.js +1 -1
- package/index.d.ts +8 -0
- package/package.json +8 -7
- package/react-i18next.js +827 -808
- package/react-i18next.min.js +1 -1
- package/src/TransWithoutContext.js +40 -18
- package/src/unescape.js +2 -1
package/.prettierignore
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 13.1.1
|
|
2
|
+
|
|
3
|
+
- Render all children regardless of type when using i18nIsDynamicList prop [1661](https://github.com/i18next/react-i18next/pull/1661)
|
|
4
|
+
|
|
5
|
+
### 13.1.0
|
|
6
|
+
|
|
7
|
+
- Fix non-list dynamic content in Trans component [1660](https://github.com/i18next/react-i18next/pull/1660)
|
|
8
|
+
|
|
1
9
|
### 13.0.3
|
|
2
10
|
|
|
3
11
|
- fix unescape is not consistently called for all values [1657](https://github.com/i18next/react-i18next/issues/1657)
|