@cosmicdrift/kumiko-renderer 0.71.0 → 0.73.0
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.
|
|
3
|
+
"version": "0.73.0",
|
|
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.
|
|
19
|
-
"@cosmicdrift/kumiko-headless": "0.
|
|
18
|
+
"@cosmicdrift/kumiko-framework": "0.73.0",
|
|
19
|
+
"@cosmicdrift/kumiko-headless": "0.73.0",
|
|
20
20
|
"react": "^19.2.6"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
package/src/i18n-defaults.ts
CHANGED
|
@@ -19,6 +19,7 @@ export const kumikoDefaultTranslations: TranslationsByLocale = {
|
|
|
19
19
|
"kumiko.actions.delete-confirm": "Wirklich löschen?",
|
|
20
20
|
"kumiko.actions.reload": "Neu laden",
|
|
21
21
|
"kumiko.actions.create": "Neu",
|
|
22
|
+
"kumiko.actions.edit": "Bearbeiten",
|
|
22
23
|
|
|
23
24
|
// Version — Update-Awareness-Banner (UpdateChecker).
|
|
24
25
|
"kumiko.version.update-available": "Eine neue Version ist verfügbar.",
|
|
@@ -108,6 +109,7 @@ export const kumikoDefaultTranslations: TranslationsByLocale = {
|
|
|
108
109
|
"kumiko.actions.delete-confirm": "Confirm delete?",
|
|
109
110
|
"kumiko.actions.reload": "Reload",
|
|
110
111
|
"kumiko.actions.create": "New",
|
|
112
|
+
"kumiko.actions.edit": "Edit",
|
|
111
113
|
|
|
112
114
|
"kumiko.version.update-available": "A new version is available.",
|
|
113
115
|
|