@koine/next 2.0.0-beta.28 → 2.0.0-beta.30
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/12/DynamicNamespaces.d.ts +1 -1
- package/12/T.d.ts +1 -1
- package/package.json +12 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { TranslateNamespace } from "@koine/i18n";
|
|
2
1
|
import type { DynamicNamespacesProps as BaseDynamicNamespacesProps } from "next-translate";
|
|
3
2
|
import BaseDynamicNamespaces from "next-translate/DynamicNamespaces";
|
|
3
|
+
import type { TranslateNamespace } from "@koine/i18n";
|
|
4
4
|
export type DynamicNamespacesProps = Omit<BaseDynamicNamespacesProps, "namespaces"> & {
|
|
5
5
|
namespaces: TranslateNamespace[];
|
|
6
6
|
};
|
package/12/T.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { TranslateNamespace, TranslationsAllPaths, TranslationsPaths } from "@koine/i18n";
|
|
3
2
|
import type { TransProps } from "next-translate";
|
|
3
|
+
import type { TranslateNamespace, TranslationsAllPaths, TranslationsPaths } from "@koine/i18n";
|
|
4
4
|
export type TProps<TNamespace extends TranslateNamespace | undefined = undefined> = (Omit<TransProps, "i18nKey" | "ns"> & {
|
|
5
5
|
i18nKey: TranslationsAllPaths;
|
|
6
6
|
}) | (Omit<TransProps, "i18nKey" | "ns"> & {
|
package/package.json
CHANGED
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
"name": "@koine/next",
|
|
3
3
|
"sideEffects": false,
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@koine/browser": "2.0.0-beta.
|
|
6
|
-
"@koine/react": "2.0.0-beta.
|
|
7
|
-
"@koine/utils": "2.0.0-beta.
|
|
5
|
+
"@koine/browser": "2.0.0-beta.30",
|
|
6
|
+
"@koine/react": "2.0.0-beta.30",
|
|
7
|
+
"@koine/utils": "2.0.0-beta.30",
|
|
8
|
+
"@koine/i18n": "2.0.0-beta.30"
|
|
8
9
|
},
|
|
9
10
|
"peerDependenciesMeta": {
|
|
10
11
|
"@kuus/yup": {
|
|
@@ -177,6 +178,12 @@
|
|
|
177
178
|
"import": "./useTheme.js"
|
|
178
179
|
}
|
|
179
180
|
},
|
|
180
|
-
"peerDependencies": {
|
|
181
|
-
|
|
181
|
+
"peerDependencies": {
|
|
182
|
+
"next": "^14.0.4",
|
|
183
|
+
"react": "^18.2.0",
|
|
184
|
+
"next-translate": "^2.6.2",
|
|
185
|
+
"next-seo": "^6.4.0",
|
|
186
|
+
"date-fns": "^3.2.0"
|
|
187
|
+
},
|
|
188
|
+
"version": "2.0.0-beta.30"
|
|
182
189
|
}
|