@generaltranslation/react-core 1.5.7 → 1.5.8
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 +9 -0
- package/README.md +4 -0
- package/dist/index.cjs.min.cjs +2 -2
- package/dist/index.cjs.min.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.min.mjs +2 -2
- package/dist/index.esm.min.mjs.map +1 -1
- package/dist/internal.cjs.min.cjs +2 -2
- package/dist/internal.cjs.min.cjs.map +1 -1
- package/dist/internal.esm.min.mjs +2 -2
- package/dist/internal.esm.min.mjs.map +1 -1
- package/dist/translation/T.d.ts.map +1 -0
- package/package.json +2 -2
- package/dist/translation/inline/T.d.ts.map +0 -1
- /package/dist/translation/{inline/T.d.ts → T.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @generaltranslation/react-core
|
|
2
2
|
|
|
3
|
+
## 1.5.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1113](https://github.com/generaltranslation/gt/pull/1113) [`7e2bbc5`](https://github.com/generaltranslation/gt/commit/7e2bbc575d9d2bcc358bfa11c880a7bf4aac8636) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add string translation function t()
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`7e2bbc5`](https://github.com/generaltranslation/gt/commit/7e2bbc575d9d2bcc358bfa11c880a7bf4aac8636)]:
|
|
10
|
+
- gt-i18n@0.6.0
|
|
11
|
+
|
|
3
12
|
## 1.5.7
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -17,3 +17,7 @@
|
|
|
17
17
|
Pure React library for internationalization. Used internally by `gt-react` and `gt-next`.
|
|
18
18
|
|
|
19
19
|
See the [full documentation](https://generaltranslation.com/docs/react) for guides and API reference.
|
|
20
|
+
|
|
21
|
+
## Notes
|
|
22
|
+
|
|
23
|
+
This package should be runtime agnostic. Runtime compatability should be delegated to consumers.
|