sheet-i18n 1.1.3 → 1.1.5
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 +1 -1
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -381,7 +381,7 @@ const translatedMessage = t('login'); // login is key
|
|
|
381
381
|
const translatedMessage = t('{username} shown', { username: 'John Doe' });
|
|
382
382
|
```
|
|
383
383
|
|
|
384
|
-
|
|
384
|
+
💡 Note: The values object can contain any type of data, including React components.
|
|
385
385
|
|
|
386
386
|
```tsx
|
|
387
387
|
// <Username /> shown
|
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sheet-i18n",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/chltjdrhd777/sheet-i18n"
|
|
7
|
+
},
|
|
4
8
|
"main": "./dist/index.js",
|
|
5
9
|
"module": "./dist/index.mjs",
|
|
6
10
|
"types": "./dist/index.d.ts",
|
|
@@ -32,13 +36,13 @@
|
|
|
32
36
|
},
|
|
33
37
|
"license": "ISC",
|
|
34
38
|
"dependencies": {
|
|
35
|
-
"@sheet-i18n/exporter": "1.1.
|
|
36
|
-
"@sheet-i18n/react": "0.2.
|
|
39
|
+
"@sheet-i18n/exporter": "1.1.2",
|
|
40
|
+
"@sheet-i18n/react": "0.2.4"
|
|
37
41
|
},
|
|
38
42
|
"devDependencies": {
|
|
39
43
|
"tsup": "^6.0.0",
|
|
40
44
|
"typescript": "^5.0.0",
|
|
41
|
-
"@sheet-i18n/typescript-config": "1.1.
|
|
45
|
+
"@sheet-i18n/typescript-config": "1.1.2"
|
|
42
46
|
},
|
|
43
47
|
"scripts": {
|
|
44
48
|
"build": "tsup",
|