react-i18next 15.7.2 → 15.7.4
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 +8 -0
- package/dist/es/package.json +1 -1
- package/index.d.ts +8 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 15.7.4
|
|
2
|
+
|
|
3
|
+
- downgrade i18next dep to address [1865](https://github.com/i18next/react-i18next/issues/1865)
|
|
4
|
+
|
|
5
|
+
### 15.7.3
|
|
6
|
+
|
|
7
|
+
- exports TransSelectorProps [1862](https://github.com/i18next/react-i18next/pull/1862) to address [1861](https://github.com/i18next/react-i18next/issues/1861)
|
|
8
|
+
|
|
1
9
|
### 15.7.2
|
|
2
10
|
|
|
3
11
|
- update i18next dependency
|
package/dist/es/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"15.7.
|
|
1
|
+
{"type":"module","version":"15.7.4"}
|
package/index.d.ts
CHANGED
|
@@ -10,11 +10,17 @@ import type {
|
|
|
10
10
|
KeyPrefix,
|
|
11
11
|
} from 'i18next';
|
|
12
12
|
import * as React from 'react';
|
|
13
|
-
import {
|
|
13
|
+
import {
|
|
14
|
+
Trans,
|
|
15
|
+
TransProps,
|
|
16
|
+
TransSelectorProps,
|
|
17
|
+
ErrorCode,
|
|
18
|
+
ErrorArgs,
|
|
19
|
+
} from './TransWithoutContext.js';
|
|
14
20
|
export { initReactI18next } from './initReactI18next.js';
|
|
15
21
|
|
|
16
22
|
export const TransWithoutContext: typeof Trans;
|
|
17
|
-
export { Trans, TransProps, ErrorArgs, ErrorCode };
|
|
23
|
+
export { Trans, TransProps, TransSelectorProps, ErrorArgs, ErrorCode };
|
|
18
24
|
|
|
19
25
|
export function setDefaults(options: ReactOptions): void;
|
|
20
26
|
export function getDefaults(): ReactOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-i18next",
|
|
3
|
-
"version": "15.7.
|
|
3
|
+
"version": "15.7.4",
|
|
4
4
|
"description": "Internationalization for react done right. Using the i18next i18n ecosystem.",
|
|
5
5
|
"main": "dist/commonjs/index.js",
|
|
6
6
|
"types": "./index.d.mts",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"html-parse-stringify": "^3.0.1"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"i18next": ">=
|
|
71
|
+
"i18next": ">= 23.4.0",
|
|
72
72
|
"react": ">= 16.8.0",
|
|
73
73
|
"typescript": "^5"
|
|
74
74
|
},
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"eslint-plugin-testing-library": "^6.5.0",
|
|
124
124
|
"happy-dom": "^14.12.3",
|
|
125
125
|
"husky": "^9.1.7",
|
|
126
|
-
"i18next": "^25.
|
|
126
|
+
"i18next": "^25.5.2",
|
|
127
127
|
"lint-staged": "^15.5.2",
|
|
128
128
|
"mkdirp": "^3.0.1",
|
|
129
129
|
"prettier": "^3.6.2",
|