next-intlayer 3.2.2 → 3.3.3
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/README.md +4 -4
- package/package.json +21 -21
package/README.md
CHANGED
|
@@ -226,10 +226,10 @@ Access your content dictionaries throughout your application:
|
|
|
226
226
|
```tsx
|
|
227
227
|
// src/app/[locale]/page.ts
|
|
228
228
|
|
|
229
|
-
import { ClientComponentExample } from "@component/
|
|
230
|
-
import { LocaleSwitcher } from "@component/
|
|
231
|
-
import { NestedServerComponentExample } from "@component/
|
|
232
|
-
import { ServerComponentExample } from "@component/
|
|
229
|
+
import { ClientComponentExample } from "@component/ClientComponentExample";
|
|
230
|
+
import { LocaleSwitcher } from "@component/LangSwitcherDropDown";
|
|
231
|
+
import { NestedServerComponentExample } from "@component/NestedServerComponentExample";
|
|
232
|
+
import { ServerComponentExample } from "@component/ServerComponentExample";
|
|
233
233
|
import { type NextPageIntlayer, IntlayerClientProvider } from "next-intlayer";
|
|
234
234
|
import { IntlayerServerProvider, useIntlayer } from "next-intlayer/server";
|
|
235
235
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intlayer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Internationalisation tool for Next.js applications. Declare your multilingual contant in the same lever than your component. Powered by TypeScript, declaration files.",
|
|
6
6
|
"keywords": [
|
|
@@ -72,38 +72,38 @@
|
|
|
72
72
|
],
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"webpack": "^5.96.1",
|
|
75
|
-
"@intlayer/
|
|
76
|
-
"@intlayer/
|
|
77
|
-
"@intlayer/
|
|
78
|
-
"@intlayer/
|
|
79
|
-
"@intlayer/
|
|
80
|
-
"react-intlayer": "^3.
|
|
75
|
+
"@intlayer/core": "^3.3.3",
|
|
76
|
+
"@intlayer/config": "^3.3.3",
|
|
77
|
+
"@intlayer/chokidar": "^3.3.3",
|
|
78
|
+
"@intlayer/dictionaries-entry": "^3.3.3",
|
|
79
|
+
"@intlayer/webpack": "^3.3.3",
|
|
80
|
+
"react-intlayer": "^3.3.3"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@types/node": "^22.
|
|
83
|
+
"@types/node": "^22.10.1",
|
|
84
84
|
"@types/react": "^18.3.12",
|
|
85
85
|
"concurrently": "^9.1.0",
|
|
86
|
-
"eslint": "^9.
|
|
87
|
-
"prettier": "^3.
|
|
86
|
+
"eslint": "^9.16.0",
|
|
87
|
+
"prettier": "^3.4.1",
|
|
88
88
|
"rimraf": "^6.0.1",
|
|
89
89
|
"tsc-alias": "^1.8.10",
|
|
90
90
|
"tsup": "^8.3.5",
|
|
91
|
-
"typescript": "^5.
|
|
92
|
-
"@utils/
|
|
93
|
-
"@utils/ts-config": "^1.0.4",
|
|
91
|
+
"typescript": "^5.7.2",
|
|
92
|
+
"@utils/ts-config-types": "^1.0.4",
|
|
94
93
|
"@utils/tsup-config": "^1.0.4",
|
|
95
|
-
"
|
|
96
|
-
"
|
|
94
|
+
"@utils/ts-config": "^1.0.4",
|
|
95
|
+
"intlayer": "^3.3.3",
|
|
96
|
+
"@utils/eslint-config": "^1.0.4"
|
|
97
97
|
},
|
|
98
98
|
"peerDependencies": {
|
|
99
99
|
"next": ">=14.0.0 <16.0.0",
|
|
100
100
|
"react": ">=16.0.0 <19.0.0",
|
|
101
|
-
"@intlayer/config": "^3.
|
|
102
|
-
"@intlayer/
|
|
103
|
-
"@intlayer/dictionaries-entry": "^3.
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"intlayer": "^3.
|
|
101
|
+
"@intlayer/config": "^3.3.3",
|
|
102
|
+
"@intlayer/core": "^3.3.3",
|
|
103
|
+
"@intlayer/dictionaries-entry": "^3.3.3",
|
|
104
|
+
"intlayer": "^3.3.3",
|
|
105
|
+
"react-intlayer": "^3.3.3",
|
|
106
|
+
"@intlayer/webpack": "^3.3.3"
|
|
107
107
|
},
|
|
108
108
|
"engines": {
|
|
109
109
|
"node": ">=14.18"
|