@json-layout/core
Advanced tools
Comparing version
{ | ||
"name": "@json-layout/core", | ||
"version": "1.7.1", | ||
"version": "1.7.2", | ||
"description": "Compilation and state management utilities for JSON Layout.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -9,2 +9,3 @@ /** | ||
export const resolveXI18n = (schema, locale, defaultLocale = 'en') => { | ||
if (!schema || typeof schema !== 'object') return | ||
for (const [key, value] of Object.entries(schema)) { | ||
@@ -18,7 +19,5 @@ if (key.startsWith('x-i18n-')) { | ||
for (const child of value) { | ||
if (typeof child === 'object') { | ||
resolveXI18n(child, locale, defaultLocale) | ||
} | ||
resolveXI18n(child, locale, defaultLocale) | ||
} | ||
} if (typeof value === 'object') { | ||
} else { | ||
resolveXI18n(value, locale, defaultLocale) | ||
@@ -25,0 +24,0 @@ } |
Sorry, the diff of this file is not supported yet
185564
-0.01%4227
-0.02%