@keycloakify/angular 0.0.1-rc.2 → 0.0.1-rc.21

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.
Files changed (983) hide show
  1. package/README.md +76 -1
  2. package/account/DefaultPage/DefaultPage.d.ts +38 -0
  3. package/account/DefaultPage/index.d.ts +5 -0
  4. package/account/DefaultPage/public-api.d.ts +1 -0
  5. package/account/KcContext/KcContext.d.ts +1 -0
  6. package/account/KcContext/index.d.ts +5 -0
  7. package/account/KcContext/public-api.d.ts +1 -0
  8. package/account/classes/component-reference/component-reference.class.d.ts +6 -0
  9. package/account/classes/component-reference/index.d.ts +5 -0
  10. package/account/classes/component-reference/public-api.d.ts +1 -0
  11. package/account/containers/template/index.d.ts +5 -0
  12. package/account/containers/template/public-api.d.ts +1 -0
  13. package/account/containers/template/template.component.d.ts +39 -0
  14. package/account/directives/kc-class/index.d.ts +5 -0
  15. package/{login/directives → account/directives/kc-class}/kc-class.directive.d.ts +1 -1
  16. package/account/directives/kc-class/public-api.d.ts +1 -0
  17. package/account/i18n/i18n.d.ts +4 -0
  18. package/account/i18n/index.d.ts +5 -0
  19. package/account/i18n/public-api.d.ts +1 -0
  20. package/account/pages/account/account.component.d.ts +15 -0
  21. package/account/pages/account/index.d.ts +5 -0
  22. package/account/pages/account/public-api.d.ts +1 -0
  23. package/account/pages/applications/applications.component.d.ts +14 -0
  24. package/account/pages/applications/index.d.ts +5 -0
  25. package/account/pages/applications/public-api.d.ts +1 -0
  26. package/account/pages/federatedIdentity/federatedIdentity.component.d.ts +14 -0
  27. package/account/pages/federatedIdentity/index.d.ts +5 -0
  28. package/account/pages/federatedIdentity/public-api.d.ts +1 -0
  29. package/account/pages/log/index.d.ts +5 -0
  30. package/account/pages/log/log.component.d.ts +14 -0
  31. package/account/pages/log/public-api.d.ts +1 -0
  32. package/account/pages/password/index.d.ts +5 -0
  33. package/account/pages/password/password.component.d.ts +29 -0
  34. package/account/pages/password/public-api.d.ts +1 -0
  35. package/account/pages/sessions/index.d.ts +5 -0
  36. package/account/pages/sessions/public-api.d.ts +1 -0
  37. package/account/pages/sessions/sessions.component.d.ts +14 -0
  38. package/account/pages/totp/index.d.ts +5 -0
  39. package/account/pages/totp/public-api.d.ts +1 -0
  40. package/account/pages/totp/totp.component.d.ts +14 -0
  41. package/account/providers/keycloakify-angular/index.d.ts +5 -0
  42. package/account/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +15 -0
  43. package/account/providers/keycloakify-angular/public-api.d.ts +1 -0
  44. package/account/services/account-resource-injector/account-resource-injector.service.d.ts +10 -0
  45. package/account/services/account-resource-injector/index.d.ts +5 -0
  46. package/account/services/account-resource-injector/public-api.d.ts +1 -0
  47. package/account/services/i18n/i18n.service.d.ts +6 -0
  48. package/account/services/i18n/index.d.ts +5 -0
  49. package/account/services/i18n/public-api.d.ts +1 -0
  50. package/account/tokens/classes/classes.token.d.ts +16 -0
  51. package/account/tokens/classes/index.d.ts +5 -0
  52. package/account/tokens/classes/public-api.d.ts +1 -0
  53. package/account/tokens/i18n/i18n.token.d.ts +2 -0
  54. package/account/tokens/i18n/index.d.ts +5 -0
  55. package/account/tokens/i18n/public-api.d.ts +1 -0
  56. package/account/tokens/kc-context/index.d.ts +5 -0
  57. package/account/tokens/kc-context/kc-context.token.d.ts +3 -0
  58. package/account/tokens/kc-context/public-api.d.ts +1 -0
  59. package/bin/main.js +224 -0
  60. package/esm2022/account/DefaultPage/DefaultPage.mjs +34 -0
  61. package/esm2022/account/DefaultPage/keycloakify-angular-account-DefaultPage.mjs +5 -0
  62. package/esm2022/account/DefaultPage/public-api.mjs +2 -0
  63. package/esm2022/account/KcContext/KcContext.mjs +2 -0
  64. package/esm2022/account/KcContext/keycloakify-angular-account-KcContext.mjs +5 -0
  65. package/esm2022/account/KcContext/public-api.mjs +2 -0
  66. package/esm2022/account/classes/component-reference/component-reference.class.mjs +3 -0
  67. package/esm2022/account/classes/component-reference/keycloakify-angular-account-classes-component-reference.mjs +5 -0
  68. package/esm2022/account/classes/component-reference/public-api.mjs +2 -0
  69. package/esm2022/account/containers/template/keycloakify-angular-account-containers-template.mjs +5 -0
  70. package/esm2022/account/containers/template/public-api.mjs +2 -0
  71. package/esm2022/account/containers/template/template.component.mjs +99 -0
  72. package/esm2022/account/directives/kc-class/kc-class.directive.mjs +141 -0
  73. package/esm2022/account/directives/kc-class/keycloakify-angular-account-directives-kc-class.mjs +5 -0
  74. package/esm2022/account/directives/kc-class/public-api.mjs +2 -0
  75. package/esm2022/account/i18n/i18n.mjs +2 -0
  76. package/esm2022/account/i18n/keycloakify-angular-account-i18n.mjs +5 -0
  77. package/esm2022/account/i18n/public-api.mjs +2 -0
  78. package/esm2022/account/pages/account/account.component.mjs +40 -0
  79. package/esm2022/account/pages/account/keycloakify-angular-account-pages-account.mjs +5 -0
  80. package/esm2022/account/pages/account/public-api.mjs +2 -0
  81. package/esm2022/account/pages/applications/applications.component.mjs +38 -0
  82. package/esm2022/account/pages/applications/keycloakify-angular-account-pages-applications.mjs +5 -0
  83. package/esm2022/account/pages/applications/public-api.mjs +2 -0
  84. package/esm2022/account/pages/federatedIdentity/federatedIdentity.component.mjs +37 -0
  85. package/esm2022/account/pages/federatedIdentity/keycloakify-angular-account-pages-federatedIdentity.mjs +5 -0
  86. package/esm2022/account/pages/federatedIdentity/public-api.mjs +2 -0
  87. package/esm2022/account/pages/log/keycloakify-angular-account-pages-log.mjs +5 -0
  88. package/esm2022/account/pages/log/log.component.mjs +37 -0
  89. package/esm2022/account/pages/log/public-api.mjs +2 -0
  90. package/esm2022/account/pages/password/keycloakify-angular-account-pages-password.mjs +5 -0
  91. package/esm2022/account/pages/password/password.component.mjs +109 -0
  92. package/esm2022/account/pages/password/public-api.mjs +2 -0
  93. package/esm2022/account/pages/sessions/keycloakify-angular-account-pages-sessions.mjs +5 -0
  94. package/esm2022/account/pages/sessions/public-api.mjs +2 -0
  95. package/esm2022/account/pages/sessions/sessions.component.mjs +37 -0
  96. package/esm2022/account/pages/totp/keycloakify-angular-account-pages-totp.mjs +5 -0
  97. package/esm2022/account/pages/totp/public-api.mjs +2 -0
  98. package/esm2022/account/pages/totp/totp.component.mjs +38 -0
  99. package/esm2022/account/providers/keycloakify-angular/keycloakify-angular-account-providers-keycloakify-angular.mjs +5 -0
  100. package/esm2022/account/providers/keycloakify-angular/keycloakify-angular.providers.mjs +49 -0
  101. package/esm2022/account/providers/keycloakify-angular/public-api.mjs +2 -0
  102. package/esm2022/account/services/account-resource-injector/account-resource-injector.service.mjs +37 -0
  103. package/esm2022/account/services/account-resource-injector/keycloakify-angular-account-services-account-resource-injector.mjs +5 -0
  104. package/esm2022/account/services/account-resource-injector/public-api.mjs +2 -0
  105. package/esm2022/account/services/i18n/i18n.service.mjs +12 -0
  106. package/esm2022/account/services/i18n/keycloakify-angular-account-services-i18n.mjs +5 -0
  107. package/esm2022/account/services/i18n/public-api.mjs +2 -0
  108. package/esm2022/account/tokens/classes/classes.token.mjs +3 -0
  109. package/esm2022/account/tokens/classes/keycloakify-angular-account-tokens-classes.mjs +5 -0
  110. package/esm2022/account/tokens/classes/public-api.mjs +2 -0
  111. package/esm2022/account/tokens/i18n/i18n.token.mjs +3 -0
  112. package/esm2022/account/tokens/i18n/keycloakify-angular-account-tokens-i18n.mjs +5 -0
  113. package/esm2022/account/tokens/i18n/public-api.mjs +2 -0
  114. package/esm2022/account/tokens/kc-context/kc-context.token.mjs +3 -0
  115. package/esm2022/account/tokens/kc-context/keycloakify-angular-account-tokens-kc-context.mjs +5 -0
  116. package/esm2022/account/tokens/kc-context/public-api.mjs +2 -0
  117. package/esm2022/keycloakify-angular.mjs +5 -0
  118. package/esm2022/lib/directives/attributes/attributes.directive.mjs +26 -0
  119. package/esm2022/lib/directives/attributes/keycloakify-angular-lib-directives-attributes.mjs +5 -0
  120. package/esm2022/lib/directives/attributes/public-api.mjs +2 -0
  121. package/esm2022/lib/keycloakify-angular-lib.mjs +5 -0
  122. package/esm2022/lib/models/script/keycloakify-angular-lib-models-script.mjs +5 -0
  123. package/esm2022/lib/models/script/public-api.mjs +2 -0
  124. package/esm2022/lib/models/script/script.model.mjs +2 -0
  125. package/esm2022/lib/pipes/input-type/input-type.pipe.mjs +20 -0
  126. package/esm2022/lib/pipes/input-type/keycloakify-angular-lib-pipes-input-type.mjs +5 -0
  127. package/esm2022/lib/pipes/input-type/public-api.mjs +2 -0
  128. package/esm2022/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.mjs +20 -0
  129. package/esm2022/lib/pipes/is-array-with-empty-object/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +5 -0
  130. package/esm2022/lib/pipes/is-array-with-empty-object/public-api.mjs +2 -0
  131. package/esm2022/lib/pipes/kc-sanitize/kc-sanitize.pipe.mjs +29 -0
  132. package/esm2022/lib/pipes/kc-sanitize/keycloakify-angular-lib-pipes-kc-sanitize.mjs +5 -0
  133. package/esm2022/lib/pipes/kc-sanitize/public-api.mjs +2 -0
  134. package/esm2022/lib/pipes/to-array/keycloakify-angular-lib-pipes-to-array.mjs +5 -0
  135. package/esm2022/lib/pipes/to-array/public-api.mjs +2 -0
  136. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +21 -0
  137. package/esm2022/lib/pipes/to-number/keycloakify-angular-lib-pipes-to-number.mjs +5 -0
  138. package/esm2022/lib/pipes/to-number/public-api.mjs +2 -0
  139. package/esm2022/lib/pipes/to-number/to-number.pipe.mjs +20 -0
  140. package/esm2022/lib/public-api.mjs +2 -0
  141. package/esm2022/lib/services/resource-injector/keycloakify-angular-lib-services-resource-injector.mjs +5 -0
  142. package/esm2022/lib/services/resource-injector/public-api.mjs +2 -0
  143. package/esm2022/lib/services/resource-injector/resource-injector.service.mjs +54 -0
  144. package/esm2022/lib/tokens/use-default-css/keycloakify-angular-lib-tokens-use-default-css.mjs +5 -0
  145. package/esm2022/lib/tokens/use-default-css/public-api.mjs +2 -0
  146. package/esm2022/lib/tokens/use-default-css/use-default-css.token.mjs +3 -0
  147. package/esm2022/login/KcContext/KcContext.mjs +2 -0
  148. package/esm2022/login/KcContext/keycloakify-angular-login-KcContext.mjs +5 -0
  149. package/esm2022/login/KcContext/public-api.mjs +2 -0
  150. package/esm2022/login/classes/component-reference/component-reference.class.mjs +3 -0
  151. package/esm2022/login/classes/component-reference/keycloakify-angular-login-classes-component-reference.mjs +5 -0
  152. package/esm2022/login/classes/component-reference/public-api.mjs +2 -0
  153. package/esm2022/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.mjs +106 -0
  154. package/esm2022/login/components/add-remove-buttons-multi-valued-attribute/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +5 -0
  155. package/esm2022/login/components/add-remove-buttons-multi-valued-attribute/public-api.mjs +2 -0
  156. package/esm2022/login/components/field-errors/field-errors.component.mjs +33 -0
  157. package/esm2022/login/components/field-errors/keycloakify-angular-login-components-field-errors.mjs +5 -0
  158. package/esm2022/login/components/field-errors/public-api.mjs +2 -0
  159. package/esm2022/login/components/group-label/group-label.component.mjs +43 -0
  160. package/esm2022/login/components/group-label/keycloakify-angular-login-components-group-label.mjs +5 -0
  161. package/esm2022/login/components/group-label/public-api.mjs +2 -0
  162. package/esm2022/login/components/input-field-by-type/input-field-by-type.component.mjs +46 -0
  163. package/esm2022/login/components/input-field-by-type/keycloakify-angular-login-components-input-field-by-type.mjs +5 -0
  164. package/esm2022/login/components/input-field-by-type/public-api.mjs +2 -0
  165. package/esm2022/login/components/input-tag/input-tag.component.mjs +90 -0
  166. package/esm2022/login/components/input-tag/keycloakify-angular-login-components-input-tag.mjs +5 -0
  167. package/esm2022/login/components/input-tag/public-api.mjs +2 -0
  168. package/esm2022/login/components/input-tag-selects/input-tag-selects.component.mjs +117 -0
  169. package/esm2022/login/components/input-tag-selects/keycloakify-angular-login-components-input-tag-selects.mjs +5 -0
  170. package/esm2022/login/components/input-tag-selects/public-api.mjs +2 -0
  171. package/esm2022/login/components/logout-other-sessions/keycloakify-angular-login-components-logout-other-sessions.mjs +5 -0
  172. package/esm2022/login/components/logout-other-sessions/logout-other-sessions.component.mjs +32 -0
  173. package/esm2022/login/components/logout-other-sessions/public-api.mjs +2 -0
  174. package/esm2022/login/components/password-wrapper/keycloakify-angular-login-components-password-wrapper.mjs +5 -0
  175. package/esm2022/login/components/password-wrapper/password-wrapper.component.mjs +46 -0
  176. package/esm2022/login/components/password-wrapper/public-api.mjs +2 -0
  177. package/esm2022/login/components/select-tag/keycloakify-angular-login-components-select-tag.mjs +5 -0
  178. package/esm2022/login/components/select-tag/public-api.mjs +2 -0
  179. package/esm2022/login/components/select-tag/select-tag.component.mjs +82 -0
  180. package/esm2022/login/components/textarea-tag/keycloakify-angular-login-components-textarea-tag.mjs +5 -0
  181. package/esm2022/login/components/textarea-tag/public-api.mjs +2 -0
  182. package/esm2022/login/components/textarea-tag/textarea-tag.component.mjs +49 -0
  183. package/esm2022/login/components/user-profile-form-fields/keycloakify-angular-login-components-user-profile-form-fields.mjs +5 -0
  184. package/esm2022/login/components/user-profile-form-fields/public-api.mjs +2 -0
  185. package/esm2022/login/components/user-profile-form-fields/user-profile-form-fields.component.mjs +62 -0
  186. package/esm2022/login/containers/template/keycloakify-angular-login-containers-template.mjs +5 -0
  187. package/esm2022/login/containers/template/public-api.mjs +2 -0
  188. package/esm2022/login/containers/template/template.component.mjs +140 -0
  189. package/esm2022/login/directives/kc-class/kc-class.directive.mjs +138 -0
  190. package/esm2022/login/directives/kc-class/keycloakify-angular-login-directives-kc-class.mjs +5 -0
  191. package/esm2022/login/directives/kc-class/public-api.mjs +2 -0
  192. package/esm2022/login/getDefaultPageComponent/getDefaultPageComponent.mjs +77 -0
  193. package/esm2022/login/getDefaultPageComponent/keycloakify-angular-login-getDefaultPageComponent.mjs +5 -0
  194. package/esm2022/login/getDefaultPageComponent/public-api.mjs +2 -0
  195. package/esm2022/login/i18n/i18n.mjs +2 -0
  196. package/esm2022/login/i18n/keycloakify-angular-login-i18n.mjs +5 -0
  197. package/esm2022/login/i18n/public-api.mjs +2 -0
  198. package/esm2022/login/pages/code/code.component.mjs +41 -0
  199. package/esm2022/login/pages/code/keycloakify-angular-login-pages-code.mjs +5 -0
  200. package/esm2022/login/pages/code/public-api.mjs +2 -0
  201. package/esm2022/login/pages/delete-account-confirm/delete-account-confirm.component.mjs +41 -0
  202. package/esm2022/login/pages/delete-account-confirm/keycloakify-angular-login-pages-delete-account-confirm.mjs +5 -0
  203. package/esm2022/login/pages/delete-account-confirm/public-api.mjs +2 -0
  204. package/esm2022/login/pages/delete-credential/delete-credential.component.mjs +41 -0
  205. package/esm2022/login/pages/delete-credential/keycloakify-angular-login-pages-delete-credential.mjs +5 -0
  206. package/esm2022/login/pages/delete-credential/public-api.mjs +2 -0
  207. package/esm2022/login/pages/error/error.component.mjs +41 -0
  208. package/esm2022/login/pages/error/keycloakify-angular-login-pages-error.mjs +5 -0
  209. package/esm2022/login/pages/error/public-api.mjs +2 -0
  210. package/esm2022/login/pages/frontchannel-logout/frontchannel-logout.component.mjs +46 -0
  211. package/esm2022/login/pages/frontchannel-logout/keycloakify-angular-login-pages-frontchannel-logout.mjs +5 -0
  212. package/esm2022/login/pages/frontchannel-logout/public-api.mjs +2 -0
  213. package/esm2022/login/pages/idp-review-user-profile/idp-review-user-profile.component.mjs +54 -0
  214. package/esm2022/login/pages/idp-review-user-profile/keycloakify-angular-login-pages-idp-review-user-profile.mjs +5 -0
  215. package/esm2022/login/pages/idp-review-user-profile/public-api.mjs +2 -0
  216. package/esm2022/login/pages/info/info.component.mjs +50 -0
  217. package/esm2022/login/pages/info/keycloakify-angular-login-pages-info.mjs +5 -0
  218. package/esm2022/login/pages/info/public-api.mjs +2 -0
  219. package/esm2022/login/pages/login/keycloakify-angular-login-pages-login.mjs +5 -0
  220. package/esm2022/login/pages/login/login.component.mjs +45 -0
  221. package/esm2022/login/pages/login/public-api.mjs +2 -0
  222. package/esm2022/login/pages/login-config-totp/keycloakify-angular-login-pages-login-config-totp.mjs +5 -0
  223. package/esm2022/login/pages/login-config-totp/login-config-totp.component.mjs +43 -0
  224. package/esm2022/login/pages/login-config-totp/public-api.mjs +2 -0
  225. package/esm2022/login/pages/login-idp-link-confirm/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +5 -0
  226. package/esm2022/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.mjs +37 -0
  227. package/esm2022/login/pages/login-idp-link-confirm/public-api.mjs +2 -0
  228. package/esm2022/login/pages/login-idp-link-confirm-override/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +5 -0
  229. package/esm2022/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.mjs +37 -0
  230. package/esm2022/login/pages/login-idp-link-confirm-override/public-api.mjs +2 -0
  231. package/esm2022/login/pages/login-idp-link-email/keycloakify-angular-login-pages-login-idp-link-email.mjs +5 -0
  232. package/esm2022/login/pages/login-idp-link-email/login-idp-link-email.component.mjs +37 -0
  233. package/esm2022/login/pages/login-idp-link-email/public-api.mjs +2 -0
  234. package/esm2022/login/pages/login-oauth-grant/keycloakify-angular-login-pages-login-oauth-grant.mjs +5 -0
  235. package/esm2022/login/pages/login-oauth-grant/login-oauth-grant.component.mjs +38 -0
  236. package/esm2022/login/pages/login-oauth-grant/public-api.mjs +2 -0
  237. package/esm2022/login/pages/login-oauth2-device-verify-user-code/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +5 -0
  238. package/esm2022/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.mjs +41 -0
  239. package/esm2022/login/pages/login-oauth2-device-verify-user-code/public-api.mjs +2 -0
  240. package/esm2022/login/pages/login-otp/keycloakify-angular-login-pages-login-otp.mjs +5 -0
  241. package/esm2022/login/pages/login-otp/login-otp.component.mjs +42 -0
  242. package/esm2022/login/pages/login-otp/public-api.mjs +2 -0
  243. package/esm2022/login/pages/login-page-expired/keycloakify-angular-login-pages-login-page-expired.mjs +5 -0
  244. package/esm2022/login/pages/login-page-expired/login-page-expired.component.mjs +40 -0
  245. package/esm2022/login/pages/login-page-expired/public-api.mjs +2 -0
  246. package/esm2022/login/pages/login-passkeys-conditional-authenticate/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +5 -0
  247. package/esm2022/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.mjs +89 -0
  248. package/esm2022/login/pages/login-passkeys-conditional-authenticate/public-api.mjs +2 -0
  249. package/esm2022/login/pages/login-password/keycloakify-angular-login-pages-login-password.mjs +5 -0
  250. package/esm2022/login/pages/login-password/login-password.component.mjs +45 -0
  251. package/esm2022/login/pages/login-password/public-api.mjs +2 -0
  252. package/esm2022/login/pages/login-recovery-authn-code-config/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +5 -0
  253. package/esm2022/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.mjs +44 -0
  254. package/esm2022/login/pages/login-recovery-authn-code-config/public-api.mjs +2 -0
  255. package/esm2022/login/pages/login-recovery-authn-code-input/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +5 -0
  256. package/esm2022/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.mjs +42 -0
  257. package/esm2022/login/pages/login-recovery-authn-code-input/public-api.mjs +2 -0
  258. package/esm2022/login/pages/login-reset-otp/keycloakify-angular-login-pages-login-reset-otp.mjs +5 -0
  259. package/esm2022/login/pages/login-reset-otp/login-reset-otp.component.mjs +41 -0
  260. package/esm2022/login/pages/login-reset-otp/public-api.mjs +2 -0
  261. package/esm2022/login/pages/login-reset-password/keycloakify-angular-login-pages-login-reset-password.mjs +5 -0
  262. package/esm2022/login/pages/login-reset-password/login-reset-password.component.mjs +42 -0
  263. package/esm2022/login/pages/login-reset-password/public-api.mjs +2 -0
  264. package/esm2022/login/pages/login-update-password/keycloakify-angular-login-pages-login-update-password.mjs +5 -0
  265. package/esm2022/login/pages/login-update-password/login-update-password.component.mjs +44 -0
  266. package/esm2022/login/pages/login-update-password/public-api.mjs +2 -0
  267. package/esm2022/login/pages/login-update-profile/keycloakify-angular-login-pages-login-update-profile.mjs +5 -0
  268. package/esm2022/login/pages/login-update-profile/login-update-profile.component.mjs +51 -0
  269. package/esm2022/login/pages/login-update-profile/public-api.mjs +2 -0
  270. package/esm2022/login/pages/login-username/keycloakify-angular-login-pages-login-username.mjs +5 -0
  271. package/esm2022/login/pages/login-username/login-username.component.mjs +44 -0
  272. package/esm2022/login/pages/login-username/public-api.mjs +2 -0
  273. package/esm2022/login/pages/login-verify-email/keycloakify-angular-login-pages-login-verify-email.mjs +5 -0
  274. package/esm2022/login/pages/login-verify-email/login-verify-email.component.mjs +41 -0
  275. package/esm2022/login/pages/login-verify-email/public-api.mjs +2 -0
  276. package/esm2022/login/pages/login-x509-info/keycloakify-angular-login-pages-login-x509-info.mjs +5 -0
  277. package/esm2022/login/pages/login-x509-info/login-x509-info.component.mjs +41 -0
  278. package/esm2022/login/pages/login-x509-info/public-api.mjs +2 -0
  279. package/esm2022/login/pages/logout-confirm/keycloakify-angular-login-pages-logout-confirm.mjs +5 -0
  280. package/esm2022/login/pages/logout-confirm/logout-confirm.component.mjs +37 -0
  281. package/esm2022/login/pages/logout-confirm/public-api.mjs +2 -0
  282. package/esm2022/login/pages/register/keycloakify-angular-login-pages-register.mjs +5 -0
  283. package/esm2022/login/pages/register/public-api.mjs +2 -0
  284. package/esm2022/login/pages/register/register.component.mjs +56 -0
  285. package/esm2022/login/pages/saml-post-form/keycloakify-angular-login-pages-saml-post-form.mjs +5 -0
  286. package/esm2022/login/pages/saml-post-form/public-api.mjs +2 -0
  287. package/esm2022/login/pages/saml-post-form/saml-post-form.component.mjs +51 -0
  288. package/esm2022/login/pages/select-authenticator/keycloakify-angular-login-pages-select-authenticator.mjs +5 -0
  289. package/esm2022/login/pages/select-authenticator/public-api.mjs +2 -0
  290. package/esm2022/login/pages/select-authenticator/select-authenticator.component.mjs +42 -0
  291. package/esm2022/login/pages/terms/keycloakify-angular-login-pages-terms.mjs +5 -0
  292. package/esm2022/login/pages/terms/public-api.mjs +2 -0
  293. package/esm2022/login/pages/terms/terms.component.mjs +41 -0
  294. package/esm2022/login/pages/update-email/keycloakify-angular-login-pages-update-email.mjs +5 -0
  295. package/esm2022/login/pages/update-email/public-api.mjs +2 -0
  296. package/esm2022/login/pages/update-email/update-email.component.mjs +48 -0
  297. package/esm2022/login/pages/webauthn-authenticate/keycloakify-angular-login-pages-webauthn-authenticate.mjs +5 -0
  298. package/esm2022/login/pages/webauthn-authenticate/public-api.mjs +2 -0
  299. package/esm2022/login/pages/webauthn-authenticate/webauthn-authenticate.component.mjs +81 -0
  300. package/esm2022/login/pages/webauthn-error/keycloakify-angular-login-pages-webauthn-error.mjs +5 -0
  301. package/esm2022/login/pages/webauthn-error/public-api.mjs +2 -0
  302. package/esm2022/login/pages/webauthn-error/webauthn-error.component.mjs +50 -0
  303. package/esm2022/login/pages/webauthn-register/keycloakify-angular-login-pages-webauthn-register.mjs +5 -0
  304. package/esm2022/login/pages/webauthn-register/public-api.mjs +2 -0
  305. package/esm2022/login/pages/webauthn-register/webauthn-register.component.mjs +77 -0
  306. package/esm2022/login/providers/keycloakify-angular/keycloakify-angular-login-providers-keycloakify-angular.mjs +5 -0
  307. package/esm2022/login/providers/keycloakify-angular/keycloakify-angular.providers.mjs +54 -0
  308. package/esm2022/login/providers/keycloakify-angular/public-api.mjs +2 -0
  309. package/esm2022/login/services/i18n/i18n.service.mjs +12 -0
  310. package/esm2022/login/services/i18n/keycloakify-angular-login-services-i18n.mjs +5 -0
  311. package/esm2022/login/services/i18n/public-api.mjs +2 -0
  312. package/esm2022/login/services/login-resource-injector/keycloakify-angular-login-services-login-resource-injector.mjs +5 -0
  313. package/esm2022/login/services/login-resource-injector/login-resource-injector.service.mjs +68 -0
  314. package/esm2022/login/services/login-resource-injector/public-api.mjs +2 -0
  315. package/esm2022/login/services/submit/keycloakify-angular-login-services-submit.mjs +5 -0
  316. package/esm2022/login/services/submit/public-api.mjs +2 -0
  317. package/esm2022/login/services/submit/submit.service.mjs +20 -0
  318. package/esm2022/login/services/user-profile-form/keycloakify-angular-login-services-user-profile-form.mjs +5 -0
  319. package/esm2022/login/services/user-profile-form/public-api.mjs +2 -0
  320. package/esm2022/login/services/user-profile-form/user-profile-form.service.mjs +1019 -0
  321. package/esm2022/login/tokens/classes/classes.token.mjs +3 -0
  322. package/esm2022/login/tokens/classes/keycloakify-angular-login-tokens-classes.mjs +5 -0
  323. package/esm2022/login/tokens/classes/public-api.mjs +2 -0
  324. package/esm2022/login/tokens/i18n/i18n.token.mjs +3 -0
  325. package/esm2022/login/tokens/i18n/keycloakify-angular-login-tokens-i18n.mjs +5 -0
  326. package/esm2022/login/tokens/i18n/public-api.mjs +2 -0
  327. package/esm2022/login/tokens/kc-context/kc-context.token.mjs +3 -0
  328. package/esm2022/login/tokens/kc-context/keycloakify-angular-login-tokens-kc-context.mjs +5 -0
  329. package/esm2022/login/tokens/kc-context/public-api.mjs +2 -0
  330. package/esm2022/login/tokens/make-user-confirm-password/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +5 -0
  331. package/esm2022/login/tokens/make-user-confirm-password/make-user-confirm-password.token.mjs +3 -0
  332. package/esm2022/login/tokens/make-user-confirm-password/public-api.mjs +2 -0
  333. package/esm2022/public-api.mjs +2 -0
  334. package/fesm2022/keycloakify-angular-account-DefaultPage.mjs +39 -0
  335. package/fesm2022/keycloakify-angular-account-DefaultPage.mjs.map +1 -0
  336. package/fesm2022/keycloakify-angular-account-KcContext.mjs +4 -0
  337. package/fesm2022/keycloakify-angular-account-KcContext.mjs.map +1 -0
  338. package/fesm2022/keycloakify-angular-account-classes-component-reference.mjs +9 -0
  339. package/fesm2022/keycloakify-angular-account-classes-component-reference.mjs.map +1 -0
  340. package/fesm2022/keycloakify-angular-account-containers-template.mjs +106 -0
  341. package/fesm2022/keycloakify-angular-account-containers-template.mjs.map +1 -0
  342. package/fesm2022/keycloakify-angular-account-directives-kc-class.mjs +148 -0
  343. package/fesm2022/keycloakify-angular-account-directives-kc-class.mjs.map +1 -0
  344. package/fesm2022/keycloakify-angular-account-i18n.mjs +4 -0
  345. package/fesm2022/keycloakify-angular-account-i18n.mjs.map +1 -0
  346. package/fesm2022/keycloakify-angular-account-pages-account.mjs +47 -0
  347. package/fesm2022/keycloakify-angular-account-pages-account.mjs.map +1 -0
  348. package/fesm2022/keycloakify-angular-account-pages-applications.mjs +45 -0
  349. package/fesm2022/keycloakify-angular-account-pages-applications.mjs.map +1 -0
  350. package/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs +44 -0
  351. package/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs.map +1 -0
  352. package/fesm2022/keycloakify-angular-account-pages-log.mjs +44 -0
  353. package/fesm2022/keycloakify-angular-account-pages-log.mjs.map +1 -0
  354. package/fesm2022/keycloakify-angular-account-pages-password.mjs +116 -0
  355. package/fesm2022/keycloakify-angular-account-pages-password.mjs.map +1 -0
  356. package/fesm2022/keycloakify-angular-account-pages-sessions.mjs +44 -0
  357. package/fesm2022/keycloakify-angular-account-pages-sessions.mjs.map +1 -0
  358. package/fesm2022/keycloakify-angular-account-pages-totp.mjs +45 -0
  359. package/fesm2022/keycloakify-angular-account-pages-totp.mjs.map +1 -0
  360. package/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs +56 -0
  361. package/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs.map +1 -0
  362. package/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs +44 -0
  363. package/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs.map +1 -0
  364. package/fesm2022/keycloakify-angular-account-services-i18n.mjs +19 -0
  365. package/fesm2022/keycloakify-angular-account-services-i18n.mjs.map +1 -0
  366. package/fesm2022/keycloakify-angular-account-tokens-classes.mjs +10 -0
  367. package/fesm2022/keycloakify-angular-account-tokens-classes.mjs.map +1 -0
  368. package/fesm2022/keycloakify-angular-account-tokens-i18n.mjs +10 -0
  369. package/fesm2022/keycloakify-angular-account-tokens-i18n.mjs.map +1 -0
  370. package/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs +10 -0
  371. package/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs.map +1 -0
  372. package/fesm2022/keycloakify-angular-lib-directives-attributes.mjs +33 -0
  373. package/fesm2022/keycloakify-angular-lib-directives-attributes.mjs.map +1 -0
  374. package/fesm2022/keycloakify-angular-lib-models-script.mjs +4 -0
  375. package/fesm2022/keycloakify-angular-lib-models-script.mjs.map +1 -0
  376. package/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs +27 -0
  377. package/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs.map +1 -0
  378. package/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +27 -0
  379. package/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs.map +1 -0
  380. package/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs +36 -0
  381. package/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs.map +1 -0
  382. package/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs +28 -0
  383. package/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs.map +1 -0
  384. package/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs +27 -0
  385. package/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs.map +1 -0
  386. package/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs +61 -0
  387. package/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs.map +1 -0
  388. package/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs +10 -0
  389. package/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs.map +1 -0
  390. package/fesm2022/keycloakify-angular-lib.mjs +8 -0
  391. package/fesm2022/keycloakify-angular-lib.mjs.map +1 -0
  392. package/fesm2022/keycloakify-angular-login-KcContext.mjs +4 -0
  393. package/fesm2022/keycloakify-angular-login-KcContext.mjs.map +1 -0
  394. package/fesm2022/keycloakify-angular-login-classes-component-reference.mjs +9 -0
  395. package/fesm2022/keycloakify-angular-login-classes-component-reference.mjs.map +1 -0
  396. package/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +113 -0
  397. package/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs.map +1 -0
  398. package/fesm2022/keycloakify-angular-login-components-field-errors.mjs +40 -0
  399. package/fesm2022/keycloakify-angular-login-components-field-errors.mjs.map +1 -0
  400. package/fesm2022/keycloakify-angular-login-components-group-label.mjs +50 -0
  401. package/fesm2022/keycloakify-angular-login-components-group-label.mjs.map +1 -0
  402. package/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs +53 -0
  403. package/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs.map +1 -0
  404. package/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs +124 -0
  405. package/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs.map +1 -0
  406. package/fesm2022/keycloakify-angular-login-components-input-tag.mjs +97 -0
  407. package/fesm2022/keycloakify-angular-login-components-input-tag.mjs.map +1 -0
  408. package/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs +39 -0
  409. package/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs.map +1 -0
  410. package/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs +53 -0
  411. package/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs.map +1 -0
  412. package/fesm2022/keycloakify-angular-login-components-select-tag.mjs +89 -0
  413. package/fesm2022/keycloakify-angular-login-components-select-tag.mjs.map +1 -0
  414. package/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs +56 -0
  415. package/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs.map +1 -0
  416. package/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs +69 -0
  417. package/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs.map +1 -0
  418. package/fesm2022/keycloakify-angular-login-containers-template.mjs +147 -0
  419. package/fesm2022/keycloakify-angular-login-containers-template.mjs.map +1 -0
  420. package/fesm2022/keycloakify-angular-login-directives-kc-class.mjs +145 -0
  421. package/fesm2022/keycloakify-angular-login-directives-kc-class.mjs.map +1 -0
  422. package/fesm2022/keycloakify-angular-login-getDefaultPageComponent.mjs +83 -0
  423. package/fesm2022/keycloakify-angular-login-getDefaultPageComponent.mjs.map +1 -0
  424. package/fesm2022/keycloakify-angular-login-i18n.mjs +4 -0
  425. package/fesm2022/keycloakify-angular-login-i18n.mjs.map +1 -0
  426. package/fesm2022/keycloakify-angular-login-pages-code.mjs +48 -0
  427. package/fesm2022/keycloakify-angular-login-pages-code.mjs.map +1 -0
  428. package/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs +48 -0
  429. package/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs.map +1 -0
  430. package/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs +48 -0
  431. package/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs.map +1 -0
  432. package/fesm2022/keycloakify-angular-login-pages-error.mjs +48 -0
  433. package/fesm2022/keycloakify-angular-login-pages-error.mjs.map +1 -0
  434. package/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs +53 -0
  435. package/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs.map +1 -0
  436. package/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs +61 -0
  437. package/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs.map +1 -0
  438. package/fesm2022/keycloakify-angular-login-pages-info.mjs +57 -0
  439. package/fesm2022/keycloakify-angular-login-pages-info.mjs.map +1 -0
  440. package/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs +50 -0
  441. package/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs.map +1 -0
  442. package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +44 -0
  443. package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs.map +1 -0
  444. package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +44 -0
  445. package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs.map +1 -0
  446. package/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs +44 -0
  447. package/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs.map +1 -0
  448. package/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs +45 -0
  449. package/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs.map +1 -0
  450. package/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +48 -0
  451. package/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs.map +1 -0
  452. package/fesm2022/keycloakify-angular-login-pages-login-otp.mjs +49 -0
  453. package/fesm2022/keycloakify-angular-login-pages-login-otp.mjs.map +1 -0
  454. package/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs +47 -0
  455. package/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs.map +1 -0
  456. package/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +96 -0
  457. package/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs.map +1 -0
  458. package/fesm2022/keycloakify-angular-login-pages-login-password.mjs +52 -0
  459. package/fesm2022/keycloakify-angular-login-pages-login-password.mjs.map +1 -0
  460. package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +51 -0
  461. package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs.map +1 -0
  462. package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +49 -0
  463. package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs.map +1 -0
  464. package/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs +48 -0
  465. package/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs.map +1 -0
  466. package/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs +49 -0
  467. package/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs.map +1 -0
  468. package/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs +51 -0
  469. package/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs.map +1 -0
  470. package/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs +58 -0
  471. package/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs.map +1 -0
  472. package/fesm2022/keycloakify-angular-login-pages-login-username.mjs +51 -0
  473. package/fesm2022/keycloakify-angular-login-pages-login-username.mjs.map +1 -0
  474. package/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs +48 -0
  475. package/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs.map +1 -0
  476. package/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs +48 -0
  477. package/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs.map +1 -0
  478. package/fesm2022/keycloakify-angular-login-pages-login.mjs +52 -0
  479. package/fesm2022/keycloakify-angular-login-pages-login.mjs.map +1 -0
  480. package/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs +44 -0
  481. package/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs.map +1 -0
  482. package/fesm2022/keycloakify-angular-login-pages-register.mjs +63 -0
  483. package/fesm2022/keycloakify-angular-login-pages-register.mjs.map +1 -0
  484. package/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs +58 -0
  485. package/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs.map +1 -0
  486. package/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs +49 -0
  487. package/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs.map +1 -0
  488. package/fesm2022/keycloakify-angular-login-pages-terms.mjs +48 -0
  489. package/fesm2022/keycloakify-angular-login-pages-terms.mjs.map +1 -0
  490. package/fesm2022/keycloakify-angular-login-pages-update-email.mjs +55 -0
  491. package/fesm2022/keycloakify-angular-login-pages-update-email.mjs.map +1 -0
  492. package/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs +88 -0
  493. package/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs.map +1 -0
  494. package/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs +57 -0
  495. package/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs.map +1 -0
  496. package/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs +84 -0
  497. package/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs.map +1 -0
  498. package/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs +61 -0
  499. package/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs.map +1 -0
  500. package/fesm2022/keycloakify-angular-login-services-i18n.mjs +19 -0
  501. package/fesm2022/keycloakify-angular-login-services-i18n.mjs.map +1 -0
  502. package/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs +75 -0
  503. package/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs.map +1 -0
  504. package/fesm2022/keycloakify-angular-login-services-submit.mjs +27 -0
  505. package/fesm2022/keycloakify-angular-login-services-submit.mjs.map +1 -0
  506. package/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs +1026 -0
  507. package/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs.map +1 -0
  508. package/fesm2022/keycloakify-angular-login-tokens-classes.mjs +10 -0
  509. package/fesm2022/keycloakify-angular-login-tokens-classes.mjs.map +1 -0
  510. package/fesm2022/keycloakify-angular-login-tokens-i18n.mjs +10 -0
  511. package/fesm2022/keycloakify-angular-login-tokens-i18n.mjs.map +1 -0
  512. package/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs +10 -0
  513. package/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs.map +1 -0
  514. package/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +10 -0
  515. package/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs.map +1 -0
  516. package/fesm2022/keycloakify-angular.mjs +8 -0
  517. package/fesm2022/keycloakify-angular.mjs.map +1 -0
  518. package/index.d.ts +5 -0
  519. package/lib/directives/attributes/index.d.ts +5 -0
  520. package/{login/directives/index.d.ts → lib/directives/attributes/public-api.d.ts} +0 -1
  521. package/lib/index.d.ts +5 -0
  522. package/lib/models/script/index.d.ts +5 -0
  523. package/lib/pipes/input-type/index.d.ts +5 -0
  524. package/lib/pipes/input-type/public-api.d.ts +1 -0
  525. package/lib/pipes/is-array-with-empty-object/index.d.ts +5 -0
  526. package/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.d.ts +7 -0
  527. package/lib/pipes/is-array-with-empty-object/public-api.d.ts +1 -0
  528. package/lib/pipes/kc-sanitize/index.d.ts +5 -0
  529. package/{login/pipes → lib/pipes/kc-sanitize}/kc-sanitize.pipe.d.ts +3 -4
  530. package/lib/pipes/kc-sanitize/public-api.d.ts +1 -0
  531. package/lib/pipes/to-array/index.d.ts +5 -0
  532. package/lib/pipes/to-array/public-api.d.ts +1 -0
  533. package/lib/pipes/to-number/index.d.ts +5 -0
  534. package/lib/pipes/to-number/public-api.d.ts +1 -0
  535. package/lib/public-api.d.ts +1 -10
  536. package/lib/services/resource-injector/index.d.ts +5 -0
  537. package/lib/services/{index.d.ts → resource-injector/public-api.d.ts} +0 -1
  538. package/lib/services/{resource-injector.service.d.ts → resource-injector/resource-injector.service.d.ts} +1 -1
  539. package/lib/tokens/use-default-css/index.d.ts +5 -0
  540. package/lib/tokens/use-default-css/public-api.d.ts +1 -0
  541. package/lib/tokens/use-default-css/use-default-css.token.d.ts +2 -0
  542. package/login/KcContext/index.d.ts +5 -0
  543. package/login/KcContext/public-api.d.ts +1 -0
  544. package/login/classes/{component-reference.class.d.ts → component-reference/component-reference.class.d.ts} +1 -1
  545. package/login/classes/component-reference/index.d.ts +5 -0
  546. package/login/classes/component-reference/public-api.d.ts +1 -0
  547. package/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.d.ts +4 -2
  548. package/login/components/add-remove-buttons-multi-valued-attribute/index.d.ts +5 -0
  549. package/login/components/add-remove-buttons-multi-valued-attribute/public-api.d.ts +1 -0
  550. package/login/components/field-errors/field-errors.component.d.ts +4 -4
  551. package/login/components/field-errors/index.d.ts +5 -0
  552. package/login/components/field-errors/public-api.d.ts +1 -0
  553. package/login/components/group-label/group-label.component.d.ts +5 -3
  554. package/login/components/group-label/index.d.ts +5 -0
  555. package/login/components/group-label/public-api.d.ts +1 -0
  556. package/login/components/input-field-by-type/index.d.ts +5 -0
  557. package/login/components/input-field-by-type/input-field-by-type.component.d.ts +4 -4
  558. package/login/components/input-field-by-type/public-api.d.ts +1 -0
  559. package/login/components/input-tag/index.d.ts +5 -0
  560. package/login/components/input-tag/input-tag.component.d.ts +6 -4
  561. package/login/components/input-tag/public-api.d.ts +1 -0
  562. package/login/components/input-tag-selects/index.d.ts +5 -0
  563. package/login/components/input-tag-selects/input-tag-selects.component.d.ts +6 -4
  564. package/login/components/input-tag-selects/public-api.d.ts +1 -0
  565. package/login/components/logout-other-sessions/index.d.ts +5 -0
  566. package/login/components/logout-other-sessions/logout-other-sessions.component.d.ts +4 -2
  567. package/login/components/logout-other-sessions/public-api.d.ts +1 -0
  568. package/login/components/password-wrapper/index.d.ts +5 -0
  569. package/login/components/password-wrapper/password-wrapper.component.d.ts +4 -2
  570. package/login/components/password-wrapper/public-api.d.ts +1 -0
  571. package/login/components/select-tag/index.d.ts +5 -0
  572. package/login/components/select-tag/public-api.d.ts +1 -0
  573. package/login/components/select-tag/select-tag.component.d.ts +6 -4
  574. package/login/components/textarea-tag/index.d.ts +5 -0
  575. package/login/components/textarea-tag/public-api.d.ts +1 -0
  576. package/login/components/textarea-tag/textarea-tag.component.d.ts +4 -4
  577. package/login/components/user-profile-form-fields/index.d.ts +5 -0
  578. package/login/components/user-profile-form-fields/public-api.d.ts +1 -0
  579. package/login/components/user-profile-form-fields/user-profile-form-fields.component.d.ts +8 -5
  580. package/login/containers/template/index.d.ts +5 -0
  581. package/login/containers/template/public-api.d.ts +1 -0
  582. package/login/containers/template/template.component.d.ts +47 -0
  583. package/login/directives/kc-class/index.d.ts +5 -0
  584. package/login/directives/kc-class/kc-class.directive.d.ts +26 -0
  585. package/login/directives/kc-class/public-api.d.ts +1 -0
  586. package/login/getDefaultPageComponent/getDefaultPageComponent.d.ts +3 -0
  587. package/login/getDefaultPageComponent/index.d.ts +5 -0
  588. package/login/getDefaultPageComponent/public-api.d.ts +1 -0
  589. package/login/{i18n.d.ts → i18n/i18n.d.ts} +1 -1
  590. package/login/i18n/index.d.ts +5 -0
  591. package/login/i18n/public-api.d.ts +1 -0
  592. package/login/pages/code/code.component.d.ts +15 -4
  593. package/login/pages/code/index.d.ts +5 -0
  594. package/login/pages/code/public-api.d.ts +1 -0
  595. package/login/pages/delete-account-confirm/delete-account-confirm.component.d.ts +15 -4
  596. package/login/pages/delete-account-confirm/index.d.ts +5 -0
  597. package/login/pages/delete-account-confirm/public-api.d.ts +1 -0
  598. package/login/pages/delete-credential/delete-credential.component.d.ts +13 -7
  599. package/login/pages/delete-credential/index.d.ts +5 -0
  600. package/login/pages/delete-credential/public-api.d.ts +1 -0
  601. package/login/pages/error/error.component.d.ts +15 -4
  602. package/login/pages/error/index.d.ts +5 -0
  603. package/login/pages/error/public-api.d.ts +1 -0
  604. package/login/pages/frontchannel-logout/frontchannel-logout.component.d.ts +13 -7
  605. package/login/pages/frontchannel-logout/index.d.ts +5 -0
  606. package/login/pages/frontchannel-logout/public-api.d.ts +1 -0
  607. package/login/pages/idp-review-user-profile/idp-review-user-profile.component.d.ts +18 -8
  608. package/login/pages/idp-review-user-profile/index.d.ts +5 -0
  609. package/login/pages/idp-review-user-profile/public-api.d.ts +1 -0
  610. package/login/pages/info/index.d.ts +5 -0
  611. package/login/pages/info/info.component.d.ts +13 -13
  612. package/login/pages/info/public-api.d.ts +1 -0
  613. package/login/pages/login/index.d.ts +5 -0
  614. package/login/pages/login/login.component.d.ts +14 -8
  615. package/login/pages/login/public-api.d.ts +1 -0
  616. package/login/pages/login-config-totp/index.d.ts +5 -0
  617. package/login/pages/login-config-totp/login-config-totp.component.d.ts +13 -7
  618. package/login/pages/login-config-totp/public-api.d.ts +1 -0
  619. package/login/pages/login-idp-link-confirm/index.d.ts +5 -0
  620. package/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.d.ts +12 -9
  621. package/login/pages/login-idp-link-confirm/public-api.d.ts +1 -0
  622. package/login/pages/login-idp-link-confirm-override/index.d.ts +5 -0
  623. package/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.d.ts +12 -9
  624. package/login/pages/login-idp-link-confirm-override/public-api.d.ts +1 -0
  625. package/login/pages/login-idp-link-email/index.d.ts +5 -0
  626. package/login/pages/login-idp-link-email/login-idp-link-email.component.d.ts +12 -9
  627. package/login/pages/login-idp-link-email/public-api.d.ts +1 -0
  628. package/login/pages/login-oauth-grant/index.d.ts +5 -0
  629. package/login/pages/login-oauth-grant/login-oauth-grant.component.d.ts +12 -9
  630. package/login/pages/login-oauth-grant/public-api.d.ts +1 -0
  631. package/login/pages/login-oauth2-device-verify-user-code/index.d.ts +5 -0
  632. package/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.d.ts +13 -7
  633. package/login/pages/login-oauth2-device-verify-user-code/public-api.d.ts +1 -0
  634. package/login/pages/login-otp/index.d.ts +5 -0
  635. package/login/pages/login-otp/login-otp.component.d.ts +13 -7
  636. package/login/pages/login-otp/public-api.d.ts +1 -0
  637. package/login/pages/login-page-expired/index.d.ts +5 -0
  638. package/login/pages/login-page-expired/login-page-expired.component.d.ts +13 -7
  639. package/login/pages/login-page-expired/public-api.d.ts +1 -0
  640. package/login/pages/login-passkeys-conditional-authenticate/index.d.ts +5 -0
  641. package/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.d.ts +15 -7
  642. package/login/pages/login-passkeys-conditional-authenticate/public-api.d.ts +1 -0
  643. package/login/pages/login-password/index.d.ts +5 -0
  644. package/login/pages/login-password/login-password.component.d.ts +14 -7
  645. package/login/pages/login-password/public-api.d.ts +1 -0
  646. package/login/pages/login-recovery-authn-code-config/index.d.ts +5 -0
  647. package/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.d.ts +13 -7
  648. package/login/pages/login-recovery-authn-code-config/public-api.d.ts +1 -0
  649. package/login/pages/login-recovery-authn-code-input/index.d.ts +5 -0
  650. package/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.d.ts +13 -7
  651. package/login/pages/login-recovery-authn-code-input/public-api.d.ts +1 -0
  652. package/login/pages/login-reset-otp/index.d.ts +5 -0
  653. package/login/pages/login-reset-otp/login-reset-otp.component.d.ts +13 -7
  654. package/login/pages/login-reset-otp/public-api.d.ts +1 -0
  655. package/login/pages/login-reset-password/index.d.ts +5 -0
  656. package/login/pages/login-reset-password/login-reset-password.component.d.ts +13 -7
  657. package/login/pages/login-reset-password/public-api.d.ts +1 -0
  658. package/login/pages/login-update-password/index.d.ts +5 -0
  659. package/login/pages/login-update-password/login-update-password.component.d.ts +13 -7
  660. package/login/pages/login-update-password/public-api.d.ts +1 -0
  661. package/login/pages/login-update-profile/index.d.ts +5 -0
  662. package/login/pages/login-update-profile/login-update-profile.component.d.ts +17 -7
  663. package/login/pages/login-update-profile/public-api.d.ts +1 -0
  664. package/login/pages/login-username/index.d.ts +5 -0
  665. package/login/pages/login-username/login-username.component.d.ts +14 -8
  666. package/login/pages/login-username/public-api.d.ts +1 -0
  667. package/login/pages/login-verify-email/index.d.ts +5 -0
  668. package/login/pages/login-verify-email/login-verify-email.component.d.ts +13 -7
  669. package/login/pages/login-verify-email/public-api.d.ts +1 -0
  670. package/login/pages/login-x509-info/index.d.ts +5 -0
  671. package/login/pages/login-x509-info/login-x509-info.component.d.ts +13 -7
  672. package/login/pages/login-x509-info/public-api.d.ts +1 -0
  673. package/login/pages/logout-confirm/index.d.ts +5 -0
  674. package/login/pages/logout-confirm/logout-confirm.component.d.ts +12 -9
  675. package/login/pages/logout-confirm/public-api.d.ts +1 -0
  676. package/login/pages/register/index.d.ts +5 -0
  677. package/login/pages/register/public-api.d.ts +1 -0
  678. package/login/pages/register/register.component.d.ts +19 -9
  679. package/login/pages/saml-post-form/index.d.ts +5 -0
  680. package/login/pages/saml-post-form/public-api.d.ts +1 -0
  681. package/login/pages/saml-post-form/saml-post-form.component.d.ts +14 -9
  682. package/login/pages/select-authenticator/index.d.ts +5 -0
  683. package/login/pages/select-authenticator/public-api.d.ts +1 -0
  684. package/login/pages/select-authenticator/select-authenticator.component.d.ts +13 -7
  685. package/login/pages/terms/index.d.ts +5 -0
  686. package/login/pages/terms/public-api.d.ts +1 -0
  687. package/login/pages/terms/terms.component.d.ts +13 -7
  688. package/login/pages/update-email/index.d.ts +5 -0
  689. package/login/pages/update-email/public-api.d.ts +1 -0
  690. package/login/pages/update-email/update-email.component.d.ts +16 -9
  691. package/login/pages/webauthn-authenticate/index.d.ts +5 -0
  692. package/login/pages/webauthn-authenticate/public-api.d.ts +1 -0
  693. package/login/pages/webauthn-authenticate/webauthn-authenticate.component.d.ts +14 -10
  694. package/login/pages/webauthn-error/index.d.ts +5 -0
  695. package/login/pages/webauthn-error/public-api.d.ts +1 -0
  696. package/login/pages/webauthn-error/webauthn-error.component.d.ts +13 -7
  697. package/login/pages/webauthn-register/index.d.ts +5 -0
  698. package/login/pages/webauthn-register/public-api.d.ts +1 -0
  699. package/login/pages/webauthn-register/webauthn-register.component.d.ts +14 -10
  700. package/login/providers/keycloakify-angular/index.d.ts +5 -0
  701. package/login/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +16 -0
  702. package/login/providers/keycloakify-angular/public-api.d.ts +1 -0
  703. package/login/services/i18n/i18n.service.d.ts +6 -0
  704. package/login/services/i18n/index.d.ts +5 -0
  705. package/login/services/i18n/public-api.d.ts +1 -0
  706. package/login/services/login-resource-injector/index.d.ts +5 -0
  707. package/login/services/{login-resource-injector.service.d.ts → login-resource-injector/login-resource-injector.service.d.ts} +1 -1
  708. package/login/services/{index.d.ts → login-resource-injector/public-api.d.ts} +0 -1
  709. package/login/services/submit/index.d.ts +5 -0
  710. package/login/services/submit/public-api.d.ts +1 -0
  711. package/login/services/submit/submit.service.d.ts +9 -0
  712. package/login/services/user-profile-form/index.d.ts +5 -0
  713. package/login/services/user-profile-form/public-api.d.ts +1 -0
  714. package/login/services/{user-profile-form.service.d.ts → user-profile-form/user-profile-form.service.d.ts} +2 -1
  715. package/{lib/providers/keycloakify-angular.providers.d.ts → login/tokens/classes/classes.token.d.ts} +1 -24
  716. package/login/tokens/classes/index.d.ts +5 -0
  717. package/login/tokens/classes/public-api.d.ts +1 -0
  718. package/login/tokens/i18n/i18n.token.d.ts +2 -0
  719. package/login/tokens/i18n/index.d.ts +5 -0
  720. package/login/tokens/i18n/public-api.d.ts +1 -0
  721. package/login/tokens/kc-context/index.d.ts +5 -0
  722. package/login/tokens/kc-context/kc-context.token.d.ts +3 -0
  723. package/login/tokens/kc-context/public-api.d.ts +1 -0
  724. package/login/tokens/make-user-confirm-password/index.d.ts +5 -0
  725. package/login/tokens/make-user-confirm-password/make-user-confirm-password.token.d.ts +2 -0
  726. package/login/tokens/make-user-confirm-password/public-api.d.ts +1 -0
  727. package/package.json +591 -338
  728. package/public-api.d.ts +1 -0
  729. package/src/account/DefaultPage.ts +61 -0
  730. package/src/account/KcContext.ts +1 -0
  731. package/src/account/classes/component-reference/component-reference.class.ts +6 -0
  732. package/src/account/containers/template/template.component.html +130 -0
  733. package/src/account/containers/template/template.component.ts +118 -0
  734. package/src/account/directives/kc-class/kc-class.directive.ts +170 -0
  735. package/src/account/i18n.ts +4 -0
  736. package/src/account/pages/account/account.component.html +161 -0
  737. package/src/account/pages/account/account.component.ts +35 -0
  738. package/src/account/pages/applications/applications.component.html +148 -0
  739. package/src/account/pages/applications/applications.component.ts +33 -0
  740. package/src/account/pages/federatedIdentity/federatedIdentity.component.html +93 -0
  741. package/src/account/pages/federatedIdentity/federatedIdentity.component.ts +32 -0
  742. package/src/account/pages/log/log.component.html +40 -0
  743. package/src/account/pages/log/log.component.ts +32 -0
  744. package/src/account/pages/password/password.component.html +127 -0
  745. package/src/account/pages/password/password.component.ts +113 -0
  746. package/src/account/pages/sessions/sessions.component.html +59 -0
  747. package/src/account/pages/sessions/sessions.component.ts +32 -0
  748. package/src/account/pages/totp/totp.component.html +254 -0
  749. package/src/account/pages/totp/totp.component.ts +33 -0
  750. package/src/account/providers/keycloakify-angular/keycloakify-angular.providers.ts +65 -0
  751. package/src/account/services/account-resource-injector/account-resource-injector.service.ts +41 -0
  752. package/src/account/services/i18n/i18n.service.ts +7 -0
  753. package/src/account/tokens/classes/classes.token.ts +6 -0
  754. package/src/account/tokens/i18n/i18n.token.ts +3 -0
  755. package/src/account/tokens/kc-context/kc-context.token.ts +6 -0
  756. package/src/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.ts +16 -0
  757. package/src/{login/pipes → lib/pipes/kc-sanitize}/kc-sanitize.pipe.ts +9 -11
  758. package/src/lib/services/{resource-injector.service.ts → resource-injector/resource-injector.service.ts} +1 -1
  759. package/src/lib/tokens/use-default-css/use-default-css.token.ts +3 -0
  760. package/src/login/classes/{component-reference.class.ts → component-reference/component-reference.class.ts} +1 -1
  761. package/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.html +19 -19
  762. package/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.ts +8 -16
  763. package/src/login/components/field-errors/field-errors.component.html +10 -10
  764. package/src/login/components/field-errors/field-errors.component.ts +9 -14
  765. package/src/login/components/group-label/group-label.component.html +25 -25
  766. package/src/login/components/group-label/group-label.component.ts +13 -17
  767. package/src/login/components/input-field-by-type/input-field-by-type.component.html +57 -57
  768. package/src/login/components/input-field-by-type/input-field-by-type.component.ts +15 -32
  769. package/src/login/components/input-tag/input-tag.component.html +41 -45
  770. package/src/login/components/input-tag/input-tag.component.ts +19 -28
  771. package/src/login/components/input-tag-selects/input-tag-selects.component.html +22 -22
  772. package/src/login/components/input-tag-selects/input-tag-selects.component.ts +14 -25
  773. package/src/login/components/logout-other-sessions/logout-other-sessions.component.html +15 -15
  774. package/src/login/components/logout-other-sessions/logout-other-sessions.component.ts +10 -7
  775. package/src/login/components/password-wrapper/password-wrapper.component.html +13 -13
  776. package/src/login/components/password-wrapper/password-wrapper.component.ts +12 -22
  777. package/src/login/components/select-tag/select-tag.component.html +26 -26
  778. package/src/login/components/select-tag/select-tag.component.ts +16 -28
  779. package/src/login/components/textarea-tag/textarea-tag.component.html +13 -15
  780. package/src/login/components/textarea-tag/textarea-tag.component.ts +10 -19
  781. package/src/login/components/user-profile-form-fields/user-profile-form-fields.component.html +66 -73
  782. package/src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts +28 -42
  783. package/src/login/containers/template/template.component.html +217 -0
  784. package/src/login/containers/template/template.component.ts +166 -0
  785. package/src/login/directives/{kc-class.directive.ts → kc-class/kc-class.directive.ts} +2 -3
  786. package/src/login/getDefaultPageComponent.ts +153 -0
  787. package/src/login/i18n.ts +1 -1
  788. package/src/login/pages/code/code.component.html +13 -17
  789. package/src/login/pages/code/code.component.ts +28 -16
  790. package/src/login/pages/delete-account-confirm/delete-account-confirm.component.html +35 -37
  791. package/src/login/pages/delete-account-confirm/delete-account-confirm.component.ts +28 -17
  792. package/src/login/pages/delete-credential/delete-credential.component.html +23 -25
  793. package/src/login/pages/delete-credential/delete-credential.component.ts +28 -28
  794. package/src/login/pages/error/error.component.html +18 -20
  795. package/src/login/pages/error/error.component.ts +28 -16
  796. package/src/login/pages/frontchannel-logout/frontchannel-logout.component.html +20 -29
  797. package/src/login/pages/frontchannel-logout/frontchannel-logout.component.ts +28 -28
  798. package/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.html +24 -33
  799. package/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.ts +42 -35
  800. package/src/login/pages/info/info.component.html +31 -40
  801. package/src/login/pages/info/info.component.ts +29 -39
  802. package/src/login/pages/login/login.component.html +177 -187
  803. package/src/login/pages/login/login.component.ts +32 -45
  804. package/src/login/pages/login-config-totp/login-config-totp.component.html +157 -156
  805. package/src/login/pages/login-config-totp/login-config-totp.component.ts +29 -42
  806. package/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.html +22 -32
  807. package/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.ts +23 -29
  808. package/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.html +20 -30
  809. package/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.ts +23 -31
  810. package/src/login/pages/login-idp-link-email/login-idp-link-email.component.html +24 -32
  811. package/src/login/pages/login-idp-link-email/login-idp-link-email.component.ts +23 -29
  812. package/src/login/pages/login-oauth-grant/login-oauth-grant.component.html +66 -73
  813. package/src/login/pages/login-oauth-grant/login-oauth-grant.component.ts +23 -30
  814. package/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.html +40 -49
  815. package/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.ts +27 -30
  816. package/src/login/pages/login-otp/login-otp.component.html +79 -88
  817. package/src/login/pages/login-otp/login-otp.component.ts +28 -27
  818. package/src/login/pages/login-page-expired/login-page-expired.component.html +24 -31
  819. package/src/login/pages/login-page-expired/login-page-expired.component.ts +26 -27
  820. package/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.html +175 -180
  821. package/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.ts +31 -28
  822. package/src/login/pages/login-password/login-password.component.html +76 -83
  823. package/src/login/pages/login-password/login-password.component.ts +30 -35
  824. package/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.html +97 -106
  825. package/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.ts +30 -37
  826. package/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.html +57 -65
  827. package/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.ts +29 -32
  828. package/src/login/pages/login-reset-otp/login-reset-otp.component.html +53 -58
  829. package/src/login/pages/login-reset-otp/login-reset-otp.component.ts +27 -26
  830. package/src/login/pages/login-reset-password/login-reset-password.component.html +65 -74
  831. package/src/login/pages/login-reset-password/login-reset-password.component.ts +28 -28
  832. package/src/login/pages/login-update-password/login-update-password.component.html +88 -98
  833. package/src/login/pages/login-update-password/login-update-password.component.ts +30 -40
  834. package/src/login/pages/login-update-profile/login-update-profile.component.html +40 -50
  835. package/src/login/pages/login-update-profile/login-update-profile.component.ts +40 -34
  836. package/src/login/pages/login-username/login-username.component.html +131 -141
  837. package/src/login/pages/login-username/login-username.component.ts +29 -39
  838. package/src/login/pages/login-verify-email/login-verify-email.component.html +15 -23
  839. package/src/login/pages/login-verify-email/login-verify-email.component.ts +27 -28
  840. package/src/login/pages/login-x509-info/login-x509-info.component.html +76 -85
  841. package/src/login/pages/login-x509-info/login-x509-info.component.ts +27 -27
  842. package/src/login/pages/logout-confirm/logout-confirm.component.html +35 -45
  843. package/src/login/pages/logout-confirm/logout-confirm.component.ts +23 -28
  844. package/src/login/pages/register/register.component.html +89 -99
  845. package/src/login/pages/register/register.component.ts +42 -41
  846. package/src/login/pages/saml-post-form/saml-post-form.component.html +31 -41
  847. package/src/login/pages/saml-post-form/saml-post-form.component.ts +30 -32
  848. package/src/login/pages/select-authenticator/select-authenticator.component.html +36 -45
  849. package/src/login/pages/select-authenticator/select-authenticator.component.ts +28 -35
  850. package/src/login/pages/terms/terms.component.html +19 -28
  851. package/src/login/pages/terms/terms.component.ts +28 -27
  852. package/src/login/pages/update-email/update-email.component.html +40 -49
  853. package/src/login/pages/update-email/update-email.component.ts +38 -37
  854. package/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.html +116 -129
  855. package/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.ts +33 -50
  856. package/src/login/pages/webauthn-error/webauthn-error.component.html +34 -44
  857. package/src/login/pages/webauthn-error/webauthn-error.component.ts +29 -33
  858. package/src/login/pages/webauthn-register/webauthn-register.component.html +49 -59
  859. package/src/login/pages/webauthn-register/webauthn-register.component.ts +34 -41
  860. package/src/login/providers/keycloakify-angular/keycloakify-angular.providers.ts +69 -0
  861. package/src/login/services/i18n/i18n.service.ts +7 -0
  862. package/src/login/services/{login-resource-injector.service.ts → login-resource-injector/login-resource-injector.service.ts} +5 -4
  863. package/src/login/services/submit/submit.service.ts +12 -0
  864. package/src/login/services/{user-profile-form.service.ts → user-profile-form/user-profile-form.service.ts} +11 -13
  865. package/src/login/tokens/classes/classes.token.ts +6 -0
  866. package/src/login/tokens/i18n/i18n.token.ts +3 -0
  867. package/src/login/tokens/kc-context/kc-context.token.ts +4 -0
  868. package/src/login/tokens/make-user-confirm-password/make-user-confirm-password.token.ts +5 -0
  869. package/lib/i18n.d.ts +0 -4
  870. package/lib/i18n.mjs +0 -6
  871. package/lib/models/index.mjs +0 -2
  872. package/lib/models/script.model.mjs +0 -2
  873. package/lib/providers/keycloakify-angular.providers.mjs +0 -54
  874. package/lib/public-api.mjs +0 -4
  875. package/lib/services/i18n.service.d.ts +0 -6
  876. package/lib/services/i18n.service.mjs +0 -11
  877. package/lib/services/index.mjs +0 -3
  878. package/lib/services/resource-injector.service.mjs +0 -54
  879. package/login/DefaultPage.d.ts +0 -260
  880. package/login/DefaultPage.mjs +0 -121
  881. package/login/KcContext.mjs +0 -2
  882. package/login/classes/component-reference.class.mjs +0 -3
  883. package/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.mjs +0 -105
  884. package/login/components/field-errors/field-errors.component.mjs +0 -32
  885. package/login/components/group-label/group-label.component.mjs +0 -41
  886. package/login/components/hello-world/hello-world.component.d.ts +0 -5
  887. package/login/components/hello-world/hello-world.component.mjs +0 -11
  888. package/login/components/index.d.ts +0 -11
  889. package/login/components/index.mjs +0 -12
  890. package/login/components/input-field-by-type/input-field-by-type.component.mjs +0 -52
  891. package/login/components/input-tag/input-tag.component.mjs +0 -89
  892. package/login/components/input-tag-selects/input-tag-selects.component.mjs +0 -115
  893. package/login/components/logout-other-sessions/logout-other-sessions.component.mjs +0 -30
  894. package/login/components/password-wrapper/password-wrapper.component.mjs +0 -44
  895. package/login/components/select-tag/select-tag.component.mjs +0 -80
  896. package/login/components/textarea-tag/textarea-tag.component.mjs +0 -48
  897. package/login/components/user-profile-form-fields/user-profile-form-fields.component.mjs +0 -62
  898. package/login/containers/template.component.d.ts +0 -31
  899. package/login/containers/template.component.mjs +0 -71
  900. package/login/directives/attributes.directive.mjs +0 -26
  901. package/login/directives/index.mjs +0 -3
  902. package/login/directives/kc-class.directive.mjs +0 -138
  903. package/login/i18n.mjs +0 -2
  904. package/login/pages/code/code.component.mjs +0 -32
  905. package/login/pages/delete-account-confirm/delete-account-confirm.component.mjs +0 -32
  906. package/login/pages/delete-credential/delete-credential.component.mjs +0 -37
  907. package/login/pages/error/error.component.mjs +0 -32
  908. package/login/pages/frontchannel-logout/frontchannel-logout.component.mjs +0 -41
  909. package/login/pages/idp-review-user-profile/idp-review-user-profile.component.mjs +0 -47
  910. package/login/pages/info/info.component.mjs +0 -58
  911. package/login/pages/login/login.component.mjs +0 -51
  912. package/login/pages/login-config-totp/login-config-totp.component.mjs +0 -47
  913. package/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.mjs +0 -37
  914. package/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.mjs +0 -37
  915. package/login/pages/login-idp-link-email/login-idp-link-email.component.mjs +0 -37
  916. package/login/pages/login-oauth-grant/login-oauth-grant.component.mjs +0 -38
  917. package/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.mjs +0 -37
  918. package/login/pages/login-otp/login-otp.component.mjs +0 -38
  919. package/login/pages/login-page-expired/login-page-expired.component.mjs +0 -36
  920. package/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.mjs +0 -85
  921. package/login/pages/login-password/login-password.component.mjs +0 -46
  922. package/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.mjs +0 -45
  923. package/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.mjs +0 -38
  924. package/login/pages/login-reset-otp/login-reset-otp.component.mjs +0 -37
  925. package/login/pages/login-reset-password/login-reset-password.component.mjs +0 -38
  926. package/login/pages/login-update-password/login-update-password.component.mjs +0 -47
  927. package/login/pages/login-update-profile/login-update-profile.component.mjs +0 -44
  928. package/login/pages/login-username/login-username.component.mjs +0 -49
  929. package/login/pages/login-verify-email/login-verify-email.component.mjs +0 -37
  930. package/login/pages/login-x509-info/login-x509-info.component.mjs +0 -37
  931. package/login/pages/logout-confirm/logout-confirm.component.mjs +0 -37
  932. package/login/pages/register/register.component.mjs +0 -55
  933. package/login/pages/saml-post-form/saml-post-form.component.mjs +0 -49
  934. package/login/pages/select-authenticator/select-authenticator.component.mjs +0 -45
  935. package/login/pages/terms/terms.component.mjs +0 -37
  936. package/login/pages/update-email/update-email.component.mjs +0 -46
  937. package/login/pages/webauthn-authenticate/webauthn-authenticate.component.mjs +0 -87
  938. package/login/pages/webauthn-error/webauthn-error.component.mjs +0 -51
  939. package/login/pages/webauthn-register/webauthn-register.component.mjs +0 -81
  940. package/login/pipes/advanced-msg-str.pipe.d.ts +0 -8
  941. package/login/pipes/advanced-msg-str.pipe.mjs +0 -19
  942. package/login/pipes/index.d.ts +0 -6
  943. package/login/pipes/index.mjs +0 -7
  944. package/login/pipes/input-type.pipe.mjs +0 -20
  945. package/login/pipes/kc-sanitize.pipe.mjs +0 -34
  946. package/login/pipes/msg-str.pipe.d.ts +0 -9
  947. package/login/pipes/msg-str.pipe.mjs +0 -19
  948. package/login/pipes/to-array.pipe.mjs +0 -21
  949. package/login/pipes/to-number.pipe.mjs +0 -20
  950. package/login/services/index.mjs +0 -3
  951. package/login/services/login-resource-injector.service.mjs +0 -68
  952. package/login/services/user-profile-form.service.mjs +0 -1017
  953. package/src/lib/i18n.ts +0 -9
  954. package/src/lib/models/index.ts +0 -1
  955. package/src/lib/providers/keycloakify-angular.providers.ts +0 -92
  956. package/src/lib/public-api.ts +0 -12
  957. package/src/lib/services/i18n.service.ts +0 -5
  958. package/src/lib/services/index.ts +0 -2
  959. package/src/login/DefaultPage.ts +0 -208
  960. package/src/login/components/hello-world/hello-world.component.css +0 -0
  961. package/src/login/components/hello-world/hello-world.component.html +0 -1
  962. package/src/login/components/hello-world/hello-world.component.ts +0 -10
  963. package/src/login/components/index.ts +0 -11
  964. package/src/login/containers/template.component.html +0 -203
  965. package/src/login/containers/template.component.ts +0 -94
  966. package/src/login/directives/index.ts +0 -2
  967. package/src/login/pipes/advanced-msg-str.pipe.ts +0 -13
  968. package/src/login/pipes/index.ts +0 -6
  969. package/src/login/pipes/msg-str.pipe.ts +0 -14
  970. package/src/login/services/index.ts +0 -2
  971. package/src/tsconfig.json +0 -18
  972. /package/{login/directives → lib/directives/attributes}/attributes.directive.d.ts +0 -0
  973. /package/lib/models/{index.d.ts → script/public-api.d.ts} +0 -0
  974. /package/lib/models/{script.model.d.ts → script/script.model.d.ts} +0 -0
  975. /package/{login/pipes → lib/pipes/input-type}/input-type.pipe.d.ts +0 -0
  976. /package/{login/pipes → lib/pipes/to-array}/to-array.pipe.d.ts +0 -0
  977. /package/{login/pipes → lib/pipes/to-number}/to-number.pipe.d.ts +0 -0
  978. /package/login/{KcContext.d.ts → KcContext/KcContext.d.ts} +0 -0
  979. /package/src/{login/directives → lib/directives/attributes}/attributes.directive.ts +0 -0
  980. /package/src/lib/models/{script.model.ts → script/script.model.ts} +0 -0
  981. /package/src/{login/pipes → lib/pipes/input-type}/input-type.pipe.ts +0 -0
  982. /package/src/{login/pipes → lib/pipes/to-array}/to-array.pipe.ts +0 -0
  983. /package/src/{login/pipes → lib/pipes/to-number}/to-number.pipe.ts +0 -0
