@cosmicdrift/kumiko-renderer 0.130.1 → 0.130.2
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/package.json +3 -3
- package/src/i18n-defaults.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer",
|
|
3
|
-
"version": "0.130.
|
|
3
|
+
"version": "0.130.2",
|
|
4
4
|
"description": "Platform-agnostic React renderer for Kumiko screens. Contains the shared logic — primitives-contract, hooks, KumikoScreen, navigation & SSE abstractions — that any platform-specific renderer (web, native) composes. No DOM, no EventSource, no react-dom.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@cosmicdrift/kumiko-framework": "0.130.
|
|
19
|
-
"@cosmicdrift/kumiko-headless": "0.130.
|
|
18
|
+
"@cosmicdrift/kumiko-framework": "0.130.2",
|
|
19
|
+
"@cosmicdrift/kumiko-headless": "0.130.2",
|
|
20
20
|
"react": "^19.2.6"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
package/src/i18n-defaults.ts
CHANGED
|
@@ -48,6 +48,7 @@ export const kumikoDefaultTranslations: TranslationsByLocale = {
|
|
|
48
48
|
// Nav — Sidebar Tree (Toggle-aria-Labels).
|
|
49
49
|
"kumiko.nav.expand": "Aufklappen",
|
|
50
50
|
"kumiko.nav.collapse": "Zuklappen",
|
|
51
|
+
"kumiko.nav.search": "Navigation durchsuchen…",
|
|
51
52
|
|
|
52
53
|
// Dialog — Confirm-Buttons + Close-aria-Label.
|
|
53
54
|
"kumiko.dialog.confirm": "Bestätigen",
|
|
@@ -151,6 +152,7 @@ export const kumikoDefaultTranslations: TranslationsByLocale = {
|
|
|
151
152
|
|
|
152
153
|
"kumiko.nav.expand": "Expand",
|
|
153
154
|
"kumiko.nav.collapse": "Collapse",
|
|
155
|
+
"kumiko.nav.search": "Search navigation…",
|
|
154
156
|
|
|
155
157
|
"kumiko.dialog.confirm": "Confirm",
|
|
156
158
|
"kumiko.dialog.cancel": "Cancel",
|