@hua-labs/i18n-core 1.1.0-alpha.0.1 → 1.1.0-alpha.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/README.md +14 -5
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
# @hua-labs/i18n-core
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Type-safe i18n library with SSR/CSR support and state management integration.
|
|
4
|
+
SSR/CSR 지원 및 상태 관리 통합 기능을 갖춘 타입 안전 i18n 라이브러리.
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
[](https://www.npmjs.com/package/@hua-labs/i18n-core)
|
|
7
|
+
[](https://github.com/HUA-Labs/HUA-Labs-public/blob/main/LICENSE)
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
> **⚠️ Alpha Release**: This package is currently in alpha. APIs may change before the stable release.
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
---
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
## English
|
|
14
|
+
|
|
15
|
+
### Overview
|
|
16
|
+
Lightweight, production-ready i18n library for React applications. Delivers zero-flicker language transitions through intelligent caching and provides seamless SSR/CSR support with built-in state management integration.
|
|
17
|
+
|
|
18
|
+
### Why i18n-core?
|
|
19
|
+
|
|
20
|
+
Built to address common challenges in React internationalization: language transition flickers and SSR hydration mismatches. Provides a focused solution for these specific problems.
|
|
12
21
|
|
|
13
22
|
**Key advantages:**
|
|
14
23
|
- **Zero flickering**: Automatically shows previous language translation during switch
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hua-labs/i18n-core",
|
|
3
|
-
"version": "1.1.0-alpha.
|
|
3
|
+
"version": "1.1.0-alpha.1",
|
|
4
4
|
"description": "HUA Labs - Core i18n functionality with SSR/CSR support and state management integration",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,14 +30,17 @@
|
|
|
30
30
|
"react": ">=16.8.0"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
|
+
"hua-labs",
|
|
33
34
|
"i18n",
|
|
34
35
|
"internationalization",
|
|
36
|
+
"localization",
|
|
35
37
|
"react",
|
|
36
38
|
"typescript",
|
|
37
39
|
"ssr",
|
|
38
40
|
"csr",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
+
"translation",
|
|
42
|
+
"nextjs",
|
|
43
|
+
"zero-flicker"
|
|
41
44
|
],
|
|
42
45
|
"author": "HUA Labs",
|
|
43
46
|
"license": "MIT",
|