@@ -1,81 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, forwardRef, inject, input } from '@angular/core';
2
- import { CLASSES, KC_CONTEXT, USE_DEFAULT_CSS } from '../../../lib/public-api';
3
- import { ComponentReference } from '../../../login/classes/component-reference.class';
4
- import { LogoutOtherSessionsComponent } from '../../../login/components/logout-other-sessions/logout-other-sessions.component';
5
- import { TemplateComponent } from '../../../login/containers/template.component';
6
- import { KcClassDirective } from '../../../login/directives';
7
- import { MsgStrPipe } from '../../../login/pipes/msg-str.pipe';
8
- import { LoginResourceInjectorService } from '../../../login/services';
9
- import * as i0 from "@angular/core";
10
- export class WebauthnRegisterComponent extends ComponentReference {
11
- constructor() {
12
- super();
13
- this.kcContext = inject(KC_CONTEXT);
14
- this.loginResourceInjectorService = inject(LoginResourceInjectorService);
15
- this.msgStr = inject(MsgStrPipe);
16
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
17
- this.classes = inject(CLASSES);
18
- this.displayRequiredFields = input(false);
19
- this.documentTitle = input();
20
- this.bodyClassName = input();
21
- this.displayInfo = false;
22
- this.displayMessage = true;
23
- this.authButtonId = 'authenticateWebAuthnButton';
24
- const { url, challenge, userid, username, signatureAlgorithms, rpEntityName, rpId, attestationConveyancePreference, authenticatorAttachment, requireResidentKey, userVerificationRequirement, createTimeout, excludeCredentialIds } = this.kcContext;
25
- const scripts = [
26
- {
27
- type: 'module',
28
- id: 'WebAuthnRegisterScript',
29
- textContent: `
30
- import { registerByWebAuthn } from "${url.resourcesPath}/js/webauthnRegister.js";
31
- const registerButton = document.getElementById('${this.authButtonId}');
32
- registerButton.addEventListener("click", function() {
33
- const input = {
34
- challenge : '${challenge}',
35
- userid : '${userid}',
36
- username : '${username}',
37
- signatureAlgorithms : ${JSON.stringify(signatureAlgorithms)},
38
- rpEntityName : ${JSON.stringify(rpEntityName)},
39
- rpId : ${JSON.stringify(rpId)},
40
- attestationConveyancePreference : ${JSON.stringify(attestationConveyancePreference)},
41
- authenticatorAttachment : ${JSON.stringify(authenticatorAttachment)},
42
- requireResidentKey : ${JSON.stringify(requireResidentKey)},
43
- userVerificationRequirement : ${JSON.stringify(userVerificationRequirement)},
44
- createTimeout : ${createTimeout},
45
- excludeCredentialIds : ${JSON.stringify(excludeCredentialIds)},
46
- initLabel : ${JSON.stringify(this.msgStr.transform('webauthn-registration-init-label'))},
47
- initLabelPrompt : ${JSON.stringify(this.msgStr.transform('webauthn-registration-init-label-prompt'))},
48
- errmsg : ${JSON.stringify(this.msgStr.transform('webauthn-unsupported-browser-text'))}
49
- };
50
- registerByWebAuthn(input);
51
- });
52
- `
53
- }
54
- ];
55
- this.loginResourceInjectorService.insertAdditionalScripts(scripts);
56
- }
57
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: WebauthnRegisterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
58
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: WebauthnRegisterComponent, isStandalone: true, selector: "kc-root", inputs: { displayRequiredFields: { classPropertyName: "displayRequiredFields", publicName: "displayRequiredFields", isSignal: true, isRequired: false, transformFunction: null }, documentTitle: { classPropertyName: "documentTitle", publicName: "documentTitle", isSignal: true, isRequired: false, transformFunction: null }, bodyClassName: { classPropertyName: "bodyClassName", publicName: "bodyClassName", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
59
- MsgStrPipe,
60
- {
61
- provide: ComponentReference,
62
- useExisting: forwardRef(() => WebauthnRegisterComponent)
63
- }
64
- ], usesInheritance: true, ngImport: i0, template: "@let url = kcContext.url;\n@let isSetRetry = kcContext.isSetRetry;\n@let isAppInitiatedAction = kcContext.isAppInitiatedAction;\n\n<kc-login-template\n [displayInfo]=\"displayInfo\"\n [bodyClassName]=\"bodyClassName()\"\n [displayMessage]=\"displayMessage\"\n [displayRequiredFields]=\"displayRequiredFields()\"\n [documentTitle]=\"documentTitle()\"\n>\n <ng-container headerNode>\n <span [kcClass]=\"'kcWebAuthnKeyIcon'\"></span>\n {{ 'webauthn-registration-title' | msgStr }}\n </ng-container>\n <ng-container content>\n <form\n id=\"register\"\n [kcClass]=\"'kcFormClass'\"\n [action]=\"url.loginAction\"\n method=\"post\"\n >\n <div [kcClass]=\"'kcFormGroupClass'\">\n <input\n type=\"hidden\"\n id=\"clientDataJSON\"\n name=\"clientDataJSON\"\n />\n <input\n type=\"hidden\"\n id=\"attestationObject\"\n name=\"attestationObject\"\n />\n <input\n type=\"hidden\"\n id=\"publicKeyCredentialId\"\n name=\"publicKeyCredentialId\"\n />\n <input\n type=\"hidden\"\n id=\"authenticatorLabel\"\n name=\"authenticatorLabel\"\n />\n <input\n type=\"hidden\"\n id=\"transports\"\n name=\"transports\"\n />\n <input\n type=\"hidden\"\n id=\"error\"\n name=\"error\"\n />\n <kc-logout-other-sessions />\n </div>\n </form>\n <input\n type=\"submit\"\n [kcClass]=\"['kcButtonClass', 'kcButtonPrimaryClass', 'kcButtonBlockClass', 'kcButtonLargeClass']\"\n [id]=\"authButtonId\"\n [value]=\"'doRegisterSecurityKey' | msgStr\"\n />\n @if (!isSetRetry && isAppInitiatedAction) {\n <form\n [action]=\"url.loginAction\"\n [kcClass]=\"'kcFormClass'\"\n id=\"kc-webauthn-settings-form\"\n method=\"post\"\n >\n <button\n type=\"submit\"\n [kcClass]=\"['kcButtonClass', 'kcButtonDefaultClass', 'kcButtonBlockClass', 'kcButtonLargeClass']\"\n id=\"cancelWebAuthnAIA\"\n name=\"cancel-aia\"\n value=\"true\"\n >\n {{ 'doCancel' | msgStr }}\n </button>\n </form>\n }\n </ng-container>\n</kc-login-template>\n", dependencies: [{ kind: "component", type: TemplateComponent, selector: "kc-login-template", inputs: ["displayInfo", "displayMessage", "displayRequiredFields", "documentTitle", "bodyClassName"] }, { kind: "pipe", type: MsgStrPipe, name: "msgStr" }, { kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }, { kind: "component", type: LogoutOtherSessionsComponent, selector: "kc-logout-other-sessions" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
65
- }
66
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: WebauthnRegisterComponent, decorators: [{
67
- type: Component,
68
- args: [{ standalone: true, imports: [
69
- TemplateComponent,
70
- MsgStrPipe,
71
- KcClassDirective,
72
- LogoutOtherSessionsComponent
73
- ], selector: 'kc-root', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
74
- MsgStrPipe,
75
- {
76
- provide: ComponentReference,
77
- useExisting: forwardRef(() => WebauthnRegisterComponent)
78
- }
79
- ], template: "@let url = kcContext.url;\n@let isSetRetry = kcContext.isSetRetry;\n@let isAppInitiatedAction = kcContext.isAppInitiatedAction;\n\n<kc-login-template\n [displayInfo]=\"displayInfo\"\n [bodyClassName]=\"bodyClassName()\"\n [displayMessage]=\"displayMessage\"\n [displayRequiredFields]=\"displayRequiredFields()\"\n [documentTitle]=\"documentTitle()\"\n>\n <ng-container headerNode>\n <span [kcClass]=\"'kcWebAuthnKeyIcon'\"></span>\n {{ 'webauthn-registration-title' | msgStr }}\n </ng-container>\n <ng-container content>\n <form\n id=\"register\"\n [kcClass]=\"'kcFormClass'\"\n [action]=\"url.loginAction\"\n method=\"post\"\n >\n <div [kcClass]=\"'kcFormGroupClass'\">\n <input\n type=\"hidden\"\n id=\"clientDataJSON\"\n name=\"clientDataJSON\"\n />\n <input\n type=\"hidden\"\n id=\"attestationObject\"\n name=\"attestationObject\"\n />\n <input\n type=\"hidden\"\n id=\"publicKeyCredentialId\"\n name=\"publicKeyCredentialId\"\n />\n <input\n type=\"hidden\"\n id=\"authenticatorLabel\"\n name=\"authenticatorLabel\"\n />\n <input\n type=\"hidden\"\n id=\"transports\"\n name=\"transports\"\n />\n <input\n type=\"hidden\"\n id=\"error\"\n name=\"error\"\n />\n <kc-logout-other-sessions />\n </div>\n </form>\n <input\n type=\"submit\"\n [kcClass]=\"['kcButtonClass', 'kcButtonPrimaryClass', 'kcButtonBlockClass', 'kcButtonLargeClass']\"\n [id]=\"authButtonId\"\n [value]=\"'doRegisterSecurityKey' | msgStr\"\n />\n @if (!isSetRetry && isAppInitiatedAction) {\n <form\n [action]=\"url.loginAction\"\n [kcClass]=\"'kcFormClass'\"\n id=\"kc-webauthn-settings-form\"\n method=\"post\"\n >\n <button\n type=\"submit\"\n [kcClass]=\"['kcButtonClass', 'kcButtonDefaultClass', 'kcButtonBlockClass', 'kcButtonLargeClass']\"\n id=\"cancelWebAuthnAIA\"\n name=\"cancel-aia\"\n value=\"true\"\n >\n {{ 'doCancel' | msgStr }}\n </button>\n </form>\n }\n </ng-container>\n</kc-login-template>\n" }]
80
- }], ctorParameters: () => [] });
81
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2ViYXV0aG4tcmVnaXN0ZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbG9naW4vcGFnZXMvd2ViYXV0aG4tcmVnaXN0ZXIvd2ViYXV0aG4tcmVnaXN0ZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbG9naW4vcGFnZXMvd2ViYXV0aG4tcmVnaXN0ZXIvd2ViYXV0aG4tcmVnaXN0ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsVUFBVSxFQUNWLE1BQU0sRUFDTixLQUFLLEVBQ1IsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUNILE9BQU8sRUFDUCxVQUFVLEVBQ1YsZUFBZSxFQUNsQixNQUFNLHFDQUFxQyxDQUFDO0FBSTdDLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhEQUE4RCxDQUFDO0FBQ2xHLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLDZGQUE2RixDQUFDO0FBQzNJLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDBEQUEwRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQ3pFLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwrQ0FBK0MsQ0FBQztBQUMzRSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQzs7QUFxQm5GLE1BQU0sT0FBTyx5QkFBMEIsU0FBUSxrQkFBa0I7SUFlN0Q7UUFDSSxLQUFLLEVBQUUsQ0FBQztRQWZaLGNBQVMsR0FDTCxNQUFNLENBQTBELFVBQVUsQ0FBQyxDQUFDO1FBQ2hGLGlDQUE0QixHQUFHLE1BQU0sQ0FBQyw0QkFBNEIsQ0FBQyxDQUFDO1FBQ3BFLFdBQU0sR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDbkIsb0JBQWUsR0FBRyxNQUFNLENBQVUsZUFBZSxDQUFDLENBQUM7UUFDbkQsWUFBTyxHQUFHLE1BQU0sQ0FBb0MsT0FBTyxDQUFDLENBQUM7UUFDdEUsMEJBQXFCLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3JDLGtCQUFhLEdBQUcsS0FBSyxFQUFVLENBQUM7UUFDaEMsa0JBQWEsR0FBRyxLQUFLLEVBQVUsQ0FBQztRQUNoQyxnQkFBVyxHQUFZLEtBQUssQ0FBQztRQUM3QixtQkFBYyxHQUFZLElBQUksQ0FBQztRQUUvQixpQkFBWSxHQUFHLDRCQUE0QixDQUFDO1FBSXhDLE1BQU0sRUFDRixHQUFHLEVBQ0gsU0FBUyxFQUNULE1BQU0sRUFDTixRQUFRLEVBQ1IsbUJBQW1CLEVBQ25CLFlBQVksRUFDWixJQUFJLEVBQ0osK0JBQStCLEVBQy9CLHVCQUF1QixFQUN2QixrQkFBa0IsRUFDbEIsMkJBQTJCLEVBQzNCLGFBQWEsRUFDYixvQkFBb0IsRUFDdkIsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDO1FBQ25CLE1BQU0sT0FBTyxHQUFhO1lBQ3RCO2dCQUNJLElBQUksRUFBRSxRQUFRO2dCQUNkLEVBQUUsRUFBRSx3QkFBd0I7Z0JBQzVCLFdBQVcsRUFBRTtvREFDdUIsR0FBRyxDQUFDLGFBQWE7Z0VBQ0wsSUFBSSxDQUFDLFlBQVk7OztxQ0FHNUMsU0FBUztrQ0FDWixNQUFNO29DQUNKLFFBQVE7OENBQ0UsSUFBSSxDQUFDLFNBQVMsQ0FBQyxtQkFBbUIsQ0FBQzt1Q0FDMUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUM7K0JBQ3BDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDOzBEQUNPLElBQUksQ0FBQyxTQUFTLENBQUMsK0JBQStCLENBQUM7a0RBQ3ZELElBQUksQ0FBQyxTQUFTLENBQUMsdUJBQXVCLENBQUM7NkNBQzVDLElBQUksQ0FBQyxTQUFTLENBQUMsa0JBQWtCLENBQUM7c0RBQ3pCLElBQUksQ0FBQyxTQUFTLENBQUMsMkJBQTJCLENBQUM7d0NBQ3pELGFBQWE7K0NBQ04sSUFBSSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsQ0FBQztvQ0FDL0MsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDOzBDQUNuRSxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLHlDQUF5QyxDQUFDLENBQUM7aUNBQ3pGLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsbUNBQW1DLENBQUMsQ0FBQzs7OztXQUloRzthQUNFO1NBQ0osQ0FBQztRQUNGLElBQUksQ0FBQyw0QkFBNEIsQ0FBQyx1QkFBdUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN2RSxDQUFDOzhHQS9EUSx5QkFBeUI7a0dBQXpCLHlCQUF5QiwwZ0JBUnZCO1lBQ1AsVUFBVTtZQUNWO2dCQUNJLE9BQU8sRUFBRSxrQkFBa0I7Z0JBQzNCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMseUJBQXlCLENBQUM7YUFDM0Q7U0FDSixpREN2Q0wsMHlFQWtGQSw0Q0R6RFEsaUJBQWlCLCtKQUNqQixVQUFVLCtDQUNWLGdCQUFnQiwrRkFDaEIsNEJBQTRCOzsyRkFhdkIseUJBQXlCO2tCQW5CckMsU0FBUztpQ0FDTSxJQUFJLFdBQ1A7d0JBQ0wsaUJBQWlCO3dCQUNqQixVQUFVO3dCQUNWLGdCQUFnQjt3QkFDaEIsNEJBQTRCO3FCQUMvQixZQUNTLFNBQVMsbUJBRUYsdUJBQXVCLENBQUMsTUFBTSxhQUNwQzt3QkFDUCxVQUFVO3dCQUNWOzRCQUNJLE9BQU8sRUFBRSxrQkFBa0I7NEJBQzNCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLDBCQUEwQixDQUFDO3lCQUMzRDtxQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gICAgQ29tcG9uZW50LFxuICAgIGZvcndhcmRSZWYsXG4gICAgaW5qZWN0LFxuICAgIGlucHV0XG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgICBDTEFTU0VTLFxuICAgIEtDX0NPTlRFWFQsXG4gICAgVVNFX0RFRkFVTFRfQ1NTXG59IGZyb20gJ0BrZXljbG9ha2lmeS9hbmd1bGFyL2xpYi9wdWJsaWMtYXBpJztcbmltcG9ydCB7IFNjcmlwdCB9IGZyb20gJ0BrZXljbG9ha2lmeS9hbmd1bGFyL2xpYi9tb2RlbHMnO1xuaW1wb3J0IHsgQ2xhc3NLZXkgfSBmcm9tICdrZXljbG9ha2lmeS9sb2dpbi9saWIva2NDbHN4JztcbmltcG9ydCB7IEtjQ29udGV4dCB9IGZyb20gJ2tleWNsb2FraWZ5L2xvZ2luL0tjQ29udGV4dCc7XG5pbXBvcnQgeyBDb21wb25lbnRSZWZlcmVuY2UgfSBmcm9tICdAa2V5Y2xvYWtpZnkvYW5ndWxhci9sb2dpbi9jbGFzc2VzL2NvbXBvbmVudC1yZWZlcmVuY2UuY2xhc3MnO1xuaW1wb3J0IHsgTG9nb3V0T3RoZXJTZXNzaW9uc0NvbXBvbmVudCB9IGZyb20gJ0BrZXljbG9ha2lmeS9hbmd1bGFyL2xvZ2luL2NvbXBvbmVudHMvbG9nb3V0LW90aGVyLXNlc3Npb25zL2xvZ291dC1vdGhlci1zZXNzaW9ucy5jb21wb25lbnQnO1xuaW1wb3J0IHsgVGVtcGxhdGVDb21wb25lbnQgfSBmcm9tICdAa2V5Y2xvYWtpZnkvYW5ndWxhci9sb2dpbi9jb250YWluZXJzL3RlbXBsYXRlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBLY0NsYXNzRGlyZWN0aXZlIH0gZnJvbSAnQGtleWNsb2FraWZ5L2FuZ3VsYXIvbG9naW4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBNc2dTdHJQaXBlIH0gZnJvbSAnQGtleWNsb2FraWZ5L2FuZ3VsYXIvbG9naW4vcGlwZXMvbXNnLXN0ci5waXBlJztcbmltcG9ydCB7IExvZ2luUmVzb3VyY2VJbmplY3RvclNlcnZpY2UgfSBmcm9tICdAa2V5Y2xvYWtpZnkvYW5ndWxhci9sb2dpbi9zZXJ2aWNlcyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgaW1wb3J0czogW1xuICAgICAgICBUZW1wbGF0ZUNvbXBvbmVudCxcbiAgICAgICAgTXNnU3RyUGlwZSxcbiAgICAgICAgS2NDbGFzc0RpcmVjdGl2ZSxcbiAgICAgICAgTG9nb3V0T3RoZXJTZXNzaW9uc0NvbXBvbmVudFxuICAgIF0sXG4gICAgc2VsZWN0b3I6ICdrYy1yb290JyxcbiAgICB0ZW1wbGF0ZVVybDogJ3dlYmF1dGhuLXJlZ2lzdGVyLmNvbXBvbmVudC5odG1sJyxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAgTXNnU3RyUGlwZSxcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogQ29tcG9uZW50UmVmZXJlbmNlLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gV2ViYXV0aG5SZWdpc3RlckNvbXBvbmVudClcbiAgICAgICAgfVxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgV2ViYXV0aG5SZWdpc3RlckNvbXBvbmVudCBleHRlbmRzIENvbXBvbmVudFJlZmVyZW5jZSB7XG4gICAga2NDb250ZXh0ID1cbiAgICAgICAgaW5qZWN0PEV4dHJhY3Q8S2NDb250ZXh0LCB7IHBhZ2VJZDogJ3dlYmF1dGhuLXJlZ2lzdGVyLmZ0bCcgfT4+KEtDX0NPTlRFWFQpO1xuICAgIGxvZ2luUmVzb3VyY2VJbmplY3RvclNlcnZpY2UgPSBpbmplY3QoTG9naW5SZXNvdXJjZUluamVjdG9yU2VydmljZSk7XG4gICAgbXNnU3RyID0gaW5qZWN0KE1zZ1N0clBpcGUpO1xuICAgIG92ZXJyaWRlIGRvVXNlRGVmYXVsdENzcyA9IGluamVjdDxib29sZWFuPihVU0VfREVGQVVMVF9DU1MpO1xuICAgIG92ZXJyaWRlIGNsYXNzZXMgPSBpbmplY3Q8UGFydGlhbDxSZWNvcmQ8Q2xhc3NLZXksIHN0cmluZz4+PihDTEFTU0VTKTtcbiAgICBkaXNwbGF5UmVxdWlyZWRGaWVsZHMgPSBpbnB1dChmYWxzZSk7XG4gICAgZG9jdW1lbnRUaXRsZSA9IGlucHV0PHN0cmluZz4oKTtcbiAgICBib2R5Q2xhc3NOYW1lID0gaW5wdXQ8c3RyaW5nPigpO1xuICAgIGRpc3BsYXlJbmZvOiBib29sZWFuID0gZmFsc2U7XG4gICAgZGlzcGxheU1lc3NhZ2U6IGJvb2xlYW4gPSB0cnVlO1xuXG4gICAgYXV0aEJ1dHRvbklkID0gJ2F1dGhlbnRpY2F0ZVdlYkF1dGhuQnV0dG9uJztcblxuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlcigpO1xuICAgICAgICBjb25zdCB7XG4gICAgICAgICAgICB1cmwsXG4gICAgICAgICAgICBjaGFsbGVuZ2UsXG4gICAgICAgICAgICB1c2VyaWQsXG4gICAgICAgICAgICB1c2VybmFtZSxcbiAgICAgICAgICAgIHNpZ25hdHVyZUFsZ29yaXRobXMsXG4gICAgICAgICAgICBycEVudGl0eU5hbWUsXG4gICAgICAgICAgICBycElkLFxuICAgICAgICAgICAgYXR0ZXN0YXRpb25Db252ZXlhbmNlUHJlZmVyZW5jZSxcbiAgICAgICAgICAgIGF1dGhlbnRpY2F0b3JBdHRhY2htZW50LFxuICAgICAgICAgICAgcmVxdWlyZVJlc2lkZW50S2V5LFxuICAgICAgICAgICAgdXNlclZlcmlmaWNhdGlvblJlcXVpcmVtZW50LFxuICAgICAgICAgICAgY3JlYXRlVGltZW91dCxcbiAgICAgICAgICAgIGV4Y2x1ZGVDcmVkZW50aWFsSWRzXG4gICAgICAgIH0gPSB0aGlzLmtjQ29udGV4dDtcbiAgICAgICAgY29uc3Qgc2NyaXB0czogU2NyaXB0W10gPSBbXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgdHlwZTogJ21vZHVsZScsXG4gICAgICAgICAgICAgICAgaWQ6ICdXZWJBdXRoblJlZ2lzdGVyU2NyaXB0JyxcbiAgICAgICAgICAgICAgICB0ZXh0Q29udGVudDogYFxuICAgICAgICAgICAgICBpbXBvcnQgeyByZWdpc3RlckJ5V2ViQXV0aG4gfSBmcm9tIFwiJHt1cmwucmVzb3VyY2VzUGF0aH0vanMvd2ViYXV0aG5SZWdpc3Rlci5qc1wiO1xuICAgICAgICAgICAgICBjb25zdCByZWdpc3RlckJ1dHRvbiA9IGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKCcke3RoaXMuYXV0aEJ1dHRvbklkfScpO1xuICAgICAgICAgICAgICByZWdpc3RlckJ1dHRvbi5hZGRFdmVudExpc3RlbmVyKFwiY2xpY2tcIiwgZnVuY3Rpb24oKSB7XG4gICAgICAgICAgICAgICAgICBjb25zdCBpbnB1dCA9IHtcbiAgICAgICAgICAgICAgICAgICAgICBjaGFsbGVuZ2UgOiAnJHtjaGFsbGVuZ2V9JyxcbiAgICAgICAgICAgICAgICAgICAgICB1c2VyaWQgOiAnJHt1c2VyaWR9JyxcbiAgICAgICAgICAgICAgICAgICAgICB1c2VybmFtZSA6ICcke3VzZXJuYW1lfScsXG4gICAgICAgICAgICAgICAgICAgICAgc2lnbmF0dXJlQWxnb3JpdGhtcyA6ICR7SlNPTi5zdHJpbmdpZnkoc2lnbmF0dXJlQWxnb3JpdGhtcyl9LFxuICAgICAgICAgICAgICAgICAgICAgIHJwRW50aXR5TmFtZSA6ICR7SlNPTi5zdHJpbmdpZnkocnBFbnRpdHlOYW1lKX0sXG4gICAgICAgICAgICAgICAgICAgICAgcnBJZCA6ICR7SlNPTi5zdHJpbmdpZnkocnBJZCl9LFxuICAgICAgICAgICAgICAgICAgICAgIGF0dGVzdGF0aW9uQ29udmV5YW5jZVByZWZlcmVuY2UgOiAke0pTT04uc3RyaW5naWZ5KGF0dGVzdGF0aW9uQ29udmV5YW5jZVByZWZlcmVuY2UpfSxcbiAgICAgICAgICAgICAgICAgICAgICBhdXRoZW50aWNhdG9yQXR0YWNobWVudCA6ICR7SlNPTi5zdHJpbmdpZnkoYXV0aGVudGljYXRvckF0dGFjaG1lbnQpfSxcbiAgICAgICAgICAgICAgICAgICAgICByZXF1aXJlUmVzaWRlbnRLZXkgOiAke0pTT04uc3RyaW5naWZ5KHJlcXVpcmVSZXNpZGVudEtleSl9LFxuICAgICAgICAgICAgICAgICAgICAgIHVzZXJWZXJpZmljYXRpb25SZXF1aXJlbWVudCA6ICR7SlNPTi5zdHJpbmdpZnkodXNlclZlcmlmaWNhdGlvblJlcXVpcmVtZW50KX0sXG4gICAgICAgICAgICAgICAgICAgICAgY3JlYXRlVGltZW91dCA6ICR7Y3JlYXRlVGltZW91dH0sXG4gICAgICAgICAgICAgICAgICAgICAgZXhjbHVkZUNyZWRlbnRpYWxJZHMgOiAke0pTT04uc3RyaW5naWZ5KGV4Y2x1ZGVDcmVkZW50aWFsSWRzKX0sXG4gICAgICAgICAgICAgICAgICAgICAgaW5pdExhYmVsIDogJHtKU09OLnN0cmluZ2lmeSh0aGlzLm1zZ1N0ci50cmFuc2Zvcm0oJ3dlYmF1dGhuLXJlZ2lzdHJhdGlvbi1pbml0LWxhYmVsJykpfSxcbiAgICAgICAgICAgICAgICAgICAgICBpbml0TGFiZWxQcm9tcHQgOiAke0pTT04uc3RyaW5naWZ5KHRoaXMubXNnU3RyLnRyYW5zZm9ybSgnd2ViYXV0aG4tcmVnaXN0cmF0aW9uLWluaXQtbGFiZWwtcHJvbXB0JykpfSxcbiAgICAgICAgICAgICAgICAgICAgICBlcnJtc2cgOiAke0pTT04uc3RyaW5naWZ5KHRoaXMubXNnU3RyLnRyYW5zZm9ybSgnd2ViYXV0aG4tdW5zdXBwb3J0ZWQtYnJvd3Nlci10ZXh0JykpfVxuICAgICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICAgIHJlZ2lzdGVyQnlXZWJBdXRobihpbnB1dCk7XG4gICAgICAgICAgICAgIH0pO1xuICAgICAgICAgIGBcbiAgICAgICAgICAgIH1cbiAgICAgICAgXTtcbiAgICAgICAgdGhpcy5sb2dpblJlc291cmNlSW5qZWN0b3JTZXJ2aWNlLmluc2VydEFkZGl0aW9uYWxTY3JpcHRzKHNjcmlwdHMpO1xuICAgIH1cbn1cbiIsIkBsZXQgdXJsID0ga2NDb250ZXh0LnVybDtcbkBsZXQgaXNTZXRSZXRyeSA9IGtjQ29udGV4dC5pc1NldFJldHJ5O1xuQGxldCBpc0FwcEluaXRpYXRlZEFjdGlvbiA9IGtjQ29udGV4dC5pc0FwcEluaXRpYXRlZEFjdGlvbjtcblxuPGtjLWxvZ2luLXRlbXBsYXRlXG4gIFtkaXNwbGF5SW5mb109XCJkaXNwbGF5SW5mb1wiXG4gIFtib2R5Q2xhc3NOYW1lXT1cImJvZHlDbGFzc05hbWUoKVwiXG4gIFtkaXNwbGF5TWVzc2FnZV09XCJkaXNwbGF5TWVzc2FnZVwiXG4gIFtkaXNwbGF5UmVxdWlyZWRGaWVsZHNdPVwiZGlzcGxheVJlcXVpcmVkRmllbGRzKClcIlxuICBbZG9jdW1lbnRUaXRsZV09XCJkb2N1bWVudFRpdGxlKClcIlxuPlxuICA8bmctY29udGFpbmVyIGhlYWRlck5vZGU+XG4gICAgPHNwYW4gW2tjQ2xhc3NdPVwiJ2tjV2ViQXV0aG5LZXlJY29uJ1wiPjwvc3Bhbj5cbiAgICB7eyAnd2ViYXV0aG4tcmVnaXN0cmF0aW9uLXRpdGxlJyB8IG1zZ1N0ciB9fVxuICA8L25nLWNvbnRhaW5lcj5cbiAgPG5nLWNvbnRhaW5lciBjb250ZW50PlxuICAgIDxmb3JtXG4gICAgICBpZD1cInJlZ2lzdGVyXCJcbiAgICAgIFtrY0NsYXNzXT1cIidrY0Zvcm1DbGFzcydcIlxuICAgICAgW2FjdGlvbl09XCJ1cmwubG9naW5BY3Rpb25cIlxuICAgICAgbWV0aG9kPVwicG9zdFwiXG4gICAgPlxuICAgICAgPGRpdiBba2NDbGFzc109XCIna2NGb3JtR3JvdXBDbGFzcydcIj5cbiAgICAgICAgPGlucHV0XG4gICAgICAgICAgdHlwZT1cImhpZGRlblwiXG4gICAgICAgICAgaWQ9XCJjbGllbnREYXRhSlNPTlwiXG4gICAgICAgICAgbmFtZT1cImNsaWVudERhdGFKU09OXCJcbiAgICAgICAgLz5cbiAgICAgICAgPGlucHV0XG4gICAgICAgICAgdHlwZT1cImhpZGRlblwiXG4gICAgICAgICAgaWQ9XCJhdHRlc3RhdGlvbk9iamVjdFwiXG4gICAgICAgICAgbmFtZT1cImF0dGVzdGF0aW9uT2JqZWN0XCJcbiAgICAgICAgLz5cbiAgICAgICAgPGlucHV0XG4gICAgICAgICAgdHlwZT1cImhpZGRlblwiXG4gICAgICAgICAgaWQ9XCJwdWJsaWNLZXlDcmVkZW50aWFsSWRcIlxuICAgICAgICAgIG5hbWU9XCJwdWJsaWNLZXlDcmVkZW50aWFsSWRcIlxuICAgICAgICAvPlxuICAgICAgICA8aW5wdXRcbiAgICAgICAgICB0eXBlPVwiaGlkZGVuXCJcbiAgICAgICAgICBpZD1cImF1dGhlbnRpY2F0b3JMYWJlbFwiXG4gICAgICAgICAgbmFtZT1cImF1dGhlbnRpY2F0b3JMYWJlbFwiXG4gICAgICAgIC8+XG4gICAgICAgIDxpbnB1dFxuICAgICAgICAgIHR5cGU9XCJoaWRkZW5cIlxuICAgICAgICAgIGlkPVwidHJhbnNwb3J0c1wiXG4gICAgICAgICAgbmFtZT1cInRyYW5zcG9ydHNcIlxuICAgICAgICAvPlxuICAgICAgICA8aW5wdXRcbiAgICAgICAgICB0eXBlPVwiaGlkZGVuXCJcbiAgICAgICAgICBpZD1cImVycm9yXCJcbiAgICAgICAgICBuYW1lPVwiZXJyb3JcIlxuICAgICAgICAvPlxuICAgICAgICA8a2MtbG9nb3V0LW90aGVyLXNlc3Npb25zIC8+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Zvcm0+XG4gICAgPGlucHV0XG4gICAgICB0eXBlPVwic3VibWl0XCJcbiAgICAgIFtrY0NsYXNzXT1cIlsna2NCdXR0b25DbGFzcycsICdrY0J1dHRvblByaW1hcnlDbGFzcycsICdrY0J1dHRvbkJsb2NrQ2xhc3MnLCAna2NCdXR0b25MYXJnZUNsYXNzJ11cIlxuICAgICAgW2lkXT1cImF1dGhCdXR0b25JZFwiXG4gICAgICBbdmFsdWVdPVwiJ2RvUmVnaXN0ZXJTZWN1cml0eUtleScgfCBtc2dTdHJcIlxuICAgIC8+XG4gICAgQGlmICghaXNTZXRSZXRyeSAmJiBpc0FwcEluaXRpYXRlZEFjdGlvbikge1xuICAgICAgPGZvcm1cbiAgICAgICAgW2FjdGlvbl09XCJ1cmwubG9naW5BY3Rpb25cIlxuICAgICAgICBba2NDbGFzc109XCIna2NGb3JtQ2xhc3MnXCJcbiAgICAgICAgaWQ9XCJrYy13ZWJhdXRobi1zZXR0aW5ncy1mb3JtXCJcbiAgICAgICAgbWV0aG9kPVwicG9zdFwiXG4gICAgICA+XG4gICAgICAgIDxidXR0b25cbiAgICAgICAgICB0eXBlPVwic3VibWl0XCJcbiAgICAgICAgICBba2NDbGFzc109XCJbJ2tjQnV0dG9uQ2xhc3MnLCAna2NCdXR0b25EZWZhdWx0Q2xhc3MnLCAna2NCdXR0b25CbG9ja0NsYXNzJywgJ2tjQnV0dG9uTGFyZ2VDbGFzcyddXCJcbiAgICAgICAgICBpZD1cImNhbmNlbFdlYkF1dGhuQUlBXCJcbiAgICAgICAgICBuYW1lPVwiY2FuY2VsLWFpYVwiXG4gICAgICAgICAgdmFsdWU9XCJ0cnVlXCJcbiAgICAgICAgPlxuICAgICAgICAgIHt7ICdkb0NhbmNlbCcgfCBtc2dTdHIgfX1cbiAgICAgICAgPC9idXR0b24+XG4gICAgICA8L2Zvcm0+XG4gICAgfVxuICA8L25nLWNvbnRhaW5lcj5cbjwva2MtbG9naW4tdGVtcGxhdGU+XG4iXX0=
@@ -1,8 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class AdvancedMsgStrPipe implements PipeTransform {
4
- #private;
5
- transform(value: string, ...args: (string | undefined)[]): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AdvancedMsgStrPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<AdvancedMsgStrPipe, "advancedMsgStr", true>;
8
- }
@@ -1,19 +0,0 @@
1
- import { inject, Pipe } from '@angular/core';
2
- import { I18N } from '../../lib/public-api';
3
- import * as i0 from "@angular/core";
4
- export class AdvancedMsgStrPipe {
5
- #i18n = inject(I18N);
6
- transform(value, ...args) {
7
- return this.#i18n.advancedMsgStr(value, ...args);
8
- }
9
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AdvancedMsgStrPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
10
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: AdvancedMsgStrPipe, isStandalone: true, name: "advancedMsgStr" }); }
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AdvancedMsgStrPipe, decorators: [{
13
- type: Pipe,
14
- args: [{
15
- name: 'advancedMsgStr',
16
- standalone: true
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWR2YW5jZWQtbXNnLXN0ci5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbG9naW4vcGlwZXMvYWR2YW5jZWQtbXNnLXN0ci5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUM1RCxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0scUNBQXFDLENBQUM7O0FBTTNELE1BQU0sT0FBTyxrQkFBa0I7SUFDbEIsS0FBSyxHQUFHLE1BQU0sQ0FBTyxJQUFJLENBQUMsQ0FBQztJQUNwQyxTQUFTLENBQUMsS0FBYSxFQUFFLEdBQUcsSUFBNEI7UUFDcEQsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsQ0FBQyxLQUFLLEVBQUUsR0FBRyxJQUFJLENBQUMsQ0FBQztJQUNyRCxDQUFDOzhHQUpRLGtCQUFrQjs0R0FBbEIsa0JBQWtCOzsyRkFBbEIsa0JBQWtCO2tCQUo5QixJQUFJO21CQUFDO29CQUNGLElBQUksRUFBRSxnQkFBZ0I7b0JBQ3RCLFVBQVUsRUFBRSxJQUFJO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGluamVjdCwgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSTE4TiB9IGZyb20gJ0BrZXljbG9ha2lmeS9hbmd1bGFyL2xpYi9wdWJsaWMtYXBpJztcbmltcG9ydCB7IEkxOG4gfSBmcm9tICcuLi9pMThuJztcbkBQaXBlKHtcbiAgICBuYW1lOiAnYWR2YW5jZWRNc2dTdHInLFxuICAgIHN0YW5kYWxvbmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgQWR2YW5jZWRNc2dTdHJQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gICAgcmVhZG9ubHkgI2kxOG4gPSBpbmplY3Q8STE4bj4oSTE4Tik7XG4gICAgdHJhbnNmb3JtKHZhbHVlOiBzdHJpbmcsIC4uLmFyZ3M6IChzdHJpbmcgfCB1bmRlZmluZWQpW10pOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy4jaTE4bi5hZHZhbmNlZE1zZ1N0cih2YWx1ZSwgLi4uYXJncyk7XG4gICAgfVxufVxuIl19
@@ -1,6 +0,0 @@
1
- export * from './advanced-msg-str.pipe';
2
- export * from './input-type.pipe';
3
- export * from './kc-sanitize.pipe';
4
- export * from './msg-str.pipe';
5
- export * from './to-array.pipe';
6
- export * from './to-number.pipe';
@@ -1,7 +0,0 @@
1
- export * from './advanced-msg-str.pipe';
2
- export * from './input-type.pipe';
3
- export * from './kc-sanitize.pipe';
4
- export * from './msg-str.pipe';
5
- export * from './to-array.pipe';
6
- export * from './to-number.pipe';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZXljbG9ha2lmeS1hbmd1bGFyL3NyYy9sb2dpbi9waXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxrQkFBa0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWR2YW5jZWQtbXNnLXN0ci5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQtdHlwZS5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4va2Mtc2FuaXRpemUucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL21zZy1zdHIucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL3RvLWFycmF5LnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi90by1udW1iZXIucGlwZSc7XG4iXX0=
@@ -1,20 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class InputTypePipe {
4
- transform(inputType) {
5
- if (inputType?.startsWith('html5-')) {
6
- return inputType.slice(6);
7
- }
8
- return inputType ?? 'text';
9
- }
10
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
11
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: InputTypePipe, isStandalone: true, name: "inputType" }); }
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputTypePipe, decorators: [{
14
- type: Pipe,
15
- args: [{
16
- name: 'inputType',
17
- standalone: true
18
- }]
19
- }] });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtdHlwZS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbG9naW4vcGlwZXMvaW5wdXQtdHlwZS5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDOztBQU1wRCxNQUFNLE9BQU8sYUFBYTtJQUN0QixTQUFTLENBQUMsU0FBa0I7UUFDeEIsSUFBSSxTQUFTLEVBQUUsVUFBVSxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUM7WUFDbEMsT0FBTyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzlCLENBQUM7UUFFRCxPQUFPLFNBQVMsSUFBSSxNQUFNLENBQUM7SUFDL0IsQ0FBQzs4R0FQUSxhQUFhOzRHQUFiLGFBQWE7OzJGQUFiLGFBQWE7a0JBSnpCLElBQUk7bUJBQUM7b0JBQ0YsSUFBSSxFQUFFLFdBQVc7b0JBQ2pCLFVBQVUsRUFBRSxJQUFJO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBpcGUsIFBpcGVUcmFuc2Zvcm0gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQFBpcGUoe1xuICAgIG5hbWU6ICdpbnB1dFR5cGUnLFxuICAgIHN0YW5kYWxvbmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgSW5wdXRUeXBlUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybShpbnB1dFR5cGU/OiBzdHJpbmcpOiBzdHJpbmcge1xuICAgICAgICBpZiAoaW5wdXRUeXBlPy5zdGFydHNXaXRoKCdodG1sNS0nKSkge1xuICAgICAgICAgICAgcmV0dXJuIGlucHV0VHlwZS5zbGljZSg2KTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBpbnB1dFR5cGUgPz8gJ3RleHQnO1xuICAgIH1cbn1cbiJdfQ==
@@ -1,34 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/platform-browser";
4
- export class KcSanitizePipe {
5
- constructor(sanitizer) {
6
- this.sanitizer = sanitizer;
7
- }
8
- // TODO: Fix typing
9
- transform(
10
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
11
- value, type) {
12
- switch (type) {
13
- case 'html':
14
- return this.sanitizer.bypassSecurityTrustHtml(value);
15
- case 'style':
16
- return this.sanitizer.bypassSecurityTrustStyle(value);
17
- case 'script':
18
- return this.sanitizer.bypassSecurityTrustScript(value);
19
- case 'url':
20
- return this.sanitizer.bypassSecurityTrustUrl(value);
21
- case 'resourceUrl':
22
- return this.sanitizer.bypassSecurityTrustResourceUrl(value);
23
- default:
24
- throw new Error(`Invalid safe type specified: ${type}`);
25
- }
26
- }
27
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KcSanitizePipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
28
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KcSanitizePipe, isStandalone: true, name: "kcSanitize" }); }
29
- }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KcSanitizePipe, decorators: [{
31
- type: Pipe,
32
- args: [{ name: 'kcSanitize', standalone: true }]
33
- }], ctorParameters: () => [{ type: i1.DomSanitizer }] });
34
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2Mtc2FuaXRpemUucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tleWNsb2FraWZ5LWFuZ3VsYXIvc3JjL2xvZ2luL3BpcGVzL2tjLXNhbml0aXplLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7OztBQVdwRCxNQUFNLE9BQU8sY0FBYztJQUN2QixZQUFvQixTQUF1QjtRQUF2QixjQUFTLEdBQVQsU0FBUyxDQUFjO0lBQUcsQ0FBQztJQUMvQyxtQkFBbUI7SUFFbkIsU0FBUztJQUNMLDhEQUE4RDtJQUM5RCxLQUFVLEVBQ1YsSUFBWTtRQUVaLFFBQVEsSUFBSSxFQUFFLENBQUM7WUFDWCxLQUFLLE1BQU07Z0JBQ1AsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLHVCQUF1QixDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ3pELEtBQUssT0FBTztnQkFDUixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsd0JBQXdCLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDMUQsS0FBSyxRQUFRO2dCQUNULE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQyx5QkFBeUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUMzRCxLQUFLLEtBQUs7Z0JBQ04sT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLHNCQUFzQixDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ3hELEtBQUssYUFBYTtnQkFDZCxPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsOEJBQThCLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDaEU7Z0JBQ0ksTUFBTSxJQUFJLEtBQUssQ0FBQyxnQ0FBZ0MsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUNoRSxDQUFDO0lBQ0wsQ0FBQzs4R0F2QlEsY0FBYzs0R0FBZCxjQUFjOzsyRkFBZCxjQUFjO2tCQUQxQixJQUFJO21CQUFDLEVBQUUsSUFBSSxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgICBEb21TYW5pdGl6ZXIsXG4gICAgU2FmZUh0bWwsXG4gICAgU2FmZVJlc291cmNlVXJsLFxuICAgIFNhZmVTY3JpcHQsXG4gICAgU2FmZVN0eWxlLFxuICAgIFNhZmVVcmxcbn0gZnJvbSAnQGFuZ3VsYXIvcGxhdGZvcm0tYnJvd3Nlcic7XG5cbkBQaXBlKHsgbmFtZTogJ2tjU2FuaXRpemUnLCBzdGFuZGFsb25lOiB0cnVlIH0pXG5leHBvcnQgY2xhc3MgS2NTYW5pdGl6ZVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIHNhbml0aXplcjogRG9tU2FuaXRpemVyKSB7fVxuICAgIC8vIFRPRE86IEZpeCB0eXBpbmdcblxuICAgIHRyYW5zZm9ybShcbiAgICAgICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uby1leHBsaWNpdC1hbnlcbiAgICAgICAgdmFsdWU6IGFueSxcbiAgICAgICAgdHlwZTogc3RyaW5nXG4gICAgKTogU2FmZUh0bWwgfCBTYWZlU3R5bGUgfCBTYWZlU2NyaXB0IHwgU2FmZVVybCB8IFNhZmVSZXNvdXJjZVVybCB7XG4gICAgICAgIHN3aXRjaCAodHlwZSkge1xuICAgICAgICAgICAgY2FzZSAnaHRtbCc6XG4gICAgICAgICAgICAgICAgcmV0dXJuIHRoaXMuc2FuaXRpemVyLmJ5cGFzc1NlY3VyaXR5VHJ1c3RIdG1sKHZhbHVlKTtcbiAgICAgICAgICAgIGNhc2UgJ3N0eWxlJzpcbiAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5zYW5pdGl6ZXIuYnlwYXNzU2VjdXJpdHlUcnVzdFN0eWxlKHZhbHVlKTtcbiAgICAgICAgICAgIGNhc2UgJ3NjcmlwdCc6XG4gICAgICAgICAgICAgICAgcmV0dXJuIHRoaXMuc2FuaXRpemVyLmJ5cGFzc1NlY3VyaXR5VHJ1c3RTY3JpcHQodmFsdWUpO1xuICAgICAgICAgICAgY2FzZSAndXJsJzpcbiAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5zYW5pdGl6ZXIuYnlwYXNzU2VjdXJpdHlUcnVzdFVybCh2YWx1ZSk7XG4gICAgICAgICAgICBjYXNlICdyZXNvdXJjZVVybCc6XG4gICAgICAgICAgICAgICAgcmV0dXJuIHRoaXMuc2FuaXRpemVyLmJ5cGFzc1NlY3VyaXR5VHJ1c3RSZXNvdXJjZVVybCh2YWx1ZSk7XG4gICAgICAgICAgICBkZWZhdWx0OlxuICAgICAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgSW52YWxpZCBzYWZlIHR5cGUgc3BlY2lmaWVkOiAke3R5cGV9YCk7XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
@@ -1,9 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { MessageKey } from 'keycloakify/login/i18n/messages_defaultSet/types';
3
- import * as i0 from "@angular/core";
4
- export declare class MsgStrPipe implements PipeTransform {
5
- #private;
6
- transform(value: MessageKey, ...args: (string | undefined)[]): string;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<MsgStrPipe, never>;
8
- static ɵpipe: i0.ɵɵPipeDeclaration<MsgStrPipe, "msgStr", true>;
9
- }
@@ -1,19 +0,0 @@
1
- import { inject, Pipe } from '@angular/core';
2
- import { I18N } from '../../lib/public-api';
3
- import * as i0 from "@angular/core";
4
- export class MsgStrPipe {
5
- #i18n = inject(I18N);
6
- transform(value, ...args) {
7
- return this.#i18n.msgStr(value, ...args);
8
- }
9
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: MsgStrPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
10
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: MsgStrPipe, isStandalone: true, name: "msgStr" }); }
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: MsgStrPipe, decorators: [{
13
- type: Pipe,
14
- args: [{
15
- name: 'msgStr',
16
- standalone: true
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXNnLXN0ci5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbG9naW4vcGlwZXMvbXNnLXN0ci5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUM1RCxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0scUNBQXFDLENBQUM7O0FBTzNELE1BQU0sT0FBTyxVQUFVO0lBQ1YsS0FBSyxHQUFHLE1BQU0sQ0FBTyxJQUFJLENBQUMsQ0FBQztJQUNwQyxTQUFTLENBQUMsS0FBaUIsRUFBRSxHQUFHLElBQTRCO1FBQ3hELE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLEdBQUcsSUFBSSxDQUFDLENBQUM7SUFDN0MsQ0FBQzs4R0FKUSxVQUFVOzRHQUFWLFVBQVU7OzJGQUFWLFVBQVU7a0JBSnRCLElBQUk7bUJBQUM7b0JBQ0YsSUFBSSxFQUFFLFFBQVE7b0JBQ2QsVUFBVSxFQUFFLElBQUk7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgaW5qZWN0LCBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJMThOIH0gZnJvbSAnQGtleWNsb2FraWZ5L2FuZ3VsYXIvbGliL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgSTE4biB9IGZyb20gJy4uL2kxOG4nO1xuaW1wb3J0IHsgTWVzc2FnZUtleSB9IGZyb20gJ2tleWNsb2FraWZ5L2xvZ2luL2kxOG4vbWVzc2FnZXNfZGVmYXVsdFNldC90eXBlcyc7XG5AUGlwZSh7XG4gICAgbmFtZTogJ21zZ1N0cicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBNc2dTdHJQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gICAgcmVhZG9ubHkgI2kxOG4gPSBpbmplY3Q8STE4bj4oSTE4Tik7XG4gICAgdHJhbnNmb3JtKHZhbHVlOiBNZXNzYWdlS2V5LCAuLi5hcmdzOiAoc3RyaW5nIHwgdW5kZWZpbmVkKVtdKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuI2kxOG4ubXNnU3RyKHZhbHVlLCAuLi5hcmdzKTtcbiAgICB9XG59XG4iXX0=
@@ -1,21 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class ToArrayPipe {
4
- transform(value, emptyWhenString = false) {
5
- // if (!value) throw new Error('must pass a value');
6
- if (value instanceof Array) {
7
- return value;
8
- }
9
- return emptyWhenString ? [] : [value];
10
- }
11
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
12
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
13
- }
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ToArrayPipe, decorators: [{
15
- type: Pipe,
16
- args: [{
17
- name: 'toArray',
18
- standalone: true
19
- }]
20
- }] });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG8tYXJyYXkucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tleWNsb2FraWZ5LWFuZ3VsYXIvc3JjL2xvZ2luL3BpcGVzL3RvLWFycmF5LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBTXBELE1BQU0sT0FBTyxXQUFXO0lBQ3BCLFNBQVMsQ0FBQyxLQUF3QixFQUFFLGVBQWUsR0FBRyxLQUFLO1FBQ3ZELG9EQUFvRDtRQUNwRCxJQUFJLEtBQUssWUFBWSxLQUFLLEVBQUUsQ0FBQztZQUN6QixPQUFPLEtBQUssQ0FBQztRQUNqQixDQUFDO1FBQ0QsT0FBTyxlQUFlLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxQyxDQUFDOzhHQVBRLFdBQVc7NEdBQVgsV0FBVzs7MkZBQVgsV0FBVztrQkFKdkIsSUFBSTttQkFBQztvQkFDRixJQUFJLEVBQUUsU0FBUztvQkFDZixVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBQaXBlKHtcbiAgICBuYW1lOiAndG9BcnJheScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBUb0FycmF5UGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybSh2YWx1ZTogc3RyaW5nIHwgc3RyaW5nW10sIGVtcHR5V2hlblN0cmluZyA9IGZhbHNlKTogc3RyaW5nW10ge1xuICAgICAgICAvLyBpZiAoIXZhbHVlKSB0aHJvdyBuZXcgRXJyb3IoJ211c3QgcGFzcyBhIHZhbHVlJyk7XG4gICAgICAgIGlmICh2YWx1ZSBpbnN0YW5jZW9mIEFycmF5KSB7XG4gICAgICAgICAgICByZXR1cm4gdmFsdWU7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIGVtcHR5V2hlblN0cmluZyA/IFtdIDogW3ZhbHVlXTtcbiAgICB9XG59XG4iXX0=
@@ -1,20 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class ToNumberPipe {
4
- transform(value) {
5
- const number = parseInt(`${value}`);
6
- if (isNaN(number))
7
- throw new Error('number is NaN');
8
- return number;
9
- }
10
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ToNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
11
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: ToNumberPipe, isStandalone: true, name: "toNumber" }); }
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ToNumberPipe, decorators: [{
14
- type: Pipe,
15
- args: [{
16
- name: 'toNumber',
17
- standalone: true
18
- }]
19
- }] });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG8tbnVtYmVyLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZXljbG9ha2lmeS1hbmd1bGFyL3NyYy9sb2dpbi9waXBlcy90by1udW1iZXIucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQzs7QUFNcEQsTUFBTSxPQUFPLFlBQVk7SUFDckIsU0FBUyxDQUFDLEtBQXNCO1FBQzVCLE1BQU0sTUFBTSxHQUFHLFFBQVEsQ0FBQyxHQUFHLEtBQUssRUFBRSxDQUFDLENBQUM7UUFDcEMsSUFBSSxLQUFLLENBQUMsTUFBTSxDQUFDO1lBQUUsTUFBTSxJQUFJLEtBQUssQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUNwRCxPQUFPLE1BQU0sQ0FBQztJQUNsQixDQUFDOzhHQUxRLFlBQVk7NEdBQVosWUFBWTs7MkZBQVosWUFBWTtrQkFKeEIsSUFBSTttQkFBQztvQkFDRixJQUFJLEVBQUUsVUFBVTtvQkFDaEIsVUFBVSxFQUFFLElBQUk7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AUGlwZSh7XG4gICAgbmFtZTogJ3RvTnVtYmVyJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlXG59KVxuZXhwb3J0IGNsYXNzIFRvTnVtYmVyUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHRyYW5zZm9ybSh2YWx1ZTogc3RyaW5nIHwgbnVtYmVyKTogbnVtYmVyIHtcbiAgICAgICAgY29uc3QgbnVtYmVyID0gcGFyc2VJbnQoYCR7dmFsdWV9YCk7XG4gICAgICAgIGlmIChpc05hTihudW1iZXIpKSB0aHJvdyBuZXcgRXJyb3IoJ251bWJlciBpcyBOYU4nKTtcbiAgICAgICAgcmV0dXJuIG51bWJlcjtcbiAgICB9XG59XG4iXX0=
@@ -1,3 +0,0 @@
1
- export * from './login-resource-injector.service';
2
- export * from './user-profile-form.service';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZXljbG9ha2lmeS1hbmd1bGFyL3NyYy9sb2dpbi9zZXJ2aWNlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsNkJBQTZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xvZ2luLXJlc291cmNlLWluamVjdG9yLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi91c2VyLXByb2ZpbGUtZm9ybS5zZXJ2aWNlJztcbiJdfQ==
@@ -1,68 +0,0 @@
1
- import { inject, Injectable } from '@angular/core';
2
- import { KC_CONTEXT } from '../../lib/public-api';
3
- import { ResourceInjectorService } from '../../lib/public-api';
4
- import { catchError, forkJoin, of, switchMap } from 'rxjs';
5
- import * as i0 from "@angular/core";
6
- export class LoginResourceInjectorService {
7
- constructor() {
8
- this.kcContext = inject(KC_CONTEXT);
9
- this.resourceInjectorService = inject(ResourceInjectorService);
10
- }
11
- injectResource(doUseDefaultCss = true) {
12
- if (!doUseDefaultCss) {
13
- this.injectScripts();
14
- return of(true);
15
- }
16
- const stylesheets = [
17
- `${this.kcContext.url.resourcesCommonPath}/node_modules/@patternfly/patternfly/patternfly.min.css`,
18
- `${this.kcContext.url.resourcesCommonPath}/node_modules/patternfly/dist/css/patternfly.min.css`,
19
- `${this.kcContext.url.resourcesCommonPath}/node_modules/patternfly/dist/css/patternfly-additions.min.css`,
20
- `${this.kcContext.url.resourcesCommonPath}/lib/pficon/pficon.css`,
21
- `${this.kcContext.url.resourcesPath}/css/login.css`
22
- ];
23
- return forkJoin(stylesheets.map(url => this.resourceInjectorService.createLink(url))).pipe(switchMap(() => {
24
- this.injectScripts();
25
- return of(true);
26
- }), catchError(error => {
27
- console.error('Error loading styles:', error);
28
- return of(false);
29
- }));
30
- }
31
- insertAdditionalScripts(scripts) {
32
- scripts.map(script => this.resourceInjectorService.createScript(script));
33
- }
34
- injectScripts() {
35
- const scripts = [
36
- {
37
- type: 'module',
38
- id: `${this.kcContext.url.resourcesPath}/js/menu-button-links.js`,
39
- src: `${this.kcContext.url.resourcesPath}/js/menu-button-links.js`
40
- },
41
- ...this.kcContext.scripts.map(script => ({
42
- type: 'text/javascript',
43
- src: script,
44
- id: script
45
- })),
46
- {
47
- type: 'module',
48
- id: 'authenticationSession',
49
- textContent: `
50
- import { checkCookiesAndSetTimer } from "${this.kcContext.url.resourcesPath}/js/authChecker.js";
51
-
52
- checkCookiesAndSetTimer(
53
- "${this.kcContext.url.ssoLoginInOtherTabsUrl}"
54
- );`
55
- }
56
- ];
57
- this.insertAdditionalScripts(scripts);
58
- }
59
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LoginResourceInjectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
60
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LoginResourceInjectorService, providedIn: 'root' }); }
61
- }
62
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LoginResourceInjectorService, decorators: [{
63
- type: Injectable,
64
- args: [{
65
- providedIn: 'root'
66
- }]
67
- }] });
68
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4tcmVzb3VyY2UtaW5qZWN0b3Iuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tleWNsb2FraWZ5LWFuZ3VsYXIvc3JjL2xvZ2luL3NlcnZpY2VzL2xvZ2luLXJlc291cmNlLWluamVjdG9yLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE1BQU0sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbkQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBQ2pFLE9BQU8sRUFBRSx1QkFBdUIsRUFBVSxNQUFNLHFDQUFxQyxDQUFDO0FBRXRGLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLEVBQUUsRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7O0FBSzNELE1BQU0sT0FBTyw0QkFBNEI7SUFIekM7UUFJWSxjQUFTLEdBQWMsTUFBTSxDQUFZLFVBQVUsQ0FBQyxDQUFDO1FBQ3JELDRCQUF1QixHQUE0QixNQUFNLENBQzdELHVCQUF1QixDQUMxQixDQUFDO0tBMERMO0lBeERHLGNBQWMsQ0FBQyxlQUFlLEdBQUcsSUFBSTtRQUNqQyxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDbkIsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO1lBQ3JCLE9BQU8sRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ3BCLENBQUM7UUFDRCxNQUFNLFdBQVcsR0FBRztZQUNoQixHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLG1CQUFtQix5REFBeUQ7WUFDbEcsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsc0RBQXNEO1lBQy9GLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsbUJBQW1CLGdFQUFnRTtZQUN6RyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLG1CQUFtQix3QkFBd0I7WUFDakUsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxhQUFhLGdCQUFnQjtTQUN0RCxDQUFDO1FBRUYsT0FBTyxRQUFRLENBQ1gsV0FBVyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FDdkUsQ0FBQyxJQUFJLENBQ0YsU0FBUyxDQUFDLEdBQUcsRUFBRTtZQUNYLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztZQUNyQixPQUFPLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNwQixDQUFDLENBQUMsRUFDRixVQUFVLENBQUMsS0FBSyxDQUFDLEVBQUU7WUFDZixPQUFPLENBQUMsS0FBSyxDQUFDLHVCQUF1QixFQUFFLEtBQUssQ0FBQyxDQUFDO1lBQzlDLE9BQU8sRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3JCLENBQUMsQ0FBQyxDQUNMLENBQUM7SUFDTixDQUFDO0lBRUQsdUJBQXVCLENBQUMsT0FBaUI7UUFDckMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztJQUM3RSxDQUFDO0lBRU8sYUFBYTtRQUNqQixNQUFNLE9BQU8sR0FBYTtZQUN0QjtnQkFDSSxJQUFJLEVBQUUsUUFBUTtnQkFDZCxFQUFFLEVBQUUsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxhQUFhLDBCQUEwQjtnQkFDakUsR0FBRyxFQUFFLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsYUFBYSwwQkFBMEI7YUFDckU7WUFDRCxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7Z0JBQ3JDLElBQUksRUFBRSxpQkFBaUI7Z0JBQ3ZCLEdBQUcsRUFBRSxNQUFNO2dCQUNYLEVBQUUsRUFBRSxNQUFNO2FBQ2IsQ0FBQyxDQUFDO1lBQ0g7Z0JBQ0ksSUFBSSxFQUFFLFFBQVE7Z0JBQ2QsRUFBRSxFQUFFLHVCQUF1QjtnQkFDM0IsV0FBVyxFQUFFO21EQUNzQixJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxhQUFhOzs7ZUFHcEUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsc0JBQXNCO1dBQzdDO2FBQ0U7U0FDSixDQUFDO1FBQ0YsSUFBSSxDQUFDLHVCQUF1QixDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQzFDLENBQUM7OEdBN0RRLDRCQUE0QjtrSEFBNUIsNEJBQTRCLGNBRnpCLE1BQU07OzJGQUVULDRCQUE0QjtrQkFIeEMsVUFBVTttQkFBQztvQkFDUixVQUFVLEVBQUUsTUFBTTtpQkFDckIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBpbmplY3QsIEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEtDX0NPTlRFWFQgfSBmcm9tICdAa2V5Y2xvYWtpZnkvYW5ndWxhci9saWIvcHVibGljLWFwaSc7XG5pbXBvcnQgeyBSZXNvdXJjZUluamVjdG9yU2VydmljZSwgU2NyaXB0IH0gZnJvbSAnQGtleWNsb2FraWZ5L2FuZ3VsYXIvbGliL3B1YmxpYy1hcGknO1xuaW1wb3J0IHsgS2NDb250ZXh0IH0gZnJvbSAna2V5Y2xvYWtpZnkvbG9naW4vS2NDb250ZXh0JztcbmltcG9ydCB7IGNhdGNoRXJyb3IsIGZvcmtKb2luLCBvZiwgc3dpdGNoTWFwIH0gZnJvbSAncnhqcyc7XG5cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgTG9naW5SZXNvdXJjZUluamVjdG9yU2VydmljZSB7XG4gICAgcHJpdmF0ZSBrY0NvbnRleHQ6IEtjQ29udGV4dCA9IGluamVjdDxLY0NvbnRleHQ+KEtDX0NPTlRFWFQpO1xuICAgIHByaXZhdGUgcmVzb3VyY2VJbmplY3RvclNlcnZpY2U6IFJlc291cmNlSW5qZWN0b3JTZXJ2aWNlID0gaW5qZWN0KFxuICAgICAgICBSZXNvdXJjZUluamVjdG9yU2VydmljZVxuICAgICk7XG5cbiAgICBpbmplY3RSZXNvdXJjZShkb1VzZURlZmF1bHRDc3MgPSB0cnVlKSB7XG4gICAgICAgIGlmICghZG9Vc2VEZWZhdWx0Q3NzKSB7XG4gICAgICAgICAgICB0aGlzLmluamVjdFNjcmlwdHMoKTtcbiAgICAgICAgICAgIHJldHVybiBvZih0cnVlKTtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBzdHlsZXNoZWV0cyA9IFtcbiAgICAgICAgICAgIGAke3RoaXMua2NDb250ZXh0LnVybC5yZXNvdXJjZXNDb21tb25QYXRofS9ub2RlX21vZHVsZXMvQHBhdHRlcm5mbHkvcGF0dGVybmZseS9wYXR0ZXJuZmx5Lm1pbi5jc3NgLFxuICAgICAgICAgICAgYCR7dGhpcy5rY0NvbnRleHQudXJsLnJlc291cmNlc0NvbW1vblBhdGh9L25vZGVfbW9kdWxlcy9wYXR0ZXJuZmx5L2Rpc3QvY3NzL3BhdHRlcm5mbHkubWluLmNzc2AsXG4gICAgICAgICAgICBgJHt0aGlzLmtjQ29udGV4dC51cmwucmVzb3VyY2VzQ29tbW9uUGF0aH0vbm9kZV9tb2R1bGVzL3BhdHRlcm5mbHkvZGlzdC9jc3MvcGF0dGVybmZseS1hZGRpdGlvbnMubWluLmNzc2AsXG4gICAgICAgICAgICBgJHt0aGlzLmtjQ29udGV4dC51cmwucmVzb3VyY2VzQ29tbW9uUGF0aH0vbGliL3BmaWNvbi9wZmljb24uY3NzYCxcbiAgICAgICAgICAgIGAke3RoaXMua2NDb250ZXh0LnVybC5yZXNvdXJjZXNQYXRofS9jc3MvbG9naW4uY3NzYFxuICAgICAgICBdO1xuXG4gICAgICAgIHJldHVybiBmb3JrSm9pbihcbiAgICAgICAgICAgIHN0eWxlc2hlZXRzLm1hcCh1cmwgPT4gdGhpcy5yZXNvdXJjZUluamVjdG9yU2VydmljZS5jcmVhdGVMaW5rKHVybCkpXG4gICAgICAgICkucGlwZShcbiAgICAgICAgICAgIHN3aXRjaE1hcCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5pbmplY3RTY3JpcHRzKCk7XG4gICAgICAgICAgICAgICAgcmV0dXJuIG9mKHRydWUpO1xuICAgICAgICAgICAgfSksXG4gICAgICAgICAgICBjYXRjaEVycm9yKGVycm9yID0+IHtcbiAgICAgICAgICAgICAgICBjb25zb2xlLmVycm9yKCdFcnJvciBsb2FkaW5nIHN0eWxlczonLCBlcnJvcik7XG4gICAgICAgICAgICAgICAgcmV0dXJuIG9mKGZhbHNlKTtcbiAgICAgICAgICAgIH0pXG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgaW5zZXJ0QWRkaXRpb25hbFNjcmlwdHMoc2NyaXB0czogU2NyaXB0W10pIHtcbiAgICAgICAgc2NyaXB0cy5tYXAoc2NyaXB0ID0+IHRoaXMucmVzb3VyY2VJbmplY3RvclNlcnZpY2UuY3JlYXRlU2NyaXB0KHNjcmlwdCkpO1xuICAgIH1cblxuICAgIHByaXZhdGUgaW5qZWN0U2NyaXB0cygpIHtcbiAgICAgICAgY29uc3Qgc2NyaXB0czogU2NyaXB0W10gPSBbXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgdHlwZTogJ21vZHVsZScsXG4gICAgICAgICAgICAgICAgaWQ6IGAke3RoaXMua2NDb250ZXh0LnVybC5yZXNvdXJjZXNQYXRofS9qcy9tZW51LWJ1dHRvbi1saW5rcy5qc2AsXG4gICAgICAgICAgICAgICAgc3JjOiBgJHt0aGlzLmtjQ29udGV4dC51cmwucmVzb3VyY2VzUGF0aH0vanMvbWVudS1idXR0b24tbGlua3MuanNgXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgLi4udGhpcy5rY0NvbnRleHQuc2NyaXB0cy5tYXAoc2NyaXB0ID0+ICh7XG4gICAgICAgICAgICAgICAgdHlwZTogJ3RleHQvamF2YXNjcmlwdCcsXG4gICAgICAgICAgICAgICAgc3JjOiBzY3JpcHQsXG4gICAgICAgICAgICAgICAgaWQ6IHNjcmlwdFxuICAgICAgICAgICAgfSkpLFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHR5cGU6ICdtb2R1bGUnLFxuICAgICAgICAgICAgICAgIGlkOiAnYXV0aGVudGljYXRpb25TZXNzaW9uJyxcbiAgICAgICAgICAgICAgICB0ZXh0Q29udGVudDogYFxuICAgICAgICBpbXBvcnQgeyBjaGVja0Nvb2tpZXNBbmRTZXRUaW1lciB9IGZyb20gXCIke3RoaXMua2NDb250ZXh0LnVybC5yZXNvdXJjZXNQYXRofS9qcy9hdXRoQ2hlY2tlci5qc1wiO1xuICAgICAgICAgIFxuICAgICAgICBjaGVja0Nvb2tpZXNBbmRTZXRUaW1lcihcbiAgICAgICAgICAgIFwiJHt0aGlzLmtjQ29udGV4dC51cmwuc3NvTG9naW5Jbk90aGVyVGFic1VybH1cIlxuICAgICAgICApO2BcbiAgICAgICAgICAgIH1cbiAgICAgICAgXTtcbiAgICAgICAgdGhpcy5pbnNlcnRBZGRpdGlvbmFsU2NyaXB0cyhzY3JpcHRzKTtcbiAgICB9XG59XG4iXX0=