keycloakify 6.3.4 → 6.3.6

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.
@@ -272,6 +272,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
272
272
 
273
273
  <#list object as array_item>
274
274
 
275
+ <#if !array_item??>
276
+ <#local out_seq += ["null,"]>
277
+ <#continue>
278
+ </#if>
279
+
275
280
  <#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
276
281
 
277
282
  <#local i = i + 1>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "6.3.4",
3
+ "version": "6.3.6",
4
4
  "description": "Keycloak theme generator for Reacts app",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1277,12 +1277,12 @@
1277
1277
  "@octokit/rest": "^18.12.0",
1278
1278
  "cheerio": "^1.0.0-rc.5",
1279
1279
  "cli-select": "^1.1.2",
1280
- "evt": "^2.4.1",
1280
+ "evt": "^2.4.2",
1281
1281
  "memoizee": "^0.4.15",
1282
1282
  "minimal-polyfills": "^2.2.2",
1283
1283
  "minimist": "^1.2.6",
1284
1284
  "path-browserify": "^1.0.1",
1285
- "powerhooks": "^0.20.16",
1285
+ "powerhooks": "^0.20.17",
1286
1286
  "react-markdown": "^5.0.3",
1287
1287
  "scripting-tools": "^0.19.13",
1288
1288
  "tsafe": "^1.0.1",
@@ -272,6 +272,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
272
272
 
273
273
  <#list object as array_item>
274
274
 
275
+ <#if !array_item??>
276
+ <#local out_seq += ["null,"]>
277
+ <#continue>
278
+ </#if>
279
+
275
280
  <#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
276
281
 
277
282
  <#local i = i + 1>