@keycloakify/angular 0.0.1-rc.13 → 0.0.1-rc.15

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 (1144) hide show
  1. package/.github/workflows/ci.yaml +111 -0
  2. package/.prettierignore +15 -0
  3. package/.prettierrc.json +26 -0
  4. package/README.md +36 -1
  5. package/angular.json +33 -0
  6. package/package.json +2 -6
  7. package/scripts/build.ts +179 -0
  8. package/scripts/tools/SemVer.ts +114 -0
  9. package/scripts/tools/crawl.ts +35 -0
  10. package/scripts/tools/fs.rmSync.ts +34 -0
  11. package/scripts/tools/getThisCodebaseRootDirPath.ts +19 -0
  12. package/scripts/tools/transformCodebase.ts +88 -0
  13. package/src/account/DefaultPage/DefaultPage.ts +61 -0
  14. package/src/account/DefaultPage/ng-package.json +6 -0
  15. package/src/account/KcContext/ng-package.json +6 -0
  16. package/src/account/classes/component-reference/ng-package.json +6 -0
  17. package/src/account/containers/template/ng-package.json +6 -0
  18. package/src/account/containers/template/template.component.ts +71 -0
  19. package/src/account/directives/kc-class/ng-package.json +6 -0
  20. package/src/account/i18n/ng-package.json +6 -0
  21. package/src/account/pages/account/account.component.ts +34 -0
  22. package/src/account/pages/account/ng-package.json +6 -0
  23. package/src/account/pages/applications/applications.component.ts +32 -0
  24. package/src/account/pages/applications/ng-package.json +6 -0
  25. package/src/account/pages/federatedIdentity/federatedIdentity.component.ts +31 -0
  26. package/src/account/pages/federatedIdentity/ng-package.json +6 -0
  27. package/src/account/pages/log/log.component.ts +31 -0
  28. package/src/account/pages/log/ng-package.json +6 -0
  29. package/src/account/pages/password/ng-package.json +6 -0
  30. package/src/account/pages/password/password.component.ts +110 -0
  31. package/src/account/pages/sessions/ng-package.json +6 -0
  32. package/src/account/pages/sessions/sessions.component.ts +31 -0
  33. package/src/account/pages/totp/ng-package.json +6 -0
  34. package/src/account/pages/totp/totp.component.ts +32 -0
  35. package/src/account/providers/keycloakify-angular/keycloakify-angular.providers.ts +64 -0
  36. package/src/account/providers/keycloakify-angular/ng-package.json +6 -0
  37. package/src/account/services/account-resource-injector/account-resource-injector.service.ts +41 -0
  38. package/src/account/services/account-resource-injector/ng-package.json +6 -0
  39. package/src/account/services/i18n/ng-package.json +6 -0
  40. package/src/account/tokens/classes/ng-package.json +6 -0
  41. package/src/account/tokens/i18n/ng-package.json +6 -0
  42. package/src/account/tokens/kc-context/kc-context.token.ts +6 -0
  43. package/src/account/tokens/kc-context/ng-package.json +6 -0
  44. package/src/lib/directives/attributes/ng-package.json +6 -0
  45. package/src/lib/models/script/ng-package.json +6 -0
  46. package/src/lib/ng-package.json +6 -0
  47. package/src/lib/pipes/input-type/ng-package.json +6 -0
  48. package/src/lib/pipes/is-array-with-empty-object/ng-package.json +6 -0
  49. package/src/lib/pipes/kc-sanitize/ng-package.json +6 -0
  50. package/src/lib/pipes/to-array/ng-package.json +6 -0
  51. package/src/lib/pipes/to-number/ng-package.json +6 -0
  52. package/src/lib/public-api.ts +1 -0
  53. package/src/lib/services/resource-injector/ng-package.json +6 -0
  54. package/src/lib/tokens/use-default-css/ng-package.json +6 -0
  55. package/src/login/DefaultPage/DefaultPage.ts +208 -0
  56. package/src/login/DefaultPage/ng-package.json +6 -0
  57. package/src/login/KcContext/ng-package.json +6 -0
  58. package/src/login/classes/component-reference/ng-package.json +6 -0
  59. package/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.ts +136 -0
  60. package/src/login/components/add-remove-buttons-multi-valued-attribute/ng-package.json +6 -0
  61. package/src/login/components/field-errors/ng-package.json +6 -0
  62. package/src/login/components/group-label/group-label.component.ts +46 -0
  63. package/src/login/components/group-label/ng-package.json +6 -0
  64. package/src/login/components/input-field-by-type/ng-package.json +6 -0
  65. package/src/login/components/input-tag/input-tag.component.ts +99 -0
  66. package/src/login/components/input-tag/ng-package.json +6 -0
  67. package/src/login/components/input-tag-selects/input-tag-selects.component.ts +139 -0
  68. package/src/login/components/input-tag-selects/ng-package.json +6 -0
  69. package/src/login/components/logout-other-sessions/logout-other-sessions.component.ts +34 -0
  70. package/src/login/components/logout-other-sessions/ng-package.json +6 -0
  71. package/src/login/components/password-wrapper/ng-package.json +6 -0
  72. package/src/login/components/password-wrapper/password-wrapper.component.ts +51 -0
  73. package/src/login/components/select-tag/ng-package.json +6 -0
  74. package/src/login/components/select-tag/select-tag.component.ts +97 -0
  75. package/src/login/components/textarea-tag/ng-package.json +6 -0
  76. package/src/login/components/user-profile-form-fields/ng-package.json +6 -0
  77. package/src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts +70 -0
  78. package/src/login/containers/template/ng-package.json +6 -0
  79. package/src/login/containers/template/template.component.ts +78 -0
  80. package/src/login/directives/kc-class/ng-package.json +6 -0
  81. package/src/login/i18n/ng-package.json +6 -0
  82. package/src/login/pages/code/code.component.ts +31 -0
  83. package/src/login/pages/code/ng-package.json +6 -0
  84. package/src/login/pages/delete-account-confirm/delete-account-confirm.component.ts +31 -0
  85. package/src/login/pages/delete-account-confirm/ng-package.json +6 -0
  86. package/src/login/pages/delete-credential/delete-credential.component.ts +36 -0
  87. package/src/login/pages/delete-credential/ng-package.json +6 -0
  88. package/src/login/pages/error/error.component.ts +31 -0
  89. package/src/login/pages/error/ng-package.json +6 -0
  90. package/src/login/pages/frontchannel-logout/frontchannel-logout.component.ts +41 -0
  91. package/src/login/pages/frontchannel-logout/ng-package.json +6 -0
  92. package/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.ts +56 -0
  93. package/src/login/pages/idp-review-user-profile/ng-package.json +6 -0
  94. package/src/login/pages/info/info.component.ts +48 -0
  95. package/src/login/pages/info/ng-package.json +6 -0
  96. package/src/login/pages/login/login.component.ts +40 -0
  97. package/src/login/pages/login/ng-package.json +6 -0
  98. package/src/login/pages/login-config-totp/login-config-totp.component.ts +38 -0
  99. package/src/login/pages/login-config-totp/ng-package.json +6 -0
  100. package/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.ts +36 -0
  101. package/src/login/pages/login-idp-link-confirm/ng-package.json +6 -0
  102. package/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.ts +36 -0
  103. package/src/login/pages/login-idp-link-confirm-override/ng-package.json +6 -0
  104. package/src/login/pages/login-idp-link-email/login-idp-link-email.component.ts +36 -0
  105. package/src/login/pages/login-idp-link-email/ng-package.json +6 -0
  106. package/src/login/pages/login-oauth-grant/login-oauth-grant.component.ts +36 -0
  107. package/src/login/pages/login-oauth-grant/ng-package.json +6 -0
  108. package/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.ts +36 -0
  109. package/src/login/pages/login-oauth2-device-verify-user-code/ng-package.json +6 -0
  110. package/src/login/pages/login-otp/login-otp.component.ts +37 -0
  111. package/src/login/pages/login-otp/ng-package.json +6 -0
  112. package/src/login/pages/login-page-expired/login-page-expired.component.ts +35 -0
  113. package/src/login/pages/login-page-expired/ng-package.json +6 -0
  114. package/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.ts +94 -0
  115. package/src/login/pages/login-passkeys-conditional-authenticate/ng-package.json +6 -0
  116. package/src/login/pages/login-password/login-password.component.ts +40 -0
  117. package/src/login/pages/login-password/ng-package.json +6 -0
  118. package/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.ts +40 -0
  119. package/src/login/pages/login-recovery-authn-code-config/ng-package.json +6 -0
  120. package/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.ts +37 -0
  121. package/src/login/pages/login-recovery-authn-code-input/ng-package.json +6 -0
  122. package/src/login/pages/login-reset-otp/login-reset-otp.component.ts +36 -0
  123. package/src/login/pages/login-reset-otp/ng-package.json +6 -0
  124. package/src/login/pages/login-reset-password/login-reset-password.component.ts +37 -0
  125. package/src/login/pages/login-reset-password/ng-package.json +6 -0
  126. package/src/login/pages/login-update-password/login-update-password.component.ts +39 -0
  127. package/src/login/pages/login-update-password/ng-package.json +6 -0
  128. package/src/login/pages/login-update-profile/login-update-profile.component.ts +51 -0
  129. package/src/login/pages/login-update-profile/ng-package.json +6 -0
  130. package/src/login/pages/login-username/login-username.component.ts +39 -0
  131. package/src/login/pages/login-username/ng-package.json +6 -0
  132. package/src/login/pages/login-verify-email/login-verify-email.component.ts +36 -0
  133. package/src/login/pages/login-verify-email/ng-package.json +6 -0
  134. package/src/login/pages/login-x509-info/login-x509-info.component.ts +36 -0
  135. package/src/login/pages/login-x509-info/ng-package.json +6 -0
  136. package/src/login/pages/logout-confirm/logout-confirm.component.ts +36 -0
  137. package/src/login/pages/logout-confirm/ng-package.json +6 -0
  138. package/src/login/pages/register/ng-package.json +6 -0
  139. package/src/login/pages/register/register.component.ts +56 -0
  140. package/src/login/pages/saml-post-form/ng-package.json +6 -0
  141. package/src/login/pages/saml-post-form/saml-post-form.component.ts +50 -0
  142. package/src/login/pages/select-authenticator/ng-package.json +6 -0
  143. package/src/login/pages/select-authenticator/select-authenticator.component.ts +37 -0
  144. package/src/login/pages/terms/ng-package.json +6 -0
  145. package/src/login/pages/terms/terms.component.ts +36 -0
  146. package/src/login/pages/update-email/ng-package.json +6 -0
  147. package/src/login/pages/update-email/update-email.component.ts +52 -0
  148. package/src/login/pages/webauthn-authenticate/ng-package.json +6 -0
  149. package/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.ts +82 -0
  150. package/src/login/pages/webauthn-error/ng-package.json +6 -0
  151. package/src/login/pages/webauthn-error/webauthn-error.component.ts +46 -0
  152. package/src/login/pages/webauthn-register/ng-package.json +6 -0
  153. package/src/login/pages/webauthn-register/webauthn-register.component.ts +92 -0
  154. package/src/login/providers/keycloakify-angular/keycloakify-angular.providers.ts +68 -0
  155. package/src/login/providers/keycloakify-angular/ng-package.json +6 -0
  156. package/src/login/services/i18n/ng-package.json +6 -0
  157. package/src/login/services/login-resource-injector/login-resource-injector.service.ts +73 -0
  158. package/src/login/services/login-resource-injector/ng-package.json +6 -0
  159. package/src/login/services/submit/index.ts +1 -0
  160. package/src/login/services/submit/ng-package.json +6 -0
  161. package/src/login/services/user-profile-form/index.ts +1 -0
  162. package/src/login/services/user-profile-form/ng-package.json +6 -0
  163. package/src/login/services/user-profile-form/user-profile-form.service.ts +1502 -0
  164. package/src/login/tokens/classes/index.ts +1 -0
  165. package/src/login/tokens/classes/ng-package.json +6 -0
  166. package/src/login/tokens/i18n/index.ts +1 -0
  167. package/src/login/tokens/i18n/ng-package.json +6 -0
  168. package/src/login/tokens/kc-context/index.ts +1 -0
  169. package/src/login/tokens/kc-context/kc-context.token.ts +4 -0
  170. package/src/login/tokens/kc-context/ng-package.json +6 -0
  171. package/src/login/tokens/make-user-confirm-password/index.ts +1 -0
  172. package/src/login/tokens/make-user-confirm-password/ng-package.json +6 -0
  173. package/src/ng-package.json +8 -0
  174. package/src/package.json +17 -0
  175. package/src/public-api.ts +1 -0
  176. package/tsconfig.json +33 -0
  177. package/tsproject.json +15 -0
  178. package/dist/LICENSE +0 -21
  179. package/dist/README.md +0 -1
  180. package/dist/account/DefaultPage/DefaultPage.d.ts +0 -38
  181. package/dist/account/DefaultPage/index.d.ts +0 -5
  182. package/dist/account/KcContext/KcContext.d.ts +0 -1
  183. package/dist/account/KcContext/index.d.ts +0 -5
  184. package/dist/account/classes/component-reference/component-reference.class.d.ts +0 -6
  185. package/dist/account/classes/component-reference/index.d.ts +0 -5
  186. package/dist/account/containers/template/index.d.ts +0 -5
  187. package/dist/account/containers/template/template.component.d.ts +0 -26
  188. package/dist/account/directives/kc-class/index.d.ts +0 -5
  189. package/dist/account/directives/kc-class/kc-class.directive.d.ts +0 -26
  190. package/dist/account/i18n/i18n.d.ts +0 -4
  191. package/dist/account/i18n/index.d.ts +0 -5
  192. package/dist/account/pages/account/account.component.d.ts +0 -14
  193. package/dist/account/pages/account/index.d.ts +0 -5
  194. package/dist/account/pages/applications/applications.component.d.ts +0 -13
  195. package/dist/account/pages/applications/index.d.ts +0 -5
  196. package/dist/account/pages/federatedIdentity/federatedIdentity.component.d.ts +0 -13
  197. package/dist/account/pages/federatedIdentity/index.d.ts +0 -5
  198. package/dist/account/pages/log/index.d.ts +0 -5
  199. package/dist/account/pages/log/log.component.d.ts +0 -13
  200. package/dist/account/pages/password/index.d.ts +0 -5
  201. package/dist/account/pages/password/password.component.d.ts +0 -28
  202. package/dist/account/pages/sessions/index.d.ts +0 -5
  203. package/dist/account/pages/sessions/sessions.component.d.ts +0 -13
  204. package/dist/account/pages/totp/index.d.ts +0 -5
  205. package/dist/account/pages/totp/totp.component.d.ts +0 -13
  206. package/dist/account/providers/keycloakify-angular/index.d.ts +0 -5
  207. package/dist/account/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +0 -15
  208. package/dist/account/services/account-resource-injector/account-resource-injector.service.d.ts +0 -10
  209. package/dist/account/services/account-resource-injector/index.d.ts +0 -5
  210. package/dist/account/services/i18n/i18n.service.d.ts +0 -6
  211. package/dist/account/services/i18n/index.d.ts +0 -5
  212. package/dist/account/tokens/classes/classes.token.d.ts +0 -16
  213. package/dist/account/tokens/classes/index.d.ts +0 -5
  214. package/dist/account/tokens/i18n/i18n.token.d.ts +0 -2
  215. package/dist/account/tokens/i18n/index.d.ts +0 -5
  216. package/dist/account/tokens/kc-context/index.d.ts +0 -5
  217. package/dist/account/tokens/kc-context/kc-context.token.d.ts +0 -3
  218. package/dist/esm2022/account/DefaultPage/DefaultPage.mjs +0 -34
  219. package/dist/esm2022/account/DefaultPage/keycloakify-angular-account-DefaultPage.mjs +0 -5
  220. package/dist/esm2022/account/DefaultPage/public-api.mjs +0 -2
  221. package/dist/esm2022/account/KcContext/KcContext.mjs +0 -2
  222. package/dist/esm2022/account/KcContext/keycloakify-angular-account-KcContext.mjs +0 -5
  223. package/dist/esm2022/account/KcContext/public-api.mjs +0 -2
  224. package/dist/esm2022/account/classes/component-reference/component-reference.class.mjs +0 -3
  225. package/dist/esm2022/account/classes/component-reference/keycloakify-angular-account-classes-component-reference.mjs +0 -5
  226. package/dist/esm2022/account/classes/component-reference/public-api.mjs +0 -2
  227. package/dist/esm2022/account/containers/template/keycloakify-angular-account-containers-template.mjs +0 -5
  228. package/dist/esm2022/account/containers/template/public-api.mjs +0 -2
  229. package/dist/esm2022/account/containers/template/template.component.mjs +0 -66
  230. package/dist/esm2022/account/directives/kc-class/kc-class.directive.mjs +0 -141
  231. package/dist/esm2022/account/directives/kc-class/keycloakify-angular-account-directives-kc-class.mjs +0 -5
  232. package/dist/esm2022/account/directives/kc-class/public-api.mjs +0 -2
  233. package/dist/esm2022/account/i18n/i18n.mjs +0 -2
  234. package/dist/esm2022/account/i18n/keycloakify-angular-account-i18n.mjs +0 -5
  235. package/dist/esm2022/account/i18n/public-api.mjs +0 -2
  236. package/dist/esm2022/account/pages/account/account.component.mjs +0 -39
  237. package/dist/esm2022/account/pages/account/keycloakify-angular-account-pages-account.mjs +0 -5
  238. package/dist/esm2022/account/pages/account/public-api.mjs +0 -2
  239. package/dist/esm2022/account/pages/applications/applications.component.mjs +0 -37
  240. package/dist/esm2022/account/pages/applications/keycloakify-angular-account-pages-applications.mjs +0 -5
  241. package/dist/esm2022/account/pages/applications/public-api.mjs +0 -2
  242. package/dist/esm2022/account/pages/federatedIdentity/federatedIdentity.component.mjs +0 -36
  243. package/dist/esm2022/account/pages/federatedIdentity/keycloakify-angular-account-pages-federatedIdentity.mjs +0 -5
  244. package/dist/esm2022/account/pages/federatedIdentity/public-api.mjs +0 -2
  245. package/dist/esm2022/account/pages/log/keycloakify-angular-account-pages-log.mjs +0 -5
  246. package/dist/esm2022/account/pages/log/log.component.mjs +0 -36
  247. package/dist/esm2022/account/pages/log/public-api.mjs +0 -2
  248. package/dist/esm2022/account/pages/password/keycloakify-angular-account-pages-password.mjs +0 -5
  249. package/dist/esm2022/account/pages/password/password.component.mjs +0 -107
  250. package/dist/esm2022/account/pages/password/public-api.mjs +0 -2
  251. package/dist/esm2022/account/pages/sessions/keycloakify-angular-account-pages-sessions.mjs +0 -5
  252. package/dist/esm2022/account/pages/sessions/public-api.mjs +0 -2
  253. package/dist/esm2022/account/pages/sessions/sessions.component.mjs +0 -36
  254. package/dist/esm2022/account/pages/totp/keycloakify-angular-account-pages-totp.mjs +0 -5
  255. package/dist/esm2022/account/pages/totp/public-api.mjs +0 -2
  256. package/dist/esm2022/account/pages/totp/totp.component.mjs +0 -37
  257. package/dist/esm2022/account/providers/keycloakify-angular/keycloakify-angular-account-providers-keycloakify-angular.mjs +0 -5
  258. package/dist/esm2022/account/providers/keycloakify-angular/keycloakify-angular.providers.mjs +0 -48
  259. package/dist/esm2022/account/providers/keycloakify-angular/public-api.mjs +0 -2
  260. package/dist/esm2022/account/services/account-resource-injector/account-resource-injector.service.mjs +0 -37
  261. package/dist/esm2022/account/services/account-resource-injector/keycloakify-angular-account-services-account-resource-injector.mjs +0 -5
  262. package/dist/esm2022/account/services/account-resource-injector/public-api.mjs +0 -2
  263. package/dist/esm2022/account/services/i18n/i18n.service.mjs +0 -12
  264. package/dist/esm2022/account/services/i18n/keycloakify-angular-account-services-i18n.mjs +0 -5
  265. package/dist/esm2022/account/services/i18n/public-api.mjs +0 -2
  266. package/dist/esm2022/account/tokens/classes/classes.token.mjs +0 -3
  267. package/dist/esm2022/account/tokens/classes/keycloakify-angular-account-tokens-classes.mjs +0 -5
  268. package/dist/esm2022/account/tokens/classes/public-api.mjs +0 -2
  269. package/dist/esm2022/account/tokens/i18n/i18n.token.mjs +0 -3
  270. package/dist/esm2022/account/tokens/i18n/keycloakify-angular-account-tokens-i18n.mjs +0 -5
  271. package/dist/esm2022/account/tokens/i18n/public-api.mjs +0 -2
  272. package/dist/esm2022/account/tokens/kc-context/kc-context.token.mjs +0 -3
  273. package/dist/esm2022/account/tokens/kc-context/keycloakify-angular-account-tokens-kc-context.mjs +0 -5
  274. package/dist/esm2022/account/tokens/kc-context/public-api.mjs +0 -2
  275. package/dist/esm2022/keycloakify-angular.mjs +0 -5
  276. package/dist/esm2022/lib/directives/attributes/attributes.directive.mjs +0 -26
  277. package/dist/esm2022/lib/directives/attributes/keycloakify-angular-lib-directives-attributes.mjs +0 -5
  278. package/dist/esm2022/lib/directives/attributes/public-api.mjs +0 -2
  279. package/dist/esm2022/lib/keycloakify-angular-lib.mjs +0 -5
  280. package/dist/esm2022/lib/models/script/keycloakify-angular-lib-models-script.mjs +0 -5
  281. package/dist/esm2022/lib/models/script/public-api.mjs +0 -2
  282. package/dist/esm2022/lib/models/script/script.model.mjs +0 -2
  283. package/dist/esm2022/lib/pipes/input-type/input-type.pipe.mjs +0 -20
  284. package/dist/esm2022/lib/pipes/input-type/keycloakify-angular-lib-pipes-input-type.mjs +0 -5
  285. package/dist/esm2022/lib/pipes/input-type/public-api.mjs +0 -2
  286. package/dist/esm2022/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.mjs +0 -20
  287. package/dist/esm2022/lib/pipes/is-array-with-empty-object/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +0 -5
  288. package/dist/esm2022/lib/pipes/is-array-with-empty-object/public-api.mjs +0 -2
  289. package/dist/esm2022/lib/pipes/kc-sanitize/kc-sanitize.pipe.mjs +0 -29
  290. package/dist/esm2022/lib/pipes/kc-sanitize/keycloakify-angular-lib-pipes-kc-sanitize.mjs +0 -5
  291. package/dist/esm2022/lib/pipes/kc-sanitize/public-api.mjs +0 -2
  292. package/dist/esm2022/lib/pipes/to-array/keycloakify-angular-lib-pipes-to-array.mjs +0 -5
  293. package/dist/esm2022/lib/pipes/to-array/public-api.mjs +0 -2
  294. package/dist/esm2022/lib/pipes/to-array/to-array.pipe.mjs +0 -21
  295. package/dist/esm2022/lib/pipes/to-number/keycloakify-angular-lib-pipes-to-number.mjs +0 -5
  296. package/dist/esm2022/lib/pipes/to-number/public-api.mjs +0 -2
  297. package/dist/esm2022/lib/pipes/to-number/to-number.pipe.mjs +0 -20
  298. package/dist/esm2022/lib/public-api.mjs +0 -2
  299. package/dist/esm2022/lib/services/resource-injector/keycloakify-angular-lib-services-resource-injector.mjs +0 -5
  300. package/dist/esm2022/lib/services/resource-injector/public-api.mjs +0 -2
  301. package/dist/esm2022/lib/services/resource-injector/resource-injector.service.mjs +0 -54
  302. package/dist/esm2022/lib/tokens/use-default-css/keycloakify-angular-lib-tokens-use-default-css.mjs +0 -5
  303. package/dist/esm2022/lib/tokens/use-default-css/public-api.mjs +0 -2
  304. package/dist/esm2022/lib/tokens/use-default-css/use-default-css.token.mjs +0 -3
  305. package/dist/esm2022/login/DefaultPage/DefaultPage.mjs +0 -121
  306. package/dist/esm2022/login/DefaultPage/keycloakify-angular-login-DefaultPage.mjs +0 -5
  307. package/dist/esm2022/login/DefaultPage/public-api.mjs +0 -2
  308. package/dist/esm2022/login/KcContext/KcContext.mjs +0 -2
  309. package/dist/esm2022/login/KcContext/keycloakify-angular-login-KcContext.mjs +0 -5
  310. package/dist/esm2022/login/KcContext/public-api.mjs +0 -2
  311. package/dist/esm2022/login/classes/component-reference/component-reference.class.mjs +0 -3
  312. package/dist/esm2022/login/classes/component-reference/keycloakify-angular-login-classes-component-reference.mjs +0 -5
  313. package/dist/esm2022/login/classes/component-reference/public-api.mjs +0 -2
  314. package/dist/esm2022/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.mjs +0 -106
  315. package/dist/esm2022/login/components/add-remove-buttons-multi-valued-attribute/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +0 -5
  316. package/dist/esm2022/login/components/add-remove-buttons-multi-valued-attribute/public-api.mjs +0 -2
  317. package/dist/esm2022/login/components/field-errors/field-errors.component.mjs +0 -33
  318. package/dist/esm2022/login/components/field-errors/keycloakify-angular-login-components-field-errors.mjs +0 -5
  319. package/dist/esm2022/login/components/field-errors/public-api.mjs +0 -2
  320. package/dist/esm2022/login/components/group-label/group-label.component.mjs +0 -43
  321. package/dist/esm2022/login/components/group-label/keycloakify-angular-login-components-group-label.mjs +0 -5
  322. package/dist/esm2022/login/components/group-label/public-api.mjs +0 -2
  323. package/dist/esm2022/login/components/input-field-by-type/input-field-by-type.component.mjs +0 -46
  324. package/dist/esm2022/login/components/input-field-by-type/keycloakify-angular-login-components-input-field-by-type.mjs +0 -5
  325. package/dist/esm2022/login/components/input-field-by-type/public-api.mjs +0 -2
  326. package/dist/esm2022/login/components/input-tag/input-tag.component.mjs +0 -90
  327. package/dist/esm2022/login/components/input-tag/keycloakify-angular-login-components-input-tag.mjs +0 -5
  328. package/dist/esm2022/login/components/input-tag/public-api.mjs +0 -2
  329. package/dist/esm2022/login/components/input-tag-selects/input-tag-selects.component.mjs +0 -117
  330. package/dist/esm2022/login/components/input-tag-selects/keycloakify-angular-login-components-input-tag-selects.mjs +0 -5
  331. package/dist/esm2022/login/components/input-tag-selects/public-api.mjs +0 -2
  332. package/dist/esm2022/login/components/logout-other-sessions/keycloakify-angular-login-components-logout-other-sessions.mjs +0 -5
  333. package/dist/esm2022/login/components/logout-other-sessions/logout-other-sessions.component.mjs +0 -32
  334. package/dist/esm2022/login/components/logout-other-sessions/public-api.mjs +0 -2
  335. package/dist/esm2022/login/components/password-wrapper/keycloakify-angular-login-components-password-wrapper.mjs +0 -5
  336. package/dist/esm2022/login/components/password-wrapper/password-wrapper.component.mjs +0 -46
  337. package/dist/esm2022/login/components/password-wrapper/public-api.mjs +0 -2
  338. package/dist/esm2022/login/components/select-tag/keycloakify-angular-login-components-select-tag.mjs +0 -5
  339. package/dist/esm2022/login/components/select-tag/public-api.mjs +0 -2
  340. package/dist/esm2022/login/components/select-tag/select-tag.component.mjs +0 -82
  341. package/dist/esm2022/login/components/textarea-tag/keycloakify-angular-login-components-textarea-tag.mjs +0 -5
  342. package/dist/esm2022/login/components/textarea-tag/public-api.mjs +0 -2
  343. package/dist/esm2022/login/components/textarea-tag/textarea-tag.component.mjs +0 -49
  344. package/dist/esm2022/login/components/user-profile-form-fields/keycloakify-angular-login-components-user-profile-form-fields.mjs +0 -5
  345. package/dist/esm2022/login/components/user-profile-form-fields/public-api.mjs +0 -2
  346. package/dist/esm2022/login/components/user-profile-form-fields/user-profile-form-fields.component.mjs +0 -62
  347. package/dist/esm2022/login/containers/template/keycloakify-angular-login-containers-template.mjs +0 -5
  348. package/dist/esm2022/login/containers/template/public-api.mjs +0 -2
  349. package/dist/esm2022/login/containers/template/template.component.mjs +0 -72
  350. package/dist/esm2022/login/directives/kc-class/kc-class.directive.mjs +0 -138
  351. package/dist/esm2022/login/directives/kc-class/keycloakify-angular-login-directives-kc-class.mjs +0 -5
  352. package/dist/esm2022/login/directives/kc-class/public-api.mjs +0 -2
  353. package/dist/esm2022/login/i18n/i18n.mjs +0 -2
  354. package/dist/esm2022/login/i18n/keycloakify-angular-login-i18n.mjs +0 -5
  355. package/dist/esm2022/login/i18n/public-api.mjs +0 -2
  356. package/dist/esm2022/login/pages/code/code.component.mjs +0 -35
  357. package/dist/esm2022/login/pages/code/keycloakify-angular-login-pages-code.mjs +0 -5
  358. package/dist/esm2022/login/pages/code/public-api.mjs +0 -2
  359. package/dist/esm2022/login/pages/delete-account-confirm/delete-account-confirm.component.mjs +0 -35
  360. package/dist/esm2022/login/pages/delete-account-confirm/keycloakify-angular-login-pages-delete-account-confirm.mjs +0 -5
  361. package/dist/esm2022/login/pages/delete-account-confirm/public-api.mjs +0 -2
  362. package/dist/esm2022/login/pages/delete-credential/delete-credential.component.mjs +0 -40
  363. package/dist/esm2022/login/pages/delete-credential/keycloakify-angular-login-pages-delete-credential.mjs +0 -5
  364. package/dist/esm2022/login/pages/delete-credential/public-api.mjs +0 -2
  365. package/dist/esm2022/login/pages/error/error.component.mjs +0 -35
  366. package/dist/esm2022/login/pages/error/keycloakify-angular-login-pages-error.mjs +0 -5
  367. package/dist/esm2022/login/pages/error/public-api.mjs +0 -2
  368. package/dist/esm2022/login/pages/frontchannel-logout/frontchannel-logout.component.mjs +0 -44
  369. package/dist/esm2022/login/pages/frontchannel-logout/keycloakify-angular-login-pages-frontchannel-logout.mjs +0 -5
  370. package/dist/esm2022/login/pages/frontchannel-logout/public-api.mjs +0 -2
  371. package/dist/esm2022/login/pages/idp-review-user-profile/idp-review-user-profile.component.mjs +0 -53
  372. package/dist/esm2022/login/pages/idp-review-user-profile/keycloakify-angular-login-pages-idp-review-user-profile.mjs +0 -5
  373. package/dist/esm2022/login/pages/idp-review-user-profile/public-api.mjs +0 -2
  374. package/dist/esm2022/login/pages/info/info.component.mjs +0 -49
  375. package/dist/esm2022/login/pages/info/keycloakify-angular-login-pages-info.mjs +0 -5
  376. package/dist/esm2022/login/pages/info/public-api.mjs +0 -2
  377. package/dist/esm2022/login/pages/login/keycloakify-angular-login-pages-login.mjs +0 -5
  378. package/dist/esm2022/login/pages/login/login.component.mjs +0 -44
  379. package/dist/esm2022/login/pages/login/public-api.mjs +0 -2
  380. package/dist/esm2022/login/pages/login-config-totp/keycloakify-angular-login-pages-login-config-totp.mjs +0 -5
  381. package/dist/esm2022/login/pages/login-config-totp/login-config-totp.component.mjs +0 -42
  382. package/dist/esm2022/login/pages/login-config-totp/public-api.mjs +0 -2
  383. package/dist/esm2022/login/pages/login-idp-link-confirm/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +0 -5
  384. package/dist/esm2022/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.mjs +0 -40
  385. package/dist/esm2022/login/pages/login-idp-link-confirm/public-api.mjs +0 -2
  386. package/dist/esm2022/login/pages/login-idp-link-confirm-override/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +0 -5
  387. package/dist/esm2022/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.mjs +0 -40
  388. package/dist/esm2022/login/pages/login-idp-link-confirm-override/public-api.mjs +0 -2
  389. package/dist/esm2022/login/pages/login-idp-link-email/keycloakify-angular-login-pages-login-idp-link-email.mjs +0 -5
  390. package/dist/esm2022/login/pages/login-idp-link-email/login-idp-link-email.component.mjs +0 -40
  391. package/dist/esm2022/login/pages/login-idp-link-email/public-api.mjs +0 -2
  392. package/dist/esm2022/login/pages/login-oauth-grant/keycloakify-angular-login-pages-login-oauth-grant.mjs +0 -5
  393. package/dist/esm2022/login/pages/login-oauth-grant/login-oauth-grant.component.mjs +0 -40
  394. package/dist/esm2022/login/pages/login-oauth-grant/public-api.mjs +0 -2
  395. package/dist/esm2022/login/pages/login-oauth2-device-verify-user-code/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +0 -5
  396. package/dist/esm2022/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.mjs +0 -40
  397. package/dist/esm2022/login/pages/login-oauth2-device-verify-user-code/public-api.mjs +0 -2
  398. package/dist/esm2022/login/pages/login-otp/keycloakify-angular-login-pages-login-otp.mjs +0 -5
  399. package/dist/esm2022/login/pages/login-otp/login-otp.component.mjs +0 -41
  400. package/dist/esm2022/login/pages/login-otp/public-api.mjs +0 -2
  401. package/dist/esm2022/login/pages/login-page-expired/keycloakify-angular-login-pages-login-page-expired.mjs +0 -5
  402. package/dist/esm2022/login/pages/login-page-expired/login-page-expired.component.mjs +0 -39
  403. package/dist/esm2022/login/pages/login-page-expired/public-api.mjs +0 -2
  404. package/dist/esm2022/login/pages/login-passkeys-conditional-authenticate/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +0 -5
  405. package/dist/esm2022/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.mjs +0 -84
  406. package/dist/esm2022/login/pages/login-passkeys-conditional-authenticate/public-api.mjs +0 -2
  407. package/dist/esm2022/login/pages/login-password/keycloakify-angular-login-pages-login-password.mjs +0 -5
  408. package/dist/esm2022/login/pages/login-password/login-password.component.mjs +0 -43
  409. package/dist/esm2022/login/pages/login-password/public-api.mjs +0 -2
  410. package/dist/esm2022/login/pages/login-recovery-authn-code-config/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +0 -5
  411. package/dist/esm2022/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.mjs +0 -43
  412. package/dist/esm2022/login/pages/login-recovery-authn-code-config/public-api.mjs +0 -2
  413. package/dist/esm2022/login/pages/login-recovery-authn-code-input/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +0 -5
  414. package/dist/esm2022/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.mjs +0 -41
  415. package/dist/esm2022/login/pages/login-recovery-authn-code-input/public-api.mjs +0 -2
  416. package/dist/esm2022/login/pages/login-reset-otp/keycloakify-angular-login-pages-login-reset-otp.mjs +0 -5
  417. package/dist/esm2022/login/pages/login-reset-otp/login-reset-otp.component.mjs +0 -40
  418. package/dist/esm2022/login/pages/login-reset-otp/public-api.mjs +0 -2
  419. package/dist/esm2022/login/pages/login-reset-password/keycloakify-angular-login-pages-login-reset-password.mjs +0 -5
  420. package/dist/esm2022/login/pages/login-reset-password/login-reset-password.component.mjs +0 -41
  421. package/dist/esm2022/login/pages/login-reset-password/public-api.mjs +0 -2
  422. package/dist/esm2022/login/pages/login-update-password/keycloakify-angular-login-pages-login-update-password.mjs +0 -5
  423. package/dist/esm2022/login/pages/login-update-password/login-update-password.component.mjs +0 -43
  424. package/dist/esm2022/login/pages/login-update-password/public-api.mjs +0 -2
  425. package/dist/esm2022/login/pages/login-update-profile/keycloakify-angular-login-pages-login-update-profile.mjs +0 -5
  426. package/dist/esm2022/login/pages/login-update-profile/login-update-profile.component.mjs +0 -50
  427. package/dist/esm2022/login/pages/login-update-profile/public-api.mjs +0 -2
  428. package/dist/esm2022/login/pages/login-username/keycloakify-angular-login-pages-login-username.mjs +0 -5
  429. package/dist/esm2022/login/pages/login-username/login-username.component.mjs +0 -43
  430. package/dist/esm2022/login/pages/login-username/public-api.mjs +0 -2
  431. package/dist/esm2022/login/pages/login-verify-email/keycloakify-angular-login-pages-login-verify-email.mjs +0 -5
  432. package/dist/esm2022/login/pages/login-verify-email/login-verify-email.component.mjs +0 -40
  433. package/dist/esm2022/login/pages/login-verify-email/public-api.mjs +0 -2
  434. package/dist/esm2022/login/pages/login-x509-info/keycloakify-angular-login-pages-login-x509-info.mjs +0 -5
  435. package/dist/esm2022/login/pages/login-x509-info/login-x509-info.component.mjs +0 -40
  436. package/dist/esm2022/login/pages/login-x509-info/public-api.mjs +0 -2
  437. package/dist/esm2022/login/pages/logout-confirm/keycloakify-angular-login-pages-logout-confirm.mjs +0 -5
  438. package/dist/esm2022/login/pages/logout-confirm/logout-confirm.component.mjs +0 -40
  439. package/dist/esm2022/login/pages/logout-confirm/public-api.mjs +0 -2
  440. package/dist/esm2022/login/pages/register/keycloakify-angular-login-pages-register.mjs +0 -5
  441. package/dist/esm2022/login/pages/register/public-api.mjs +0 -2
  442. package/dist/esm2022/login/pages/register/register.component.mjs +0 -55
  443. package/dist/esm2022/login/pages/saml-post-form/keycloakify-angular-login-pages-saml-post-form.mjs +0 -5
  444. package/dist/esm2022/login/pages/saml-post-form/public-api.mjs +0 -2
  445. package/dist/esm2022/login/pages/saml-post-form/saml-post-form.component.mjs +0 -52
  446. package/dist/esm2022/login/pages/select-authenticator/keycloakify-angular-login-pages-select-authenticator.mjs +0 -5
  447. package/dist/esm2022/login/pages/select-authenticator/public-api.mjs +0 -2
  448. package/dist/esm2022/login/pages/select-authenticator/select-authenticator.component.mjs +0 -41
  449. package/dist/esm2022/login/pages/terms/keycloakify-angular-login-pages-terms.mjs +0 -5
  450. package/dist/esm2022/login/pages/terms/public-api.mjs +0 -2
  451. package/dist/esm2022/login/pages/terms/terms.component.mjs +0 -40
  452. package/dist/esm2022/login/pages/update-email/keycloakify-angular-login-pages-update-email.mjs +0 -5
  453. package/dist/esm2022/login/pages/update-email/public-api.mjs +0 -2
  454. package/dist/esm2022/login/pages/update-email/update-email.component.mjs +0 -51
  455. package/dist/esm2022/login/pages/webauthn-authenticate/keycloakify-angular-login-pages-webauthn-authenticate.mjs +0 -5
  456. package/dist/esm2022/login/pages/webauthn-authenticate/public-api.mjs +0 -2
  457. package/dist/esm2022/login/pages/webauthn-authenticate/webauthn-authenticate.component.mjs +0 -80
  458. package/dist/esm2022/login/pages/webauthn-error/keycloakify-angular-login-pages-webauthn-error.mjs +0 -5
  459. package/dist/esm2022/login/pages/webauthn-error/public-api.mjs +0 -2
  460. package/dist/esm2022/login/pages/webauthn-error/webauthn-error.component.mjs +0 -49
  461. package/dist/esm2022/login/pages/webauthn-register/keycloakify-angular-login-pages-webauthn-register.mjs +0 -5
  462. package/dist/esm2022/login/pages/webauthn-register/public-api.mjs +0 -2
  463. package/dist/esm2022/login/pages/webauthn-register/webauthn-register.component.mjs +0 -76
  464. package/dist/esm2022/login/providers/keycloakify-angular/keycloakify-angular-login-providers-keycloakify-angular.mjs +0 -5
  465. package/dist/esm2022/login/providers/keycloakify-angular/keycloakify-angular.providers.mjs +0 -53
  466. package/dist/esm2022/login/providers/keycloakify-angular/public-api.mjs +0 -2
  467. package/dist/esm2022/login/services/i18n/i18n.service.mjs +0 -12
  468. package/dist/esm2022/login/services/i18n/keycloakify-angular-login-services-i18n.mjs +0 -5
  469. package/dist/esm2022/login/services/i18n/public-api.mjs +0 -2
  470. package/dist/esm2022/login/services/login-resource-injector/keycloakify-angular-login-services-login-resource-injector.mjs +0 -5
  471. package/dist/esm2022/login/services/login-resource-injector/login-resource-injector.service.mjs +0 -68
  472. package/dist/esm2022/login/services/login-resource-injector/public-api.mjs +0 -2
  473. package/dist/esm2022/login/services/submit/keycloakify-angular-login-services-submit.mjs +0 -5
  474. package/dist/esm2022/login/services/submit/public-api.mjs +0 -2
  475. package/dist/esm2022/login/services/submit/submit.service.mjs +0 -20
  476. package/dist/esm2022/login/services/user-profile-form/keycloakify-angular-login-services-user-profile-form.mjs +0 -5
  477. package/dist/esm2022/login/services/user-profile-form/public-api.mjs +0 -2
  478. package/dist/esm2022/login/services/user-profile-form/user-profile-form.service.mjs +0 -1019
  479. package/dist/esm2022/login/tokens/classes/classes.token.mjs +0 -3
  480. package/dist/esm2022/login/tokens/classes/keycloakify-angular-login-tokens-classes.mjs +0 -5
  481. package/dist/esm2022/login/tokens/classes/public-api.mjs +0 -2
  482. package/dist/esm2022/login/tokens/i18n/i18n.token.mjs +0 -3
  483. package/dist/esm2022/login/tokens/i18n/keycloakify-angular-login-tokens-i18n.mjs +0 -5
  484. package/dist/esm2022/login/tokens/i18n/public-api.mjs +0 -2
  485. package/dist/esm2022/login/tokens/kc-context/kc-context.token.mjs +0 -3
  486. package/dist/esm2022/login/tokens/kc-context/keycloakify-angular-login-tokens-kc-context.mjs +0 -5
  487. package/dist/esm2022/login/tokens/kc-context/public-api.mjs +0 -2
  488. package/dist/esm2022/login/tokens/make-user-confirm-password/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +0 -5
  489. package/dist/esm2022/login/tokens/make-user-confirm-password/make-user-confirm-password.token.mjs +0 -3
  490. package/dist/esm2022/login/tokens/make-user-confirm-password/public-api.mjs +0 -2
  491. package/dist/esm2022/public-api.mjs +0 -2
  492. package/dist/fesm2022/keycloakify-angular-account-DefaultPage.mjs +0 -39
  493. package/dist/fesm2022/keycloakify-angular-account-DefaultPage.mjs.map +0 -1
  494. package/dist/fesm2022/keycloakify-angular-account-KcContext.mjs +0 -4
  495. package/dist/fesm2022/keycloakify-angular-account-KcContext.mjs.map +0 -1
  496. package/dist/fesm2022/keycloakify-angular-account-classes-component-reference.mjs +0 -9
  497. package/dist/fesm2022/keycloakify-angular-account-classes-component-reference.mjs.map +0 -1
  498. package/dist/fesm2022/keycloakify-angular-account-containers-template.mjs +0 -73
  499. package/dist/fesm2022/keycloakify-angular-account-containers-template.mjs.map +0 -1
  500. package/dist/fesm2022/keycloakify-angular-account-directives-kc-class.mjs +0 -148
  501. package/dist/fesm2022/keycloakify-angular-account-directives-kc-class.mjs.map +0 -1
  502. package/dist/fesm2022/keycloakify-angular-account-i18n.mjs +0 -4
  503. package/dist/fesm2022/keycloakify-angular-account-i18n.mjs.map +0 -1
  504. package/dist/fesm2022/keycloakify-angular-account-pages-account.mjs +0 -46
  505. package/dist/fesm2022/keycloakify-angular-account-pages-account.mjs.map +0 -1
  506. package/dist/fesm2022/keycloakify-angular-account-pages-applications.mjs +0 -44
  507. package/dist/fesm2022/keycloakify-angular-account-pages-applications.mjs.map +0 -1
  508. package/dist/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs +0 -43
  509. package/dist/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs.map +0 -1
  510. package/dist/fesm2022/keycloakify-angular-account-pages-log.mjs +0 -43
  511. package/dist/fesm2022/keycloakify-angular-account-pages-log.mjs.map +0 -1
  512. package/dist/fesm2022/keycloakify-angular-account-pages-password.mjs +0 -114
  513. package/dist/fesm2022/keycloakify-angular-account-pages-password.mjs.map +0 -1
  514. package/dist/fesm2022/keycloakify-angular-account-pages-sessions.mjs +0 -43
  515. package/dist/fesm2022/keycloakify-angular-account-pages-sessions.mjs.map +0 -1
  516. package/dist/fesm2022/keycloakify-angular-account-pages-totp.mjs +0 -44
  517. package/dist/fesm2022/keycloakify-angular-account-pages-totp.mjs.map +0 -1
  518. package/dist/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs +0 -55
  519. package/dist/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs.map +0 -1
  520. package/dist/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs +0 -44
  521. package/dist/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs.map +0 -1
  522. package/dist/fesm2022/keycloakify-angular-account-services-i18n.mjs +0 -19
  523. package/dist/fesm2022/keycloakify-angular-account-services-i18n.mjs.map +0 -1
  524. package/dist/fesm2022/keycloakify-angular-account-tokens-classes.mjs +0 -10
  525. package/dist/fesm2022/keycloakify-angular-account-tokens-classes.mjs.map +0 -1
  526. package/dist/fesm2022/keycloakify-angular-account-tokens-i18n.mjs +0 -10
  527. package/dist/fesm2022/keycloakify-angular-account-tokens-i18n.mjs.map +0 -1
  528. package/dist/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs +0 -10
  529. package/dist/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs.map +0 -1
  530. package/dist/fesm2022/keycloakify-angular-lib-directives-attributes.mjs +0 -33
  531. package/dist/fesm2022/keycloakify-angular-lib-directives-attributes.mjs.map +0 -1
  532. package/dist/fesm2022/keycloakify-angular-lib-models-script.mjs +0 -4
  533. package/dist/fesm2022/keycloakify-angular-lib-models-script.mjs.map +0 -1
  534. package/dist/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs +0 -27
  535. package/dist/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs.map +0 -1
  536. package/dist/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +0 -27
  537. package/dist/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs.map +0 -1
  538. package/dist/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs +0 -36
  539. package/dist/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs.map +0 -1
  540. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs +0 -28
  541. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs.map +0 -1
  542. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs +0 -27
  543. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs.map +0 -1
  544. package/dist/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs +0 -61
  545. package/dist/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs.map +0 -1
  546. package/dist/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs +0 -10
  547. package/dist/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs.map +0 -1
  548. package/dist/fesm2022/keycloakify-angular-lib.mjs +0 -8
  549. package/dist/fesm2022/keycloakify-angular-lib.mjs.map +0 -1
  550. package/dist/fesm2022/keycloakify-angular-login-DefaultPage.mjs +0 -126
  551. package/dist/fesm2022/keycloakify-angular-login-DefaultPage.mjs.map +0 -1
  552. package/dist/fesm2022/keycloakify-angular-login-KcContext.mjs +0 -4
  553. package/dist/fesm2022/keycloakify-angular-login-KcContext.mjs.map +0 -1
  554. package/dist/fesm2022/keycloakify-angular-login-classes-component-reference.mjs +0 -9
  555. package/dist/fesm2022/keycloakify-angular-login-classes-component-reference.mjs.map +0 -1
  556. package/dist/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +0 -113
  557. package/dist/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs.map +0 -1
  558. package/dist/fesm2022/keycloakify-angular-login-components-field-errors.mjs +0 -40
  559. package/dist/fesm2022/keycloakify-angular-login-components-field-errors.mjs.map +0 -1
  560. package/dist/fesm2022/keycloakify-angular-login-components-group-label.mjs +0 -50
  561. package/dist/fesm2022/keycloakify-angular-login-components-group-label.mjs.map +0 -1
  562. package/dist/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs +0 -53
  563. package/dist/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs.map +0 -1
  564. package/dist/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs +0 -124
  565. package/dist/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs.map +0 -1
  566. package/dist/fesm2022/keycloakify-angular-login-components-input-tag.mjs +0 -97
  567. package/dist/fesm2022/keycloakify-angular-login-components-input-tag.mjs.map +0 -1
  568. package/dist/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs +0 -39
  569. package/dist/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs.map +0 -1
  570. package/dist/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs +0 -53
  571. package/dist/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs.map +0 -1
  572. package/dist/fesm2022/keycloakify-angular-login-components-select-tag.mjs +0 -89
  573. package/dist/fesm2022/keycloakify-angular-login-components-select-tag.mjs.map +0 -1
  574. package/dist/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs +0 -56
  575. package/dist/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs.map +0 -1
  576. package/dist/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs +0 -69
  577. package/dist/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs.map +0 -1
  578. package/dist/fesm2022/keycloakify-angular-login-containers-template.mjs +0 -79
  579. package/dist/fesm2022/keycloakify-angular-login-containers-template.mjs.map +0 -1
  580. package/dist/fesm2022/keycloakify-angular-login-directives-kc-class.mjs +0 -145
  581. package/dist/fesm2022/keycloakify-angular-login-directives-kc-class.mjs.map +0 -1
  582. package/dist/fesm2022/keycloakify-angular-login-i18n.mjs +0 -4
  583. package/dist/fesm2022/keycloakify-angular-login-i18n.mjs.map +0 -1
  584. package/dist/fesm2022/keycloakify-angular-login-pages-code.mjs +0 -42
  585. package/dist/fesm2022/keycloakify-angular-login-pages-code.mjs.map +0 -1
  586. package/dist/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs +0 -42
  587. package/dist/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs.map +0 -1
  588. package/dist/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs +0 -47
  589. package/dist/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs.map +0 -1
  590. package/dist/fesm2022/keycloakify-angular-login-pages-error.mjs +0 -42
  591. package/dist/fesm2022/keycloakify-angular-login-pages-error.mjs.map +0 -1
  592. package/dist/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs +0 -51
  593. package/dist/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs.map +0 -1
  594. package/dist/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs +0 -60
  595. package/dist/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs.map +0 -1
  596. package/dist/fesm2022/keycloakify-angular-login-pages-info.mjs +0 -56
  597. package/dist/fesm2022/keycloakify-angular-login-pages-info.mjs.map +0 -1
  598. package/dist/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs +0 -49
  599. package/dist/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs.map +0 -1
  600. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +0 -47
  601. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs.map +0 -1
  602. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +0 -47
  603. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs.map +0 -1
  604. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs +0 -47
  605. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs.map +0 -1
  606. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs +0 -47
  607. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs.map +0 -1
  608. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +0 -47
  609. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs.map +0 -1
  610. package/dist/fesm2022/keycloakify-angular-login-pages-login-otp.mjs +0 -48
  611. package/dist/fesm2022/keycloakify-angular-login-pages-login-otp.mjs.map +0 -1
  612. package/dist/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs +0 -46
  613. package/dist/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs.map +0 -1
  614. package/dist/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +0 -91
  615. package/dist/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs.map +0 -1
  616. package/dist/fesm2022/keycloakify-angular-login-pages-login-password.mjs +0 -50
  617. package/dist/fesm2022/keycloakify-angular-login-pages-login-password.mjs.map +0 -1
  618. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +0 -50
  619. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs.map +0 -1
  620. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +0 -48
  621. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs.map +0 -1
  622. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs +0 -47
  623. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs.map +0 -1
  624. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs +0 -48
  625. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs.map +0 -1
  626. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs +0 -50
  627. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs.map +0 -1
  628. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs +0 -57
  629. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs.map +0 -1
  630. package/dist/fesm2022/keycloakify-angular-login-pages-login-username.mjs +0 -50
  631. package/dist/fesm2022/keycloakify-angular-login-pages-login-username.mjs.map +0 -1
  632. package/dist/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs +0 -47
  633. package/dist/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs.map +0 -1
  634. package/dist/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs +0 -47
  635. package/dist/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs.map +0 -1
  636. package/dist/fesm2022/keycloakify-angular-login-pages-login.mjs +0 -51
  637. package/dist/fesm2022/keycloakify-angular-login-pages-login.mjs.map +0 -1
  638. package/dist/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs +0 -47
  639. package/dist/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs.map +0 -1
  640. package/dist/fesm2022/keycloakify-angular-login-pages-register.mjs +0 -62
  641. package/dist/fesm2022/keycloakify-angular-login-pages-register.mjs.map +0 -1
  642. package/dist/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs +0 -59
  643. package/dist/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs.map +0 -1
  644. package/dist/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs +0 -48
  645. package/dist/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs.map +0 -1
  646. package/dist/fesm2022/keycloakify-angular-login-pages-terms.mjs +0 -47
  647. package/dist/fesm2022/keycloakify-angular-login-pages-terms.mjs.map +0 -1
  648. package/dist/fesm2022/keycloakify-angular-login-pages-update-email.mjs +0 -58
  649. package/dist/fesm2022/keycloakify-angular-login-pages-update-email.mjs.map +0 -1
  650. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs +0 -87
  651. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs.map +0 -1
  652. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs +0 -56
  653. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs.map +0 -1
  654. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs +0 -83
  655. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs.map +0 -1
  656. package/dist/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs +0 -60
  657. package/dist/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs.map +0 -1
  658. package/dist/fesm2022/keycloakify-angular-login-services-i18n.mjs +0 -19
  659. package/dist/fesm2022/keycloakify-angular-login-services-i18n.mjs.map +0 -1
  660. package/dist/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs +0 -75
  661. package/dist/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs.map +0 -1
  662. package/dist/fesm2022/keycloakify-angular-login-services-submit.mjs +0 -27
  663. package/dist/fesm2022/keycloakify-angular-login-services-submit.mjs.map +0 -1
  664. package/dist/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs +0 -1026
  665. package/dist/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs.map +0 -1
  666. package/dist/fesm2022/keycloakify-angular-login-tokens-classes.mjs +0 -10
  667. package/dist/fesm2022/keycloakify-angular-login-tokens-classes.mjs.map +0 -1
  668. package/dist/fesm2022/keycloakify-angular-login-tokens-i18n.mjs +0 -10
  669. package/dist/fesm2022/keycloakify-angular-login-tokens-i18n.mjs.map +0 -1
  670. package/dist/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs +0 -10
  671. package/dist/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs.map +0 -1
  672. package/dist/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +0 -10
  673. package/dist/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs.map +0 -1
  674. package/dist/fesm2022/keycloakify-angular.mjs +0 -8
  675. package/dist/fesm2022/keycloakify-angular.mjs.map +0 -1
  676. package/dist/index.d.ts +0 -5
  677. package/dist/lib/directives/attributes/attributes.directive.d.ts +0 -8
  678. package/dist/lib/directives/attributes/index.d.ts +0 -5
  679. package/dist/lib/index.d.ts +0 -5
  680. package/dist/lib/models/script/index.d.ts +0 -5
  681. package/dist/lib/models/script/script.model.d.ts +0 -6
  682. package/dist/lib/pipes/input-type/index.d.ts +0 -5
  683. package/dist/lib/pipes/input-type/input-type.pipe.d.ts +0 -7
  684. package/dist/lib/pipes/is-array-with-empty-object/index.d.ts +0 -5
  685. package/dist/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.d.ts +0 -7
  686. package/dist/lib/pipes/kc-sanitize/index.d.ts +0 -5
  687. package/dist/lib/pipes/kc-sanitize/kc-sanitize.pipe.d.ts +0 -9
  688. package/dist/lib/pipes/to-array/index.d.ts +0 -5
  689. package/dist/lib/pipes/to-array/to-array.pipe.d.ts +0 -7
  690. package/dist/lib/pipes/to-number/index.d.ts +0 -5
  691. package/dist/lib/pipes/to-number/to-number.pipe.d.ts +0 -7
  692. package/dist/lib/public-api.d.ts +0 -1
  693. package/dist/lib/services/resource-injector/index.d.ts +0 -5
  694. package/dist/lib/services/resource-injector/resource-injector.service.d.ts +0 -10
  695. package/dist/lib/tokens/use-default-css/index.d.ts +0 -5
  696. package/dist/lib/tokens/use-default-css/use-default-css.token.d.ts +0 -2
  697. package/dist/login/DefaultPage/DefaultPage.d.ts +0 -260
  698. package/dist/login/DefaultPage/index.d.ts +0 -5
  699. package/dist/login/KcContext/KcContext.d.ts +0 -1
  700. package/dist/login/KcContext/index.d.ts +0 -5
  701. package/dist/login/classes/component-reference/component-reference.class.d.ts +0 -5
  702. package/dist/login/classes/component-reference/index.d.ts +0 -5
  703. package/dist/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.d.ts +0 -18
  704. package/dist/login/components/add-remove-buttons-multi-valued-attribute/index.d.ts +0 -5
  705. package/dist/login/components/field-errors/field-errors.component.d.ts +0 -14
  706. package/dist/login/components/field-errors/index.d.ts +0 -5
  707. package/dist/login/components/group-label/group-label.component.d.ts +0 -15
  708. package/dist/login/components/group-label/index.d.ts +0 -5
  709. package/dist/login/components/input-field-by-type/index.d.ts +0 -5
  710. package/dist/login/components/input-field-by-type/input-field-by-type.component.d.ts +0 -16
  711. package/dist/login/components/input-tag/index.d.ts +0 -5
  712. package/dist/login/components/input-tag/input-tag.component.d.ts +0 -22
  713. package/dist/login/components/input-tag-selects/index.d.ts +0 -5
  714. package/dist/login/components/input-tag-selects/input-tag-selects.component.d.ts +0 -28
  715. package/dist/login/components/logout-other-sessions/index.d.ts +0 -5
  716. package/dist/login/components/logout-other-sessions/logout-other-sessions.component.d.ts +0 -11
  717. package/dist/login/components/password-wrapper/index.d.ts +0 -5
  718. package/dist/login/components/password-wrapper/password-wrapper.component.d.ts +0 -17
  719. package/dist/login/components/select-tag/index.d.ts +0 -5
  720. package/dist/login/components/select-tag/select-tag.component.d.ts +0 -21
  721. package/dist/login/components/textarea-tag/index.d.ts +0 -5
  722. package/dist/login/components/textarea-tag/textarea-tag.component.d.ts +0 -17
  723. package/dist/login/components/user-profile-form-fields/index.d.ts +0 -5
  724. package/dist/login/components/user-profile-form-fields/user-profile-form-fields.component.d.ts +0 -31
  725. package/dist/login/containers/template/index.d.ts +0 -5
  726. package/dist/login/containers/template/template.component.d.ts +0 -31
  727. package/dist/login/directives/kc-class/index.d.ts +0 -5
  728. package/dist/login/directives/kc-class/kc-class.directive.d.ts +0 -26
  729. package/dist/login/i18n/i18n.d.ts +0 -4
  730. package/dist/login/i18n/index.d.ts +0 -5
  731. package/dist/login/pages/code/code.component.d.ts +0 -13
  732. package/dist/login/pages/code/index.d.ts +0 -5
  733. package/dist/login/pages/delete-account-confirm/delete-account-confirm.component.d.ts +0 -13
  734. package/dist/login/pages/delete-account-confirm/index.d.ts +0 -5
  735. package/dist/login/pages/delete-credential/delete-credential.component.d.ts +0 -18
  736. package/dist/login/pages/delete-credential/index.d.ts +0 -5
  737. package/dist/login/pages/error/error.component.d.ts +0 -13
  738. package/dist/login/pages/error/index.d.ts +0 -5
  739. package/dist/login/pages/frontchannel-logout/frontchannel-logout.component.d.ts +0 -19
  740. package/dist/login/pages/frontchannel-logout/index.d.ts +0 -5
  741. package/dist/login/pages/idp-review-user-profile/idp-review-user-profile.component.d.ts +0 -25
  742. package/dist/login/pages/idp-review-user-profile/index.d.ts +0 -5
  743. package/dist/login/pages/info/index.d.ts +0 -5
  744. package/dist/login/pages/info/info.component.d.ts +0 -19
  745. package/dist/login/pages/login/index.d.ts +0 -5
  746. package/dist/login/pages/login/login.component.d.ts +0 -19
  747. package/dist/login/pages/login-config-totp/index.d.ts +0 -5
  748. package/dist/login/pages/login-config-totp/login-config-totp.component.d.ts +0 -18
  749. package/dist/login/pages/login-idp-link-confirm/index.d.ts +0 -5
  750. package/dist/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.d.ts +0 -18
  751. package/dist/login/pages/login-idp-link-confirm-override/index.d.ts +0 -5
  752. package/dist/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.d.ts +0 -18
  753. package/dist/login/pages/login-idp-link-email/index.d.ts +0 -5
  754. package/dist/login/pages/login-idp-link-email/login-idp-link-email.component.d.ts +0 -18
  755. package/dist/login/pages/login-oauth-grant/index.d.ts +0 -5
  756. package/dist/login/pages/login-oauth-grant/login-oauth-grant.component.d.ts +0 -18
  757. package/dist/login/pages/login-oauth2-device-verify-user-code/index.d.ts +0 -5
  758. package/dist/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.d.ts +0 -18
  759. package/dist/login/pages/login-otp/index.d.ts +0 -5
  760. package/dist/login/pages/login-otp/login-otp.component.d.ts +0 -18
  761. package/dist/login/pages/login-page-expired/index.d.ts +0 -5
  762. package/dist/login/pages/login-page-expired/login-page-expired.component.d.ts +0 -18
  763. package/dist/login/pages/login-passkeys-conditional-authenticate/index.d.ts +0 -5
  764. package/dist/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.d.ts +0 -19
  765. package/dist/login/pages/login-password/index.d.ts +0 -5
  766. package/dist/login/pages/login-password/login-password.component.d.ts +0 -19
  767. package/dist/login/pages/login-recovery-authn-code-config/index.d.ts +0 -5
  768. package/dist/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.d.ts +0 -20
  769. package/dist/login/pages/login-recovery-authn-code-input/index.d.ts +0 -5
  770. package/dist/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.d.ts +0 -18
  771. package/dist/login/pages/login-reset-otp/index.d.ts +0 -5
  772. package/dist/login/pages/login-reset-otp/login-reset-otp.component.d.ts +0 -18
  773. package/dist/login/pages/login-reset-password/index.d.ts +0 -5
  774. package/dist/login/pages/login-reset-password/login-reset-password.component.d.ts +0 -18
  775. package/dist/login/pages/login-update-password/index.d.ts +0 -5
  776. package/dist/login/pages/login-update-password/login-update-password.component.d.ts +0 -18
  777. package/dist/login/pages/login-update-profile/index.d.ts +0 -5
  778. package/dist/login/pages/login-update-profile/login-update-profile.component.d.ts +0 -24
  779. package/dist/login/pages/login-username/index.d.ts +0 -5
  780. package/dist/login/pages/login-username/login-username.component.d.ts +0 -19
  781. package/dist/login/pages/login-verify-email/index.d.ts +0 -5
  782. package/dist/login/pages/login-verify-email/login-verify-email.component.d.ts +0 -18
  783. package/dist/login/pages/login-x509-info/index.d.ts +0 -5
  784. package/dist/login/pages/login-x509-info/login-x509-info.component.d.ts +0 -18
  785. package/dist/login/pages/logout-confirm/index.d.ts +0 -5
  786. package/dist/login/pages/logout-confirm/logout-confirm.component.d.ts +0 -18
  787. package/dist/login/pages/register/index.d.ts +0 -5
  788. package/dist/login/pages/register/register.component.d.ts +0 -26
  789. package/dist/login/pages/saml-post-form/index.d.ts +0 -5
  790. package/dist/login/pages/saml-post-form/saml-post-form.component.d.ts +0 -21
  791. package/dist/login/pages/select-authenticator/index.d.ts +0 -5
  792. package/dist/login/pages/select-authenticator/select-authenticator.component.d.ts +0 -18
  793. package/dist/login/pages/terms/index.d.ts +0 -5
  794. package/dist/login/pages/terms/terms.component.d.ts +0 -18
  795. package/dist/login/pages/update-email/index.d.ts +0 -5
  796. package/dist/login/pages/update-email/update-email.component.d.ts +0 -24
  797. package/dist/login/pages/webauthn-authenticate/index.d.ts +0 -5
  798. package/dist/login/pages/webauthn-authenticate/webauthn-authenticate.component.d.ts +0 -23
  799. package/dist/login/pages/webauthn-error/index.d.ts +0 -5
  800. package/dist/login/pages/webauthn-error/webauthn-error.component.d.ts +0 -19
  801. package/dist/login/pages/webauthn-register/index.d.ts +0 -5
  802. package/dist/login/pages/webauthn-register/webauthn-register.component.d.ts +0 -22
  803. package/dist/login/providers/keycloakify-angular/index.d.ts +0 -5
  804. package/dist/login/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +0 -16
  805. package/dist/login/services/i18n/i18n.service.d.ts +0 -6
  806. package/dist/login/services/i18n/index.d.ts +0 -5
  807. package/dist/login/services/login-resource-injector/index.d.ts +0 -5
  808. package/dist/login/services/login-resource-injector/login-resource-injector.service.d.ts +0 -11
  809. package/dist/login/services/submit/index.d.ts +0 -5
  810. package/dist/login/services/submit/submit.service.d.ts +0 -9
  811. package/dist/login/services/user-profile-form/index.d.ts +0 -5
  812. package/dist/login/services/user-profile-form/user-profile-form.service.d.ts +0 -86
  813. package/dist/login/tokens/classes/classes.token.d.ts +0 -127
  814. package/dist/login/tokens/classes/index.d.ts +0 -5
  815. package/dist/login/tokens/i18n/i18n.token.d.ts +0 -2
  816. package/dist/login/tokens/i18n/index.d.ts +0 -5
  817. package/dist/login/tokens/kc-context/index.d.ts +0 -5
  818. package/dist/login/tokens/kc-context/kc-context.token.d.ts +0 -3
  819. package/dist/login/tokens/make-user-confirm-password/index.d.ts +0 -5
  820. package/dist/login/tokens/make-user-confirm-password/make-user-confirm-password.token.d.ts +0 -2
  821. package/dist/public-api.d.ts +0 -1
  822. package/dist/src/account/DefaultPage.ts +0 -61
  823. package/dist/src/account/containers/template/template.component.ts +0 -71
  824. package/dist/src/account/pages/account/account.component.ts +0 -34
  825. package/dist/src/account/pages/applications/applications.component.ts +0 -32
  826. package/dist/src/account/pages/federatedIdentity/federatedIdentity.component.ts +0 -31
  827. package/dist/src/account/pages/log/log.component.ts +0 -31
  828. package/dist/src/account/pages/password/password.component.ts +0 -110
  829. package/dist/src/account/pages/sessions/sessions.component.ts +0 -31
  830. package/dist/src/account/pages/totp/totp.component.ts +0 -32
  831. package/dist/src/account/providers/keycloakify-angular/keycloakify-angular.providers.ts +0 -64
  832. package/dist/src/account/services/account-resource-injector/account-resource-injector.service.ts +0 -41
  833. package/dist/src/account/tokens/kc-context/kc-context.token.ts +0 -6
  834. package/dist/src/login/DefaultPage.ts +0 -208
  835. package/dist/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.ts +0 -136
  836. package/dist/src/login/components/group-label/group-label.component.ts +0 -46
  837. package/dist/src/login/components/input-tag/input-tag.component.ts +0 -99
  838. package/dist/src/login/components/input-tag-selects/input-tag-selects.component.ts +0 -139
  839. package/dist/src/login/components/logout-other-sessions/logout-other-sessions.component.ts +0 -34
  840. package/dist/src/login/components/password-wrapper/password-wrapper.component.ts +0 -51
  841. package/dist/src/login/components/select-tag/select-tag.component.ts +0 -97
  842. package/dist/src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts +0 -70
  843. package/dist/src/login/containers/template/template.component.ts +0 -78
  844. package/dist/src/login/pages/code/code.component.ts +0 -31
  845. package/dist/src/login/pages/delete-account-confirm/delete-account-confirm.component.ts +0 -31
  846. package/dist/src/login/pages/delete-credential/delete-credential.component.ts +0 -36
  847. package/dist/src/login/pages/error/error.component.ts +0 -31
  848. package/dist/src/login/pages/frontchannel-logout/frontchannel-logout.component.ts +0 -41
  849. package/dist/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.ts +0 -56
  850. package/dist/src/login/pages/info/info.component.ts +0 -48
  851. package/dist/src/login/pages/login/login.component.ts +0 -40
  852. package/dist/src/login/pages/login-config-totp/login-config-totp.component.ts +0 -38
  853. package/dist/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.ts +0 -36
  854. package/dist/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.ts +0 -36
  855. package/dist/src/login/pages/login-idp-link-email/login-idp-link-email.component.ts +0 -36
  856. package/dist/src/login/pages/login-oauth-grant/login-oauth-grant.component.ts +0 -36
  857. package/dist/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.ts +0 -36
  858. package/dist/src/login/pages/login-otp/login-otp.component.ts +0 -37
  859. package/dist/src/login/pages/login-page-expired/login-page-expired.component.ts +0 -35
  860. package/dist/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.ts +0 -94
  861. package/dist/src/login/pages/login-password/login-password.component.ts +0 -40
  862. package/dist/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.ts +0 -40
  863. package/dist/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.ts +0 -37
  864. package/dist/src/login/pages/login-reset-otp/login-reset-otp.component.ts +0 -36
  865. package/dist/src/login/pages/login-reset-password/login-reset-password.component.ts +0 -37
  866. package/dist/src/login/pages/login-update-password/login-update-password.component.ts +0 -39
  867. package/dist/src/login/pages/login-update-profile/login-update-profile.component.ts +0 -51
  868. package/dist/src/login/pages/login-username/login-username.component.ts +0 -39
  869. package/dist/src/login/pages/login-verify-email/login-verify-email.component.ts +0 -36
  870. package/dist/src/login/pages/login-x509-info/login-x509-info.component.ts +0 -36
  871. package/dist/src/login/pages/logout-confirm/logout-confirm.component.ts +0 -36
  872. package/dist/src/login/pages/register/register.component.ts +0 -56
  873. package/dist/src/login/pages/saml-post-form/saml-post-form.component.ts +0 -50
  874. package/dist/src/login/pages/select-authenticator/select-authenticator.component.ts +0 -37
  875. package/dist/src/login/pages/terms/terms.component.ts +0 -36
  876. package/dist/src/login/pages/update-email/update-email.component.ts +0 -52
  877. package/dist/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.ts +0 -82
  878. package/dist/src/login/pages/webauthn-error/webauthn-error.component.ts +0 -46
  879. package/dist/src/login/pages/webauthn-register/webauthn-register.component.ts +0 -92
  880. package/dist/src/login/providers/keycloakify-angular/keycloakify-angular.providers.ts +0 -68
  881. package/dist/src/login/services/login-resource-injector/login-resource-injector.service.ts +0 -73
  882. package/dist/src/login/services/user-profile-form/user-profile-form.service.ts +0 -1502
  883. package/dist/src/login/tokens/kc-context/kc-context.token.ts +0 -4
  884. /package/{dist/src/account/classes/component-reference → src/account/DefaultPage}/index.ts +0 -0
  885. /package/{dist/account/DefaultPage/public-api.d.ts → src/account/DefaultPage/public-api.ts} +0 -0
  886. /package/{dist/src/account → src/account/KcContext}/KcContext.ts +0 -0
  887. /package/{dist/src/account/containers/template → src/account/KcContext}/index.ts +0 -0
  888. /package/{dist/account/KcContext/public-api.d.ts → src/account/KcContext/public-api.ts} +0 -0
  889. /package/{dist/src → src}/account/classes/component-reference/component-reference.class.ts +0 -0
  890. /package/{dist/src/account/directives/kc-class → src/account/classes/component-reference}/index.ts +0 -0
  891. /package/{dist/account/classes/component-reference/public-api.d.ts → src/account/classes/component-reference/public-api.ts} +0 -0
  892. /package/{dist/src/account/pages/account → src/account/containers/template}/index.ts +0 -0
  893. /package/{dist/account/containers/template/public-api.d.ts → src/account/containers/template/public-api.ts} +0 -0
  894. /package/{dist/src → src}/account/containers/template/template.component.html +0 -0
  895. /package/{dist/src/account/pages/applications → src/account/directives/kc-class}/index.ts +0 -0
  896. /package/{dist/src → src}/account/directives/kc-class/kc-class.directive.ts +0 -0
  897. /package/{dist/account/directives/kc-class/public-api.d.ts → src/account/directives/kc-class/public-api.ts} +0 -0
  898. /package/{dist/src/account → src/account/i18n}/i18n.ts +0 -0
  899. /package/{dist/src/account/pages/federatedIdentity → src/account/i18n}/index.ts +0 -0
  900. /package/{dist/account/i18n/public-api.d.ts → src/account/i18n/public-api.ts} +0 -0
  901. /package/{dist/src → src}/account/pages/account/account.component.html +0 -0
  902. /package/{dist/src/account/pages/log → src/account/pages/account}/index.ts +0 -0
  903. /package/{dist/account/pages/account/public-api.d.ts → src/account/pages/account/public-api.ts} +0 -0
  904. /package/{dist/src → src}/account/pages/applications/applications.component.html +0 -0
  905. /package/{dist/src/account/pages/password → src/account/pages/applications}/index.ts +0 -0
  906. /package/{dist/account/pages/applications/public-api.d.ts → src/account/pages/applications/public-api.ts} +0 -0
  907. /package/{dist/src → src}/account/pages/federatedIdentity/federatedIdentity.component.html +0 -0
  908. /package/{dist/src/account/pages/sessions → src/account/pages/federatedIdentity}/index.ts +0 -0
  909. /package/{dist/account/pages/federatedIdentity/public-api.d.ts → src/account/pages/federatedIdentity/public-api.ts} +0 -0
  910. /package/{dist/src/account/pages/totp → src/account/pages/log}/index.ts +0 -0
  911. /package/{dist/src → src}/account/pages/log/log.component.html +0 -0
  912. /package/{dist/account/pages/log/public-api.d.ts → src/account/pages/log/public-api.ts} +0 -0
  913. /package/{dist/src/account/providers/keycloakify-angular → src/account/pages/password}/index.ts +0 -0
  914. /package/{dist/src → src}/account/pages/password/password.component.html +0 -0
  915. /package/{dist/account/pages/password/public-api.d.ts → src/account/pages/password/public-api.ts} +0 -0
  916. /package/{dist/src/account/services/account-resource-injector → src/account/pages/sessions}/index.ts +0 -0
  917. /package/{dist/account/pages/sessions/public-api.d.ts → src/account/pages/sessions/public-api.ts} +0 -0
  918. /package/{dist/src → src}/account/pages/sessions/sessions.component.html +0 -0
  919. /package/{dist/src/account/services/i18n → src/account/pages/totp}/index.ts +0 -0
  920. /package/{dist/account/pages/totp/public-api.d.ts → src/account/pages/totp/public-api.ts} +0 -0
  921. /package/{dist/src → src}/account/pages/totp/totp.component.html +0 -0
  922. /package/{dist/src/account/tokens/classes → src/account/providers/keycloakify-angular}/index.ts +0 -0
  923. /package/{dist/account/providers/keycloakify-angular/public-api.d.ts → src/account/providers/keycloakify-angular/public-api.ts} +0 -0
  924. /package/{dist/src/account/tokens/i18n → src/account/services/account-resource-injector}/index.ts +0 -0
  925. /package/{dist/account/services/account-resource-injector/public-api.d.ts → src/account/services/account-resource-injector/public-api.ts} +0 -0
  926. /package/{dist/src → src}/account/services/i18n/i18n.service.ts +0 -0
  927. /package/{dist/src/account/tokens/kc-context → src/account/services/i18n}/index.ts +0 -0
  928. /package/{dist/account/services/i18n/public-api.d.ts → src/account/services/i18n/public-api.ts} +0 -0
  929. /package/{dist/src → src}/account/tokens/classes/classes.token.ts +0 -0
  930. /package/{dist/src/lib/directives/attributes → src/account/tokens/classes}/index.ts +0 -0
  931. /package/{dist/account/tokens/classes/public-api.d.ts → src/account/tokens/classes/public-api.ts} +0 -0
  932. /package/{dist/src → src}/account/tokens/i18n/i18n.token.ts +0 -0
  933. /package/{dist/src/lib/models/script → src/account/tokens/i18n}/index.ts +0 -0
  934. /package/{dist/account/tokens/i18n/public-api.d.ts → src/account/tokens/i18n/public-api.ts} +0 -0
  935. /package/{dist/src/lib/pipes/input-type → src/account/tokens/kc-context}/index.ts +0 -0
  936. /package/{dist/account/tokens/kc-context/public-api.d.ts → src/account/tokens/kc-context/public-api.ts} +0 -0
  937. /package/{dist/src → src}/lib/directives/attributes/attributes.directive.ts +0 -0
  938. /package/{dist/src/lib/pipes/is-array-with-empty-object → src/lib/directives/attributes}/index.ts +0 -0
  939. /package/{dist/lib/directives/attributes/public-api.d.ts → src/lib/directives/attributes/public-api.ts} +0 -0
  940. /package/{dist/src/lib/pipes/kc-sanitize → src/lib/models/script}/index.ts +0 -0
  941. /package/{dist/lib/models/script/public-api.d.ts → src/lib/models/script/public-api.ts} +0 -0
  942. /package/{dist/src → src}/lib/models/script/script.model.ts +0 -0
  943. /package/{dist/src/lib/pipes/to-array → src/lib/pipes/input-type}/index.ts +0 -0
  944. /package/{dist/src → src}/lib/pipes/input-type/input-type.pipe.ts +0 -0
  945. /package/{dist/lib/pipes/input-type/public-api.d.ts → src/lib/pipes/input-type/public-api.ts} +0 -0
  946. /package/{dist/src/lib/pipes/to-number → src/lib/pipes/is-array-with-empty-object}/index.ts +0 -0
  947. /package/{dist/src → src}/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.ts +0 -0
  948. /package/{dist/lib/pipes/is-array-with-empty-object/public-api.d.ts → src/lib/pipes/is-array-with-empty-object/public-api.ts} +0 -0
  949. /package/{dist/src/lib/services/resource-injector → src/lib/pipes/kc-sanitize}/index.ts +0 -0
  950. /package/{dist/src → src}/lib/pipes/kc-sanitize/kc-sanitize.pipe.ts +0 -0
  951. /package/{dist/lib/pipes/kc-sanitize/public-api.d.ts → src/lib/pipes/kc-sanitize/public-api.ts} +0 -0
  952. /package/{dist/src/lib/tokens/use-default-css → src/lib/pipes/to-array}/index.ts +0 -0
  953. /package/{dist/lib/pipes/to-array/public-api.d.ts → src/lib/pipes/to-array/public-api.ts} +0 -0
  954. /package/{dist/src → src}/lib/pipes/to-array/to-array.pipe.ts +0 -0
  955. /package/{dist/src/login/classes/component-reference → src/lib/pipes/to-number}/index.ts +0 -0
  956. /package/{dist/lib/pipes/to-number/public-api.d.ts → src/lib/pipes/to-number/public-api.ts} +0 -0
  957. /package/{dist/src → src}/lib/pipes/to-number/to-number.pipe.ts +0 -0
  958. /package/{dist/src/login/components/add-remove-buttons-multi-valued-attribute → src/lib/services/resource-injector}/index.ts +0 -0
  959. /package/{dist/lib/services/resource-injector/public-api.d.ts → src/lib/services/resource-injector/public-api.ts} +0 -0
  960. /package/{dist/src → src}/lib/services/resource-injector/resource-injector.service.ts +0 -0
  961. /package/{dist/src/login/components/field-errors → src/lib/tokens/use-default-css}/index.ts +0 -0
  962. /package/{dist/lib/tokens/use-default-css/public-api.d.ts → src/lib/tokens/use-default-css/public-api.ts} +0 -0
  963. /package/{dist/src → src}/lib/tokens/use-default-css/use-default-css.token.ts +0 -0
  964. /package/{dist/src/login/components/group-label → src/login/DefaultPage}/index.ts +0 -0
  965. /package/{dist/login/DefaultPage/public-api.d.ts → src/login/DefaultPage/public-api.ts} +0 -0
  966. /package/{dist/src/login → src/login/KcContext}/KcContext.ts +0 -0
  967. /package/{dist/src/login/components/input-field-by-type → src/login/KcContext}/index.ts +0 -0
  968. /package/{dist/login/KcContext/public-api.d.ts → src/login/KcContext/public-api.ts} +0 -0
  969. /package/{dist/src → src}/login/classes/component-reference/component-reference.class.ts +0 -0
  970. /package/{dist/src/login/components/input-tag-selects → src/login/classes/component-reference}/index.ts +0 -0
  971. /package/{dist/login/classes/component-reference/public-api.d.ts → src/login/classes/component-reference/public-api.ts} +0 -0
  972. /package/{dist/src → src}/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.html +0 -0
  973. /package/{dist/src/login/components/input-tag → src/login/components/add-remove-buttons-multi-valued-attribute}/index.ts +0 -0
  974. /package/{dist/login/components/add-remove-buttons-multi-valued-attribute/public-api.d.ts → src/login/components/add-remove-buttons-multi-valued-attribute/public-api.ts} +0 -0
  975. /package/{dist/src → src}/login/components/field-errors/field-errors.component.html +0 -0
  976. /package/{dist/src → src}/login/components/field-errors/field-errors.component.ts +0 -0
  977. /package/{dist/src/login/components/logout-other-sessions → src/login/components/field-errors}/index.ts +0 -0
  978. /package/{dist/login/components/field-errors/public-api.d.ts → src/login/components/field-errors/public-api.ts} +0 -0
  979. /package/{dist/src → src}/login/components/group-label/group-label.component.html +0 -0
  980. /package/{dist/src/login/components/password-wrapper → src/login/components/group-label}/index.ts +0 -0
  981. /package/{dist/login/components/group-label/public-api.d.ts → src/login/components/group-label/public-api.ts} +0 -0
  982. /package/{dist/src/login/components/select-tag → src/login/components/input-field-by-type}/index.ts +0 -0
  983. /package/{dist/src → src}/login/components/input-field-by-type/input-field-by-type.component.html +0 -0
  984. /package/{dist/src → src}/login/components/input-field-by-type/input-field-by-type.component.ts +0 -0
  985. /package/{dist/login/components/input-field-by-type/public-api.d.ts → src/login/components/input-field-by-type/public-api.ts} +0 -0
  986. /package/{dist/src/login/components/user-profile-form-fields → src/login/components/input-tag}/index.ts +0 -0
  987. /package/{dist/src → src}/login/components/input-tag/input-tag.component.html +0 -0
  988. /package/{dist/login/components/input-tag/public-api.d.ts → src/login/components/input-tag/public-api.ts} +0 -0
  989. /package/{dist/src/login/components/textarea-tag → src/login/components/input-tag-selects}/index.ts +0 -0
  990. /package/{dist/src → src}/login/components/input-tag-selects/input-tag-selects.component.html +0 -0
  991. /package/{dist/login/components/input-tag-selects/public-api.d.ts → src/login/components/input-tag-selects/public-api.ts} +0 -0
  992. /package/{dist/src/login/containers/template → src/login/components/logout-other-sessions}/index.ts +0 -0
  993. /package/{dist/src → src}/login/components/logout-other-sessions/logout-other-sessions.component.html +0 -0
  994. /package/{dist/login/components/logout-other-sessions/public-api.d.ts → src/login/components/logout-other-sessions/public-api.ts} +0 -0
  995. /package/{dist/src/login/directives/kc-class → src/login/components/password-wrapper}/index.ts +0 -0
  996. /package/{dist/src → src}/login/components/password-wrapper/password-wrapper.component.html +0 -0
  997. /package/{dist/login/components/password-wrapper/public-api.d.ts → src/login/components/password-wrapper/public-api.ts} +0 -0
  998. /package/{dist/src/login/pages/code → src/login/components/select-tag}/index.ts +0 -0
  999. /package/{dist/login/components/select-tag/public-api.d.ts → src/login/components/select-tag/public-api.ts} +0 -0
  1000. /package/{dist/src → src}/login/components/select-tag/select-tag.component.html +0 -0
  1001. /package/{dist/src/login/pages/delete-account-confirm → src/login/components/textarea-tag}/index.ts +0 -0
  1002. /package/{dist/login/components/textarea-tag/public-api.d.ts → src/login/components/textarea-tag/public-api.ts} +0 -0
  1003. /package/{dist/src → src}/login/components/textarea-tag/textarea-tag.component.html +0 -0
  1004. /package/{dist/src → src}/login/components/textarea-tag/textarea-tag.component.ts +0 -0
  1005. /package/{dist/src/login/pages/delete-credential → src/login/components/user-profile-form-fields}/index.ts +0 -0
  1006. /package/{dist/login/components/user-profile-form-fields/public-api.d.ts → src/login/components/user-profile-form-fields/public-api.ts} +0 -0
  1007. /package/{dist/src → src}/login/components/user-profile-form-fields/user-profile-form-fields.component.html +0 -0
  1008. /package/{dist/src/login/pages/error → src/login/containers/template}/index.ts +0 -0
  1009. /package/{dist/login/containers/template/public-api.d.ts → src/login/containers/template/public-api.ts} +0 -0
  1010. /package/{dist/src → src}/login/containers/template/template.component.html +0 -0
  1011. /package/{dist/src/login/pages/frontchannel-logout → src/login/directives/kc-class}/index.ts +0 -0
  1012. /package/{dist/src → src}/login/directives/kc-class/kc-class.directive.ts +0 -0
  1013. /package/{dist/login/directives/kc-class/public-api.d.ts → src/login/directives/kc-class/public-api.ts} +0 -0
  1014. /package/{dist/src/login → src/login/i18n}/i18n.ts +0 -0
  1015. /package/{dist/src/login/pages/idp-review-user-profile → src/login/i18n}/index.ts +0 -0
  1016. /package/{dist/login/i18n/public-api.d.ts → src/login/i18n/public-api.ts} +0 -0
  1017. /package/{dist/src → src}/login/pages/code/code.component.html +0 -0
  1018. /package/{dist/src/login/pages/info → src/login/pages/code}/index.ts +0 -0
  1019. /package/{dist/login/pages/code/public-api.d.ts → src/login/pages/code/public-api.ts} +0 -0
  1020. /package/{dist/src → src}/login/pages/delete-account-confirm/delete-account-confirm.component.html +0 -0
  1021. /package/{dist/src/login/pages/login-config-totp → src/login/pages/delete-account-confirm}/index.ts +0 -0
  1022. /package/{dist/login/pages/delete-account-confirm/public-api.d.ts → src/login/pages/delete-account-confirm/public-api.ts} +0 -0
  1023. /package/{dist/src → src}/login/pages/delete-credential/delete-credential.component.html +0 -0
  1024. /package/{dist/src/login/pages/login-idp-link-confirm-override → src/login/pages/delete-credential}/index.ts +0 -0
  1025. /package/{dist/login/pages/delete-credential/public-api.d.ts → src/login/pages/delete-credential/public-api.ts} +0 -0
  1026. /package/{dist/src → src}/login/pages/error/error.component.html +0 -0
  1027. /package/{dist/src/login/pages/login-idp-link-confirm → src/login/pages/error}/index.ts +0 -0
  1028. /package/{dist/login/pages/error/public-api.d.ts → src/login/pages/error/public-api.ts} +0 -0
  1029. /package/{dist/src → src}/login/pages/frontchannel-logout/frontchannel-logout.component.html +0 -0
  1030. /package/{dist/src/login/pages/login-idp-link-email → src/login/pages/frontchannel-logout}/index.ts +0 -0
  1031. /package/{dist/login/pages/frontchannel-logout/public-api.d.ts → src/login/pages/frontchannel-logout/public-api.ts} +0 -0
  1032. /package/{dist/src → src}/login/pages/idp-review-user-profile/idp-review-user-profile.component.html +0 -0
  1033. /package/{dist/src/login/pages/login-oauth-grant → src/login/pages/idp-review-user-profile}/index.ts +0 -0
  1034. /package/{dist/login/pages/idp-review-user-profile/public-api.d.ts → src/login/pages/idp-review-user-profile/public-api.ts} +0 -0
  1035. /package/{dist/src/login/pages/login-oauth2-device-verify-user-code → src/login/pages/info}/index.ts +0 -0
  1036. /package/{dist/src → src}/login/pages/info/info.component.html +0 -0
  1037. /package/{dist/login/pages/info/public-api.d.ts → src/login/pages/info/public-api.ts} +0 -0
  1038. /package/{dist/src/login/pages/update-email → src/login/pages/login}/index.ts +0 -0
  1039. /package/{dist/src → src}/login/pages/login/login.component.html +0 -0
  1040. /package/{dist/login/pages/login/public-api.d.ts → src/login/pages/login/public-api.ts} +0 -0
  1041. /package/{dist/src/login/pages/login-otp → src/login/pages/login-config-totp}/index.ts +0 -0
  1042. /package/{dist/src → src}/login/pages/login-config-totp/login-config-totp.component.html +0 -0
  1043. /package/{dist/login/pages/login-config-totp/public-api.d.ts → src/login/pages/login-config-totp/public-api.ts} +0 -0
  1044. /package/{dist/src/login/pages/login-passkeys-conditional-authenticate → src/login/pages/login-idp-link-confirm}/index.ts +0 -0
  1045. /package/{dist/src → src}/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.html +0 -0
  1046. /package/{dist/login/pages/login-idp-link-confirm/public-api.d.ts → src/login/pages/login-idp-link-confirm/public-api.ts} +0 -0
  1047. /package/{dist/src/login/pages/login-page-expired → src/login/pages/login-idp-link-confirm-override}/index.ts +0 -0
  1048. /package/{dist/src → src}/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.html +0 -0
  1049. /package/{dist/login/pages/login-idp-link-confirm-override/public-api.d.ts → src/login/pages/login-idp-link-confirm-override/public-api.ts} +0 -0
  1050. /package/{dist/src/login/pages/login-password → src/login/pages/login-idp-link-email}/index.ts +0 -0
  1051. /package/{dist/src → src}/login/pages/login-idp-link-email/login-idp-link-email.component.html +0 -0
  1052. /package/{dist/login/pages/login-idp-link-email/public-api.d.ts → src/login/pages/login-idp-link-email/public-api.ts} +0 -0
  1053. /package/{dist/src/login/pages/login-recovery-authn-code-config → src/login/pages/login-oauth-grant}/index.ts +0 -0
  1054. /package/{dist/src → src}/login/pages/login-oauth-grant/login-oauth-grant.component.html +0 -0
  1055. /package/{dist/login/pages/login-oauth-grant/public-api.d.ts → src/login/pages/login-oauth-grant/public-api.ts} +0 -0
  1056. /package/{dist/src/login/pages/login-recovery-authn-code-input → src/login/pages/login-oauth2-device-verify-user-code}/index.ts +0 -0
  1057. /package/{dist/src → src}/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.html +0 -0
  1058. /package/{dist/login/pages/login-oauth2-device-verify-user-code/public-api.d.ts → src/login/pages/login-oauth2-device-verify-user-code/public-api.ts} +0 -0
  1059. /package/{dist/src/login/pages/login-reset-otp → src/login/pages/login-otp}/index.ts +0 -0
  1060. /package/{dist/src → src}/login/pages/login-otp/login-otp.component.html +0 -0
  1061. /package/{dist/login/pages/login-otp/public-api.d.ts → src/login/pages/login-otp/public-api.ts} +0 -0
  1062. /package/{dist/src/login/pages/login-reset-password → src/login/pages/login-page-expired}/index.ts +0 -0
  1063. /package/{dist/src → src}/login/pages/login-page-expired/login-page-expired.component.html +0 -0
  1064. /package/{dist/login/pages/login-page-expired/public-api.d.ts → src/login/pages/login-page-expired/public-api.ts} +0 -0
  1065. /package/{dist/src/login/pages/login-update-password → src/login/pages/login-passkeys-conditional-authenticate}/index.ts +0 -0
  1066. /package/{dist/src → src}/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.html +0 -0
  1067. /package/{dist/login/pages/login-passkeys-conditional-authenticate/public-api.d.ts → src/login/pages/login-passkeys-conditional-authenticate/public-api.ts} +0 -0
  1068. /package/{dist/src/login/pages/login-update-profile → src/login/pages/login-password}/index.ts +0 -0
  1069. /package/{dist/src → src}/login/pages/login-password/login-password.component.html +0 -0
  1070. /package/{dist/login/pages/login-password/public-api.d.ts → src/login/pages/login-password/public-api.ts} +0 -0
  1071. /package/{dist/src/login/pages/login-username → src/login/pages/login-recovery-authn-code-config}/index.ts +0 -0
  1072. /package/{dist/src → src}/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.html +0 -0
  1073. /package/{dist/login/pages/login-recovery-authn-code-config/public-api.d.ts → src/login/pages/login-recovery-authn-code-config/public-api.ts} +0 -0
  1074. /package/{dist/src/login/pages/login-verify-email → src/login/pages/login-recovery-authn-code-input}/index.ts +0 -0
  1075. /package/{dist/src → src}/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.html +0 -0
  1076. /package/{dist/login/pages/login-recovery-authn-code-input/public-api.d.ts → src/login/pages/login-recovery-authn-code-input/public-api.ts} +0 -0
  1077. /package/{dist/src/login/pages/login-x509-info → src/login/pages/login-reset-otp}/index.ts +0 -0
  1078. /package/{dist/src → src}/login/pages/login-reset-otp/login-reset-otp.component.html +0 -0
  1079. /package/{dist/login/pages/login-reset-otp/public-api.d.ts → src/login/pages/login-reset-otp/public-api.ts} +0 -0
  1080. /package/{dist/src/login/pages/login → src/login/pages/login-reset-password}/index.ts +0 -0
  1081. /package/{dist/src → src}/login/pages/login-reset-password/login-reset-password.component.html +0 -0
  1082. /package/{dist/login/pages/login-reset-password/public-api.d.ts → src/login/pages/login-reset-password/public-api.ts} +0 -0
  1083. /package/{dist/src/login/pages/logout-confirm → src/login/pages/login-update-password}/index.ts +0 -0
  1084. /package/{dist/src → src}/login/pages/login-update-password/login-update-password.component.html +0 -0
  1085. /package/{dist/login/pages/login-update-password/public-api.d.ts → src/login/pages/login-update-password/public-api.ts} +0 -0
  1086. /package/{dist/src/login/pages/register → src/login/pages/login-update-profile}/index.ts +0 -0
  1087. /package/{dist/src → src}/login/pages/login-update-profile/login-update-profile.component.html +0 -0
  1088. /package/{dist/login/pages/login-update-profile/public-api.d.ts → src/login/pages/login-update-profile/public-api.ts} +0 -0
  1089. /package/{dist/src/login/pages/saml-post-form → src/login/pages/login-username}/index.ts +0 -0
  1090. /package/{dist/src → src}/login/pages/login-username/login-username.component.html +0 -0
  1091. /package/{dist/login/pages/login-username/public-api.d.ts → src/login/pages/login-username/public-api.ts} +0 -0
  1092. /package/{dist/src/login/pages/select-authenticator → src/login/pages/login-verify-email}/index.ts +0 -0
  1093. /package/{dist/src → src}/login/pages/login-verify-email/login-verify-email.component.html +0 -0
  1094. /package/{dist/login/pages/login-verify-email/public-api.d.ts → src/login/pages/login-verify-email/public-api.ts} +0 -0
  1095. /package/{dist/src/login/pages/terms → src/login/pages/login-x509-info}/index.ts +0 -0
  1096. /package/{dist/src → src}/login/pages/login-x509-info/login-x509-info.component.html +0 -0
  1097. /package/{dist/login/pages/login-x509-info/public-api.d.ts → src/login/pages/login-x509-info/public-api.ts} +0 -0
  1098. /package/{dist/src/login/pages/webauthn-authenticate → src/login/pages/logout-confirm}/index.ts +0 -0
  1099. /package/{dist/src → src}/login/pages/logout-confirm/logout-confirm.component.html +0 -0
  1100. /package/{dist/login/pages/logout-confirm/public-api.d.ts → src/login/pages/logout-confirm/public-api.ts} +0 -0
  1101. /package/{dist/src/login/pages/webauthn-error → src/login/pages/register}/index.ts +0 -0
  1102. /package/{dist/login/pages/register/public-api.d.ts → src/login/pages/register/public-api.ts} +0 -0
  1103. /package/{dist/src → src}/login/pages/register/register.component.html +0 -0
  1104. /package/{dist/src/login/pages/webauthn-register → src/login/pages/saml-post-form}/index.ts +0 -0
  1105. /package/{dist/login/pages/saml-post-form/public-api.d.ts → src/login/pages/saml-post-form/public-api.ts} +0 -0
  1106. /package/{dist/src → src}/login/pages/saml-post-form/saml-post-form.component.html +0 -0
  1107. /package/{dist/src/login/providers/keycloakify-angular → src/login/pages/select-authenticator}/index.ts +0 -0
  1108. /package/{dist/login/pages/select-authenticator/public-api.d.ts → src/login/pages/select-authenticator/public-api.ts} +0 -0
  1109. /package/{dist/src → src}/login/pages/select-authenticator/select-authenticator.component.html +0 -0
  1110. /package/{dist/src/login/services/i18n → src/login/pages/terms}/index.ts +0 -0
  1111. /package/{dist/login/pages/terms/public-api.d.ts → src/login/pages/terms/public-api.ts} +0 -0
  1112. /package/{dist/src → src}/login/pages/terms/terms.component.html +0 -0
  1113. /package/{dist/src/login/services/login-resource-injector → src/login/pages/update-email}/index.ts +0 -0
  1114. /package/{dist/login/pages/update-email/public-api.d.ts → src/login/pages/update-email/public-api.ts} +0 -0
  1115. /package/{dist/src → src}/login/pages/update-email/update-email.component.html +0 -0
  1116. /package/{dist/src/login/services/submit → src/login/pages/webauthn-authenticate}/index.ts +0 -0
  1117. /package/{dist/login/pages/webauthn-authenticate/public-api.d.ts → src/login/pages/webauthn-authenticate/public-api.ts} +0 -0
  1118. /package/{dist/src → src}/login/pages/webauthn-authenticate/webauthn-authenticate.component.html +0 -0
  1119. /package/{dist/src/login/services/user-profile-form → src/login/pages/webauthn-error}/index.ts +0 -0
  1120. /package/{dist/login/pages/webauthn-error/public-api.d.ts → src/login/pages/webauthn-error/public-api.ts} +0 -0
  1121. /package/{dist/src → src}/login/pages/webauthn-error/webauthn-error.component.html +0 -0
  1122. /package/{dist/src/login/tokens/classes → src/login/pages/webauthn-register}/index.ts +0 -0
  1123. /package/{dist/login/pages/webauthn-register/public-api.d.ts → src/login/pages/webauthn-register/public-api.ts} +0 -0
  1124. /package/{dist/src → src}/login/pages/webauthn-register/webauthn-register.component.html +0 -0
  1125. /package/{dist/src/login/tokens/i18n → src/login/providers/keycloakify-angular}/index.ts +0 -0
  1126. /package/{dist/login/providers/keycloakify-angular/public-api.d.ts → src/login/providers/keycloakify-angular/public-api.ts} +0 -0
  1127. /package/{dist/src → src}/login/services/i18n/i18n.service.ts +0 -0
  1128. /package/{dist/src/login/tokens/kc-context → src/login/services/i18n}/index.ts +0 -0
  1129. /package/{dist/login/services/i18n/public-api.d.ts → src/login/services/i18n/public-api.ts} +0 -0
  1130. /package/{dist/src/login/tokens/make-user-confirm-password → src/login/services/login-resource-injector}/index.ts +0 -0
  1131. /package/{dist/login/services/login-resource-injector/public-api.d.ts → src/login/services/login-resource-injector/public-api.ts} +0 -0
  1132. /package/{dist/login/services/submit/public-api.d.ts → src/login/services/submit/public-api.ts} +0 -0
  1133. /package/{dist/src → src}/login/services/submit/submit.service.ts +0 -0
  1134. /package/{dist/login/services/user-profile-form/public-api.d.ts → src/login/services/user-profile-form/public-api.ts} +0 -0
  1135. /package/{dist/src → src}/login/tokens/classes/classes.token.ts +0 -0
  1136. /package/{dist/login/tokens/classes/public-api.d.ts → src/login/tokens/classes/public-api.ts} +0 -0
  1137. /package/{dist/src → src}/login/tokens/i18n/i18n.token.ts +0 -0
  1138. /package/{dist/login/tokens/i18n/public-api.d.ts → src/login/tokens/i18n/public-api.ts} +0 -0
  1139. /package/{dist/login/tokens/kc-context/public-api.d.ts → src/login/tokens/kc-context/public-api.ts} +0 -0
  1140. /package/{dist/src → src}/login/tokens/make-user-confirm-password/make-user-confirm-password.token.ts +0 -0
  1141. /package/{dist/login/tokens/make-user-confirm-password/public-api.d.ts → src/login/tokens/make-user-confirm-password/public-api.ts} +0 -0
  1142. /package/{dist/src → src}/tsconfig.lib.json +0 -0
  1143. /package/{dist/src → src}/tsconfig.lib.prod.json +0 -0
  1144. /package/{dist/stories → stories}/login/pages/login/login.stories.ts +0 -0
