keycloakify 11.11.0 → 11.11.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.11.0",
3
+ "version": "11.11.1",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -198,6 +198,17 @@ function decodeHtmlEntities(htmlStr){
198
198
  <#-- Catch realm internal representation -->
199
199
  <#list [1] as __>
200
200
 
201
+ <#--
202
+ In the Account SPA, the realm object is actually passed and used...
203
+ We cherry pick what we use in it in the exclusion section.
204
+ -->
205
+ <#if (
206
+ xKeycloakify.pageId == "index.ftl" &&
207
+ xKeycloakify.themeType == "account"
208
+ )>
209
+ <#break>
210
+ </#if>
211
+
201
212
  <#if !stringified?matches("^[0-9a-fA-F\\-]{36}@[0-9a-f]+$")>
202
213
  <#break>
203
214
  </#if>