i18next 23.11.0 → 23.11.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/dist/esm/package.json +1 -1
- package/package.json +2 -2
- package/typescript/t.d.ts +1 -1
package/dist/esm/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"23.11.
|
|
1
|
+
{"type":"module","version":"23.11.1"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "i18next",
|
|
3
|
-
"version": "23.11.
|
|
3
|
+
"version": "23.11.1",
|
|
4
4
|
"description": "i18next internationalization framework",
|
|
5
5
|
"main": "./dist/cjs/i18next.js",
|
|
6
6
|
"module": "./dist/esm/i18next.js",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"rimraf": "5.0.5",
|
|
98
98
|
"rollup": "^4.3.0",
|
|
99
99
|
"sinon": "17.0.1",
|
|
100
|
-
"typescript": "5.
|
|
100
|
+
"typescript": "5.4.4",
|
|
101
101
|
"vitest": "1.1.0"
|
|
102
102
|
},
|
|
103
103
|
"scripts": {
|
package/typescript/t.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ export type ParseKeys<
|
|
|
128
128
|
KPrefix = undefined,
|
|
129
129
|
Keys extends $Dictionary = KeysByTOptions<TOpt>,
|
|
130
130
|
ActualNS extends Namespace = NsByTOptions<Ns, TOpt>,
|
|
131
|
-
|
|
131
|
+
Context extends TOpt['context'] = TOpt['context'],
|
|
132
132
|
> = $IsResourcesDefined extends true
|
|
133
133
|
? FilterKeysByContext<
|
|
134
134
|
| ParseKeysByKeyPrefix<Keys[$FirstNamespace<ActualNS>], KPrefix>
|