@@ -1,53 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { input, output, inject, computed, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
3
- import { ToArrayPipe } from '@keycloakify/angular/lib/pipes/to-array';
4
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
5
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
6
- import { InputTagComponent } from '@keycloakify/angular/login/components/input-tag';
7
- import { InputTagSelectsComponent } from '@keycloakify/angular/login/components/input-tag-selects';
8
- import { PasswordWrapperComponent } from '@keycloakify/angular/login/components/password-wrapper';
9
- import { SelectTagComponent } from '@keycloakify/angular/login/components/select-tag';
10
- import { TextareaTagComponent } from '@keycloakify/angular/login/components/textarea-tag';
11
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
12
-
13
- class InputFieldByTypeComponent extends ComponentReference {
14
- constructor() {
15
- super(...arguments);
16
- this.attribute = input();
17
- this.valueOrValues = input();
18
- this.displayableErrors = input();
19
- this.dispatchFormAction = output();
20
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
21
- this.classes = inject(LOGIN_CLASSES);
22
- this.attributePassword = computed(() => {
23
- const attribute = this.attribute() ?? {};
24
- return {
25
- ...attribute,
26
- annotations: { ...(attribute.annotations ?? {}), inputType: 'password' }
27
- };
28
- });
29
- }
30
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputFieldByTypeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
31
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: InputFieldByTypeComponent, isStandalone: true, selector: "kc-input-field-by-type", inputs: { attribute: { classPropertyName: "attribute", publicName: "attribute", isSignal: true, isRequired: false, transformFunction: null }, valueOrValues: { classPropertyName: "valueOrValues", publicName: "valueOrValues", isSignal: true, isRequired: false, transformFunction: null }, displayableErrors: { classPropertyName: "displayableErrors", publicName: "displayableErrors", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dispatchFormAction: "dispatchFormAction" }, providers: [
32
- {
33
- provide: ComponentReference,
34
- useExisting: forwardRef(() => InputFieldByTypeComponent)
35
- }
36
- ], usesInheritance: true, ngImport: i0, template: "@let attr = attribute();\n@if (attr) {\n @let type = attr.annotations.inputType;\n @switch (type) {\n @case ('textarea') {\n <kc-textarea-tag\n [attribute]=\"attribute()\"\n [value]=\"$any(valueOrValues())\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-textarea-tag>\n }\n @case (type === 'select' || type === 'multiselect' ? type : '') {\n <kc-select-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-select-tag>\n }\n @case (type === 'select-radiobuttons' || type === 'multiselect-checkboxes' ? type : '') {\n <kc-input-tag-selects\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag-selects>\n }\n @default {\n @let values = valueOrValues();\n <!-- if valueOrValues is string skip -->\n @if (values && (values | toArray: true).length) {\n @for (value of values; track value; let i = $index) {\n <kc-input-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [fieldIndex]=\"i\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n }\n } @else {\n @if (attr.name === 'password' || attr.name === 'password-confirm') {\n <kc-password-wrapper [passwordInputId]=\"attr.name\">\n <kc-input-tag\n [attribute]=\"attributePassword()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n </kc-password-wrapper>\n } @else {\n <kc-input-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n }\n }\n }\n }\n}\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "pipe", type: ToArrayPipe, name: "toArray" }, { kind: "component", type: TextareaTagComponent, selector: "kc-textarea-tag", inputs: ["attribute", "value", "displayableErrors"], outputs: ["dispatchFormAction"] }, { kind: "component", type: SelectTagComponent, selector: "kc-select-tag", inputs: ["attribute", "valueOrValues", "displayableErrors"], outputs: ["dispatchFormAction"] }, { kind: "component", type: InputTagSelectsComponent, selector: "kc-input-tag-selects", inputs: ["attribute", "valueOrValues", "displayableErrors"], outputs: ["dispatchFormAction"] }, { kind: "component", type: InputTagComponent, selector: "kc-input-tag", inputs: ["attribute", "valueOrValues", "fieldIndex", "values", "displayableErrors"], outputs: ["dispatchFormAction"] }, { kind: "component", type: PasswordWrapperComponent, selector: "kc-password-wrapper", inputs: ["passwordInputId"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
37
- }
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputFieldByTypeComponent, decorators: [{
39
- type: Component,
40
- args: [{ standalone: true, imports: [ToArrayPipe, TextareaTagComponent, SelectTagComponent, InputTagSelectsComponent, InputTagComponent, PasswordWrapperComponent], selector: 'kc-input-field-by-type', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
41
- {
42
- provide: ComponentReference,
43
- useExisting: forwardRef(() => InputFieldByTypeComponent)
44
- }
45
- ], template: "@let attr = attribute();\n@if (attr) {\n @let type = attr.annotations.inputType;\n @switch (type) {\n @case ('textarea') {\n <kc-textarea-tag\n [attribute]=\"attribute()\"\n [value]=\"$any(valueOrValues())\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-textarea-tag>\n }\n @case (type === 'select' || type === 'multiselect' ? type : '') {\n <kc-select-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-select-tag>\n }\n @case (type === 'select-radiobuttons' || type === 'multiselect-checkboxes' ? type : '') {\n <kc-input-tag-selects\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag-selects>\n }\n @default {\n @let values = valueOrValues();\n <!-- if valueOrValues is string skip -->\n @if (values && (values | toArray: true).length) {\n @for (value of values; track value; let i = $index) {\n <kc-input-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [fieldIndex]=\"i\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n }\n } @else {\n @if (attr.name === 'password' || attr.name === 'password-confirm') {\n <kc-password-wrapper [passwordInputId]=\"attr.name\">\n <kc-input-tag\n [attribute]=\"attributePassword()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n </kc-password-wrapper>\n } @else {\n <kc-input-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n }\n }\n }\n }\n}\n", styles: [":host{display:contents}\n"] }]
46
- }] });
47
-
48
- /**
49
- * Generated bundle index. Do not edit.
50
- */
51
-
52
- export { InputFieldByTypeComponent };
53
- //# sourceMappingURL=keycloakify-angular-login-components-input-field-by-type.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-input-field-by-type.mjs","sources":["../../src/login/components/input-field-by-type/input-field-by-type.component.ts","../../src/login/components/input-field-by-type/input-field-by-type.component.html","../../src/login/components/input-field-by-type/keycloakify-angular-login-components-input-field-by-type.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, computed, forwardRef, inject, input, output } from '@angular/core';\nimport { ToArrayPipe } from '@keycloakify/angular/lib/pipes/to-array';\nimport { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';\nimport { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';\nimport { InputTagComponent } from '@keycloakify/angular/login/components/input-tag';\nimport { InputTagSelectsComponent } from '@keycloakify/angular/login/components/input-tag-selects';\nimport { PasswordWrapperComponent } from '@keycloakify/angular/login/components/password-wrapper';\nimport { SelectTagComponent } from '@keycloakify/angular/login/components/select-tag';\nimport { TextareaTagComponent } from '@keycloakify/angular/login/components/textarea-tag';\nimport { FormAction, FormFieldError } from '@keycloakify/angular/login/services/user-profile-form';\nimport { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';\nimport { type Attribute } from 'keycloakify/login/KcContext';\nimport type { ClassKey } from 'keycloakify/login/lib/kcClsx';\n\n@Component({\n standalone: true,\n styles: [\n `\n :host {\n display: contents;\n }\n `\n ],\n imports: [ToArrayPipe, TextareaTagComponent, SelectTagComponent, InputTagSelectsComponent, InputTagComponent, PasswordWrapperComponent],\n selector: 'kc-input-field-by-type',\n templateUrl: 'input-field-by-type.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => InputFieldByTypeComponent)\n }\n ]\n})\nexport class InputFieldByTypeComponent extends ComponentReference {\n attribute = input<Attribute>();\n valueOrValues = input<string | string[]>();\n displayableErrors = input<FormFieldError[]>();\n dispatchFormAction = output<FormAction>();\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n\n attributePassword = computed<Attribute>(() => {\n const attribute: Attribute = this.attribute() ?? ({} as Attribute);\n return {\n ...attribute,\n annotations: { ...(attribute.annotations ?? {}), inputType: 'password' }\n };\n });\n}\n","@let attr = attribute();\n@if (attr) {\n @let type = attr.annotations.inputType;\n @switch (type) {\n @case ('textarea') {\n <kc-textarea-tag\n [attribute]=\"attribute()\"\n [value]=\"$any(valueOrValues())\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-textarea-tag>\n }\n @case (type === 'select' || type === 'multiselect' ? type : '') {\n <kc-select-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-select-tag>\n }\n @case (type === 'select-radiobuttons' || type === 'multiselect-checkboxes' ? type : '') {\n <kc-input-tag-selects\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag-selects>\n }\n @default {\n @let values = valueOrValues();\n <!-- if valueOrValues is string skip -->\n @if (values && (values | toArray: true).length) {\n @for (value of values; track value; let i = $index) {\n <kc-input-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [fieldIndex]=\"i\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n }\n } @else {\n @if (attr.name === 'password' || attr.name === 'password-confirm') {\n <kc-password-wrapper [passwordInputId]=\"attr.name\">\n <kc-input-tag\n [attribute]=\"attributePassword()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n </kc-password-wrapper>\n } @else {\n <kc-input-tag\n [attribute]=\"attribute()\"\n [valueOrValues]=\"valueOrValues()\"\n [displayableErrors]=\"displayableErrors()\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-input-tag>\n }\n }\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -1,124 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { inject, input, output, computed, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
3
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
4
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
5
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
6
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
7
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
8
-
9
- class InputTagSelectsComponent extends ComponentReference {
10
- constructor() {
11
- super(...arguments);
12
- this.i18n = inject(LOGIN_I18N);
13
- this.attribute = input();
14
- this.valueOrValues = input();
15
- this.dispatchFormAction = output();
16
- this.displayableErrors = input();
17
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
18
- this.classes = inject(LOGIN_CLASSES);
19
- this.context = computed(() => {
20
- const attribute = this.attribute();
21
- if (attribute) {
22
- const { inputType } = attribute.annotations;
23
- switch (inputType) {
24
- case 'select-radiobuttons':
25
- return {
26
- inputType: 'radio',
27
- classDiv: 'kcInputClassRadio',
28
- classInput: 'kcInputClassRadioInput',
29
- classLabel: 'kcInputClassRadioLabel'
30
- };
31
- case 'multiselect-checkboxes':
32
- return {
33
- inputType: 'checkbox',
34
- classDiv: 'kcInputClassCheckbox',
35
- classInput: 'kcInputClassCheckboxInput',
36
- classLabel: 'kcInputClassCheckboxLabel'
37
- };
38
- }
39
- }
40
- return null;
41
- });
42
- this.options = computed(() => {
43
- const attribute = this.attribute();
44
- if (attribute) {
45
- return (() => {
46
- walk: {
47
- const { inputOptionsFromValidation } = attribute.annotations;
48
- if (inputOptionsFromValidation === undefined) {
49
- break walk;
50
- }
51
- const validator = attribute.validators[inputOptionsFromValidation];
52
- if (validator === undefined) {
53
- break walk;
54
- }
55
- if (validator.options === undefined) {
56
- break walk;
57
- }
58
- return validator.options;
59
- }
60
- return attribute.validators.options?.options ?? [];
61
- })();
62
- }
63
- return [];
64
- });
65
- }
66
- checked(option) {
67
- const valueOrValues = this.valueOrValues();
68
- if (valueOrValues instanceof Array) {
69
- return valueOrValues.includes(option);
70
- }
71
- return valueOrValues === option;
72
- }
73
- onChange(event, option) {
74
- const valueOrValues = this.valueOrValues();
75
- const isChecked = event.target.checked;
76
- this.dispatchFormAction.emit({
77
- action: 'update',
78
- name: this.attribute()?.name ?? '',
79
- valueOrValues: (() => {
80
- if (valueOrValues instanceof Array) {
81
- const newValues = [...valueOrValues];
82
- if (isChecked) {
83
- newValues.push(option);
84
- }
85
- else {
86
- newValues.splice(newValues.indexOf(option), 1);
87
- }
88
- return newValues;
89
- }
90
- return event.target?.checked ? option : '';
91
- })()
92
- });
93
- }
94
- onBlur() {
95
- this.dispatchFormAction.emit({
96
- action: 'focus lost',
97
- name: this.attribute()?.name ?? '',
98
- fieldIndex: undefined
99
- });
100
- }
101
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputTagSelectsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
102
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: InputTagSelectsComponent, isStandalone: true, selector: "kc-input-tag-selects", inputs: { attribute: { classPropertyName: "attribute", publicName: "attribute", isSignal: true, isRequired: false, transformFunction: null }, valueOrValues: { classPropertyName: "valueOrValues", publicName: "valueOrValues", isSignal: true, isRequired: false, transformFunction: null }, displayableErrors: { classPropertyName: "displayableErrors", publicName: "displayableErrors", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dispatchFormAction: "dispatchFormAction" }, providers: [
103
- {
104
- provide: ComponentReference,
105
- useExisting: forwardRef(() => InputTagSelectsComponent)
106
- }
107
- ], usesInheritance: true, ngImport: i0, template: "@let inputType = context()?.inputType;\n@let classInput = context()?.classInput;\n@let classLabel = context()?.classLabel;\n@let classDiv = context()?.classDiv;\n@let attr = attribute();\n@if (attr) {\n @for (option of options(); track option) {\n <div [kcClass]=\"classDiv\">\n <input\n [type]=\"inputType\"\n [id]=\"attr.name + '-' + option\"\n [name]=\"attr.name\"\n [value]=\"option\"\n [kcClass]=\"classInput\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [checked]=\"checked(option)\"\n (change)=\"onChange($event, option)\"\n (blur)=\"onBlur()\"\n />\n <label\n [for]=\"attr.name + '-' + option\"\n [kcClass]=\"[classLabel!, attr.readOnly ? 'kcInputClassRadioCheckboxLabelDisabled' : $any('')]\"\n >\n {{ i18n.advancedMsgStr(option) }}\n </label>\n </div>\n }\n}\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
108
- }
109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputTagSelectsComponent, decorators: [{
110
- type: Component,
111
- args: [{ standalone: true, imports: [KcClassDirective], selector: 'kc-input-tag-selects', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
112
- {
113
- provide: ComponentReference,
114
- useExisting: forwardRef(() => InputTagSelectsComponent)
115
- }
116
- ], template: "@let inputType = context()?.inputType;\n@let classInput = context()?.classInput;\n@let classLabel = context()?.classLabel;\n@let classDiv = context()?.classDiv;\n@let attr = attribute();\n@if (attr) {\n @for (option of options(); track option) {\n <div [kcClass]=\"classDiv\">\n <input\n [type]=\"inputType\"\n [id]=\"attr.name + '-' + option\"\n [name]=\"attr.name\"\n [value]=\"option\"\n [kcClass]=\"classInput\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [checked]=\"checked(option)\"\n (change)=\"onChange($event, option)\"\n (blur)=\"onBlur()\"\n />\n <label\n [for]=\"attr.name + '-' + option\"\n [kcClass]=\"[classLabel!, attr.readOnly ? 'kcInputClassRadioCheckboxLabelDisabled' : $any('')]\"\n >\n {{ i18n.advancedMsgStr(option) }}\n </label>\n </div>\n }\n}\n", styles: [":host{display:contents}\n"] }]
117
- }] });
118
-
119
- /**
120
- * Generated bundle index. Do not edit.
121
- */
122
-
123
- export { InputTagSelectsComponent };
124
- //# sourceMappingURL=keycloakify-angular-login-components-input-tag-selects.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-input-tag-selects.mjs","sources":["../../src/login/components/input-tag-selects/input-tag-selects.component.ts","../../src/login/components/input-tag-selects/input-tag-selects.component.html","../../src/login/components/input-tag-selects/keycloakify-angular-login-components-input-tag-selects.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, computed, forwardRef, inject, input, output, Signal } from '@angular/core';\nimport { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';\nimport { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';\nimport { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';\nimport { type FormAction, type FormFieldError } from '@keycloakify/angular/login/services/user-profile-form';\nimport { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';\nimport { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';\nimport { type Attribute } from 'keycloakify/login/KcContext';\nimport type { ClassKey } from 'keycloakify/login/lib/kcClsx';\nimport type { I18n } from '@keycloakify/angular/login/i18n';\n\n@Component({\n standalone: true,\n styles: [\n `\n :host {\n display: contents;\n }\n `\n ],\n imports: [KcClassDirective],\n selector: 'kc-input-tag-selects',\n templateUrl: 'input-tag-selects.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => InputTagSelectsComponent)\n }\n ]\n})\nexport class InputTagSelectsComponent extends ComponentReference {\n i18n = inject<I18n>(LOGIN_I18N);\n attribute = input<Attribute>();\n valueOrValues = input<string | string[]>();\n dispatchFormAction = output<FormAction>();\n displayableErrors = input<FormFieldError[]>();\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n\n context: Signal<{\n inputType: 'radio' | 'checkbox';\n classDiv: ClassKey;\n classInput: ClassKey;\n classLabel: ClassKey;\n } | null> = computed(() => {\n const attribute = this.attribute();\n if (attribute) {\n const { inputType } = attribute.annotations;\n switch (inputType) {\n case 'select-radiobuttons':\n return {\n inputType: 'radio',\n classDiv: 'kcInputClassRadio',\n classInput: 'kcInputClassRadioInput',\n classLabel: 'kcInputClassRadioLabel'\n };\n case 'multiselect-checkboxes':\n return {\n inputType: 'checkbox',\n classDiv: 'kcInputClassCheckbox',\n classInput: 'kcInputClassCheckboxInput',\n classLabel: 'kcInputClassCheckboxLabel'\n };\n }\n }\n return null;\n });\n\n options = computed(() => {\n const attribute = this.attribute();\n if (attribute) {\n return (() => {\n walk: {\n const { inputOptionsFromValidation } = attribute.annotations;\n\n if (inputOptionsFromValidation === undefined) {\n break walk;\n }\n\n const validator = (attribute.validators as Record<string, { options?: string[] }>)[inputOptionsFromValidation];\n\n if (validator === undefined) {\n break walk;\n }\n\n if (validator.options === undefined) {\n break walk;\n }\n\n return validator.options;\n }\n\n return attribute.validators.options?.options ?? [];\n })();\n }\n return [];\n });\n\n checked(option: string) {\n const valueOrValues = this.valueOrValues();\n if (valueOrValues instanceof Array) {\n return valueOrValues.includes(option);\n }\n return valueOrValues === option;\n }\n\n onChange(event: Event, option: string) {\n const valueOrValues = this.valueOrValues();\n const isChecked = (event.target as HTMLInputElement).checked;\n this.dispatchFormAction.emit({\n action: 'update',\n name: this.attribute()?.name ?? '',\n valueOrValues: (() => {\n if (valueOrValues instanceof Array) {\n const newValues = [...valueOrValues];\n\n if (isChecked) {\n newValues.push(option);\n } else {\n newValues.splice(newValues.indexOf(option), 1);\n }\n\n return newValues;\n }\n\n return (event.target as HTMLInputElement)?.checked ? option : '';\n })()\n });\n }\n\n onBlur() {\n this.dispatchFormAction.emit({\n action: 'focus lost',\n name: this.attribute()?.name ?? '',\n fieldIndex: undefined\n });\n }\n}\n","@let inputType = context()?.inputType;\n@let classInput = context()?.classInput;\n@let classLabel = context()?.classLabel;\n@let classDiv = context()?.classDiv;\n@let attr = attribute();\n@if (attr) {\n @for (option of options(); track option) {\n <div [kcClass]=\"classDiv\">\n <input\n [type]=\"inputType\"\n [id]=\"attr.name + '-' + option\"\n [name]=\"attr.name\"\n [value]=\"option\"\n [kcClass]=\"classInput\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [checked]=\"checked(option)\"\n (change)=\"onChange($event, option)\"\n (blur)=\"onBlur()\"\n />\n <label\n [for]=\"attr.name + '-' + option\"\n [kcClass]=\"[classLabel!, attr.readOnly ? 'kcInputClassRadioCheckboxLabelDisabled' : $any('')]\"\n >\n {{ i18n.advancedMsgStr(option) }}\n </label>\n </div>\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;AA+BM,MAAO,wBAAyB,SAAQ,kBAAkB,CAAA;AApBhE,IAAA,WAAA,GAAA;;AAqBI,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAO,UAAU,CAAC,CAAC;QAChC,IAAS,CAAA,SAAA,GAAG,KAAK,EAAa,CAAC;QAC/B,IAAa,CAAA,aAAA,GAAG,KAAK,EAAqB,CAAC;QAC3C,IAAkB,CAAA,kBAAA,GAAG,MAAM,EAAc,CAAC;QAC1C,IAAiB,CAAA,iBAAA,GAAG,KAAK,EAAoB,CAAC;AACrC,QAAA,IAAA,CAAA,eAAe,GAAG,MAAM,CAAU,eAAe,CAAC,CAAC;AACnD,QAAA,IAAA,CAAA,OAAO,GAAG,MAAM,CAAoC,aAAa,CAAC,CAAC;AAE5E,QAAA,IAAA,CAAA,OAAO,GAKK,QAAQ,CAAC,MAAK;AACtB,YAAA,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;YACnC,IAAI,SAAS,EAAE;AACX,gBAAA,MAAM,EAAE,SAAS,EAAE,GAAG,SAAS,CAAC,WAAW,CAAC;gBAC5C,QAAQ,SAAS;AACb,oBAAA,KAAK,qBAAqB;wBACtB,OAAO;AACH,4BAAA,SAAS,EAAE,OAAO;AAClB,4BAAA,QAAQ,EAAE,mBAAmB;AAC7B,4BAAA,UAAU,EAAE,wBAAwB;AACpC,4BAAA,UAAU,EAAE,wBAAwB;yBACvC,CAAC;AACN,oBAAA,KAAK,wBAAwB;wBACzB,OAAO;AACH,4BAAA,SAAS,EAAE,UAAU;AACrB,4BAAA,QAAQ,EAAE,sBAAsB;AAChC,4BAAA,UAAU,EAAE,2BAA2B;AACvC,4BAAA,UAAU,EAAE,2BAA2B;yBAC1C,CAAC;iBACT;aACJ;AACD,YAAA,OAAO,IAAI,CAAC;AAChB,SAAC,CAAC,CAAC;AAEH,QAAA,IAAA,CAAA,OAAO,GAAG,QAAQ,CAAC,MAAK;AACpB,YAAA,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;YACnC,IAAI,SAAS,EAAE;gBACX,OAAO,CAAC,MAAK;AACT,oBAAA,IAAI,EAAE;AACF,wBAAA,MAAM,EAAE,0BAA0B,EAAE,GAAG,SAAS,CAAC,WAAW,CAAC;AAE7D,wBAAA,IAAI,0BAA0B,KAAK,SAAS,EAAE;AAC1C,4BAAA,MAAM,IAAI,CAAC;yBACd;wBAED,MAAM,SAAS,GAAI,SAAS,CAAC,UAAqD,CAAC,0BAA0B,CAAC,CAAC;AAE/G,wBAAA,IAAI,SAAS,KAAK,SAAS,EAAE;AACzB,4BAAA,MAAM,IAAI,CAAC;yBACd;AAED,wBAAA,IAAI,SAAS,CAAC,OAAO,KAAK,SAAS,EAAE;AACjC,4BAAA,MAAM,IAAI,CAAC;yBACd;wBAED,OAAO,SAAS,CAAC,OAAO,CAAC;qBAC5B;oBAED,OAAO,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,IAAI,EAAE,CAAC;iBACtD,GAAG,CAAC;aACR;AACD,YAAA,OAAO,EAAE,CAAC;AACd,SAAC,CAAC,CAAC;AAyCN,KAAA;AAvCG,IAAA,OAAO,CAAC,MAAc,EAAA;AAClB,QAAA,MAAM,aAAa,GAAG,IAAI,CAAC,aAAa,EAAE,CAAC;AAC3C,QAAA,IAAI,aAAa,YAAY,KAAK,EAAE;AAChC,YAAA,OAAO,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACzC;QACD,OAAO,aAAa,KAAK,MAAM,CAAC;KACnC;IAED,QAAQ,CAAC,KAAY,EAAE,MAAc,EAAA;AACjC,QAAA,MAAM,aAAa,GAAG,IAAI,CAAC,aAAa,EAAE,CAAC;AAC3C,QAAA,MAAM,SAAS,GAAI,KAAK,CAAC,MAA2B,CAAC,OAAO,CAAC;AAC7D,QAAA,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC;AACzB,YAAA,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,IAAI,CAAC,SAAS,EAAE,EAAE,IAAI,IAAI,EAAE;YAClC,aAAa,EAAE,CAAC,MAAK;AACjB,gBAAA,IAAI,aAAa,YAAY,KAAK,EAAE;AAChC,oBAAA,MAAM,SAAS,GAAG,CAAC,GAAG,aAAa,CAAC,CAAC;oBAErC,IAAI,SAAS,EAAE;AACX,wBAAA,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;qBAC1B;yBAAM;AACH,wBAAA,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;qBAClD;AAED,oBAAA,OAAO,SAAS,CAAC;iBACpB;AAED,gBAAA,OAAQ,KAAK,CAAC,MAA2B,EAAE,OAAO,GAAG,MAAM,GAAG,EAAE,CAAC;AACrE,aAAC,GAAG;AACP,SAAA,CAAC,CAAC;KACN;IAED,MAAM,GAAA;AACF,QAAA,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC;AACzB,YAAA,MAAM,EAAE,YAAY;YACpB,IAAI,EAAE,IAAI,CAAC,SAAS,EAAE,EAAE,IAAI,IAAI,EAAE;AAClC,YAAA,UAAU,EAAE,SAAS;AACxB,SAAA,CAAC,CAAC;KACN;8GA1GQ,wBAAwB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAxB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wBAAwB,EAPtB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,EAAA,SAAA,EAAA,EAAA,iBAAA,EAAA,WAAA,EAAA,UAAA,EAAA,WAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,aAAA,EAAA,EAAA,iBAAA,EAAA,eAAA,EAAA,UAAA,EAAA,eAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,EAAA,iBAAA,EAAA,mBAAA,EAAA,UAAA,EAAA,mBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,kBAAA,EAAA,oBAAA,EAAA,EAAA,SAAA,EAAA;AACP,YAAA;AACI,gBAAA,OAAO,EAAE,kBAAkB;AAC3B,gBAAA,WAAW,EAAE,UAAU,CAAC,MAAM,wBAAwB,CAAC;AAC1D,aAAA;SACJ,EC7BL,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,+jCA6BA,mFDTc,gBAAgB,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAWjB,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBApBpC,SAAS;iCACM,IAAI,EAAA,OAAA,EAQP,CAAC,gBAAgB,CAAC,EAAA,QAAA,EACjB,sBAAsB,EAEf,eAAA,EAAA,uBAAuB,CAAC,MAAM,EACpC,SAAA,EAAA;AACP,wBAAA;AACI,4BAAA,OAAO,EAAE,kBAAkB;AAC3B,4BAAA,WAAW,EAAE,UAAU,CAAC,8BAA8B,CAAC;AAC1D,yBAAA;AACJ,qBAAA,EAAA,QAAA,EAAA,+jCAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA;;;AE7BL;;AAEG;;;;"}
@@ -1,97 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { inject, input, output, computed, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
3
- import { AttributesDirective } from '@keycloakify/angular/lib/directives/attributes';
4
- import { InputTypePipe } from '@keycloakify/angular/lib/pipes/input-type';
5
- import { ToArrayPipe } from '@keycloakify/angular/lib/pipes/to-array';
6
- import { ToNumberPipe } from '@keycloakify/angular/lib/pipes/to-number';
7
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
8
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
9
- import { AddRemoveButtonsMultiValuedAttributeComponent } from '@keycloakify/angular/login/components/add-remove-buttons-multi-valued-attribute';
10
- import { FieldErrorsComponent } from '@keycloakify/angular/login/components/field-errors';
11
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
12
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
13
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
14
-
15
- class InputTagComponent extends ComponentReference {
16
- constructor() {
17
- super(...arguments);
18
- this.i18n = inject(LOGIN_I18N);
19
- this.attribute = input();
20
- this.valueOrValues = input();
21
- this.fieldIndex = input(undefined);
22
- this.values = input();
23
- this.displayableErrors = input();
24
- this.dispatchFormAction = output();
25
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
26
- this.classes = inject(LOGIN_CLASSES);
27
- this.value = computed(() => {
28
- const valueOrValues = this.valueOrValues();
29
- const index = this.fieldIndex();
30
- if (valueOrValues instanceof Array) {
31
- if (index) {
32
- return valueOrValues[index] ?? null;
33
- }
34
- return null;
35
- }
36
- return valueOrValues ?? null;
37
- });
38
- }
39
- onChange(event) {
40
- const valueOrValues = this.valueOrValues();
41
- this.dispatchFormAction.emit({
42
- action: 'update',
43
- name: this.attribute()?.name ?? '',
44
- valueOrValues: (() => {
45
- if (this.fieldIndex !== undefined) {
46
- if (valueOrValues instanceof Array) {
47
- return valueOrValues.map((value, i) => {
48
- if (i === this.fieldIndex()) {
49
- return event.target?.value;
50
- }
51
- return value;
52
- });
53
- }
54
- }
55
- return event.target?.value;
56
- })()
57
- });
58
- }
59
- onBlur() {
60
- this.dispatchFormAction.emit({
61
- action: 'focus lost',
62
- name: this.attribute()?.name ?? '',
63
- fieldIndex: this.fieldIndex()
64
- });
65
- }
66
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputTagComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
67
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: InputTagComponent, isStandalone: true, selector: "kc-input-tag", inputs: { attribute: { classPropertyName: "attribute", publicName: "attribute", isSignal: true, isRequired: false, transformFunction: null }, valueOrValues: { classPropertyName: "valueOrValues", publicName: "valueOrValues", isSignal: true, isRequired: false, transformFunction: null }, fieldIndex: { classPropertyName: "fieldIndex", publicName: "fieldIndex", isSignal: true, isRequired: false, transformFunction: null }, values: { classPropertyName: "values", publicName: "values", isSignal: true, isRequired: false, transformFunction: null }, displayableErrors: { classPropertyName: "displayableErrors", publicName: "displayableErrors", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dispatchFormAction: "dispatchFormAction" }, providers: [
68
- {
69
- provide: ComponentReference,
70
- useExisting: forwardRef(() => InputTagComponent)
71
- }
72
- ], usesInheritance: true, ngImport: i0, template: "@let attr = attribute();\n@let index = fieldIndex();\n@if (attr) {\n <input\n [type]=\"attr.annotations.inputType | inputType\"\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [value]=\"value()\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"index && displayableErrors()?.[index] !== undefined\"\n [disabled]=\"attr.readOnly\"\n [autocomplete]=\"attr.autocomplete\"\n [placeholder]=\"i18n.advancedMsgStr(attr.annotations.inputTypePlaceholder ?? '')\"\n [attr.pattern]=\"attr.annotations.inputTypePattern\"\n [attr.size]=\"\n !attr.annotations.inputTypeSize\n ? undefined\n : (attr.annotations.inputTypeSize | toNumber) === 0\n ? undefined\n : (attr.annotations.inputTypeSize | toNumber)\n \"\n [attr.maxlength]=\"!attr.annotations.inputTypeMaxlength ? undefined : (attr.annotations.inputTypeMaxlength | toNumber)\"\n [attr.minlength]=\"!attr.annotations.inputTypeMinlength ? undefined : (attr.annotations.inputTypeMinlength | toNumber)\"\n [attr.max]=\"attr.annotations.inputTypeMax\"\n [attr.min]=\"attr.annotations.inputTypeMin\"\n [attr.step]=\"attr.annotations.inputTypeStep\"\n [kcAttributes]=\"attr.html5DataAnnotations\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n />\n @if (index !== undefined) {\n @let values = valueOrValues() ?? [] | toArray;\n <kc-field-errors\n [attribute]=\"attr\"\n [displayableErrors]=\"displayableErrors()\"\n [fieldIndex]=\"index\"\n ></kc-field-errors>\n <kc-add-remove-buttons-multi-valued-attribute\n [attribute]=\"attr\"\n [values]=\"values\"\n [fieldIndex]=\"index\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-add-remove-buttons-multi-valued-attribute>\n }\n}\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "pipe", type: InputTypePipe, name: "inputType" }, { kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }, { kind: "pipe", type: ToNumberPipe, name: "toNumber" }, { kind: "directive", type: AttributesDirective, selector: "[kcAttributes]", inputs: ["kcAttributes"] }, { kind: "pipe", type: ToArrayPipe, name: "toArray" }, { kind: "component", type: FieldErrorsComponent, selector: "kc-field-errors", inputs: ["attribute", "displayableErrors", "fieldIndex"] }, { kind: "component", type: AddRemoveButtonsMultiValuedAttributeComponent, selector: "kc-add-remove-buttons-multi-valued-attribute", inputs: ["attribute", "values", "fieldIndex"], outputs: ["dispatchFormAction"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
73
- }
74
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InputTagComponent, decorators: [{
75
- type: Component,
76
- args: [{ standalone: true, imports: [
77
- InputTypePipe,
78
- KcClassDirective,
79
- ToNumberPipe,
80
- AttributesDirective,
81
- ToArrayPipe,
82
- FieldErrorsComponent,
83
- AddRemoveButtonsMultiValuedAttributeComponent
84
- ], selector: 'kc-input-tag', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
85
- {
86
- provide: ComponentReference,
87
- useExisting: forwardRef(() => InputTagComponent)
88
- }
89
- ], template: "@let attr = attribute();\n@let index = fieldIndex();\n@if (attr) {\n <input\n [type]=\"attr.annotations.inputType | inputType\"\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [value]=\"value()\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"index && displayableErrors()?.[index] !== undefined\"\n [disabled]=\"attr.readOnly\"\n [autocomplete]=\"attr.autocomplete\"\n [placeholder]=\"i18n.advancedMsgStr(attr.annotations.inputTypePlaceholder ?? '')\"\n [attr.pattern]=\"attr.annotations.inputTypePattern\"\n [attr.size]=\"\n !attr.annotations.inputTypeSize\n ? undefined\n : (attr.annotations.inputTypeSize | toNumber) === 0\n ? undefined\n : (attr.annotations.inputTypeSize | toNumber)\n \"\n [attr.maxlength]=\"!attr.annotations.inputTypeMaxlength ? undefined : (attr.annotations.inputTypeMaxlength | toNumber)\"\n [attr.minlength]=\"!attr.annotations.inputTypeMinlength ? undefined : (attr.annotations.inputTypeMinlength | toNumber)\"\n [attr.max]=\"attr.annotations.inputTypeMax\"\n [attr.min]=\"attr.annotations.inputTypeMin\"\n [attr.step]=\"attr.annotations.inputTypeStep\"\n [kcAttributes]=\"attr.html5DataAnnotations\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n />\n @if (index !== undefined) {\n @let values = valueOrValues() ?? [] | toArray;\n <kc-field-errors\n [attribute]=\"attr\"\n [displayableErrors]=\"displayableErrors()\"\n [fieldIndex]=\"index\"\n ></kc-field-errors>\n <kc-add-remove-buttons-multi-valued-attribute\n [attribute]=\"attr\"\n [values]=\"values\"\n [fieldIndex]=\"index\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-add-remove-buttons-multi-valued-attribute>\n }\n}\n", styles: [":host{display:contents}\n"] }]
90
- }] });
91
-
92
- /**
93
- * Generated bundle index. Do not edit.
94
- */
95
-
96
- export { InputTagComponent };
97
- //# sourceMappingURL=keycloakify-angular-login-components-input-tag.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-input-tag.mjs","sources":["../../src/login/components/input-tag/input-tag.component.ts","../../src/login/components/input-tag/input-tag.component.html","../../src/login/components/input-tag/keycloakify-angular-login-components-input-tag.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, computed, forwardRef, inject, input, output } from '@angular/core';\nimport { AttributesDirective } from '@keycloakify/angular/lib/directives/attributes';\nimport { InputTypePipe } from '@keycloakify/angular/lib/pipes/input-type';\nimport { ToArrayPipe } from '@keycloakify/angular/lib/pipes/to-array';\nimport { ToNumberPipe } from '@keycloakify/angular/lib/pipes/to-number';\nimport { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';\nimport { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';\nimport { AddRemoveButtonsMultiValuedAttributeComponent } from '@keycloakify/angular/login/components/add-remove-buttons-multi-valued-attribute';\nimport { FieldErrorsComponent } from '@keycloakify/angular/login/components/field-errors';\nimport { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';\nimport type { I18n } from '@keycloakify/angular/login/i18n';\nimport { FormAction, FormFieldError } from '@keycloakify/angular/login/services/user-profile-form';\nimport { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';\nimport { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';\nimport { type Attribute } from 'keycloakify/login/KcContext';\nimport type { ClassKey } from 'keycloakify/login/lib/kcClsx';\n\n@Component({\n standalone: true,\n styles: [\n `\n :host {\n display: contents;\n }\n `\n ],\n imports: [\n InputTypePipe,\n KcClassDirective,\n ToNumberPipe,\n AttributesDirective,\n ToArrayPipe,\n FieldErrorsComponent,\n AddRemoveButtonsMultiValuedAttributeComponent\n ],\n selector: 'kc-input-tag',\n templateUrl: 'input-tag.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => InputTagComponent)\n }\n ]\n})\nexport class InputTagComponent extends ComponentReference {\n i18n = inject<I18n>(LOGIN_I18N);\n attribute = input<Attribute>();\n valueOrValues = input<string | string[]>();\n fieldIndex = input<number | undefined>(undefined);\n values = input<string[]>();\n displayableErrors = input<FormFieldError[]>();\n dispatchFormAction = output<FormAction>();\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n\n value = computed(() => {\n const valueOrValues = this.valueOrValues();\n const index = this.fieldIndex();\n if (valueOrValues instanceof Array) {\n if (index) {\n return valueOrValues[index] ?? null;\n }\n return null;\n }\n return valueOrValues ?? null;\n });\n\n onChange(event: Event) {\n const valueOrValues = this.valueOrValues();\n this.dispatchFormAction.emit({\n action: 'update',\n name: this.attribute()?.name ?? '',\n valueOrValues: (() => {\n if (this.fieldIndex !== undefined) {\n if (valueOrValues instanceof Array) {\n return valueOrValues.map((value, i) => {\n if (i === this.fieldIndex()) {\n return (event.target as HTMLInputElement)?.value;\n }\n\n return value;\n });\n }\n }\n\n return (event.target as HTMLInputElement)?.value;\n })()\n });\n }\n\n onBlur() {\n this.dispatchFormAction.emit({\n action: 'focus lost',\n name: this.attribute()?.name ?? '',\n fieldIndex: this.fieldIndex()\n });\n }\n}\n","@let attr = attribute();\n@let index = fieldIndex();\n@if (attr) {\n <input\n [type]=\"attr.annotations.inputType | inputType\"\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [value]=\"value()\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"index && displayableErrors()?.[index] !== undefined\"\n [disabled]=\"attr.readOnly\"\n [autocomplete]=\"attr.autocomplete\"\n [placeholder]=\"i18n.advancedMsgStr(attr.annotations.inputTypePlaceholder ?? '')\"\n [attr.pattern]=\"attr.annotations.inputTypePattern\"\n [attr.size]=\"\n !attr.annotations.inputTypeSize\n ? undefined\n : (attr.annotations.inputTypeSize | toNumber) === 0\n ? undefined\n : (attr.annotations.inputTypeSize | toNumber)\n \"\n [attr.maxlength]=\"!attr.annotations.inputTypeMaxlength ? undefined : (attr.annotations.inputTypeMaxlength | toNumber)\"\n [attr.minlength]=\"!attr.annotations.inputTypeMinlength ? undefined : (attr.annotations.inputTypeMinlength | toNumber)\"\n [attr.max]=\"attr.annotations.inputTypeMax\"\n [attr.min]=\"attr.annotations.inputTypeMin\"\n [attr.step]=\"attr.annotations.inputTypeStep\"\n [kcAttributes]=\"attr.html5DataAnnotations\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n />\n @if (index !== undefined) {\n @let values = valueOrValues() ?? [] | toArray;\n <kc-field-errors\n [attribute]=\"attr\"\n [displayableErrors]=\"displayableErrors()\"\n [fieldIndex]=\"index\"\n ></kc-field-errors>\n <kc-add-remove-buttons-multi-valued-attribute\n [attribute]=\"attr\"\n [values]=\"values\"\n [fieldIndex]=\"index\"\n (dispatchFormAction)=\"dispatchFormAction.emit($event)\"\n ></kc-add-remove-buttons-multi-valued-attribute>\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -1,39 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { inject, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
3
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
4
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
5
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
6
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
7
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
8
-
9
- class LogoutOtherSessionsComponent extends ComponentReference {
10
- constructor() {
11
- super(...arguments);
12
- this.i18n = inject(LOGIN_I18N);
13
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
14
- this.classes = inject(LOGIN_CLASSES);
15
- }
16
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LogoutOtherSessionsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
17
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.6", type: LogoutOtherSessionsComponent, isStandalone: true, selector: "kc-logout-other-sessions", providers: [
18
- {
19
- provide: ComponentReference,
20
- useExisting: forwardRef(() => LogoutOtherSessionsComponent)
21
- }
22
- ], usesInheritance: true, ngImport: i0, template: "<div\n id=\"kc-form-options\"\n [kcClass]=\"'kcFormOptionsClass'\"\n>\n <div [kcClass]=\"'kcFormOptionsWrapperClass'\">\n <div class=\"checkbox\">\n <label for=\"logout-sessions\">\n <input\n type=\"checkbox\"\n id=\"logout-sessions\"\n name=\"logout-sessions\"\n value=\"on\"\n defaultChecked=\"true\"\n />\n {{ i18n.msgStr('logoutOtherSessions') }}\n </label>\n </div>\n </div>\n</div>\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
23
- }
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LogoutOtherSessionsComponent, decorators: [{
25
- type: Component,
26
- args: [{ selector: 'kc-logout-other-sessions', standalone: true, imports: [KcClassDirective], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
27
- {
28
- provide: ComponentReference,
29
- useExisting: forwardRef(() => LogoutOtherSessionsComponent)
30
- }
31
- ], template: "<div\n id=\"kc-form-options\"\n [kcClass]=\"'kcFormOptionsClass'\"\n>\n <div [kcClass]=\"'kcFormOptionsWrapperClass'\">\n <div class=\"checkbox\">\n <label for=\"logout-sessions\">\n <input\n type=\"checkbox\"\n id=\"logout-sessions\"\n name=\"logout-sessions\"\n value=\"on\"\n defaultChecked=\"true\"\n />\n {{ i18n.msgStr('logoutOtherSessions') }}\n </label>\n </div>\n </div>\n</div>\n", styles: [":host{display:contents}\n"] }]
32
- }] });
33
-
34
- /**
35
- * Generated bundle index. Do not edit.
36
- */
37
-
38
- export { LogoutOtherSessionsComponent };
39
- //# sourceMappingURL=keycloakify-angular-login-components-logout-other-sessions.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-logout-other-sessions.mjs","sources":["../../src/login/components/logout-other-sessions/logout-other-sessions.component.ts","../../src/login/components/logout-other-sessions/logout-other-sessions.component.html","../../src/login/components/logout-other-sessions/keycloakify-angular-login-components-logout-other-sessions.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, forwardRef, inject } from '@angular/core';\nimport { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';\nimport { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';\nimport { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';\nimport { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';\nimport { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';\nimport type { ClassKey } from 'keycloakify/login/lib/kcClsx';\nimport type { I18n } from '@keycloakify/angular/login/i18n';\n\n@Component({\n selector: 'kc-logout-other-sessions',\n styles: [\n `\n :host {\n display: contents;\n }\n `\n ],\n standalone: true,\n imports: [KcClassDirective],\n changeDetection: ChangeDetectionStrategy.OnPush,\n templateUrl: './logout-other-sessions.component.html',\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => LogoutOtherSessionsComponent)\n }\n ]\n})\nexport class LogoutOtherSessionsComponent extends ComponentReference {\n i18n = inject<I18n>(LOGIN_I18N);\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n}\n","<div\n id=\"kc-form-options\"\n [kcClass]=\"'kcFormOptionsClass'\"\n>\n <div [kcClass]=\"'kcFormOptionsWrapperClass'\">\n <div class=\"checkbox\">\n <label for=\"logout-sessions\">\n <input\n type=\"checkbox\"\n id=\"logout-sessions\"\n name=\"logout-sessions\"\n value=\"on\"\n defaultChecked=\"true\"\n />\n {{ i18n.msgStr('logoutOtherSessions') }}\n </label>\n </div>\n </div>\n</div>\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;AA6BM,MAAO,4BAA6B,SAAQ,kBAAkB,CAAA;AApBpE,IAAA,WAAA,GAAA;;AAqBI,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAO,UAAU,CAAC,CAAC;AACvB,QAAA,IAAA,CAAA,eAAe,GAAG,MAAM,CAAU,eAAe,CAAC,CAAC;AACnD,QAAA,IAAA,CAAA,OAAO,GAAG,MAAM,CAAoC,aAAa,CAAC,CAAC;AAC/E,KAAA;8GAJY,4BAA4B,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAA5B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,4BAA4B,EAP1B,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,SAAA,EAAA;AACP,YAAA;AACI,gBAAA,OAAO,EAAE,kBAAkB;AAC3B,gBAAA,WAAW,EAAE,UAAU,CAAC,MAAM,4BAA4B,CAAC;AAC9D,aAAA;SACJ,EC3BL,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,mkBAmBA,mFDAc,gBAAgB,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAUjB,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBApBxC,SAAS;+BACI,0BAA0B,EAAA,UAAA,EAQxB,IAAI,EAAA,OAAA,EACP,CAAC,gBAAgB,CAAC,EACV,eAAA,EAAA,uBAAuB,CAAC,MAAM,EAEpC,SAAA,EAAA;AACP,wBAAA;AACI,4BAAA,OAAO,EAAE,kBAAkB;AAC3B,4BAAA,WAAW,EAAE,UAAU,CAAC,kCAAkC,CAAC;AAC9D,yBAAA;AACJ,qBAAA,EAAA,QAAA,EAAA,mkBAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA;;;AE3BL;;AAEG;;;;"}
@@ -1,53 +0,0 @@
1
- import { AsyncPipe } from '@angular/common';
2
- import * as i0 from '@angular/core';
3
- import { inject, Renderer2, input, signal, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
4
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
5
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
6
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
7
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
8
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
9
-
10
- class PasswordWrapperComponent extends ComponentReference {
11
- constructor() {
12
- super(...arguments);
13
- this.i18n = inject(LOGIN_I18N);
14
- this.renderer = inject(Renderer2);
15
- this.passwordInputId = input.required();
16
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
17
- this.classes = inject(LOGIN_CLASSES);
18
- this.isPasswordRevealed = signal(false);
19
- }
20
- togglePasswordVisibility() {
21
- this.isPasswordRevealed.update(revealed => !revealed);
22
- this.setPasswordInputType();
23
- }
24
- setPasswordInputType() {
25
- const input = document.getElementById(this.passwordInputId());
26
- if (input) {
27
- this.renderer.setProperty(input, 'type', this.isPasswordRevealed() ? 'text' : 'password');
28
- }
29
- }
30
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PasswordWrapperComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
31
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.6", type: PasswordWrapperComponent, isStandalone: true, selector: "kc-password-wrapper", inputs: { passwordInputId: { classPropertyName: "passwordInputId", publicName: "passwordInputId", isSignal: true, isRequired: true, transformFunction: null } }, providers: [
32
- {
33
- provide: ComponentReference,
34
- useExisting: forwardRef(() => PasswordWrapperComponent)
35
- }
36
- ], usesInheritance: true, ngImport: i0, template: "<div [kcClass]=\"'kcInputGroup'\">\n <ng-content></ng-content>\n <button\n type=\"button\"\n [kcClass]=\"'kcFormPasswordVisibilityButtonClass'\"\n [attr.aria-label]=\"i18n.msgStr(isPasswordRevealed() ? 'hidePassword' : 'showPassword')\"\n [attr.aria-controls]=\"passwordInputId()\"\n (click)=\"togglePasswordVisibility()\"\n >\n <i\n [kcClass]=\"isPasswordRevealed() ? 'kcFormPasswordVisibilityIconHide' : 'kcFormPasswordVisibilityIconShow'\"\n aria-hidden=\"true\"\n ></i>\n </button>\n</div>\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
37
- }
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PasswordWrapperComponent, decorators: [{
39
- type: Component,
40
- args: [{ selector: 'kc-password-wrapper', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [KcClassDirective, AsyncPipe], providers: [
41
- {
42
- provide: ComponentReference,
43
- useExisting: forwardRef(() => PasswordWrapperComponent)
44
- }
45
- ], template: "<div [kcClass]=\"'kcInputGroup'\">\n <ng-content></ng-content>\n <button\n type=\"button\"\n [kcClass]=\"'kcFormPasswordVisibilityButtonClass'\"\n [attr.aria-label]=\"i18n.msgStr(isPasswordRevealed() ? 'hidePassword' : 'showPassword')\"\n [attr.aria-controls]=\"passwordInputId()\"\n (click)=\"togglePasswordVisibility()\"\n >\n <i\n [kcClass]=\"isPasswordRevealed() ? 'kcFormPasswordVisibilityIconHide' : 'kcFormPasswordVisibilityIconShow'\"\n aria-hidden=\"true\"\n ></i>\n </button>\n</div>\n", styles: [":host{display:contents}\n"] }]
46
- }] });
47
-
48
- /**
49
- * Generated bundle index. Do not edit.
50
- */
51
-
52
- export { PasswordWrapperComponent };
53
- //# sourceMappingURL=keycloakify-angular-login-components-password-wrapper.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-password-wrapper.mjs","sources":["../../src/login/components/password-wrapper/password-wrapper.component.ts","../../src/login/components/password-wrapper/password-wrapper.component.html","../../src/login/components/password-wrapper/keycloakify-angular-login-components-password-wrapper.ts"],"sourcesContent":["import { AsyncPipe } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, forwardRef, inject, input, Renderer2, signal, WritableSignal } from '@angular/core';\nimport { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';\nimport { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';\nimport { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';\nimport { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';\nimport { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';\nimport type { ClassKey } from 'keycloakify/login/lib/kcClsx';\nimport type { I18n } from '@keycloakify/angular/login/i18n';\n\n@Component({\n selector: 'kc-password-wrapper',\n styles: [\n `\n :host {\n display: contents;\n }\n `\n ],\n standalone: true,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [KcClassDirective, AsyncPipe],\n templateUrl: './password-wrapper.component.html',\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => PasswordWrapperComponent)\n }\n ]\n})\nexport class PasswordWrapperComponent extends ComponentReference {\n i18n = inject<I18n>(LOGIN_I18N);\n private renderer = inject(Renderer2);\n passwordInputId = input.required<string>();\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n\n isPasswordRevealed: WritableSignal<boolean> = signal(false);\n\n togglePasswordVisibility(): void {\n this.isPasswordRevealed.update(revealed => !revealed);\n this.setPasswordInputType();\n }\n\n private setPasswordInputType(): void {\n const input = document.getElementById(this.passwordInputId());\n if (input) {\n this.renderer.setProperty(input, 'type', this.isPasswordRevealed() ? 'text' : 'password');\n }\n }\n}\n","<div [kcClass]=\"'kcInputGroup'\">\n <ng-content></ng-content>\n <button\n type=\"button\"\n [kcClass]=\"'kcFormPasswordVisibilityButtonClass'\"\n [attr.aria-label]=\"i18n.msgStr(isPasswordRevealed() ? 'hidePassword' : 'showPassword')\"\n [attr.aria-controls]=\"passwordInputId()\"\n (click)=\"togglePasswordVisibility()\"\n >\n <i\n [kcClass]=\"isPasswordRevealed() ? 'kcFormPasswordVisibilityIconHide' : 'kcFormPasswordVisibilityIconShow'\"\n aria-hidden=\"true\"\n ></i>\n </button>\n</div>\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;AA8BM,MAAO,wBAAyB,SAAQ,kBAAkB,CAAA;AApBhE,IAAA,WAAA,GAAA;;AAqBI,QAAA,IAAA,CAAA,IAAI,GAAG,MAAM,CAAO,UAAU,CAAC,CAAC;AACxB,QAAA,IAAA,CAAA,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AACrC,QAAA,IAAA,CAAA,eAAe,GAAG,KAAK,CAAC,QAAQ,EAAU,CAAC;AAClC,QAAA,IAAA,CAAA,eAAe,GAAG,MAAM,CAAU,eAAe,CAAC,CAAC;AACnD,QAAA,IAAA,CAAA,OAAO,GAAG,MAAM,CAAoC,aAAa,CAAC,CAAC;AAE5E,QAAA,IAAA,CAAA,kBAAkB,GAA4B,MAAM,CAAC,KAAK,CAAC,CAAC;AAa/D,KAAA;IAXG,wBAAwB,GAAA;AACpB,QAAA,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,QAAQ,IAAI,CAAC,QAAQ,CAAC,CAAC;QACtD,IAAI,CAAC,oBAAoB,EAAE,CAAC;KAC/B;IAEO,oBAAoB,GAAA;QACxB,MAAM,KAAK,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC;QAC9D,IAAI,KAAK,EAAE;YACP,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,kBAAkB,EAAE,GAAG,MAAM,GAAG,UAAU,CAAC,CAAC;SAC7F;KACJ;8GAnBQ,wBAAwB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAxB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wBAAwB,EAPtB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,MAAA,EAAA,EAAA,eAAA,EAAA,EAAA,iBAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,SAAA,EAAA;AACP,YAAA;AACI,gBAAA,OAAO,EAAE,kBAAkB;AAC3B,gBAAA,WAAW,EAAE,UAAU,CAAC,MAAM,wBAAwB,CAAC;AAC1D,aAAA;SACJ,EC5BL,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,okBAeA,mFDMc,gBAAgB,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FASjB,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBApBpC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,qBAAqB,EAQnB,UAAA,EAAA,IAAI,EACC,eAAA,EAAA,uBAAuB,CAAC,MAAM,EACtC,OAAA,EAAA,CAAC,gBAAgB,EAAE,SAAS,CAAC,EAE3B,SAAA,EAAA;AACP,wBAAA;AACI,4BAAA,OAAO,EAAE,kBAAkB;AAC3B,4BAAA,WAAW,EAAE,UAAU,CAAC,8BAA8B,CAAC;AAC1D,yBAAA;AACJ,qBAAA,EAAA,QAAA,EAAA,okBAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA;;;AE5BL;;AAEG;;;;"}
@@ -1,89 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { inject, input, output, computed, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
3
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
4
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
5
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
6
- import { ToNumberPipe } from '@keycloakify/angular/lib/pipes/to-number';
7
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
8
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
9
-
10
- class SelectTagComponent extends ComponentReference {
11
- constructor() {
12
- super(...arguments);
13
- this.i18n = inject(LOGIN_I18N);
14
- this.attribute = input();
15
- this.valueOrValues = input();
16
- this.displayableErrors = input();
17
- this.dispatchFormAction = output();
18
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
19
- this.classes = inject(LOGIN_CLASSES);
20
- this.isMultiple = computed(() => {
21
- return this.attribute()?.annotations?.inputType === 'multiselect';
22
- });
23
- this.options = computed(() => {
24
- const attribute = this.attribute();
25
- if (attribute) {
26
- return (() => {
27
- walk: {
28
- const { inputOptionsFromValidation } = attribute.annotations;
29
- if (inputOptionsFromValidation === undefined) {
30
- break walk;
31
- }
32
- const validator = attribute.validators[inputOptionsFromValidation];
33
- if (validator === undefined) {
34
- break walk;
35
- }
36
- if (validator.options === undefined) {
37
- break walk;
38
- }
39
- return validator.options;
40
- }
41
- return attribute.validators.options?.options ?? [];
42
- })();
43
- }
44
- return [];
45
- });
46
- }
47
- onChange(event) {
48
- this.dispatchFormAction.emit({
49
- action: 'update',
50
- name: this.attribute()?.name ?? '',
51
- valueOrValues: (() => {
52
- if (this.isMultiple()) {
53
- return Array.from(event.target.selectedOptions).map(option => option.value);
54
- }
55
- return event.target.value;
56
- })()
57
- });
58
- }
59
- onBlur() {
60
- this.dispatchFormAction.emit({
61
- action: 'focus lost',
62
- name: this.attribute()?.name ?? '',
63
- fieldIndex: undefined
64
- });
65
- }
66
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: SelectTagComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
67
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: SelectTagComponent, isStandalone: true, selector: "kc-select-tag", inputs: { attribute: { classPropertyName: "attribute", publicName: "attribute", isSignal: true, isRequired: false, transformFunction: null }, valueOrValues: { classPropertyName: "valueOrValues", publicName: "valueOrValues", isSignal: true, isRequired: false, transformFunction: null }, displayableErrors: { classPropertyName: "displayableErrors", publicName: "displayableErrors", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dispatchFormAction: "dispatchFormAction" }, providers: [
68
- {
69
- provide: ComponentReference,
70
- useExisting: forwardRef(() => SelectTagComponent)
71
- }
72
- ], usesInheritance: true, ngImport: i0, template: "@let attr = attribute();\n@let multiple = isMultiple();\n@if (attr) {\n <select\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [value]=\"valueOrValues()\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [multiple]=\"multiple\"\n [size]=\"!attr.annotations.inputTypeSize ? undefined : (attr.annotations.inputTypeSize | toNumber)\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n >\n @if (!multiple) {\n <option value=\"\"></option>\n }\n @for (option of options(); track option) {\n <option [value]=\"option\">\n @if (!!attr.annotations.inputOptionLabels) {\n {{ i18n.advancedMsgStr(attr.annotations.inputOptionLabels[option] ?? option) }}\n } @else if (!!attr.annotations.inputOptionLabelsI18nPrefix) {\n {{ i18n.advancedMsgStr(attr.annotations.inputOptionLabelsI18nPrefix + '.' + option) }}\n } @else {\n {{ option }}\n }\n </option>\n }\n </select>\n}\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }, { kind: "pipe", type: ToNumberPipe, name: "toNumber" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
73
- }
74
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: SelectTagComponent, decorators: [{
75
- type: Component,
76
- args: [{ standalone: true, imports: [KcClassDirective, ToNumberPipe], selector: 'kc-select-tag', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
77
- {
78
- provide: ComponentReference,
79
- useExisting: forwardRef(() => SelectTagComponent)
80
- }
81
- ], template: "@let attr = attribute();\n@let multiple = isMultiple();\n@if (attr) {\n <select\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [value]=\"valueOrValues()\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [multiple]=\"multiple\"\n [size]=\"!attr.annotations.inputTypeSize ? undefined : (attr.annotations.inputTypeSize | toNumber)\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n >\n @if (!multiple) {\n <option value=\"\"></option>\n }\n @for (option of options(); track option) {\n <option [value]=\"option\">\n @if (!!attr.annotations.inputOptionLabels) {\n {{ i18n.advancedMsgStr(attr.annotations.inputOptionLabels[option] ?? option) }}\n } @else if (!!attr.annotations.inputOptionLabelsI18nPrefix) {\n {{ i18n.advancedMsgStr(attr.annotations.inputOptionLabelsI18nPrefix + '.' + option) }}\n } @else {\n {{ option }}\n }\n </option>\n }\n </select>\n}\n", styles: [":host{display:contents}\n"] }]
82
- }] });
83
-
84
- /**
85
- * Generated bundle index. Do not edit.
86
- */
87
-
88
- export { SelectTagComponent };
89
- //# sourceMappingURL=keycloakify-angular-login-components-select-tag.mjs.map