@cosmicdrift/kumiko-renderer 0.182.1 → 0.183.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/package.json +3 -3
- package/src/i18n-defaults.ts +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.183.1",
|
|
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.183.1",
|
|
19
|
+
"@cosmicdrift/kumiko-headless": "0.183.1",
|
|
20
20
|
"react": "^19.2.6",
|
|
21
21
|
"temporal-polyfill": "^0.3.2"
|
|
22
22
|
},
|
package/src/i18n-defaults.ts
CHANGED
|
@@ -89,6 +89,12 @@ export const kumikoDefaultTranslations: TranslationsByLocale = {
|
|
|
89
89
|
"kumiko.contentEditor.insertVariable": "{name} einfügen",
|
|
90
90
|
"kumiko.contentEditor.preview": "Vorschau",
|
|
91
91
|
"kumiko.contentEditor.editMode": "Bearbeiten",
|
|
92
|
+
"kumiko.contentEditor.bold": "Fett",
|
|
93
|
+
"kumiko.contentEditor.italic": "Kursiv",
|
|
94
|
+
"kumiko.contentEditor.heading1": "Überschrift 1",
|
|
95
|
+
"kumiko.contentEditor.heading2": "Überschrift 2",
|
|
96
|
+
"kumiko.contentEditor.bulletList": "Aufzählungsliste",
|
|
97
|
+
"kumiko.contentEditor.orderedList": "Nummerierte Liste",
|
|
92
98
|
|
|
93
99
|
// Config-Cascade — Source-Badges + Cascade-Panel (ConfigCascadeView).
|
|
94
100
|
"kumiko.config.source.user": "Mein Wert",
|
|
@@ -224,6 +230,12 @@ export const kumikoDefaultTranslations: TranslationsByLocale = {
|
|
|
224
230
|
"kumiko.contentEditor.insertVariable": "Insert {name}",
|
|
225
231
|
"kumiko.contentEditor.preview": "Preview",
|
|
226
232
|
"kumiko.contentEditor.editMode": "Edit",
|
|
233
|
+
"kumiko.contentEditor.bold": "Bold",
|
|
234
|
+
"kumiko.contentEditor.italic": "Italic",
|
|
235
|
+
"kumiko.contentEditor.heading1": "Heading 1",
|
|
236
|
+
"kumiko.contentEditor.heading2": "Heading 2",
|
|
237
|
+
"kumiko.contentEditor.bulletList": "Bullet list",
|
|
238
|
+
"kumiko.contentEditor.orderedList": "Numbered list",
|
|
227
239
|
|
|
228
240
|
"kumiko.config.source.user": "My value",
|
|
229
241
|
"kumiko.config.source.tenant": "Tenant",
|