keycloakify 5.9.2 → 5.9.3

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.
@@ -273,7 +273,12 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
273
273
 
274
274
  <#list object as array_item>
275
275
 
276
- <#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
276
+ <#local rec_out = "">
277
+ <#attempt>
278
+ <#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
279
+ <#recover>
280
+ <#return "ABORT: Unable to convert recursive array item in enumerable">
281
+ </#attempt>
277
282
 
278
283
  <#local i = i + 1>
279
284
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "5.9.2",
3
+ "version": "5.9.3",
4
4
  "description": "Keycloak theme generator for Reacts app",
5
5
  "repository": {
6
6
  "type": "git",
@@ -273,7 +273,12 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
273
273
 
274
274
  <#list object as array_item>
275
275
 
276
- <#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
276
+ <#local rec_out = "">
277
+ <#attempt>
278
+ <#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
279
+ <#recover>
280
+ <#return "ABORT: Unable to convert recursive array item in enumerable">
281
+ </#attempt>
277
282
 
278
283
  <#local i = i + 1>
279
284