@keycloakify/angular 0.0.1-rc.12 → 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 (1234) 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/index.ts +1 -0
  15. package/src/account/DefaultPage/ng-package.json +6 -0
  16. package/src/account/KcContext/index.ts +1 -0
  17. package/src/account/KcContext/ng-package.json +6 -0
  18. package/src/account/classes/component-reference/component-reference.class.ts +6 -0
  19. package/src/account/classes/component-reference/index.ts +1 -0
  20. package/src/account/classes/component-reference/ng-package.json +6 -0
  21. package/src/account/containers/template/index.ts +1 -0
  22. package/src/account/containers/template/ng-package.json +6 -0
  23. package/src/account/containers/template/template.component.ts +71 -0
  24. package/src/account/directives/kc-class/index.ts +1 -0
  25. package/src/account/directives/kc-class/kc-class.directive.ts +170 -0
  26. package/src/account/directives/kc-class/ng-package.json +6 -0
  27. package/src/account/i18n/index.ts +1 -0
  28. package/src/account/i18n/ng-package.json +6 -0
  29. package/src/account/pages/account/account.component.ts +34 -0
  30. package/src/account/pages/account/index.ts +1 -0
  31. package/src/account/pages/account/ng-package.json +6 -0
  32. package/src/account/pages/applications/applications.component.ts +32 -0
  33. package/src/account/pages/applications/index.ts +1 -0
  34. package/src/account/pages/applications/ng-package.json +6 -0
  35. package/src/account/pages/federatedIdentity/federatedIdentity.component.ts +31 -0
  36. package/src/account/pages/federatedIdentity/index.ts +1 -0
  37. package/src/account/pages/federatedIdentity/ng-package.json +6 -0
  38. package/src/account/pages/log/index.ts +1 -0
  39. package/src/account/pages/log/log.component.ts +31 -0
  40. package/src/account/pages/log/ng-package.json +6 -0
  41. package/src/account/pages/password/index.ts +1 -0
  42. package/src/account/pages/password/ng-package.json +6 -0
  43. package/src/account/pages/password/password.component.ts +110 -0
  44. package/src/account/pages/sessions/index.ts +1 -0
  45. package/src/account/pages/sessions/ng-package.json +6 -0
  46. package/src/account/pages/sessions/sessions.component.ts +31 -0
  47. package/src/account/pages/totp/index.ts +1 -0
  48. package/src/account/pages/totp/ng-package.json +6 -0
  49. package/src/account/pages/totp/totp.component.ts +32 -0
  50. package/src/account/providers/keycloakify-angular/index.ts +1 -0
  51. package/src/account/providers/keycloakify-angular/keycloakify-angular.providers.ts +64 -0
  52. package/src/account/providers/keycloakify-angular/ng-package.json +6 -0
  53. package/src/account/services/account-resource-injector/account-resource-injector.service.ts +41 -0
  54. package/src/account/services/account-resource-injector/index.ts +1 -0
  55. package/src/account/services/account-resource-injector/ng-package.json +6 -0
  56. package/src/account/services/i18n/index.ts +1 -0
  57. package/src/account/services/i18n/ng-package.json +6 -0
  58. package/src/account/tokens/classes/index.ts +1 -0
  59. package/src/account/tokens/classes/ng-package.json +6 -0
  60. package/src/account/tokens/i18n/index.ts +1 -0
  61. package/src/account/tokens/i18n/ng-package.json +6 -0
  62. package/src/account/tokens/kc-context/index.ts +1 -0
  63. package/src/account/tokens/kc-context/kc-context.token.ts +6 -0
  64. package/src/account/tokens/kc-context/ng-package.json +6 -0
  65. package/src/lib/directives/attributes/index.ts +1 -0
  66. package/src/lib/directives/attributes/ng-package.json +6 -0
  67. package/src/lib/models/script/index.ts +1 -0
  68. package/src/lib/models/script/ng-package.json +6 -0
  69. package/src/lib/ng-package.json +6 -0
  70. package/src/lib/pipes/input-type/index.ts +1 -0
  71. package/src/lib/pipes/input-type/ng-package.json +6 -0
  72. package/src/lib/pipes/is-array-with-empty-object/index.ts +1 -0
  73. package/src/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.ts +16 -0
  74. package/src/lib/pipes/is-array-with-empty-object/ng-package.json +6 -0
  75. package/src/lib/pipes/kc-sanitize/index.ts +1 -0
  76. package/src/lib/pipes/kc-sanitize/ng-package.json +6 -0
  77. package/src/lib/pipes/to-array/index.ts +1 -0
  78. package/src/lib/pipes/to-array/ng-package.json +6 -0
  79. package/src/lib/pipes/to-array/to-array.pipe.ts +15 -0
  80. package/src/lib/pipes/to-number/index.ts +1 -0
  81. package/src/lib/pipes/to-number/ng-package.json +6 -0
  82. package/src/lib/pipes/to-number/to-number.pipe.ts +13 -0
  83. package/src/lib/public-api.ts +1 -0
  84. package/src/lib/services/resource-injector/index.ts +1 -0
  85. package/src/lib/services/resource-injector/ng-package.json +6 -0
  86. package/src/lib/tokens/use-default-css/index.ts +1 -0
  87. package/src/lib/tokens/use-default-css/ng-package.json +6 -0
  88. package/src/login/DefaultPage/DefaultPage.ts +208 -0
  89. package/src/login/DefaultPage/index.ts +1 -0
  90. package/src/login/DefaultPage/ng-package.json +6 -0
  91. package/src/login/KcContext/index.ts +1 -0
  92. package/src/login/KcContext/ng-package.json +6 -0
  93. package/src/login/classes/component-reference/index.ts +1 -0
  94. package/src/login/classes/component-reference/ng-package.json +6 -0
  95. package/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.ts +136 -0
  96. package/src/login/components/add-remove-buttons-multi-valued-attribute/index.ts +1 -0
  97. package/src/login/components/add-remove-buttons-multi-valued-attribute/ng-package.json +6 -0
  98. package/src/login/components/field-errors/index.ts +1 -0
  99. package/src/login/components/field-errors/ng-package.json +6 -0
  100. package/src/login/components/group-label/group-label.component.ts +46 -0
  101. package/src/login/components/group-label/index.ts +1 -0
  102. package/src/login/components/group-label/ng-package.json +6 -0
  103. package/src/login/components/input-field-by-type/index.ts +1 -0
  104. package/src/login/components/input-field-by-type/ng-package.json +6 -0
  105. package/src/login/components/input-tag/index.ts +1 -0
  106. package/src/login/components/input-tag/input-tag.component.ts +99 -0
  107. package/src/login/components/input-tag/ng-package.json +6 -0
  108. package/src/login/components/input-tag-selects/index.ts +1 -0
  109. package/src/login/components/input-tag-selects/input-tag-selects.component.ts +139 -0
  110. package/src/login/components/input-tag-selects/ng-package.json +6 -0
  111. package/src/login/components/logout-other-sessions/index.ts +1 -0
  112. package/src/login/components/logout-other-sessions/logout-other-sessions.component.ts +34 -0
  113. package/src/login/components/logout-other-sessions/ng-package.json +6 -0
  114. package/src/login/components/password-wrapper/index.ts +1 -0
  115. package/src/login/components/password-wrapper/ng-package.json +6 -0
  116. package/src/login/components/password-wrapper/password-wrapper.component.ts +51 -0
  117. package/src/login/components/select-tag/index.ts +1 -0
  118. package/src/login/components/select-tag/ng-package.json +6 -0
  119. package/src/login/components/select-tag/select-tag.component.ts +97 -0
  120. package/src/login/components/textarea-tag/index.ts +1 -0
  121. package/src/login/components/textarea-tag/ng-package.json +6 -0
  122. package/src/login/components/user-profile-form-fields/index.ts +1 -0
  123. package/src/login/components/user-profile-form-fields/ng-package.json +6 -0
  124. package/src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts +70 -0
  125. package/src/login/containers/template/index.ts +1 -0
  126. package/src/login/containers/template/ng-package.json +6 -0
  127. package/src/login/containers/template/template.component.ts +78 -0
  128. package/src/login/directives/kc-class/index.ts +1 -0
  129. package/src/login/directives/kc-class/ng-package.json +6 -0
  130. package/src/login/i18n/index.ts +1 -0
  131. package/src/login/i18n/ng-package.json +6 -0
  132. package/src/login/pages/code/code.component.ts +31 -0
  133. package/src/login/pages/code/index.ts +1 -0
  134. package/src/login/pages/code/ng-package.json +6 -0
  135. package/src/login/pages/delete-account-confirm/delete-account-confirm.component.ts +31 -0
  136. package/src/login/pages/delete-account-confirm/index.ts +1 -0
  137. package/src/login/pages/delete-account-confirm/ng-package.json +6 -0
  138. package/src/login/pages/delete-credential/delete-credential.component.ts +36 -0
  139. package/src/login/pages/delete-credential/index.ts +1 -0
  140. package/src/login/pages/delete-credential/ng-package.json +6 -0
  141. package/src/login/pages/error/error.component.ts +31 -0
  142. package/src/login/pages/error/index.ts +1 -0
  143. package/src/login/pages/error/ng-package.json +6 -0
  144. package/src/login/pages/frontchannel-logout/frontchannel-logout.component.ts +41 -0
  145. package/src/login/pages/frontchannel-logout/index.ts +1 -0
  146. package/src/login/pages/frontchannel-logout/ng-package.json +6 -0
  147. package/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.ts +56 -0
  148. package/src/login/pages/idp-review-user-profile/index.ts +1 -0
  149. package/src/login/pages/idp-review-user-profile/ng-package.json +6 -0
  150. package/src/login/pages/info/index.ts +1 -0
  151. package/src/login/pages/info/info.component.ts +48 -0
  152. package/src/login/pages/info/ng-package.json +6 -0
  153. package/src/login/pages/login/index.ts +1 -0
  154. package/src/login/pages/login/login.component.ts +40 -0
  155. package/src/login/pages/login/ng-package.json +6 -0
  156. package/src/login/pages/login-config-totp/index.ts +1 -0
  157. package/src/login/pages/login-config-totp/login-config-totp.component.ts +38 -0
  158. package/src/login/pages/login-config-totp/ng-package.json +6 -0
  159. package/src/login/pages/login-idp-link-confirm/index.ts +1 -0
  160. package/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.ts +36 -0
  161. package/src/login/pages/login-idp-link-confirm/ng-package.json +6 -0
  162. package/src/login/pages/login-idp-link-confirm-override/index.ts +1 -0
  163. package/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.ts +36 -0
  164. package/src/login/pages/login-idp-link-confirm-override/ng-package.json +6 -0
  165. package/src/login/pages/login-idp-link-email/index.ts +1 -0
  166. package/src/login/pages/login-idp-link-email/login-idp-link-email.component.ts +36 -0
  167. package/src/login/pages/login-idp-link-email/ng-package.json +6 -0
  168. package/src/login/pages/login-oauth-grant/index.ts +1 -0
  169. package/src/login/pages/login-oauth-grant/login-oauth-grant.component.ts +36 -0
  170. package/src/login/pages/login-oauth-grant/ng-package.json +6 -0
  171. package/src/login/pages/login-oauth2-device-verify-user-code/index.ts +1 -0
  172. package/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.ts +36 -0
  173. package/src/login/pages/login-oauth2-device-verify-user-code/ng-package.json +6 -0
  174. package/src/login/pages/login-otp/index.ts +1 -0
  175. package/src/login/pages/login-otp/login-otp.component.ts +37 -0
  176. package/src/login/pages/login-otp/ng-package.json +6 -0
  177. package/src/login/pages/login-page-expired/index.ts +1 -0
  178. package/src/login/pages/login-page-expired/login-page-expired.component.ts +35 -0
  179. package/src/login/pages/login-page-expired/ng-package.json +6 -0
  180. package/src/login/pages/login-passkeys-conditional-authenticate/index.ts +1 -0
  181. package/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.ts +94 -0
  182. package/src/login/pages/login-passkeys-conditional-authenticate/ng-package.json +6 -0
  183. package/src/login/pages/login-password/index.ts +1 -0
  184. package/src/login/pages/login-password/login-password.component.ts +40 -0
  185. package/src/login/pages/login-password/ng-package.json +6 -0
  186. package/src/login/pages/login-recovery-authn-code-config/index.ts +1 -0
  187. package/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.ts +40 -0
  188. package/src/login/pages/login-recovery-authn-code-config/ng-package.json +6 -0
  189. package/src/login/pages/login-recovery-authn-code-input/index.ts +1 -0
  190. package/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.ts +37 -0
  191. package/src/login/pages/login-recovery-authn-code-input/ng-package.json +6 -0
  192. package/src/login/pages/login-reset-otp/index.ts +1 -0
  193. package/src/login/pages/login-reset-otp/login-reset-otp.component.ts +36 -0
  194. package/src/login/pages/login-reset-otp/ng-package.json +6 -0
  195. package/src/login/pages/login-reset-password/index.ts +1 -0
  196. package/src/login/pages/login-reset-password/login-reset-password.component.ts +37 -0
  197. package/src/login/pages/login-reset-password/ng-package.json +6 -0
  198. package/src/login/pages/login-update-password/index.ts +1 -0
  199. package/src/login/pages/login-update-password/login-update-password.component.ts +39 -0
  200. package/src/login/pages/login-update-password/ng-package.json +6 -0
  201. package/src/login/pages/login-update-profile/index.ts +1 -0
  202. package/src/login/pages/login-update-profile/login-update-profile.component.ts +51 -0
  203. package/src/login/pages/login-update-profile/ng-package.json +6 -0
  204. package/src/login/pages/login-username/index.ts +1 -0
  205. package/src/login/pages/login-username/login-username.component.ts +39 -0
  206. package/src/login/pages/login-username/ng-package.json +6 -0
  207. package/src/login/pages/login-verify-email/index.ts +1 -0
  208. package/src/login/pages/login-verify-email/login-verify-email.component.ts +36 -0
  209. package/src/login/pages/login-verify-email/ng-package.json +6 -0
  210. package/src/login/pages/login-x509-info/index.ts +1 -0
  211. package/src/login/pages/login-x509-info/login-x509-info.component.ts +36 -0
  212. package/src/login/pages/login-x509-info/ng-package.json +6 -0
  213. package/src/login/pages/logout-confirm/index.ts +1 -0
  214. package/src/login/pages/logout-confirm/logout-confirm.component.ts +36 -0
  215. package/src/login/pages/logout-confirm/ng-package.json +6 -0
  216. package/src/login/pages/register/index.ts +1 -0
  217. package/src/login/pages/register/ng-package.json +6 -0
  218. package/src/login/pages/register/register.component.ts +56 -0
  219. package/src/login/pages/saml-post-form/index.ts +1 -0
  220. package/src/login/pages/saml-post-form/ng-package.json +6 -0
  221. package/src/login/pages/saml-post-form/saml-post-form.component.ts +50 -0
  222. package/src/login/pages/select-authenticator/index.ts +1 -0
  223. package/src/login/pages/select-authenticator/ng-package.json +6 -0
  224. package/src/login/pages/select-authenticator/select-authenticator.component.ts +37 -0
  225. package/src/login/pages/terms/index.ts +1 -0
  226. package/src/login/pages/terms/ng-package.json +6 -0
  227. package/src/login/pages/terms/terms.component.ts +36 -0
  228. package/src/login/pages/update-email/index.ts +1 -0
  229. package/src/login/pages/update-email/ng-package.json +6 -0
  230. package/src/login/pages/update-email/update-email.component.ts +52 -0
  231. package/src/login/pages/webauthn-authenticate/index.ts +1 -0
  232. package/src/login/pages/webauthn-authenticate/ng-package.json +6 -0
  233. package/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.ts +82 -0
  234. package/src/login/pages/webauthn-error/index.ts +1 -0
  235. package/src/login/pages/webauthn-error/ng-package.json +6 -0
  236. package/src/login/pages/webauthn-error/webauthn-error.component.ts +46 -0
  237. package/src/login/pages/webauthn-register/index.ts +1 -0
  238. package/src/login/pages/webauthn-register/ng-package.json +6 -0
  239. package/src/login/pages/webauthn-register/webauthn-register.component.ts +92 -0
  240. package/src/login/providers/keycloakify-angular/index.ts +1 -0
  241. package/src/login/providers/keycloakify-angular/keycloakify-angular.providers.ts +68 -0
  242. package/src/login/providers/keycloakify-angular/ng-package.json +6 -0
  243. package/src/login/services/i18n/index.ts +1 -0
  244. package/src/login/services/i18n/ng-package.json +6 -0
  245. package/src/login/services/login-resource-injector/index.ts +1 -0
  246. package/src/login/services/login-resource-injector/login-resource-injector.service.ts +73 -0
  247. package/src/login/services/login-resource-injector/ng-package.json +6 -0
  248. package/src/login/services/submit/index.ts +1 -0
  249. package/src/login/services/submit/ng-package.json +6 -0
  250. package/src/login/services/user-profile-form/index.ts +1 -0
  251. package/src/login/services/user-profile-form/ng-package.json +6 -0
  252. package/src/login/services/user-profile-form/user-profile-form.service.ts +1502 -0
  253. package/src/login/tokens/classes/index.ts +1 -0
  254. package/src/login/tokens/classes/ng-package.json +6 -0
  255. package/src/login/tokens/i18n/index.ts +1 -0
  256. package/src/login/tokens/i18n/ng-package.json +6 -0
  257. package/src/login/tokens/kc-context/index.ts +1 -0
  258. package/src/login/tokens/kc-context/kc-context.token.ts +4 -0
  259. package/src/login/tokens/kc-context/ng-package.json +6 -0
  260. package/src/login/tokens/make-user-confirm-password/index.ts +1 -0
  261. package/src/login/tokens/make-user-confirm-password/ng-package.json +6 -0
  262. package/src/ng-package.json +8 -0
  263. package/src/package.json +17 -0
  264. package/src/public-api.ts +1 -0
  265. package/src/tsconfig.lib.json +12 -0
  266. package/src/tsconfig.lib.prod.json +10 -0
  267. package/tsconfig.json +33 -0
  268. package/tsproject.json +15 -0
  269. package/dist/README.md +0 -1
  270. package/dist/account/DefaultPage/DefaultPage.d.ts +0 -38
  271. package/dist/account/DefaultPage/index.d.ts +0 -5
  272. package/dist/account/KcContext/KcContext.d.ts +0 -1
  273. package/dist/account/KcContext/index.d.ts +0 -5
  274. package/dist/account/classes/component-reference/component-reference.class.d.ts +0 -6
  275. package/dist/account/classes/component-reference/index.d.ts +0 -5
  276. package/dist/account/containers/template/index.d.ts +0 -5
  277. package/dist/account/containers/template/template.component.d.ts +0 -26
  278. package/dist/account/directives/kc-class/index.d.ts +0 -5
  279. package/dist/account/directives/kc-class/kc-class.directive.d.ts +0 -26
  280. package/dist/account/i18n/i18n.d.ts +0 -4
  281. package/dist/account/i18n/index.d.ts +0 -5
  282. package/dist/account/pages/account/account.component.d.ts +0 -14
  283. package/dist/account/pages/account/index.d.ts +0 -5
  284. package/dist/account/pages/applications/applications.component.d.ts +0 -13
  285. package/dist/account/pages/applications/index.d.ts +0 -5
  286. package/dist/account/pages/federatedIdentity/federatedIdentity.component.d.ts +0 -13
  287. package/dist/account/pages/federatedIdentity/index.d.ts +0 -5
  288. package/dist/account/pages/log/index.d.ts +0 -5
  289. package/dist/account/pages/log/log.component.d.ts +0 -13
  290. package/dist/account/pages/password/index.d.ts +0 -5
  291. package/dist/account/pages/password/password.component.d.ts +0 -28
  292. package/dist/account/pages/sessions/index.d.ts +0 -5
  293. package/dist/account/pages/sessions/sessions.component.d.ts +0 -13
  294. package/dist/account/pages/totp/index.d.ts +0 -5
  295. package/dist/account/pages/totp/totp.component.d.ts +0 -13
  296. package/dist/account/providers/keycloakify-angular/index.d.ts +0 -5
  297. package/dist/account/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +0 -15
  298. package/dist/account/services/account-resource-injector/account-resource-injector.service.d.ts +0 -10
  299. package/dist/account/services/account-resource-injector/index.d.ts +0 -5
  300. package/dist/account/services/i18n/i18n.service.d.ts +0 -6
  301. package/dist/account/services/i18n/index.d.ts +0 -5
  302. package/dist/account/tokens/classes/classes.token.d.ts +0 -16
  303. package/dist/account/tokens/classes/index.d.ts +0 -5
  304. package/dist/account/tokens/i18n/i18n.token.d.ts +0 -2
  305. package/dist/account/tokens/i18n/index.d.ts +0 -5
  306. package/dist/account/tokens/kc-context/index.d.ts +0 -5
  307. package/dist/account/tokens/kc-context/kc-context.token.d.ts +0 -3
  308. package/dist/esm2022/account/DefaultPage/DefaultPage.mjs +0 -34
  309. package/dist/esm2022/account/DefaultPage/keycloakify-angular-account-DefaultPage.mjs +0 -5
  310. package/dist/esm2022/account/DefaultPage/public-api.mjs +0 -2
  311. package/dist/esm2022/account/KcContext/KcContext.mjs +0 -2
  312. package/dist/esm2022/account/KcContext/keycloakify-angular-account-KcContext.mjs +0 -5
  313. package/dist/esm2022/account/KcContext/public-api.mjs +0 -2
  314. package/dist/esm2022/account/classes/component-reference/component-reference.class.mjs +0 -3
  315. package/dist/esm2022/account/classes/component-reference/keycloakify-angular-account-classes-component-reference.mjs +0 -5
  316. package/dist/esm2022/account/classes/component-reference/public-api.mjs +0 -2
  317. package/dist/esm2022/account/containers/template/keycloakify-angular-account-containers-template.mjs +0 -5
  318. package/dist/esm2022/account/containers/template/public-api.mjs +0 -2
  319. package/dist/esm2022/account/containers/template/template.component.mjs +0 -66
  320. package/dist/esm2022/account/directives/kc-class/kc-class.directive.mjs +0 -137
  321. package/dist/esm2022/account/directives/kc-class/keycloakify-angular-account-directives-kc-class.mjs +0 -5
  322. package/dist/esm2022/account/directives/kc-class/public-api.mjs +0 -2
  323. package/dist/esm2022/account/i18n/i18n.mjs +0 -2
  324. package/dist/esm2022/account/i18n/keycloakify-angular-account-i18n.mjs +0 -5
  325. package/dist/esm2022/account/i18n/public-api.mjs +0 -2
  326. package/dist/esm2022/account/pages/account/account.component.mjs +0 -39
  327. package/dist/esm2022/account/pages/account/keycloakify-angular-account-pages-account.mjs +0 -5
  328. package/dist/esm2022/account/pages/account/public-api.mjs +0 -2
  329. package/dist/esm2022/account/pages/applications/applications.component.mjs +0 -37
  330. package/dist/esm2022/account/pages/applications/keycloakify-angular-account-pages-applications.mjs +0 -5
  331. package/dist/esm2022/account/pages/applications/public-api.mjs +0 -2
  332. package/dist/esm2022/account/pages/federatedIdentity/federatedIdentity.component.mjs +0 -36
  333. package/dist/esm2022/account/pages/federatedIdentity/keycloakify-angular-account-pages-federatedIdentity.mjs +0 -5
  334. package/dist/esm2022/account/pages/federatedIdentity/public-api.mjs +0 -2
  335. package/dist/esm2022/account/pages/log/keycloakify-angular-account-pages-log.mjs +0 -5
  336. package/dist/esm2022/account/pages/log/log.component.mjs +0 -36
  337. package/dist/esm2022/account/pages/log/public-api.mjs +0 -2
  338. package/dist/esm2022/account/pages/password/keycloakify-angular-account-pages-password.mjs +0 -5
  339. package/dist/esm2022/account/pages/password/password.component.mjs +0 -107
  340. package/dist/esm2022/account/pages/password/public-api.mjs +0 -2
  341. package/dist/esm2022/account/pages/sessions/keycloakify-angular-account-pages-sessions.mjs +0 -5
  342. package/dist/esm2022/account/pages/sessions/public-api.mjs +0 -2
  343. package/dist/esm2022/account/pages/sessions/sessions.component.mjs +0 -36
  344. package/dist/esm2022/account/pages/totp/keycloakify-angular-account-pages-totp.mjs +0 -5
  345. package/dist/esm2022/account/pages/totp/public-api.mjs +0 -2
  346. package/dist/esm2022/account/pages/totp/totp.component.mjs +0 -37
  347. package/dist/esm2022/account/providers/keycloakify-angular/keycloakify-angular-account-providers-keycloakify-angular.mjs +0 -5
  348. package/dist/esm2022/account/providers/keycloakify-angular/keycloakify-angular.providers.mjs +0 -48
  349. package/dist/esm2022/account/providers/keycloakify-angular/public-api.mjs +0 -2
  350. package/dist/esm2022/account/services/account-resource-injector/account-resource-injector.service.mjs +0 -37
  351. package/dist/esm2022/account/services/account-resource-injector/keycloakify-angular-account-services-account-resource-injector.mjs +0 -5
  352. package/dist/esm2022/account/services/account-resource-injector/public-api.mjs +0 -2
  353. package/dist/esm2022/account/services/i18n/i18n.service.mjs +0 -12
  354. package/dist/esm2022/account/services/i18n/keycloakify-angular-account-services-i18n.mjs +0 -5
  355. package/dist/esm2022/account/services/i18n/public-api.mjs +0 -2
  356. package/dist/esm2022/account/tokens/classes/classes.token.mjs +0 -3
  357. package/dist/esm2022/account/tokens/classes/keycloakify-angular-account-tokens-classes.mjs +0 -5
  358. package/dist/esm2022/account/tokens/classes/public-api.mjs +0 -2
  359. package/dist/esm2022/account/tokens/i18n/i18n.token.mjs +0 -3
  360. package/dist/esm2022/account/tokens/i18n/keycloakify-angular-account-tokens-i18n.mjs +0 -5
  361. package/dist/esm2022/account/tokens/i18n/public-api.mjs +0 -2
  362. package/dist/esm2022/account/tokens/kc-context/kc-context.token.mjs +0 -3
  363. package/dist/esm2022/account/tokens/kc-context/keycloakify-angular-account-tokens-kc-context.mjs +0 -5
  364. package/dist/esm2022/account/tokens/kc-context/public-api.mjs +0 -2
  365. package/dist/esm2022/keycloakify-angular.mjs +0 -5
  366. package/dist/esm2022/lib/directives/attributes/attributes.directive.mjs +0 -26
  367. package/dist/esm2022/lib/directives/attributes/keycloakify-angular-lib-directives-attributes.mjs +0 -5
  368. package/dist/esm2022/lib/directives/attributes/public-api.mjs +0 -2
  369. package/dist/esm2022/lib/keycloakify-angular-lib.mjs +0 -5
  370. package/dist/esm2022/lib/models/script/keycloakify-angular-lib-models-script.mjs +0 -5
  371. package/dist/esm2022/lib/models/script/public-api.mjs +0 -2
  372. package/dist/esm2022/lib/models/script/script.model.mjs +0 -2
  373. package/dist/esm2022/lib/pipes/input-type/input-type.pipe.mjs +0 -20
  374. package/dist/esm2022/lib/pipes/input-type/keycloakify-angular-lib-pipes-input-type.mjs +0 -5
  375. package/dist/esm2022/lib/pipes/input-type/public-api.mjs +0 -2
  376. package/dist/esm2022/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.mjs +0 -20
  377. package/dist/esm2022/lib/pipes/is-array-with-empty-object/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +0 -5
  378. package/dist/esm2022/lib/pipes/is-array-with-empty-object/public-api.mjs +0 -2
  379. package/dist/esm2022/lib/pipes/kc-sanitize/kc-sanitize.pipe.mjs +0 -29
  380. package/dist/esm2022/lib/pipes/kc-sanitize/keycloakify-angular-lib-pipes-kc-sanitize.mjs +0 -5
  381. package/dist/esm2022/lib/pipes/kc-sanitize/public-api.mjs +0 -2
  382. package/dist/esm2022/lib/pipes/to-array/keycloakify-angular-lib-pipes-to-array.mjs +0 -5
  383. package/dist/esm2022/lib/pipes/to-array/public-api.mjs +0 -2
  384. package/dist/esm2022/lib/pipes/to-array/to-array.pipe.mjs +0 -21
  385. package/dist/esm2022/lib/pipes/to-number/keycloakify-angular-lib-pipes-to-number.mjs +0 -5
  386. package/dist/esm2022/lib/pipes/to-number/public-api.mjs +0 -2
  387. package/dist/esm2022/lib/pipes/to-number/to-number.pipe.mjs +0 -20
  388. package/dist/esm2022/lib/public-api.mjs +0 -2
  389. package/dist/esm2022/lib/services/resource-injector/keycloakify-angular-lib-services-resource-injector.mjs +0 -5
  390. package/dist/esm2022/lib/services/resource-injector/public-api.mjs +0 -2
  391. package/dist/esm2022/lib/services/resource-injector/resource-injector.service.mjs +0 -54
  392. package/dist/esm2022/lib/tokens/use-default-css/keycloakify-angular-lib-tokens-use-default-css.mjs +0 -5
  393. package/dist/esm2022/lib/tokens/use-default-css/public-api.mjs +0 -2
  394. package/dist/esm2022/lib/tokens/use-default-css/use-default-css.token.mjs +0 -3
  395. package/dist/esm2022/login/DefaultPage/DefaultPage.mjs +0 -121
  396. package/dist/esm2022/login/DefaultPage/keycloakify-angular-login-DefaultPage.mjs +0 -5
  397. package/dist/esm2022/login/DefaultPage/public-api.mjs +0 -2
  398. package/dist/esm2022/login/KcContext/KcContext.mjs +0 -2
  399. package/dist/esm2022/login/KcContext/keycloakify-angular-login-KcContext.mjs +0 -5
  400. package/dist/esm2022/login/KcContext/public-api.mjs +0 -2
  401. package/dist/esm2022/login/classes/component-reference/component-reference.class.mjs +0 -3
  402. package/dist/esm2022/login/classes/component-reference/keycloakify-angular-login-classes-component-reference.mjs +0 -5
  403. package/dist/esm2022/login/classes/component-reference/public-api.mjs +0 -2
  404. package/dist/esm2022/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.mjs +0 -106
  405. package/dist/esm2022/login/components/add-remove-buttons-multi-valued-attribute/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +0 -5
  406. package/dist/esm2022/login/components/add-remove-buttons-multi-valued-attribute/public-api.mjs +0 -2
  407. package/dist/esm2022/login/components/field-errors/field-errors.component.mjs +0 -33
  408. package/dist/esm2022/login/components/field-errors/keycloakify-angular-login-components-field-errors.mjs +0 -5
  409. package/dist/esm2022/login/components/field-errors/public-api.mjs +0 -2
  410. package/dist/esm2022/login/components/group-label/group-label.component.mjs +0 -43
  411. package/dist/esm2022/login/components/group-label/keycloakify-angular-login-components-group-label.mjs +0 -5
  412. package/dist/esm2022/login/components/group-label/public-api.mjs +0 -2
  413. package/dist/esm2022/login/components/input-field-by-type/input-field-by-type.component.mjs +0 -46
  414. package/dist/esm2022/login/components/input-field-by-type/keycloakify-angular-login-components-input-field-by-type.mjs +0 -5
  415. package/dist/esm2022/login/components/input-field-by-type/public-api.mjs +0 -2
  416. package/dist/esm2022/login/components/input-tag/input-tag.component.mjs +0 -90
  417. package/dist/esm2022/login/components/input-tag/keycloakify-angular-login-components-input-tag.mjs +0 -5
  418. package/dist/esm2022/login/components/input-tag/public-api.mjs +0 -2
  419. package/dist/esm2022/login/components/input-tag-selects/input-tag-selects.component.mjs +0 -117
  420. package/dist/esm2022/login/components/input-tag-selects/keycloakify-angular-login-components-input-tag-selects.mjs +0 -5
  421. package/dist/esm2022/login/components/input-tag-selects/public-api.mjs +0 -2
  422. package/dist/esm2022/login/components/logout-other-sessions/keycloakify-angular-login-components-logout-other-sessions.mjs +0 -5
  423. package/dist/esm2022/login/components/logout-other-sessions/logout-other-sessions.component.mjs +0 -32
  424. package/dist/esm2022/login/components/logout-other-sessions/public-api.mjs +0 -2
  425. package/dist/esm2022/login/components/password-wrapper/keycloakify-angular-login-components-password-wrapper.mjs +0 -5
  426. package/dist/esm2022/login/components/password-wrapper/password-wrapper.component.mjs +0 -46
  427. package/dist/esm2022/login/components/password-wrapper/public-api.mjs +0 -2
  428. package/dist/esm2022/login/components/select-tag/keycloakify-angular-login-components-select-tag.mjs +0 -5
  429. package/dist/esm2022/login/components/select-tag/public-api.mjs +0 -2
  430. package/dist/esm2022/login/components/select-tag/select-tag.component.mjs +0 -82
  431. package/dist/esm2022/login/components/textarea-tag/keycloakify-angular-login-components-textarea-tag.mjs +0 -5
  432. package/dist/esm2022/login/components/textarea-tag/public-api.mjs +0 -2
  433. package/dist/esm2022/login/components/textarea-tag/textarea-tag.component.mjs +0 -49
  434. package/dist/esm2022/login/components/user-profile-form-fields/keycloakify-angular-login-components-user-profile-form-fields.mjs +0 -5
  435. package/dist/esm2022/login/components/user-profile-form-fields/public-api.mjs +0 -2
  436. package/dist/esm2022/login/components/user-profile-form-fields/user-profile-form-fields.component.mjs +0 -62
  437. package/dist/esm2022/login/containers/template/keycloakify-angular-login-containers-template.mjs +0 -5
  438. package/dist/esm2022/login/containers/template/public-api.mjs +0 -2
  439. package/dist/esm2022/login/containers/template/template.component.mjs +0 -72
  440. package/dist/esm2022/login/directives/kc-class/kc-class.directive.mjs +0 -138
  441. package/dist/esm2022/login/directives/kc-class/keycloakify-angular-login-directives-kc-class.mjs +0 -5
  442. package/dist/esm2022/login/directives/kc-class/public-api.mjs +0 -2
  443. package/dist/esm2022/login/i18n/i18n.mjs +0 -2
  444. package/dist/esm2022/login/i18n/keycloakify-angular-login-i18n.mjs +0 -5
  445. package/dist/esm2022/login/i18n/public-api.mjs +0 -2
  446. package/dist/esm2022/login/pages/code/code.component.mjs +0 -35
  447. package/dist/esm2022/login/pages/code/keycloakify-angular-login-pages-code.mjs +0 -5
  448. package/dist/esm2022/login/pages/code/public-api.mjs +0 -2
  449. package/dist/esm2022/login/pages/delete-account-confirm/delete-account-confirm.component.mjs +0 -35
  450. package/dist/esm2022/login/pages/delete-account-confirm/keycloakify-angular-login-pages-delete-account-confirm.mjs +0 -5
  451. package/dist/esm2022/login/pages/delete-account-confirm/public-api.mjs +0 -2
  452. package/dist/esm2022/login/pages/delete-credential/delete-credential.component.mjs +0 -40
  453. package/dist/esm2022/login/pages/delete-credential/keycloakify-angular-login-pages-delete-credential.mjs +0 -5
  454. package/dist/esm2022/login/pages/delete-credential/public-api.mjs +0 -2
  455. package/dist/esm2022/login/pages/error/error.component.mjs +0 -35
  456. package/dist/esm2022/login/pages/error/keycloakify-angular-login-pages-error.mjs +0 -5
  457. package/dist/esm2022/login/pages/error/public-api.mjs +0 -2
  458. package/dist/esm2022/login/pages/frontchannel-logout/frontchannel-logout.component.mjs +0 -44
  459. package/dist/esm2022/login/pages/frontchannel-logout/keycloakify-angular-login-pages-frontchannel-logout.mjs +0 -5
  460. package/dist/esm2022/login/pages/frontchannel-logout/public-api.mjs +0 -2
  461. package/dist/esm2022/login/pages/idp-review-user-profile/idp-review-user-profile.component.mjs +0 -53
  462. package/dist/esm2022/login/pages/idp-review-user-profile/keycloakify-angular-login-pages-idp-review-user-profile.mjs +0 -5
  463. package/dist/esm2022/login/pages/idp-review-user-profile/public-api.mjs +0 -2
  464. package/dist/esm2022/login/pages/info/info.component.mjs +0 -49
  465. package/dist/esm2022/login/pages/info/keycloakify-angular-login-pages-info.mjs +0 -5
  466. package/dist/esm2022/login/pages/info/public-api.mjs +0 -2
  467. package/dist/esm2022/login/pages/login/keycloakify-angular-login-pages-login.mjs +0 -5
  468. package/dist/esm2022/login/pages/login/login.component.mjs +0 -44
  469. package/dist/esm2022/login/pages/login/public-api.mjs +0 -2
  470. package/dist/esm2022/login/pages/login-config-totp/keycloakify-angular-login-pages-login-config-totp.mjs +0 -5
  471. package/dist/esm2022/login/pages/login-config-totp/login-config-totp.component.mjs +0 -42
  472. package/dist/esm2022/login/pages/login-config-totp/public-api.mjs +0 -2
  473. package/dist/esm2022/login/pages/login-idp-link-confirm/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +0 -5
  474. package/dist/esm2022/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.mjs +0 -40
  475. package/dist/esm2022/login/pages/login-idp-link-confirm/public-api.mjs +0 -2
  476. package/dist/esm2022/login/pages/login-idp-link-confirm-override/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +0 -5
  477. package/dist/esm2022/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.mjs +0 -40
  478. package/dist/esm2022/login/pages/login-idp-link-confirm-override/public-api.mjs +0 -2
  479. package/dist/esm2022/login/pages/login-idp-link-email/keycloakify-angular-login-pages-login-idp-link-email.mjs +0 -5
  480. package/dist/esm2022/login/pages/login-idp-link-email/login-idp-link-email.component.mjs +0 -40
  481. package/dist/esm2022/login/pages/login-idp-link-email/public-api.mjs +0 -2
  482. package/dist/esm2022/login/pages/login-oauth-grant/keycloakify-angular-login-pages-login-oauth-grant.mjs +0 -5
  483. package/dist/esm2022/login/pages/login-oauth-grant/login-oauth-grant.component.mjs +0 -40
  484. package/dist/esm2022/login/pages/login-oauth-grant/public-api.mjs +0 -2
  485. package/dist/esm2022/login/pages/login-oauth2-device-verify-user-code/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +0 -5
  486. package/dist/esm2022/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.mjs +0 -40
  487. package/dist/esm2022/login/pages/login-oauth2-device-verify-user-code/public-api.mjs +0 -2
  488. package/dist/esm2022/login/pages/login-otp/keycloakify-angular-login-pages-login-otp.mjs +0 -5
  489. package/dist/esm2022/login/pages/login-otp/login-otp.component.mjs +0 -41
  490. package/dist/esm2022/login/pages/login-otp/public-api.mjs +0 -2
  491. package/dist/esm2022/login/pages/login-page-expired/keycloakify-angular-login-pages-login-page-expired.mjs +0 -5
  492. package/dist/esm2022/login/pages/login-page-expired/login-page-expired.component.mjs +0 -39
  493. package/dist/esm2022/login/pages/login-page-expired/public-api.mjs +0 -2
  494. package/dist/esm2022/login/pages/login-passkeys-conditional-authenticate/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +0 -5
  495. package/dist/esm2022/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.mjs +0 -84
  496. package/dist/esm2022/login/pages/login-passkeys-conditional-authenticate/public-api.mjs +0 -2
  497. package/dist/esm2022/login/pages/login-password/keycloakify-angular-login-pages-login-password.mjs +0 -5
  498. package/dist/esm2022/login/pages/login-password/login-password.component.mjs +0 -43
  499. package/dist/esm2022/login/pages/login-password/public-api.mjs +0 -2
  500. package/dist/esm2022/login/pages/login-recovery-authn-code-config/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +0 -5
  501. package/dist/esm2022/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.mjs +0 -43
  502. package/dist/esm2022/login/pages/login-recovery-authn-code-config/public-api.mjs +0 -2
  503. package/dist/esm2022/login/pages/login-recovery-authn-code-input/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +0 -5
  504. package/dist/esm2022/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.mjs +0 -41
  505. package/dist/esm2022/login/pages/login-recovery-authn-code-input/public-api.mjs +0 -2
  506. package/dist/esm2022/login/pages/login-reset-otp/keycloakify-angular-login-pages-login-reset-otp.mjs +0 -5
  507. package/dist/esm2022/login/pages/login-reset-otp/login-reset-otp.component.mjs +0 -40
  508. package/dist/esm2022/login/pages/login-reset-otp/public-api.mjs +0 -2
  509. package/dist/esm2022/login/pages/login-reset-password/keycloakify-angular-login-pages-login-reset-password.mjs +0 -5
  510. package/dist/esm2022/login/pages/login-reset-password/login-reset-password.component.mjs +0 -41
  511. package/dist/esm2022/login/pages/login-reset-password/public-api.mjs +0 -2
  512. package/dist/esm2022/login/pages/login-update-password/keycloakify-angular-login-pages-login-update-password.mjs +0 -5
  513. package/dist/esm2022/login/pages/login-update-password/login-update-password.component.mjs +0 -43
  514. package/dist/esm2022/login/pages/login-update-password/public-api.mjs +0 -2
  515. package/dist/esm2022/login/pages/login-update-profile/keycloakify-angular-login-pages-login-update-profile.mjs +0 -5
  516. package/dist/esm2022/login/pages/login-update-profile/login-update-profile.component.mjs +0 -50
  517. package/dist/esm2022/login/pages/login-update-profile/public-api.mjs +0 -2
  518. package/dist/esm2022/login/pages/login-username/keycloakify-angular-login-pages-login-username.mjs +0 -5
  519. package/dist/esm2022/login/pages/login-username/login-username.component.mjs +0 -43
  520. package/dist/esm2022/login/pages/login-username/public-api.mjs +0 -2
  521. package/dist/esm2022/login/pages/login-verify-email/keycloakify-angular-login-pages-login-verify-email.mjs +0 -5
  522. package/dist/esm2022/login/pages/login-verify-email/login-verify-email.component.mjs +0 -40
  523. package/dist/esm2022/login/pages/login-verify-email/public-api.mjs +0 -2
  524. package/dist/esm2022/login/pages/login-x509-info/keycloakify-angular-login-pages-login-x509-info.mjs +0 -5
  525. package/dist/esm2022/login/pages/login-x509-info/login-x509-info.component.mjs +0 -40
  526. package/dist/esm2022/login/pages/login-x509-info/public-api.mjs +0 -2
  527. package/dist/esm2022/login/pages/logout-confirm/keycloakify-angular-login-pages-logout-confirm.mjs +0 -5
  528. package/dist/esm2022/login/pages/logout-confirm/logout-confirm.component.mjs +0 -40
  529. package/dist/esm2022/login/pages/logout-confirm/public-api.mjs +0 -2
  530. package/dist/esm2022/login/pages/register/keycloakify-angular-login-pages-register.mjs +0 -5
  531. package/dist/esm2022/login/pages/register/public-api.mjs +0 -2
  532. package/dist/esm2022/login/pages/register/register.component.mjs +0 -55
  533. package/dist/esm2022/login/pages/saml-post-form/keycloakify-angular-login-pages-saml-post-form.mjs +0 -5
  534. package/dist/esm2022/login/pages/saml-post-form/public-api.mjs +0 -2
  535. package/dist/esm2022/login/pages/saml-post-form/saml-post-form.component.mjs +0 -52
  536. package/dist/esm2022/login/pages/select-authenticator/keycloakify-angular-login-pages-select-authenticator.mjs +0 -5
  537. package/dist/esm2022/login/pages/select-authenticator/public-api.mjs +0 -2
  538. package/dist/esm2022/login/pages/select-authenticator/select-authenticator.component.mjs +0 -41
  539. package/dist/esm2022/login/pages/terms/keycloakify-angular-login-pages-terms.mjs +0 -5
  540. package/dist/esm2022/login/pages/terms/public-api.mjs +0 -2
  541. package/dist/esm2022/login/pages/terms/terms.component.mjs +0 -40
  542. package/dist/esm2022/login/pages/update-email/keycloakify-angular-login-pages-update-email.mjs +0 -5
  543. package/dist/esm2022/login/pages/update-email/public-api.mjs +0 -2
  544. package/dist/esm2022/login/pages/update-email/update-email.component.mjs +0 -51
  545. package/dist/esm2022/login/pages/webauthn-authenticate/keycloakify-angular-login-pages-webauthn-authenticate.mjs +0 -5
  546. package/dist/esm2022/login/pages/webauthn-authenticate/public-api.mjs +0 -2
  547. package/dist/esm2022/login/pages/webauthn-authenticate/webauthn-authenticate.component.mjs +0 -80
  548. package/dist/esm2022/login/pages/webauthn-error/keycloakify-angular-login-pages-webauthn-error.mjs +0 -5
  549. package/dist/esm2022/login/pages/webauthn-error/public-api.mjs +0 -2
  550. package/dist/esm2022/login/pages/webauthn-error/webauthn-error.component.mjs +0 -49
  551. package/dist/esm2022/login/pages/webauthn-register/keycloakify-angular-login-pages-webauthn-register.mjs +0 -5
  552. package/dist/esm2022/login/pages/webauthn-register/public-api.mjs +0 -2
  553. package/dist/esm2022/login/pages/webauthn-register/webauthn-register.component.mjs +0 -76
  554. package/dist/esm2022/login/providers/keycloakify-angular/keycloakify-angular-login-providers-keycloakify-angular.mjs +0 -5
  555. package/dist/esm2022/login/providers/keycloakify-angular/keycloakify-angular.providers.mjs +0 -53
  556. package/dist/esm2022/login/providers/keycloakify-angular/public-api.mjs +0 -2
  557. package/dist/esm2022/login/services/i18n/i18n.service.mjs +0 -12
  558. package/dist/esm2022/login/services/i18n/keycloakify-angular-login-services-i18n.mjs +0 -5
  559. package/dist/esm2022/login/services/i18n/public-api.mjs +0 -2
  560. package/dist/esm2022/login/services/login-resource-injector/keycloakify-angular-login-services-login-resource-injector.mjs +0 -5
  561. package/dist/esm2022/login/services/login-resource-injector/login-resource-injector.service.mjs +0 -68
  562. package/dist/esm2022/login/services/login-resource-injector/public-api.mjs +0 -2
  563. package/dist/esm2022/login/services/submit/keycloakify-angular-login-services-submit.mjs +0 -5
  564. package/dist/esm2022/login/services/submit/public-api.mjs +0 -2
  565. package/dist/esm2022/login/services/submit/submit.service.mjs +0 -20
  566. package/dist/esm2022/login/services/user-profile-form/keycloakify-angular-login-services-user-profile-form.mjs +0 -5
  567. package/dist/esm2022/login/services/user-profile-form/public-api.mjs +0 -2
  568. package/dist/esm2022/login/services/user-profile-form/user-profile-form.service.mjs +0 -1019
  569. package/dist/esm2022/login/tokens/classes/classes.token.mjs +0 -3
  570. package/dist/esm2022/login/tokens/classes/keycloakify-angular-login-tokens-classes.mjs +0 -5
  571. package/dist/esm2022/login/tokens/classes/public-api.mjs +0 -2
  572. package/dist/esm2022/login/tokens/i18n/i18n.token.mjs +0 -3
  573. package/dist/esm2022/login/tokens/i18n/keycloakify-angular-login-tokens-i18n.mjs +0 -5
  574. package/dist/esm2022/login/tokens/i18n/public-api.mjs +0 -2
  575. package/dist/esm2022/login/tokens/kc-context/kc-context.token.mjs +0 -3
  576. package/dist/esm2022/login/tokens/kc-context/keycloakify-angular-login-tokens-kc-context.mjs +0 -5
  577. package/dist/esm2022/login/tokens/kc-context/public-api.mjs +0 -2
  578. package/dist/esm2022/login/tokens/make-user-confirm-password/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +0 -5
  579. package/dist/esm2022/login/tokens/make-user-confirm-password/make-user-confirm-password.token.mjs +0 -3
  580. package/dist/esm2022/login/tokens/make-user-confirm-password/public-api.mjs +0 -2
  581. package/dist/esm2022/public-api.mjs +0 -2
  582. package/dist/fesm2022/keycloakify-angular-account-DefaultPage.mjs +0 -39
  583. package/dist/fesm2022/keycloakify-angular-account-DefaultPage.mjs.map +0 -1
  584. package/dist/fesm2022/keycloakify-angular-account-KcContext.mjs +0 -4
  585. package/dist/fesm2022/keycloakify-angular-account-KcContext.mjs.map +0 -1
  586. package/dist/fesm2022/keycloakify-angular-account-classes-component-reference.mjs +0 -9
  587. package/dist/fesm2022/keycloakify-angular-account-classes-component-reference.mjs.map +0 -1
  588. package/dist/fesm2022/keycloakify-angular-account-containers-template.mjs +0 -73
  589. package/dist/fesm2022/keycloakify-angular-account-containers-template.mjs.map +0 -1
  590. package/dist/fesm2022/keycloakify-angular-account-directives-kc-class.mjs +0 -144
  591. package/dist/fesm2022/keycloakify-angular-account-directives-kc-class.mjs.map +0 -1
  592. package/dist/fesm2022/keycloakify-angular-account-i18n.mjs +0 -4
  593. package/dist/fesm2022/keycloakify-angular-account-i18n.mjs.map +0 -1
  594. package/dist/fesm2022/keycloakify-angular-account-pages-account.mjs +0 -46
  595. package/dist/fesm2022/keycloakify-angular-account-pages-account.mjs.map +0 -1
  596. package/dist/fesm2022/keycloakify-angular-account-pages-applications.mjs +0 -44
  597. package/dist/fesm2022/keycloakify-angular-account-pages-applications.mjs.map +0 -1
  598. package/dist/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs +0 -43
  599. package/dist/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs.map +0 -1
  600. package/dist/fesm2022/keycloakify-angular-account-pages-log.mjs +0 -43
  601. package/dist/fesm2022/keycloakify-angular-account-pages-log.mjs.map +0 -1
  602. package/dist/fesm2022/keycloakify-angular-account-pages-password.mjs +0 -114
  603. package/dist/fesm2022/keycloakify-angular-account-pages-password.mjs.map +0 -1
  604. package/dist/fesm2022/keycloakify-angular-account-pages-sessions.mjs +0 -43
  605. package/dist/fesm2022/keycloakify-angular-account-pages-sessions.mjs.map +0 -1
  606. package/dist/fesm2022/keycloakify-angular-account-pages-totp.mjs +0 -44
  607. package/dist/fesm2022/keycloakify-angular-account-pages-totp.mjs.map +0 -1
  608. package/dist/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs +0 -55
  609. package/dist/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs.map +0 -1
  610. package/dist/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs +0 -44
  611. package/dist/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs.map +0 -1
  612. package/dist/fesm2022/keycloakify-angular-account-services-i18n.mjs +0 -19
  613. package/dist/fesm2022/keycloakify-angular-account-services-i18n.mjs.map +0 -1
  614. package/dist/fesm2022/keycloakify-angular-account-tokens-classes.mjs +0 -10
  615. package/dist/fesm2022/keycloakify-angular-account-tokens-classes.mjs.map +0 -1
  616. package/dist/fesm2022/keycloakify-angular-account-tokens-i18n.mjs +0 -10
  617. package/dist/fesm2022/keycloakify-angular-account-tokens-i18n.mjs.map +0 -1
  618. package/dist/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs +0 -10
  619. package/dist/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs.map +0 -1
  620. package/dist/fesm2022/keycloakify-angular-lib-directives-attributes.mjs +0 -33
  621. package/dist/fesm2022/keycloakify-angular-lib-directives-attributes.mjs.map +0 -1
  622. package/dist/fesm2022/keycloakify-angular-lib-models-script.mjs +0 -4
  623. package/dist/fesm2022/keycloakify-angular-lib-models-script.mjs.map +0 -1
  624. package/dist/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs +0 -27
  625. package/dist/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs.map +0 -1
  626. package/dist/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +0 -27
  627. package/dist/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs.map +0 -1
  628. package/dist/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs +0 -36
  629. package/dist/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs.map +0 -1
  630. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs +0 -28
  631. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs.map +0 -1
  632. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs +0 -27
  633. package/dist/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs.map +0 -1
  634. package/dist/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs +0 -61
  635. package/dist/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs.map +0 -1
  636. package/dist/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs +0 -10
  637. package/dist/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs.map +0 -1
  638. package/dist/fesm2022/keycloakify-angular-lib.mjs +0 -8
  639. package/dist/fesm2022/keycloakify-angular-lib.mjs.map +0 -1
  640. package/dist/fesm2022/keycloakify-angular-login-DefaultPage.mjs +0 -126
  641. package/dist/fesm2022/keycloakify-angular-login-DefaultPage.mjs.map +0 -1
  642. package/dist/fesm2022/keycloakify-angular-login-KcContext.mjs +0 -4
  643. package/dist/fesm2022/keycloakify-angular-login-KcContext.mjs.map +0 -1
  644. package/dist/fesm2022/keycloakify-angular-login-classes-component-reference.mjs +0 -9
  645. package/dist/fesm2022/keycloakify-angular-login-classes-component-reference.mjs.map +0 -1
  646. package/dist/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +0 -113
  647. package/dist/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs.map +0 -1
  648. package/dist/fesm2022/keycloakify-angular-login-components-field-errors.mjs +0 -40
  649. package/dist/fesm2022/keycloakify-angular-login-components-field-errors.mjs.map +0 -1
  650. package/dist/fesm2022/keycloakify-angular-login-components-group-label.mjs +0 -50
  651. package/dist/fesm2022/keycloakify-angular-login-components-group-label.mjs.map +0 -1
  652. package/dist/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs +0 -53
  653. package/dist/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs.map +0 -1
  654. package/dist/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs +0 -124
  655. package/dist/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs.map +0 -1
  656. package/dist/fesm2022/keycloakify-angular-login-components-input-tag.mjs +0 -97
  657. package/dist/fesm2022/keycloakify-angular-login-components-input-tag.mjs.map +0 -1
  658. package/dist/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs +0 -39
  659. package/dist/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs.map +0 -1
  660. package/dist/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs +0 -53
  661. package/dist/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs.map +0 -1
  662. package/dist/fesm2022/keycloakify-angular-login-components-select-tag.mjs +0 -89
  663. package/dist/fesm2022/keycloakify-angular-login-components-select-tag.mjs.map +0 -1
  664. package/dist/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs +0 -56
  665. package/dist/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs.map +0 -1
  666. package/dist/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs +0 -69
  667. package/dist/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs.map +0 -1
  668. package/dist/fesm2022/keycloakify-angular-login-containers-template.mjs +0 -79
  669. package/dist/fesm2022/keycloakify-angular-login-containers-template.mjs.map +0 -1
  670. package/dist/fesm2022/keycloakify-angular-login-directives-kc-class.mjs +0 -145
  671. package/dist/fesm2022/keycloakify-angular-login-directives-kc-class.mjs.map +0 -1
  672. package/dist/fesm2022/keycloakify-angular-login-i18n.mjs +0 -4
  673. package/dist/fesm2022/keycloakify-angular-login-i18n.mjs.map +0 -1
  674. package/dist/fesm2022/keycloakify-angular-login-pages-code.mjs +0 -42
  675. package/dist/fesm2022/keycloakify-angular-login-pages-code.mjs.map +0 -1
  676. package/dist/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs +0 -42
  677. package/dist/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs.map +0 -1
  678. package/dist/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs +0 -47
  679. package/dist/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs.map +0 -1
  680. package/dist/fesm2022/keycloakify-angular-login-pages-error.mjs +0 -42
  681. package/dist/fesm2022/keycloakify-angular-login-pages-error.mjs.map +0 -1
  682. package/dist/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs +0 -51
  683. package/dist/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs.map +0 -1
  684. package/dist/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs +0 -60
  685. package/dist/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs.map +0 -1
  686. package/dist/fesm2022/keycloakify-angular-login-pages-info.mjs +0 -56
  687. package/dist/fesm2022/keycloakify-angular-login-pages-info.mjs.map +0 -1
  688. package/dist/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs +0 -49
  689. package/dist/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs.map +0 -1
  690. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +0 -47
  691. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs.map +0 -1
  692. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +0 -47
  693. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs.map +0 -1
  694. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs +0 -47
  695. package/dist/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs.map +0 -1
  696. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs +0 -47
  697. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs.map +0 -1
  698. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +0 -47
  699. package/dist/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs.map +0 -1
  700. package/dist/fesm2022/keycloakify-angular-login-pages-login-otp.mjs +0 -48
  701. package/dist/fesm2022/keycloakify-angular-login-pages-login-otp.mjs.map +0 -1
  702. package/dist/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs +0 -46
  703. package/dist/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs.map +0 -1
  704. package/dist/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +0 -91
  705. package/dist/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs.map +0 -1
  706. package/dist/fesm2022/keycloakify-angular-login-pages-login-password.mjs +0 -50
  707. package/dist/fesm2022/keycloakify-angular-login-pages-login-password.mjs.map +0 -1
  708. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +0 -50
  709. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs.map +0 -1
  710. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +0 -48
  711. package/dist/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs.map +0 -1
  712. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs +0 -47
  713. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs.map +0 -1
  714. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs +0 -48
  715. package/dist/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs.map +0 -1
  716. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs +0 -50
  717. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs.map +0 -1
  718. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs +0 -57
  719. package/dist/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs.map +0 -1
  720. package/dist/fesm2022/keycloakify-angular-login-pages-login-username.mjs +0 -50
  721. package/dist/fesm2022/keycloakify-angular-login-pages-login-username.mjs.map +0 -1
  722. package/dist/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs +0 -47
  723. package/dist/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs.map +0 -1
  724. package/dist/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs +0 -47
  725. package/dist/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs.map +0 -1
  726. package/dist/fesm2022/keycloakify-angular-login-pages-login.mjs +0 -51
  727. package/dist/fesm2022/keycloakify-angular-login-pages-login.mjs.map +0 -1
  728. package/dist/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs +0 -47
  729. package/dist/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs.map +0 -1
  730. package/dist/fesm2022/keycloakify-angular-login-pages-register.mjs +0 -62
  731. package/dist/fesm2022/keycloakify-angular-login-pages-register.mjs.map +0 -1
  732. package/dist/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs +0 -59
  733. package/dist/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs.map +0 -1
  734. package/dist/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs +0 -48
  735. package/dist/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs.map +0 -1
  736. package/dist/fesm2022/keycloakify-angular-login-pages-terms.mjs +0 -47
  737. package/dist/fesm2022/keycloakify-angular-login-pages-terms.mjs.map +0 -1
  738. package/dist/fesm2022/keycloakify-angular-login-pages-update-email.mjs +0 -58
  739. package/dist/fesm2022/keycloakify-angular-login-pages-update-email.mjs.map +0 -1
  740. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs +0 -87
  741. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs.map +0 -1
  742. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs +0 -56
  743. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs.map +0 -1
  744. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs +0 -83
  745. package/dist/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs.map +0 -1
  746. package/dist/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs +0 -60
  747. package/dist/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs.map +0 -1
  748. package/dist/fesm2022/keycloakify-angular-login-services-i18n.mjs +0 -19
  749. package/dist/fesm2022/keycloakify-angular-login-services-i18n.mjs.map +0 -1
  750. package/dist/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs +0 -75
  751. package/dist/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs.map +0 -1
  752. package/dist/fesm2022/keycloakify-angular-login-services-submit.mjs +0 -27
  753. package/dist/fesm2022/keycloakify-angular-login-services-submit.mjs.map +0 -1
  754. package/dist/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs +0 -1026
  755. package/dist/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs.map +0 -1
  756. package/dist/fesm2022/keycloakify-angular-login-tokens-classes.mjs +0 -10
  757. package/dist/fesm2022/keycloakify-angular-login-tokens-classes.mjs.map +0 -1
  758. package/dist/fesm2022/keycloakify-angular-login-tokens-i18n.mjs +0 -10
  759. package/dist/fesm2022/keycloakify-angular-login-tokens-i18n.mjs.map +0 -1
  760. package/dist/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs +0 -10
  761. package/dist/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs.map +0 -1
  762. package/dist/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +0 -10
  763. package/dist/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs.map +0 -1
  764. package/dist/fesm2022/keycloakify-angular.mjs +0 -8
  765. package/dist/fesm2022/keycloakify-angular.mjs.map +0 -1
  766. package/dist/index.d.ts +0 -5
  767. package/dist/lib/directives/attributes/attributes.directive.d.ts +0 -8
  768. package/dist/lib/directives/attributes/index.d.ts +0 -5
  769. package/dist/lib/index.d.ts +0 -5
  770. package/dist/lib/models/script/index.d.ts +0 -5
  771. package/dist/lib/models/script/script.model.d.ts +0 -6
  772. package/dist/lib/pipes/input-type/index.d.ts +0 -5
  773. package/dist/lib/pipes/input-type/input-type.pipe.d.ts +0 -7
  774. package/dist/lib/pipes/is-array-with-empty-object/index.d.ts +0 -5
  775. package/dist/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.d.ts +0 -7
  776. package/dist/lib/pipes/kc-sanitize/index.d.ts +0 -5
  777. package/dist/lib/pipes/kc-sanitize/kc-sanitize.pipe.d.ts +0 -9
  778. package/dist/lib/pipes/to-array/index.d.ts +0 -5
  779. package/dist/lib/pipes/to-array/to-array.pipe.d.ts +0 -7
  780. package/dist/lib/pipes/to-number/index.d.ts +0 -5
  781. package/dist/lib/pipes/to-number/to-number.pipe.d.ts +0 -7
  782. package/dist/lib/public-api.d.ts +0 -1
  783. package/dist/lib/services/resource-injector/index.d.ts +0 -5
  784. package/dist/lib/services/resource-injector/resource-injector.service.d.ts +0 -10
  785. package/dist/lib/tokens/use-default-css/index.d.ts +0 -5
  786. package/dist/lib/tokens/use-default-css/use-default-css.token.d.ts +0 -2
  787. package/dist/login/DefaultPage/DefaultPage.d.ts +0 -260
  788. package/dist/login/DefaultPage/index.d.ts +0 -5
  789. package/dist/login/KcContext/KcContext.d.ts +0 -1
  790. package/dist/login/KcContext/index.d.ts +0 -5
  791. package/dist/login/classes/component-reference/component-reference.class.d.ts +0 -5
  792. package/dist/login/classes/component-reference/index.d.ts +0 -5
  793. package/dist/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.d.ts +0 -18
  794. package/dist/login/components/add-remove-buttons-multi-valued-attribute/index.d.ts +0 -5
  795. package/dist/login/components/field-errors/field-errors.component.d.ts +0 -14
  796. package/dist/login/components/field-errors/index.d.ts +0 -5
  797. package/dist/login/components/group-label/group-label.component.d.ts +0 -15
  798. package/dist/login/components/group-label/index.d.ts +0 -5
  799. package/dist/login/components/input-field-by-type/index.d.ts +0 -5
  800. package/dist/login/components/input-field-by-type/input-field-by-type.component.d.ts +0 -16
  801. package/dist/login/components/input-tag/index.d.ts +0 -5
  802. package/dist/login/components/input-tag/input-tag.component.d.ts +0 -22
  803. package/dist/login/components/input-tag-selects/index.d.ts +0 -5
  804. package/dist/login/components/input-tag-selects/input-tag-selects.component.d.ts +0 -28
  805. package/dist/login/components/logout-other-sessions/index.d.ts +0 -5
  806. package/dist/login/components/logout-other-sessions/logout-other-sessions.component.d.ts +0 -11
  807. package/dist/login/components/password-wrapper/index.d.ts +0 -5
  808. package/dist/login/components/password-wrapper/password-wrapper.component.d.ts +0 -17
  809. package/dist/login/components/select-tag/index.d.ts +0 -5
  810. package/dist/login/components/select-tag/select-tag.component.d.ts +0 -21
  811. package/dist/login/components/textarea-tag/index.d.ts +0 -5
  812. package/dist/login/components/textarea-tag/textarea-tag.component.d.ts +0 -17
  813. package/dist/login/components/user-profile-form-fields/index.d.ts +0 -5
  814. package/dist/login/components/user-profile-form-fields/user-profile-form-fields.component.d.ts +0 -31
  815. package/dist/login/containers/template/index.d.ts +0 -5
  816. package/dist/login/containers/template/template.component.d.ts +0 -31
  817. package/dist/login/directives/kc-class/index.d.ts +0 -5
  818. package/dist/login/directives/kc-class/kc-class.directive.d.ts +0 -26
  819. package/dist/login/i18n/i18n.d.ts +0 -4
  820. package/dist/login/i18n/index.d.ts +0 -5
  821. package/dist/login/pages/code/code.component.d.ts +0 -13
  822. package/dist/login/pages/code/index.d.ts +0 -5
  823. package/dist/login/pages/delete-account-confirm/delete-account-confirm.component.d.ts +0 -13
  824. package/dist/login/pages/delete-account-confirm/index.d.ts +0 -5
  825. package/dist/login/pages/delete-credential/delete-credential.component.d.ts +0 -18
  826. package/dist/login/pages/delete-credential/index.d.ts +0 -5
  827. package/dist/login/pages/error/error.component.d.ts +0 -13
  828. package/dist/login/pages/error/index.d.ts +0 -5
  829. package/dist/login/pages/frontchannel-logout/frontchannel-logout.component.d.ts +0 -19
  830. package/dist/login/pages/frontchannel-logout/index.d.ts +0 -5
  831. package/dist/login/pages/idp-review-user-profile/idp-review-user-profile.component.d.ts +0 -25
  832. package/dist/login/pages/idp-review-user-profile/index.d.ts +0 -5
  833. package/dist/login/pages/info/index.d.ts +0 -5
  834. package/dist/login/pages/info/info.component.d.ts +0 -19
  835. package/dist/login/pages/login/index.d.ts +0 -5
  836. package/dist/login/pages/login/login.component.d.ts +0 -19
  837. package/dist/login/pages/login-config-totp/index.d.ts +0 -5
  838. package/dist/login/pages/login-config-totp/login-config-totp.component.d.ts +0 -18
  839. package/dist/login/pages/login-idp-link-confirm/index.d.ts +0 -5
  840. package/dist/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.d.ts +0 -18
  841. package/dist/login/pages/login-idp-link-confirm-override/index.d.ts +0 -5
  842. package/dist/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.d.ts +0 -18
  843. package/dist/login/pages/login-idp-link-email/index.d.ts +0 -5
  844. package/dist/login/pages/login-idp-link-email/login-idp-link-email.component.d.ts +0 -18
  845. package/dist/login/pages/login-oauth-grant/index.d.ts +0 -5
  846. package/dist/login/pages/login-oauth-grant/login-oauth-grant.component.d.ts +0 -18
  847. package/dist/login/pages/login-oauth2-device-verify-user-code/index.d.ts +0 -5
  848. package/dist/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.d.ts +0 -18
  849. package/dist/login/pages/login-otp/index.d.ts +0 -5
  850. package/dist/login/pages/login-otp/login-otp.component.d.ts +0 -18
  851. package/dist/login/pages/login-page-expired/index.d.ts +0 -5
  852. package/dist/login/pages/login-page-expired/login-page-expired.component.d.ts +0 -18
  853. package/dist/login/pages/login-passkeys-conditional-authenticate/index.d.ts +0 -5
  854. package/dist/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.d.ts +0 -19
  855. package/dist/login/pages/login-password/index.d.ts +0 -5
  856. package/dist/login/pages/login-password/login-password.component.d.ts +0 -19
  857. package/dist/login/pages/login-recovery-authn-code-config/index.d.ts +0 -5
  858. package/dist/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.d.ts +0 -20
  859. package/dist/login/pages/login-recovery-authn-code-input/index.d.ts +0 -5
  860. package/dist/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.d.ts +0 -18
  861. package/dist/login/pages/login-reset-otp/index.d.ts +0 -5
  862. package/dist/login/pages/login-reset-otp/login-reset-otp.component.d.ts +0 -18
  863. package/dist/login/pages/login-reset-password/index.d.ts +0 -5
  864. package/dist/login/pages/login-reset-password/login-reset-password.component.d.ts +0 -18
  865. package/dist/login/pages/login-update-password/index.d.ts +0 -5
  866. package/dist/login/pages/login-update-password/login-update-password.component.d.ts +0 -18
  867. package/dist/login/pages/login-update-profile/index.d.ts +0 -5
  868. package/dist/login/pages/login-update-profile/login-update-profile.component.d.ts +0 -24
  869. package/dist/login/pages/login-username/index.d.ts +0 -5
  870. package/dist/login/pages/login-username/login-username.component.d.ts +0 -19
  871. package/dist/login/pages/login-verify-email/index.d.ts +0 -5
  872. package/dist/login/pages/login-verify-email/login-verify-email.component.d.ts +0 -18
  873. package/dist/login/pages/login-x509-info/index.d.ts +0 -5
  874. package/dist/login/pages/login-x509-info/login-x509-info.component.d.ts +0 -18
  875. package/dist/login/pages/logout-confirm/index.d.ts +0 -5
  876. package/dist/login/pages/logout-confirm/logout-confirm.component.d.ts +0 -18
  877. package/dist/login/pages/register/index.d.ts +0 -5
  878. package/dist/login/pages/register/register.component.d.ts +0 -26
  879. package/dist/login/pages/saml-post-form/index.d.ts +0 -5
  880. package/dist/login/pages/saml-post-form/saml-post-form.component.d.ts +0 -21
  881. package/dist/login/pages/select-authenticator/index.d.ts +0 -5
  882. package/dist/login/pages/select-authenticator/select-authenticator.component.d.ts +0 -18
  883. package/dist/login/pages/terms/index.d.ts +0 -5
  884. package/dist/login/pages/terms/terms.component.d.ts +0 -18
  885. package/dist/login/pages/update-email/index.d.ts +0 -5
  886. package/dist/login/pages/update-email/update-email.component.d.ts +0 -24
  887. package/dist/login/pages/webauthn-authenticate/index.d.ts +0 -5
  888. package/dist/login/pages/webauthn-authenticate/webauthn-authenticate.component.d.ts +0 -23
  889. package/dist/login/pages/webauthn-error/index.d.ts +0 -5
  890. package/dist/login/pages/webauthn-error/webauthn-error.component.d.ts +0 -19
  891. package/dist/login/pages/webauthn-register/index.d.ts +0 -5
  892. package/dist/login/pages/webauthn-register/webauthn-register.component.d.ts +0 -22
  893. package/dist/login/providers/keycloakify-angular/index.d.ts +0 -5
  894. package/dist/login/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +0 -16
  895. package/dist/login/services/i18n/i18n.service.d.ts +0 -6
  896. package/dist/login/services/i18n/index.d.ts +0 -5
  897. package/dist/login/services/login-resource-injector/index.d.ts +0 -5
  898. package/dist/login/services/login-resource-injector/login-resource-injector.service.d.ts +0 -11
  899. package/dist/login/services/submit/index.d.ts +0 -5
  900. package/dist/login/services/submit/submit.service.d.ts +0 -9
  901. package/dist/login/services/user-profile-form/index.d.ts +0 -5
  902. package/dist/login/services/user-profile-form/user-profile-form.service.d.ts +0 -86
  903. package/dist/login/tokens/classes/classes.token.d.ts +0 -127
  904. package/dist/login/tokens/classes/index.d.ts +0 -5
  905. package/dist/login/tokens/i18n/i18n.token.d.ts +0 -2
  906. package/dist/login/tokens/i18n/index.d.ts +0 -5
  907. package/dist/login/tokens/kc-context/index.d.ts +0 -5
  908. package/dist/login/tokens/kc-context/kc-context.token.d.ts +0 -3
  909. package/dist/login/tokens/make-user-confirm-password/index.d.ts +0 -5
  910. package/dist/login/tokens/make-user-confirm-password/make-user-confirm-password.token.d.ts +0 -2
  911. package/dist/public-api.d.ts +0 -1
  912. package/dist/src/account/DefaultPage.ts +0 -61
  913. package/dist/src/account/classes/component-reference/component-reference.class.ts +0 -6
  914. package/dist/src/account/classes/component-reference/index.ts +0 -1
  915. package/dist/src/account/containers/template/index.ts +0 -1
  916. package/dist/src/account/containers/template/template.component.ts +0 -71
  917. package/dist/src/account/directives/kc-class/index.ts +0 -1
  918. package/dist/src/account/directives/kc-class/kc-class.directive.ts +0 -150
  919. package/dist/src/account/pages/account/account.component.ts +0 -34
  920. package/dist/src/account/pages/account/index.ts +0 -1
  921. package/dist/src/account/pages/applications/applications.component.ts +0 -32
  922. package/dist/src/account/pages/applications/index.ts +0 -1
  923. package/dist/src/account/pages/federatedIdentity/federatedIdentity.component.ts +0 -31
  924. package/dist/src/account/pages/federatedIdentity/index.ts +0 -1
  925. package/dist/src/account/pages/log/index.ts +0 -1
  926. package/dist/src/account/pages/log/log.component.ts +0 -31
  927. package/dist/src/account/pages/password/index.ts +0 -1
  928. package/dist/src/account/pages/password/password.component.ts +0 -110
  929. package/dist/src/account/pages/sessions/index.ts +0 -1
  930. package/dist/src/account/pages/sessions/sessions.component.ts +0 -31
  931. package/dist/src/account/pages/totp/index.ts +0 -1
  932. package/dist/src/account/pages/totp/totp.component.ts +0 -32
  933. package/dist/src/account/providers/keycloakify-angular/index.ts +0 -1
  934. package/dist/src/account/providers/keycloakify-angular/keycloakify-angular.providers.ts +0 -64
  935. package/dist/src/account/services/account-resource-injector/account-resource-injector.service.ts +0 -41
  936. package/dist/src/account/services/account-resource-injector/index.ts +0 -1
  937. package/dist/src/account/services/i18n/index.ts +0 -1
  938. package/dist/src/account/tokens/classes/index.ts +0 -1
  939. package/dist/src/account/tokens/i18n/index.ts +0 -1
  940. package/dist/src/account/tokens/kc-context/index.ts +0 -1
  941. package/dist/src/account/tokens/kc-context/kc-context.token.ts +0 -6
  942. package/dist/src/lib/directives/attributes/index.ts +0 -1
  943. package/dist/src/lib/models/script/index.ts +0 -1
  944. package/dist/src/lib/pipes/input-type/index.ts +0 -1
  945. package/dist/src/lib/pipes/is-array-with-empty-object/index.ts +0 -1
  946. package/dist/src/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.ts +0 -16
  947. package/dist/src/lib/pipes/kc-sanitize/index.ts +0 -1
  948. package/dist/src/lib/pipes/to-array/index.ts +0 -1
  949. package/dist/src/lib/pipes/to-array/to-array.pipe.ts +0 -15
  950. package/dist/src/lib/pipes/to-number/index.ts +0 -1
  951. package/dist/src/lib/pipes/to-number/to-number.pipe.ts +0 -13
  952. package/dist/src/lib/services/resource-injector/index.ts +0 -1
  953. package/dist/src/lib/tokens/use-default-css/index.ts +0 -1
  954. package/dist/src/login/DefaultPage.ts +0 -208
  955. package/dist/src/login/classes/component-reference/index.ts +0 -1
  956. package/dist/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.ts +0 -136
  957. package/dist/src/login/components/add-remove-buttons-multi-valued-attribute/index.ts +0 -1
  958. package/dist/src/login/components/field-errors/index.ts +0 -1
  959. package/dist/src/login/components/group-label/group-label.component.ts +0 -46
  960. package/dist/src/login/components/group-label/index.ts +0 -1
  961. package/dist/src/login/components/input-field-by-type/index.ts +0 -1
  962. package/dist/src/login/components/input-tag/index.ts +0 -1
  963. package/dist/src/login/components/input-tag/input-tag.component.ts +0 -99
  964. package/dist/src/login/components/input-tag-selects/index.ts +0 -1
  965. package/dist/src/login/components/input-tag-selects/input-tag-selects.component.ts +0 -139
  966. package/dist/src/login/components/logout-other-sessions/index.ts +0 -1
  967. package/dist/src/login/components/logout-other-sessions/logout-other-sessions.component.ts +0 -34
  968. package/dist/src/login/components/password-wrapper/index.ts +0 -1
  969. package/dist/src/login/components/password-wrapper/password-wrapper.component.ts +0 -51
  970. package/dist/src/login/components/select-tag/index.ts +0 -1
  971. package/dist/src/login/components/select-tag/select-tag.component.ts +0 -97
  972. package/dist/src/login/components/textarea-tag/index.ts +0 -1
  973. package/dist/src/login/components/user-profile-form-fields/index.ts +0 -1
  974. package/dist/src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts +0 -70
  975. package/dist/src/login/containers/template/index.ts +0 -1
  976. package/dist/src/login/containers/template/template.component.ts +0 -78
  977. package/dist/src/login/directives/kc-class/index.ts +0 -1
  978. package/dist/src/login/pages/code/code.component.ts +0 -31
  979. package/dist/src/login/pages/code/index.ts +0 -1
  980. package/dist/src/login/pages/delete-account-confirm/delete-account-confirm.component.ts +0 -31
  981. package/dist/src/login/pages/delete-account-confirm/index.ts +0 -1
  982. package/dist/src/login/pages/delete-credential/delete-credential.component.ts +0 -36
  983. package/dist/src/login/pages/delete-credential/index.ts +0 -1
  984. package/dist/src/login/pages/error/error.component.ts +0 -31
  985. package/dist/src/login/pages/error/index.ts +0 -1
  986. package/dist/src/login/pages/frontchannel-logout/frontchannel-logout.component.ts +0 -41
  987. package/dist/src/login/pages/frontchannel-logout/index.ts +0 -1
  988. package/dist/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.ts +0 -56
  989. package/dist/src/login/pages/idp-review-user-profile/index.ts +0 -1
  990. package/dist/src/login/pages/info/index.ts +0 -1
  991. package/dist/src/login/pages/info/info.component.ts +0 -48
  992. package/dist/src/login/pages/login/index.ts +0 -1
  993. package/dist/src/login/pages/login/login.component.ts +0 -40
  994. package/dist/src/login/pages/login-config-totp/index.ts +0 -1
  995. package/dist/src/login/pages/login-config-totp/login-config-totp.component.ts +0 -38
  996. package/dist/src/login/pages/login-idp-link-confirm/index.ts +0 -1
  997. package/dist/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.ts +0 -36
  998. package/dist/src/login/pages/login-idp-link-confirm-override/index.ts +0 -1
  999. package/dist/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.ts +0 -36
  1000. package/dist/src/login/pages/login-idp-link-email/index.ts +0 -1
  1001. package/dist/src/login/pages/login-idp-link-email/login-idp-link-email.component.ts +0 -36
  1002. package/dist/src/login/pages/login-oauth-grant/index.ts +0 -1
  1003. package/dist/src/login/pages/login-oauth-grant/login-oauth-grant.component.ts +0 -36
  1004. package/dist/src/login/pages/login-oauth2-device-verify-user-code/index.ts +0 -1
  1005. package/dist/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.ts +0 -36
  1006. package/dist/src/login/pages/login-otp/index.ts +0 -1
  1007. package/dist/src/login/pages/login-otp/login-otp.component.ts +0 -37
  1008. package/dist/src/login/pages/login-page-expired/index.ts +0 -1
  1009. package/dist/src/login/pages/login-page-expired/login-page-expired.component.ts +0 -35
  1010. package/dist/src/login/pages/login-passkeys-conditional-authenticate/index.ts +0 -1
  1011. package/dist/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.ts +0 -94
  1012. package/dist/src/login/pages/login-password/index.ts +0 -1
  1013. package/dist/src/login/pages/login-password/login-password.component.ts +0 -40
  1014. package/dist/src/login/pages/login-recovery-authn-code-config/index.ts +0 -1
  1015. package/dist/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.ts +0 -40
  1016. package/dist/src/login/pages/login-recovery-authn-code-input/index.ts +0 -1
  1017. package/dist/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.ts +0 -37
  1018. package/dist/src/login/pages/login-reset-otp/index.ts +0 -1
  1019. package/dist/src/login/pages/login-reset-otp/login-reset-otp.component.ts +0 -36
  1020. package/dist/src/login/pages/login-reset-password/index.ts +0 -1
  1021. package/dist/src/login/pages/login-reset-password/login-reset-password.component.ts +0 -37
  1022. package/dist/src/login/pages/login-update-password/index.ts +0 -1
  1023. package/dist/src/login/pages/login-update-password/login-update-password.component.ts +0 -39
  1024. package/dist/src/login/pages/login-update-profile/index.ts +0 -1
  1025. package/dist/src/login/pages/login-update-profile/login-update-profile.component.ts +0 -51
  1026. package/dist/src/login/pages/login-username/index.ts +0 -1
  1027. package/dist/src/login/pages/login-username/login-username.component.ts +0 -39
  1028. package/dist/src/login/pages/login-verify-email/index.ts +0 -1
  1029. package/dist/src/login/pages/login-verify-email/login-verify-email.component.ts +0 -36
  1030. package/dist/src/login/pages/login-x509-info/index.ts +0 -1
  1031. package/dist/src/login/pages/login-x509-info/login-x509-info.component.ts +0 -36
  1032. package/dist/src/login/pages/logout-confirm/index.ts +0 -1
  1033. package/dist/src/login/pages/logout-confirm/logout-confirm.component.ts +0 -36
  1034. package/dist/src/login/pages/register/index.ts +0 -1
  1035. package/dist/src/login/pages/register/register.component.ts +0 -56
  1036. package/dist/src/login/pages/saml-post-form/index.ts +0 -1
  1037. package/dist/src/login/pages/saml-post-form/saml-post-form.component.ts +0 -50
  1038. package/dist/src/login/pages/select-authenticator/index.ts +0 -1
  1039. package/dist/src/login/pages/select-authenticator/select-authenticator.component.ts +0 -37
  1040. package/dist/src/login/pages/terms/index.ts +0 -1
  1041. package/dist/src/login/pages/terms/terms.component.ts +0 -36
  1042. package/dist/src/login/pages/update-email/index.ts +0 -1
  1043. package/dist/src/login/pages/update-email/update-email.component.ts +0 -52
  1044. package/dist/src/login/pages/webauthn-authenticate/index.ts +0 -1
  1045. package/dist/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.ts +0 -82
  1046. package/dist/src/login/pages/webauthn-error/index.ts +0 -1
  1047. package/dist/src/login/pages/webauthn-error/webauthn-error.component.ts +0 -46
  1048. package/dist/src/login/pages/webauthn-register/index.ts +0 -1
  1049. package/dist/src/login/pages/webauthn-register/webauthn-register.component.ts +0 -92
  1050. package/dist/src/login/providers/keycloakify-angular/index.ts +0 -1
  1051. package/dist/src/login/providers/keycloakify-angular/keycloakify-angular.providers.ts +0 -68
  1052. package/dist/src/login/services/i18n/index.ts +0 -1
  1053. package/dist/src/login/services/login-resource-injector/index.ts +0 -1
  1054. package/dist/src/login/services/login-resource-injector/login-resource-injector.service.ts +0 -73
  1055. package/dist/src/login/services/submit/index.ts +0 -1
  1056. package/dist/src/login/services/user-profile-form/index.ts +0 -1
  1057. package/dist/src/login/services/user-profile-form/user-profile-form.service.ts +0 -1502
  1058. package/dist/src/login/tokens/classes/index.ts +0 -1
  1059. package/dist/src/login/tokens/i18n/index.ts +0 -1
  1060. package/dist/src/login/tokens/kc-context/index.ts +0 -1
  1061. package/dist/src/login/tokens/kc-context/kc-context.token.ts +0 -4
  1062. package/dist/src/login/tokens/make-user-confirm-password/index.ts +0 -1
  1063. package/dist/src/tsconfig.lib.json +0 -14
  1064. package/dist/src/tsconfig.lib.prod.json +0 -10
  1065. /package/{dist/account/DefaultPage/public-api.d.ts → src/account/DefaultPage/public-api.ts} +0 -0
  1066. /package/{dist/src/account → src/account/KcContext}/KcContext.ts +0 -0
  1067. /package/{dist/account/KcContext/public-api.d.ts → src/account/KcContext/public-api.ts} +0 -0
  1068. /package/{dist/account/classes/component-reference/public-api.d.ts → src/account/classes/component-reference/public-api.ts} +0 -0
  1069. /package/{dist/account/containers/template/public-api.d.ts → src/account/containers/template/public-api.ts} +0 -0
  1070. /package/{dist/src → src}/account/containers/template/template.component.html +0 -0
  1071. /package/{dist/account/directives/kc-class/public-api.d.ts → src/account/directives/kc-class/public-api.ts} +0 -0
  1072. /package/{dist/src/account → src/account/i18n}/i18n.ts +0 -0
  1073. /package/{dist/account/i18n/public-api.d.ts → src/account/i18n/public-api.ts} +0 -0
  1074. /package/{dist/src → src}/account/pages/account/account.component.html +0 -0
  1075. /package/{dist/account/pages/account/public-api.d.ts → src/account/pages/account/public-api.ts} +0 -0
  1076. /package/{dist/src → src}/account/pages/applications/applications.component.html +0 -0
  1077. /package/{dist/account/pages/applications/public-api.d.ts → src/account/pages/applications/public-api.ts} +0 -0
  1078. /package/{dist/src → src}/account/pages/federatedIdentity/federatedIdentity.component.html +0 -0
  1079. /package/{dist/account/pages/federatedIdentity/public-api.d.ts → src/account/pages/federatedIdentity/public-api.ts} +0 -0
  1080. /package/{dist/src → src}/account/pages/log/log.component.html +0 -0
  1081. /package/{dist/account/pages/log/public-api.d.ts → src/account/pages/log/public-api.ts} +0 -0
  1082. /package/{dist/src → src}/account/pages/password/password.component.html +0 -0
  1083. /package/{dist/account/pages/password/public-api.d.ts → src/account/pages/password/public-api.ts} +0 -0
  1084. /package/{dist/account/pages/sessions/public-api.d.ts → src/account/pages/sessions/public-api.ts} +0 -0
  1085. /package/{dist/src → src}/account/pages/sessions/sessions.component.html +0 -0
  1086. /package/{dist/account/pages/totp/public-api.d.ts → src/account/pages/totp/public-api.ts} +0 -0
  1087. /package/{dist/src → src}/account/pages/totp/totp.component.html +0 -0
  1088. /package/{dist/account/providers/keycloakify-angular/public-api.d.ts → src/account/providers/keycloakify-angular/public-api.ts} +0 -0
  1089. /package/{dist/account/services/account-resource-injector/public-api.d.ts → src/account/services/account-resource-injector/public-api.ts} +0 -0
  1090. /package/{dist/src → src}/account/services/i18n/i18n.service.ts +0 -0
  1091. /package/{dist/account/services/i18n/public-api.d.ts → src/account/services/i18n/public-api.ts} +0 -0
  1092. /package/{dist/src → src}/account/tokens/classes/classes.token.ts +0 -0
  1093. /package/{dist/account/tokens/classes/public-api.d.ts → src/account/tokens/classes/public-api.ts} +0 -0
  1094. /package/{dist/src → src}/account/tokens/i18n/i18n.token.ts +0 -0
  1095. /package/{dist/account/tokens/i18n/public-api.d.ts → src/account/tokens/i18n/public-api.ts} +0 -0
  1096. /package/{dist/account/tokens/kc-context/public-api.d.ts → src/account/tokens/kc-context/public-api.ts} +0 -0
  1097. /package/{dist/src → src}/lib/directives/attributes/attributes.directive.ts +0 -0
  1098. /package/{dist/lib/directives/attributes/public-api.d.ts → src/lib/directives/attributes/public-api.ts} +0 -0
  1099. /package/{dist/lib/models/script/public-api.d.ts → src/lib/models/script/public-api.ts} +0 -0
  1100. /package/{dist/src → src}/lib/models/script/script.model.ts +0 -0
  1101. /package/{dist/src → src}/lib/pipes/input-type/input-type.pipe.ts +0 -0
  1102. /package/{dist/lib/pipes/input-type/public-api.d.ts → src/lib/pipes/input-type/public-api.ts} +0 -0
  1103. /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
  1104. /package/{dist/src → src}/lib/pipes/kc-sanitize/kc-sanitize.pipe.ts +0 -0
  1105. /package/{dist/lib/pipes/kc-sanitize/public-api.d.ts → src/lib/pipes/kc-sanitize/public-api.ts} +0 -0
  1106. /package/{dist/lib/pipes/to-array/public-api.d.ts → src/lib/pipes/to-array/public-api.ts} +0 -0
  1107. /package/{dist/lib/pipes/to-number/public-api.d.ts → src/lib/pipes/to-number/public-api.ts} +0 -0
  1108. /package/{dist/lib/services/resource-injector/public-api.d.ts → src/lib/services/resource-injector/public-api.ts} +0 -0
  1109. /package/{dist/src → src}/lib/services/resource-injector/resource-injector.service.ts +0 -0
  1110. /package/{dist/lib/tokens/use-default-css/public-api.d.ts → src/lib/tokens/use-default-css/public-api.ts} +0 -0
  1111. /package/{dist/src → src}/lib/tokens/use-default-css/use-default-css.token.ts +0 -0
  1112. /package/{dist/login/DefaultPage/public-api.d.ts → src/login/DefaultPage/public-api.ts} +0 -0
  1113. /package/{dist/src/login → src/login/KcContext}/KcContext.ts +0 -0
  1114. /package/{dist/login/KcContext/public-api.d.ts → src/login/KcContext/public-api.ts} +0 -0
  1115. /package/{dist/src → src}/login/classes/component-reference/component-reference.class.ts +0 -0
  1116. /package/{dist/login/classes/component-reference/public-api.d.ts → src/login/classes/component-reference/public-api.ts} +0 -0
  1117. /package/{dist/src → src}/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.html +0 -0
  1118. /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
  1119. /package/{dist/src → src}/login/components/field-errors/field-errors.component.html +0 -0
  1120. /package/{dist/src → src}/login/components/field-errors/field-errors.component.ts +0 -0
  1121. /package/{dist/login/components/field-errors/public-api.d.ts → src/login/components/field-errors/public-api.ts} +0 -0
  1122. /package/{dist/src → src}/login/components/group-label/group-label.component.html +0 -0
  1123. /package/{dist/login/components/group-label/public-api.d.ts → src/login/components/group-label/public-api.ts} +0 -0
  1124. /package/{dist/src → src}/login/components/input-field-by-type/input-field-by-type.component.html +0 -0
  1125. /package/{dist/src → src}/login/components/input-field-by-type/input-field-by-type.component.ts +0 -0
  1126. /package/{dist/login/components/input-field-by-type/public-api.d.ts → src/login/components/input-field-by-type/public-api.ts} +0 -0
  1127. /package/{dist/src → src}/login/components/input-tag/input-tag.component.html +0 -0
  1128. /package/{dist/login/components/input-tag/public-api.d.ts → src/login/components/input-tag/public-api.ts} +0 -0
  1129. /package/{dist/src → src}/login/components/input-tag-selects/input-tag-selects.component.html +0 -0
  1130. /package/{dist/login/components/input-tag-selects/public-api.d.ts → src/login/components/input-tag-selects/public-api.ts} +0 -0
  1131. /package/{dist/src → src}/login/components/logout-other-sessions/logout-other-sessions.component.html +0 -0
  1132. /package/{dist/login/components/logout-other-sessions/public-api.d.ts → src/login/components/logout-other-sessions/public-api.ts} +0 -0
  1133. /package/{dist/src → src}/login/components/password-wrapper/password-wrapper.component.html +0 -0
  1134. /package/{dist/login/components/password-wrapper/public-api.d.ts → src/login/components/password-wrapper/public-api.ts} +0 -0
  1135. /package/{dist/login/components/select-tag/public-api.d.ts → src/login/components/select-tag/public-api.ts} +0 -0
  1136. /package/{dist/src → src}/login/components/select-tag/select-tag.component.html +0 -0
  1137. /package/{dist/login/components/textarea-tag/public-api.d.ts → src/login/components/textarea-tag/public-api.ts} +0 -0
  1138. /package/{dist/src → src}/login/components/textarea-tag/textarea-tag.component.html +0 -0
  1139. /package/{dist/src → src}/login/components/textarea-tag/textarea-tag.component.ts +0 -0
  1140. /package/{dist/login/components/user-profile-form-fields/public-api.d.ts → src/login/components/user-profile-form-fields/public-api.ts} +0 -0
  1141. /package/{dist/src → src}/login/components/user-profile-form-fields/user-profile-form-fields.component.html +0 -0
  1142. /package/{dist/login/containers/template/public-api.d.ts → src/login/containers/template/public-api.ts} +0 -0
  1143. /package/{dist/src → src}/login/containers/template/template.component.html +0 -0
  1144. /package/{dist/src → src}/login/directives/kc-class/kc-class.directive.ts +0 -0
  1145. /package/{dist/login/directives/kc-class/public-api.d.ts → src/login/directives/kc-class/public-api.ts} +0 -0
  1146. /package/{dist/src/login → src/login/i18n}/i18n.ts +0 -0
  1147. /package/{dist/login/i18n/public-api.d.ts → src/login/i18n/public-api.ts} +0 -0
  1148. /package/{dist/src → src}/login/pages/code/code.component.html +0 -0
  1149. /package/{dist/login/pages/code/public-api.d.ts → src/login/pages/code/public-api.ts} +0 -0
  1150. /package/{dist/src → src}/login/pages/delete-account-confirm/delete-account-confirm.component.html +0 -0
  1151. /package/{dist/login/pages/delete-account-confirm/public-api.d.ts → src/login/pages/delete-account-confirm/public-api.ts} +0 -0
  1152. /package/{dist/src → src}/login/pages/delete-credential/delete-credential.component.html +0 -0
  1153. /package/{dist/login/pages/delete-credential/public-api.d.ts → src/login/pages/delete-credential/public-api.ts} +0 -0
  1154. /package/{dist/src → src}/login/pages/error/error.component.html +0 -0
  1155. /package/{dist/login/pages/error/public-api.d.ts → src/login/pages/error/public-api.ts} +0 -0
  1156. /package/{dist/src → src}/login/pages/frontchannel-logout/frontchannel-logout.component.html +0 -0
  1157. /package/{dist/login/pages/frontchannel-logout/public-api.d.ts → src/login/pages/frontchannel-logout/public-api.ts} +0 -0
  1158. /package/{dist/src → src}/login/pages/idp-review-user-profile/idp-review-user-profile.component.html +0 -0
  1159. /package/{dist/login/pages/idp-review-user-profile/public-api.d.ts → src/login/pages/idp-review-user-profile/public-api.ts} +0 -0
  1160. /package/{dist/src → src}/login/pages/info/info.component.html +0 -0
  1161. /package/{dist/login/pages/info/public-api.d.ts → src/login/pages/info/public-api.ts} +0 -0
  1162. /package/{dist/src → src}/login/pages/login/login.component.html +0 -0
  1163. /package/{dist/login/pages/login/public-api.d.ts → src/login/pages/login/public-api.ts} +0 -0
  1164. /package/{dist/src → src}/login/pages/login-config-totp/login-config-totp.component.html +0 -0
  1165. /package/{dist/login/pages/login-config-totp/public-api.d.ts → src/login/pages/login-config-totp/public-api.ts} +0 -0
  1166. /package/{dist/src → src}/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.html +0 -0
  1167. /package/{dist/login/pages/login-idp-link-confirm/public-api.d.ts → src/login/pages/login-idp-link-confirm/public-api.ts} +0 -0
  1168. /package/{dist/src → src}/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.html +0 -0
  1169. /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
  1170. /package/{dist/src → src}/login/pages/login-idp-link-email/login-idp-link-email.component.html +0 -0
  1171. /package/{dist/login/pages/login-idp-link-email/public-api.d.ts → src/login/pages/login-idp-link-email/public-api.ts} +0 -0
  1172. /package/{dist/src → src}/login/pages/login-oauth-grant/login-oauth-grant.component.html +0 -0
  1173. /package/{dist/login/pages/login-oauth-grant/public-api.d.ts → src/login/pages/login-oauth-grant/public-api.ts} +0 -0
  1174. /package/{dist/src → src}/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.html +0 -0
  1175. /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
  1176. /package/{dist/src → src}/login/pages/login-otp/login-otp.component.html +0 -0
  1177. /package/{dist/login/pages/login-otp/public-api.d.ts → src/login/pages/login-otp/public-api.ts} +0 -0
  1178. /package/{dist/src → src}/login/pages/login-page-expired/login-page-expired.component.html +0 -0
  1179. /package/{dist/login/pages/login-page-expired/public-api.d.ts → src/login/pages/login-page-expired/public-api.ts} +0 -0
  1180. /package/{dist/src → src}/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.html +0 -0
  1181. /package/{dist/login/pages/login-passkeys-conditional-authenticate/public-api.d.ts → src/login/pages/login-passkeys-conditional-authenticate/public-api.ts} +0 -0
  1182. /package/{dist/src → src}/login/pages/login-password/login-password.component.html +0 -0
  1183. /package/{dist/login/pages/login-password/public-api.d.ts → src/login/pages/login-password/public-api.ts} +0 -0
  1184. /package/{dist/src → src}/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.html +0 -0
  1185. /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
  1186. /package/{dist/src → src}/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.html +0 -0
  1187. /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
  1188. /package/{dist/src → src}/login/pages/login-reset-otp/login-reset-otp.component.html +0 -0
  1189. /package/{dist/login/pages/login-reset-otp/public-api.d.ts → src/login/pages/login-reset-otp/public-api.ts} +0 -0
  1190. /package/{dist/src → src}/login/pages/login-reset-password/login-reset-password.component.html +0 -0
  1191. /package/{dist/login/pages/login-reset-password/public-api.d.ts → src/login/pages/login-reset-password/public-api.ts} +0 -0
  1192. /package/{dist/src → src}/login/pages/login-update-password/login-update-password.component.html +0 -0
  1193. /package/{dist/login/pages/login-update-password/public-api.d.ts → src/login/pages/login-update-password/public-api.ts} +0 -0
  1194. /package/{dist/src → src}/login/pages/login-update-profile/login-update-profile.component.html +0 -0
  1195. /package/{dist/login/pages/login-update-profile/public-api.d.ts → src/login/pages/login-update-profile/public-api.ts} +0 -0
  1196. /package/{dist/src → src}/login/pages/login-username/login-username.component.html +0 -0
  1197. /package/{dist/login/pages/login-username/public-api.d.ts → src/login/pages/login-username/public-api.ts} +0 -0
  1198. /package/{dist/src → src}/login/pages/login-verify-email/login-verify-email.component.html +0 -0
  1199. /package/{dist/login/pages/login-verify-email/public-api.d.ts → src/login/pages/login-verify-email/public-api.ts} +0 -0
  1200. /package/{dist/src → src}/login/pages/login-x509-info/login-x509-info.component.html +0 -0
  1201. /package/{dist/login/pages/login-x509-info/public-api.d.ts → src/login/pages/login-x509-info/public-api.ts} +0 -0
  1202. /package/{dist/src → src}/login/pages/logout-confirm/logout-confirm.component.html +0 -0
  1203. /package/{dist/login/pages/logout-confirm/public-api.d.ts → src/login/pages/logout-confirm/public-api.ts} +0 -0
  1204. /package/{dist/login/pages/register/public-api.d.ts → src/login/pages/register/public-api.ts} +0 -0
  1205. /package/{dist/src → src}/login/pages/register/register.component.html +0 -0
  1206. /package/{dist/login/pages/saml-post-form/public-api.d.ts → src/login/pages/saml-post-form/public-api.ts} +0 -0
  1207. /package/{dist/src → src}/login/pages/saml-post-form/saml-post-form.component.html +0 -0
  1208. /package/{dist/login/pages/select-authenticator/public-api.d.ts → src/login/pages/select-authenticator/public-api.ts} +0 -0
  1209. /package/{dist/src → src}/login/pages/select-authenticator/select-authenticator.component.html +0 -0
  1210. /package/{dist/login/pages/terms/public-api.d.ts → src/login/pages/terms/public-api.ts} +0 -0
  1211. /package/{dist/src → src}/login/pages/terms/terms.component.html +0 -0
  1212. /package/{dist/login/pages/update-email/public-api.d.ts → src/login/pages/update-email/public-api.ts} +0 -0
  1213. /package/{dist/src → src}/login/pages/update-email/update-email.component.html +0 -0
  1214. /package/{dist/login/pages/webauthn-authenticate/public-api.d.ts → src/login/pages/webauthn-authenticate/public-api.ts} +0 -0
  1215. /package/{dist/src → src}/login/pages/webauthn-authenticate/webauthn-authenticate.component.html +0 -0
  1216. /package/{dist/login/pages/webauthn-error/public-api.d.ts → src/login/pages/webauthn-error/public-api.ts} +0 -0
  1217. /package/{dist/src → src}/login/pages/webauthn-error/webauthn-error.component.html +0 -0
  1218. /package/{dist/login/pages/webauthn-register/public-api.d.ts → src/login/pages/webauthn-register/public-api.ts} +0 -0
  1219. /package/{dist/src → src}/login/pages/webauthn-register/webauthn-register.component.html +0 -0
  1220. /package/{dist/login/providers/keycloakify-angular/public-api.d.ts → src/login/providers/keycloakify-angular/public-api.ts} +0 -0
  1221. /package/{dist/src → src}/login/services/i18n/i18n.service.ts +0 -0
  1222. /package/{dist/login/services/i18n/public-api.d.ts → src/login/services/i18n/public-api.ts} +0 -0
  1223. /package/{dist/login/services/login-resource-injector/public-api.d.ts → src/login/services/login-resource-injector/public-api.ts} +0 -0
  1224. /package/{dist/login/services/submit/public-api.d.ts → src/login/services/submit/public-api.ts} +0 -0
  1225. /package/{dist/src → src}/login/services/submit/submit.service.ts +0 -0
  1226. /package/{dist/login/services/user-profile-form/public-api.d.ts → src/login/services/user-profile-form/public-api.ts} +0 -0
  1227. /package/{dist/src → src}/login/tokens/classes/classes.token.ts +0 -0
  1228. /package/{dist/login/tokens/classes/public-api.d.ts → src/login/tokens/classes/public-api.ts} +0 -0
  1229. /package/{dist/src → src}/login/tokens/i18n/i18n.token.ts +0 -0
  1230. /package/{dist/login/tokens/i18n/public-api.d.ts → src/login/tokens/i18n/public-api.ts} +0 -0
  1231. /package/{dist/login/tokens/kc-context/public-api.d.ts → src/login/tokens/kc-context/public-api.ts} +0 -0
  1232. /package/{dist/src → src}/login/tokens/make-user-confirm-password/make-user-confirm-password.token.ts +0 -0
  1233. /package/{dist/login/tokens/make-user-confirm-password/public-api.d.ts → src/login/tokens/make-user-confirm-password/public-api.ts} +0 -0
  1234. /package/{dist/stories → stories}/login/pages/login/login.stories.ts +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-select-tag.mjs","sources":["../../src/login/components/select-tag/select-tag.component.ts","../../src/login/components/select-tag/select-tag.component.html","../../src/login/components/select-tag/keycloakify-angular-login-components-select-tag.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, computed, forwardRef, inject, input, output } 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 { ToNumberPipe } from '@keycloakify/angular/lib/pipes/to-number';\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, ToNumberPipe],\n selector: 'kc-select-tag',\n templateUrl: 'select-tag.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => SelectTagComponent)\n }\n ]\n})\nexport class SelectTagComponent extends ComponentReference {\n i18n = inject<I18n>(LOGIN_I18N);\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 isMultiple = computed(() => {\n return this.attribute()?.annotations?.inputType === 'multiselect';\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 onChange(event: Event) {\n this.dispatchFormAction.emit({\n action: 'update',\n name: this.attribute()?.name ?? '',\n valueOrValues: (() => {\n if (this.isMultiple()) {\n return Array.from((event.target as HTMLSelectElement).selectedOptions).map(option => option.value);\n }\n\n return (event.target as HTMLSelectElement).value;\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 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","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -1,56 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { input, output, 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 { ToNumberPipe } from '@keycloakify/angular/lib/pipes/to-number';
7
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
8
-
9
- class TextareaTagComponent extends ComponentReference {
10
- constructor() {
11
- super(...arguments);
12
- this.attribute = input();
13
- this.value = input();
14
- this.displayableErrors = input();
15
- this.dispatchFormAction = output();
16
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
17
- this.classes = inject(LOGIN_CLASSES);
18
- }
19
- onChange(event) {
20
- this.dispatchFormAction.emit({
21
- action: 'update',
22
- name: this.attribute()?.name ?? '',
23
- valueOrValues: event.target.value
24
- });
25
- }
26
- onBlur() {
27
- this.dispatchFormAction.emit({
28
- action: 'focus lost',
29
- name: this.attribute()?.name ?? '',
30
- fieldIndex: undefined
31
- });
32
- }
33
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: TextareaTagComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
34
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: TextareaTagComponent, isStandalone: true, selector: "kc-textarea-tag", inputs: { attribute: { classPropertyName: "attribute", publicName: "attribute", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, displayableErrors: { classPropertyName: "displayableErrors", publicName: "displayableErrors", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dispatchFormAction: "dispatchFormAction" }, providers: [
35
- {
36
- provide: ComponentReference,
37
- useExisting: forwardRef(() => TextareaTagComponent)
38
- }
39
- ], usesInheritance: true, ngImport: i0, template: "@let attr = attribute();\n@if (attr) {\n <textarea\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [cols]=\"attr.annotations.inputTypeCols === undefined ? undefined : (attr.annotations.inputTypeCols | toNumber)\"\n [rows]=\"attr.annotations.inputTypeRows === undefined ? undefined : (attr.annotations.inputTypeRows | toNumber)\"\n [maxLength]=\"attr.annotations.inputTypeMaxlength === undefined ? undefined : (attr.annotations.inputTypeMaxlength | toNumber)\"\n [value]=\"value()\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n ></textarea>\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 }); }
40
- }
41
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: TextareaTagComponent, decorators: [{
42
- type: Component,
43
- args: [{ standalone: true, imports: [KcClassDirective, ToNumberPipe], selector: 'kc-textarea-tag', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
44
- {
45
- provide: ComponentReference,
46
- useExisting: forwardRef(() => TextareaTagComponent)
47
- }
48
- ], template: "@let attr = attribute();\n@if (attr) {\n <textarea\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [cols]=\"attr.annotations.inputTypeCols === undefined ? undefined : (attr.annotations.inputTypeCols | toNumber)\"\n [rows]=\"attr.annotations.inputTypeRows === undefined ? undefined : (attr.annotations.inputTypeRows | toNumber)\"\n [maxLength]=\"attr.annotations.inputTypeMaxlength === undefined ? undefined : (attr.annotations.inputTypeMaxlength | toNumber)\"\n [value]=\"value()\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n ></textarea>\n}\n", styles: [":host{display:contents}\n"] }]
49
- }] });
50
-
51
- /**
52
- * Generated bundle index. Do not edit.
53
- */
54
-
55
- export { TextareaTagComponent };
56
- //# sourceMappingURL=keycloakify-angular-login-components-textarea-tag.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-textarea-tag.mjs","sources":["../../src/login/components/textarea-tag/textarea-tag.component.ts","../../src/login/components/textarea-tag/textarea-tag.component.html","../../src/login/components/textarea-tag/keycloakify-angular-login-components-textarea-tag.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, forwardRef, inject, input, output } 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 { ToNumberPipe } from '@keycloakify/angular/lib/pipes/to-number';\nimport { type FormAction, type 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: [KcClassDirective, ToNumberPipe],\n selector: 'kc-textarea-tag',\n templateUrl: 'textarea-tag.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => TextareaTagComponent)\n }\n ]\n})\nexport class TextareaTagComponent extends ComponentReference {\n attribute = input<Attribute>();\n value = 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 onChange(event: Event) {\n this.dispatchFormAction.emit({\n action: 'update',\n name: this.attribute()?.name ?? '',\n valueOrValues: (event.target as HTMLTextAreaElement).value\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 attr = attribute();\n@if (attr) {\n <textarea\n [id]=\"attr.name\"\n [name]=\"attr.name\"\n [kcClass]=\"'kcInputClass'\"\n [attr.aria-invalid]=\"!!displayableErrors()?.length\"\n [disabled]=\"attr.readOnly\"\n [cols]=\"attr.annotations.inputTypeCols === undefined ? undefined : (attr.annotations.inputTypeCols | toNumber)\"\n [rows]=\"attr.annotations.inputTypeRows === undefined ? undefined : (attr.annotations.inputTypeRows | toNumber)\"\n [maxLength]=\"attr.annotations.inputTypeMaxlength === undefined ? undefined : (attr.annotations.inputTypeMaxlength | toNumber)\"\n [value]=\"value()\"\n (change)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n ></textarea>\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -1,69 +0,0 @@
1
- import { NgTemplateOutlet } from '@angular/common';
2
- import * as i0 from '@angular/core';
3
- import { inject, output, effect, forwardRef, Component, ChangeDetectionStrategy, ContentChild } 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 { FieldErrorsComponent } from '@keycloakify/angular/login/components/field-errors';
7
- import { GroupLabelComponent } from '@keycloakify/angular/login/components/group-label';
8
- import { InputFieldByTypeComponent } from '@keycloakify/angular/login/components/input-field-by-type';
9
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
10
- import { SubmitService } from '@keycloakify/angular/login/services/submit';
11
- import { UserProfileFormService } from '@keycloakify/angular/login/services/user-profile-form';
12
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
13
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
14
- import { KC_LOGIN_CONTEXT } from '@keycloakify/angular/login/tokens/kc-context';
15
- import { DO_MAKE_USER_CONFIRM_PASSWORD } from '@keycloakify/angular/login/tokens/make-user-confirm-password';
16
-
17
- class UserProfileFormFieldsComponent extends ComponentReference {
18
- #submitService;
19
- constructor() {
20
- super();
21
- this.i18n = inject(LOGIN_I18N);
22
- this.kcContext = inject(KC_LOGIN_CONTEXT);
23
- this.userProfileFormService = inject(UserProfileFormService);
24
- this.#submitService = inject(SubmitService);
25
- this.doMakeUserConfirmPassword = inject(DO_MAKE_USER_CONFIRM_PASSWORD);
26
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
27
- this.classes = inject(LOGIN_CLASSES);
28
- this.onIsFormSubmittable = output();
29
- this.formState = this.userProfileFormService.formState;
30
- effect(() => {
31
- const isFormSubmittable = this.formState().isFormSubmittable;
32
- this.#submitService.setIsSubmittable(isFormSubmittable);
33
- }, { allowSignalWrites: true });
34
- }
35
- onDispatch(formAction) {
36
- this.userProfileFormService.dispatchFormAction(formAction);
37
- }
38
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: UserProfileFormFieldsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
39
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: UserProfileFormFieldsComponent, isStandalone: true, selector: "kc-user-profile-form-fields", outputs: { onIsFormSubmittable: "onIsFormSubmittable" }, providers: [
40
- UserProfileFormService,
41
- {
42
- provide: ComponentReference,
43
- useExisting: forwardRef(() => UserProfileFormFieldsComponent)
44
- }
45
- ], queries: [{ propertyName: "beforeField", first: true, predicate: ["beforField"], descendants: true }, { propertyName: "afterField", first: true, predicate: ["afterField"], descendants: true }], usesInheritance: true, ngImport: i0, template: "@let formFieldStates = formState().formFieldStates;\n\n@for (fieldState of formFieldStates; track fieldState.attribute) {\n <kc-group-label [attribute]=\"fieldState.attribute\"> </kc-group-label>\n\n @if (beforeField) {\n <ng-container\n [ngTemplateOutlet]=\"beforeField\"\n [ngTemplateOutletContext]=\"{\n attribute: fieldState.attribute,\n valueOrValues: fieldState.valueOrValues,\n displayableErrors: fieldState.displayableErrors\n }\"\n >\n </ng-container>\n }\n\n <div\n [kcClass]=\"'kcFormGroupClass'\"\n [style.display]=\"fieldState.attribute.name === 'password-confirm' && !doMakeUserConfirmPassword ? 'none' : 'block'\"\n >\n <div [kcClass]=\"'kcLabelWrapperClass'\">\n <label\n [for]=\"fieldState.attribute.name\"\n [kcClass]=\"'kcLabelClass'\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.displayName ?? '') }}\n @if (fieldState.attribute.required) {\n *\n }\n </label>\n </div>\n\n <div [kcClass]=\"'kcInputWrapperClass'\">\n @if (fieldState.attribute.annotations.inputHelperTextBefore) {\n <div\n [kcClass]=\"'kcInputHelperTextBeforeClass'\"\n [id]=\"'form-help-text-before-' + fieldState.attribute.name\"\n aria-live=\"polite\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.annotations.inputHelperTextBefore) }}\n </div>\n }\n\n <kc-input-field-by-type\n [attribute]=\"fieldState.attribute\"\n [valueOrValues]=\"fieldState.valueOrValues\"\n [displayableErrors]=\"fieldState.displayableErrors\"\n (dispatchFormAction)=\"onDispatch($event)\"\n >\n </kc-input-field-by-type>\n\n <kc-field-errors\n [attribute]=\"fieldState.attribute\"\n [displayableErrors]=\"fieldState.displayableErrors\"\n >\n </kc-field-errors>\n @if (fieldState.attribute.annotations.inputHelperTextAfter) {\n <div\n [kcClass]=\"'kcInputHelperTextAfterClass'\"\n [id]=\"'form-help-text-after-' + fieldState.attribute.name\"\n aria-live=\"polite\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.annotations.inputHelperTextAfter) }}\n </div>\n }\n\n @if (afterField) {\n <ng-container\n [ngTemplateOutlet]=\"afterField\"\n [ngTemplateOutletContext]=\"{\n attribute: fieldState.attribute,\n valueOrValues: fieldState.valueOrValues,\n displayableErrors: fieldState.displayableErrors\n }\"\n >\n </ng-container>\n }\n <!-- NOTE: Downloading of html5DataAnnotations scripts is done in the useUserProfileForm hook -->\n </div>\n </div>\n}\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }, { kind: "component", type: FieldErrorsComponent, selector: "kc-field-errors", inputs: ["attribute", "displayableErrors", "fieldIndex"] }, { kind: "component", type: InputFieldByTypeComponent, selector: "kc-input-field-by-type", inputs: ["attribute", "valueOrValues", "displayableErrors"], outputs: ["dispatchFormAction"] }, { kind: "component", type: GroupLabelComponent, selector: "kc-group-label", inputs: ["attribute", "groupName"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
46
- }
47
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: UserProfileFormFieldsComponent, decorators: [{
48
- type: Component,
49
- args: [{ standalone: true, imports: [KcClassDirective, FieldErrorsComponent, InputFieldByTypeComponent, GroupLabelComponent, NgTemplateOutlet], selector: 'kc-user-profile-form-fields', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
50
- UserProfileFormService,
51
- {
52
- provide: ComponentReference,
53
- useExisting: forwardRef(() => UserProfileFormFieldsComponent)
54
- }
55
- ], template: "@let formFieldStates = formState().formFieldStates;\n\n@for (fieldState of formFieldStates; track fieldState.attribute) {\n <kc-group-label [attribute]=\"fieldState.attribute\"> </kc-group-label>\n\n @if (beforeField) {\n <ng-container\n [ngTemplateOutlet]=\"beforeField\"\n [ngTemplateOutletContext]=\"{\n attribute: fieldState.attribute,\n valueOrValues: fieldState.valueOrValues,\n displayableErrors: fieldState.displayableErrors\n }\"\n >\n </ng-container>\n }\n\n <div\n [kcClass]=\"'kcFormGroupClass'\"\n [style.display]=\"fieldState.attribute.name === 'password-confirm' && !doMakeUserConfirmPassword ? 'none' : 'block'\"\n >\n <div [kcClass]=\"'kcLabelWrapperClass'\">\n <label\n [for]=\"fieldState.attribute.name\"\n [kcClass]=\"'kcLabelClass'\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.displayName ?? '') }}\n @if (fieldState.attribute.required) {\n *\n }\n </label>\n </div>\n\n <div [kcClass]=\"'kcInputWrapperClass'\">\n @if (fieldState.attribute.annotations.inputHelperTextBefore) {\n <div\n [kcClass]=\"'kcInputHelperTextBeforeClass'\"\n [id]=\"'form-help-text-before-' + fieldState.attribute.name\"\n aria-live=\"polite\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.annotations.inputHelperTextBefore) }}\n </div>\n }\n\n <kc-input-field-by-type\n [attribute]=\"fieldState.attribute\"\n [valueOrValues]=\"fieldState.valueOrValues\"\n [displayableErrors]=\"fieldState.displayableErrors\"\n (dispatchFormAction)=\"onDispatch($event)\"\n >\n </kc-input-field-by-type>\n\n <kc-field-errors\n [attribute]=\"fieldState.attribute\"\n [displayableErrors]=\"fieldState.displayableErrors\"\n >\n </kc-field-errors>\n @if (fieldState.attribute.annotations.inputHelperTextAfter) {\n <div\n [kcClass]=\"'kcInputHelperTextAfterClass'\"\n [id]=\"'form-help-text-after-' + fieldState.attribute.name\"\n aria-live=\"polite\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.annotations.inputHelperTextAfter) }}\n </div>\n }\n\n @if (afterField) {\n <ng-container\n [ngTemplateOutlet]=\"afterField\"\n [ngTemplateOutletContext]=\"{\n attribute: fieldState.attribute,\n valueOrValues: fieldState.valueOrValues,\n displayableErrors: fieldState.displayableErrors\n }\"\n >\n </ng-container>\n }\n <!-- NOTE: Downloading of html5DataAnnotations scripts is done in the useUserProfileForm hook -->\n </div>\n </div>\n}\n", styles: [":host{display:contents}\n"] }]
56
- }], ctorParameters: () => [], propDecorators: { beforeField: [{
57
- type: ContentChild,
58
- args: ['beforField']
59
- }], afterField: [{
60
- type: ContentChild,
61
- args: ['afterField']
62
- }] } });
63
-
64
- /**
65
- * Generated bundle index. Do not edit.
66
- */
67
-
68
- export { UserProfileFormFieldsComponent };
69
- //# sourceMappingURL=keycloakify-angular-login-components-user-profile-form-fields.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-components-user-profile-form-fields.mjs","sources":["../../src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts","../../src/login/components/user-profile-form-fields/user-profile-form-fields.component.html","../../src/login/components/user-profile-form-fields/keycloakify-angular-login-components-user-profile-form-fields.ts"],"sourcesContent":["import { NgTemplateOutlet } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, ContentChild, effect, forwardRef, inject, output, TemplateRef } 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 { FieldErrorsComponent } from '@keycloakify/angular/login/components/field-errors';\nimport { GroupLabelComponent } from '@keycloakify/angular/login/components/group-label';\nimport { InputFieldByTypeComponent } from '@keycloakify/angular/login/components/input-field-by-type';\nimport { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';\nimport type { I18n } from '@keycloakify/angular/login/i18n';\nimport type { KcContext } from '@keycloakify/angular/login/KcContext';\nimport { SubmitService } from '@keycloakify/angular/login/services/submit';\nimport { type FormAction, UserProfileFormService } 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 { KC_LOGIN_CONTEXT } from '@keycloakify/angular/login/tokens/kc-context';\nimport { DO_MAKE_USER_CONFIRM_PASSWORD } from '@keycloakify/angular/login/tokens/make-user-confirm-password';\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: [KcClassDirective, FieldErrorsComponent, InputFieldByTypeComponent, GroupLabelComponent, NgTemplateOutlet],\n selector: 'kc-user-profile-form-fields',\n templateUrl: 'user-profile-form-fields.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n UserProfileFormService,\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => UserProfileFormFieldsComponent)\n }\n ]\n})\nexport class UserProfileFormFieldsComponent extends ComponentReference {\n i18n = inject<I18n>(LOGIN_I18N);\n kcContext = inject<KcContext>(KC_LOGIN_CONTEXT);\n userProfileFormService = inject(UserProfileFormService);\n #submitService = inject(SubmitService);\n doMakeUserConfirmPassword = inject(DO_MAKE_USER_CONFIRM_PASSWORD);\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n\n onIsFormSubmittable = output<boolean>();\n\n formState = this.userProfileFormService.formState;\n\n @ContentChild('beforField') beforeField: TemplateRef<unknown> | undefined;\n @ContentChild('afterField') afterField: TemplateRef<unknown> | undefined;\n\n constructor() {\n super();\n effect(\n () => {\n const isFormSubmittable = this.formState().isFormSubmittable;\n this.#submitService.setIsSubmittable(isFormSubmittable);\n },\n { allowSignalWrites: true }\n );\n }\n\n onDispatch(formAction: FormAction) {\n this.userProfileFormService.dispatchFormAction(formAction);\n }\n}\n","@let formFieldStates = formState().formFieldStates;\n\n@for (fieldState of formFieldStates; track fieldState.attribute) {\n <kc-group-label [attribute]=\"fieldState.attribute\"> </kc-group-label>\n\n @if (beforeField) {\n <ng-container\n [ngTemplateOutlet]=\"beforeField\"\n [ngTemplateOutletContext]=\"{\n attribute: fieldState.attribute,\n valueOrValues: fieldState.valueOrValues,\n displayableErrors: fieldState.displayableErrors\n }\"\n >\n </ng-container>\n }\n\n <div\n [kcClass]=\"'kcFormGroupClass'\"\n [style.display]=\"fieldState.attribute.name === 'password-confirm' && !doMakeUserConfirmPassword ? 'none' : 'block'\"\n >\n <div [kcClass]=\"'kcLabelWrapperClass'\">\n <label\n [for]=\"fieldState.attribute.name\"\n [kcClass]=\"'kcLabelClass'\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.displayName ?? '') }}\n @if (fieldState.attribute.required) {\n *\n }\n </label>\n </div>\n\n <div [kcClass]=\"'kcInputWrapperClass'\">\n @if (fieldState.attribute.annotations.inputHelperTextBefore) {\n <div\n [kcClass]=\"'kcInputHelperTextBeforeClass'\"\n [id]=\"'form-help-text-before-' + fieldState.attribute.name\"\n aria-live=\"polite\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.annotations.inputHelperTextBefore) }}\n </div>\n }\n\n <kc-input-field-by-type\n [attribute]=\"fieldState.attribute\"\n [valueOrValues]=\"fieldState.valueOrValues\"\n [displayableErrors]=\"fieldState.displayableErrors\"\n (dispatchFormAction)=\"onDispatch($event)\"\n >\n </kc-input-field-by-type>\n\n <kc-field-errors\n [attribute]=\"fieldState.attribute\"\n [displayableErrors]=\"fieldState.displayableErrors\"\n >\n </kc-field-errors>\n @if (fieldState.attribute.annotations.inputHelperTextAfter) {\n <div\n [kcClass]=\"'kcInputHelperTextAfterClass'\"\n [id]=\"'form-help-text-after-' + fieldState.attribute.name\"\n aria-live=\"polite\"\n >\n {{ i18n.advancedMsgStr(fieldState.attribute.annotations.inputHelperTextAfter) }}\n </div>\n }\n\n @if (afterField) {\n <ng-container\n [ngTemplateOutlet]=\"afterField\"\n [ngTemplateOutletContext]=\"{\n attribute: fieldState.attribute,\n valueOrValues: fieldState.valueOrValues,\n displayableErrors: fieldState.displayableErrors\n }\"\n >\n </ng-container>\n }\n <!-- NOTE: Downloading of html5DataAnnotations scripts is done in the useUserProfileForm hook -->\n </div>\n </div>\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -1,79 +0,0 @@
1
- import { AsyncPipe, NgTemplateOutlet } from '@angular/common';
2
- import * as i0 from '@angular/core';
3
- import { inject, Renderer2, input, forwardRef, Component, ChangeDetectionStrategy } from '@angular/core';
4
- import { Meta, Title } from '@angular/platform-browser';
5
- import { KcSanitizePipe } from '@keycloakify/angular/lib/pipes/kc-sanitize';
6
- import { USE_DEFAULT_CSS } from '@keycloakify/angular/lib/tokens/use-default-css';
7
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
8
- import { KcClassDirective } from '@keycloakify/angular/login/directives/kc-class';
9
- import { LoginResourceInjectorService } from '@keycloakify/angular/login/services/login-resource-injector';
10
- import { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';
11
- import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
12
- import { KC_LOGIN_CONTEXT } from '@keycloakify/angular/login/tokens/kc-context';
13
- import { getKcClsx } from 'keycloakify/login/lib/kcClsx';
14
-
15
- class TemplateComponent extends ComponentReference {
16
- constructor() {
17
- super();
18
- this.i18n = inject(LOGIN_I18N);
19
- this.renderer = inject(Renderer2);
20
- this.meta = inject(Meta);
21
- this.title = inject(Title);
22
- this.kcContext = inject(KC_LOGIN_CONTEXT);
23
- this.doUseDefaultCss = inject(USE_DEFAULT_CSS);
24
- this.classes = inject(LOGIN_CLASSES);
25
- this.loginResourceInjectorService = inject(LoginResourceInjectorService);
26
- this.displayInfo = input(false);
27
- this.displayMessage = input(true);
28
- this.displayRequiredFields = input(false);
29
- this.documentTitle = input();
30
- this.bodyClassName = input();
31
- this.title.setTitle(this.documentTitle() ?? this.i18n.msgStr('loginTitle', this.kcContext.realm.displayName));
32
- this.isReadyToRender$ = this.loginResourceInjectorService.injectResource(this.doUseDefaultCss);
33
- }
34
- ngOnInit() {
35
- this.applyKcIndexClasses();
36
- }
37
- applyKcIndexClasses() {
38
- const kcClsx = getKcClsx({
39
- doUseDefaultCss: this.doUseDefaultCss,
40
- classes: this.classes
41
- }).kcClsx;
42
- const kcBodyClass = this.bodyClassName() ?? kcClsx('kcBodyClass');
43
- const kcHtmlClass = kcClsx('kcHtmlClass');
44
- const kcBodyClasses = kcBodyClass.split(/\s+/);
45
- const kcHtmlClasses = kcHtmlClass.split(/\s+/);
46
- kcBodyClasses.forEach(klass => {
47
- this.renderer.addClass(document.body, klass);
48
- });
49
- kcHtmlClasses.forEach(klass => {
50
- this.renderer.addClass(document.documentElement, klass);
51
- });
52
- }
53
- tryAnotherWay() {
54
- document.forms['kc-select-try-another-way-form'].submit();
55
- }
56
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: TemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
57
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: TemplateComponent, isStandalone: true, selector: "kc-login-template", inputs: { displayInfo: { classPropertyName: "displayInfo", publicName: "displayInfo", isSignal: true, isRequired: false, transformFunction: null }, displayMessage: { classPropertyName: "displayMessage", publicName: "displayMessage", isSignal: true, isRequired: false, transformFunction: null }, displayRequiredFields: { classPropertyName: "displayRequiredFields", publicName: "displayRequiredFields", isSignal: true, isRequired: false, transformFunction: null }, documentTitle: { classPropertyName: "documentTitle", publicName: "documentTitle", isSignal: true, isRequired: false, transformFunction: null }, bodyClassName: { classPropertyName: "bodyClassName", publicName: "bodyClassName", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
58
- {
59
- provide: ComponentReference,
60
- useExisting: forwardRef(() => TemplateComponent)
61
- }
62
- ], usesInheritance: true, ngImport: i0, template: "@let realm = kcContext.realm;\n@let message = kcContext.message;\n@let auth = kcContext.auth;\n@let isAppInitiatedAction = kcContext.isAppInitiatedAction;\n@let url = kcContext.url;\n@let isReadyToRender = isReadyToRender$ | async;\n\n@if (isReadyToRender) {\n <div [kcClass]=\"'kcLoginClass'\">\n <div\n id=\"kc-header\"\n [kcClass]=\"'kcHeaderClass'\"\n >\n <div\n id=\"kc-header-wrapper\"\n [kcClass]=\"'kcHeaderWrapperClass'\"\n >\n <div [innerHTML]=\"realm?.displayNameHtml ?? '' | kcSanitize: 'html'\"></div>\n </div>\n </div>\n\n <div [kcClass]=\"'kcFormCardClass'\">\n <header [kcClass]=\"'kcFormHeaderClass'\">\n <!-- Locale switcher -->\n @if (i18n.enabledLanguages.length > 1) {\n <div\n id=\"kc-locale\"\n [kcClass]=\"'kcLocaleMainClass'\"\n >\n <div\n id=\"kc-locale-wrapper\"\n [kcClass]=\"'kcLocaleWrapperClass'\"\n >\n <div\n id=\"kc-locale-dropdown\"\n [kcClass]=\"'kcLocaleDropDownClass'\"\n class=\"menu-button-links\"\n >\n <button\n tabindex=\"1\"\n id=\"kc-current-locale-link\"\n [attr.aria-label]=\"i18n.msgStr('languages')\"\n aria-haspopup=\"true\"\n aria-expanded=\"false\"\n aria-controls=\"language-switch1\"\n >\n {{ i18n.currentLanguage.label }}\n </button>\n <ul\n role=\"menu\"\n tabindex=\"-1\"\n aria-labelledby=\"kc-current-locale-link\"\n aria-activedescendant=\"\"\n id=\"language-switch1\"\n [kcClass]=\"'kcLocaleListClass'\"\n >\n @for (entry of i18n.enabledLanguages; track entry; let idx = $index) {\n <li\n [kcClass]=\"'kcLocaleListItemClass'\"\n role=\"none\"\n >\n <a\n role=\"menuitem\"\n tabindex=\"-1\"\n [href]=\"entry.href\"\n [kcClass]=\"'kcLocaleItemClass'\"\n [id]=\"'language-' + idx\"\n >\n {{ entry.label }}\n </a>\n </li>\n }\n </ul>\n </div>\n </div>\n </div>\n }\n\n <!-- Header content -->\n <ng-template #node>\n @if (auth && !auth.showUsername && !auth.showResetCredentials) {\n <h1 id=\"kc-page-title\">\n <ng-content select=\"[headerNode]\"></ng-content>\n </h1>\n } @else {\n <div\n id=\"kc-username\"\n [kcClass]=\"'kcFormGroupClass'\"\n >\n <label id=\"kc-attempted-username\">{{ auth?.attemptedUsername }}</label>\n <a\n id=\"reset-login\"\n [href]=\"url?.loginRestartFlowUrl\"\n [attr.aria-label]=\"i18n.msgStr('restartLoginTooltip')\"\n >\n <div class=\"kc-login-tooltip\">\n <i [kcClass]=\"'kcResetFlowIcon'\"></i>\n <span class=\"kc-tooltip-text\">\n {{ i18n.msgStr('restartLoginTooltip') }}\n </span>\n </div>\n </a>\n </div>\n }\n </ng-template>\n\n @if (displayRequiredFields()) {\n <div [kcClass]=\"'kcContentWrapperClass'\">\n <div\n [kcClass]=\"'kcLabelWrapperClass'\"\n class=\"subtitle\"\n >\n <span class=\"subtitle\">\n <span class=\"required\">*</span>\n {{ i18n.msgStr('requiredFields') }}\n </span>\n </div>\n <div class=\"col-md-10\">\n <ng-container [ngTemplateOutlet]=\"node\"></ng-container>\n </div>\n </div>\n } @else {\n <ng-container [ngTemplateOutlet]=\"node\"></ng-container>\n }\n </header>\n\n <div id=\"kc-content\">\n <div id=\"kc-content-wrapper\">\n <!-- Message display -->\n @if (displayMessage() && message && (message.type !== 'warning' || !isAppInitiatedAction)) {\n <div\n [kcClass]=\"'kcAlertClass'\"\n [ngClass]=\"message.type === 'error' ? 'pf-m-danger' : 'pf-m-' + message.type\"\n [class]=\"'alert-' + message.type\"\n >\n <div class=\"pf-c-alert__icon\">\n @switch (message.type) {\n @case ('success') {\n <span [kcClass]=\"'kcFeedbackSuccessIcon'\"></span>\n }\n @case ('warning') {\n <span [kcClass]=\"'kcFeedbackWarningIcon'\"></span>\n }\n @case ('info') {\n <span [kcClass]=\"'kcFeedbackInfoIcon'\"></span>\n }\n @case ('error') {\n <span [kcClass]=\"'kcFeedbackErrorIcon'\"></span>\n }\n }\n </div>\n <span\n [kcClass]=\"'kcAlertTitleClass'\"\n [innerHTML]=\"message.summary | kcSanitize: 'html'\"\n ></span>\n </div>\n }\n <!-- Content -->\n <ng-content select=\"[content]\"></ng-content>\n @if (!!auth && auth?.showTryAnotherWayLink) {\n <form\n id=\"kc-select-try-another-way-form\"\n [action]=\"url?.loginAction\"\n method=\"post\"\n >\n <div [kcClass]=\"'kcFormGroupClass'\">\n <div [kcClass]=\"'kcFormGroupClass'\">\n <input\n type=\"hidden\"\n name=\"tryAnotherWay\"\n value=\"on\"\n />\n <a\n id=\"try-another-way\"\n (click)=\"tryAnotherWay()\"\n >\n {{ i18n.msgStr('doTryAnotherWay') }}\n </a>\n </div>\n </div>\n </form>\n }\n\n <ng-content select=\"[socialProvidersNode]\"></ng-content>\n <!-- Info display -->\n @if (displayInfo()) {\n <div\n id=\"kc-info\"\n [kcClass]=\"'kcSignUpClass'\"\n >\n <div\n id=\"kc-info-wrapper\"\n [kcClass]=\"'kcInfoAreaWrapperClass'\"\n >\n <ng-content select=\"[infoNode]\"></ng-content>\n </div>\n </div>\n }\n </div>\n </div>\n </div>\n </div>\n}\n", dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: KcSanitizePipe, name: "kcSanitize" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: KcClassDirective, selector: "[kcClass]", inputs: ["class", "ngClass", "kcClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
63
- }
64
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: TemplateComponent, decorators: [{
65
- type: Component,
66
- args: [{ selector: 'kc-login-template', standalone: true, imports: [AsyncPipe, KcSanitizePipe, NgTemplateOutlet, KcClassDirective], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
67
- {
68
- provide: ComponentReference,
69
- useExisting: forwardRef(() => TemplateComponent)
70
- }
71
- ], template: "@let realm = kcContext.realm;\n@let message = kcContext.message;\n@let auth = kcContext.auth;\n@let isAppInitiatedAction = kcContext.isAppInitiatedAction;\n@let url = kcContext.url;\n@let isReadyToRender = isReadyToRender$ | async;\n\n@if (isReadyToRender) {\n <div [kcClass]=\"'kcLoginClass'\">\n <div\n id=\"kc-header\"\n [kcClass]=\"'kcHeaderClass'\"\n >\n <div\n id=\"kc-header-wrapper\"\n [kcClass]=\"'kcHeaderWrapperClass'\"\n >\n <div [innerHTML]=\"realm?.displayNameHtml ?? '' | kcSanitize: 'html'\"></div>\n </div>\n </div>\n\n <div [kcClass]=\"'kcFormCardClass'\">\n <header [kcClass]=\"'kcFormHeaderClass'\">\n <!-- Locale switcher -->\n @if (i18n.enabledLanguages.length > 1) {\n <div\n id=\"kc-locale\"\n [kcClass]=\"'kcLocaleMainClass'\"\n >\n <div\n id=\"kc-locale-wrapper\"\n [kcClass]=\"'kcLocaleWrapperClass'\"\n >\n <div\n id=\"kc-locale-dropdown\"\n [kcClass]=\"'kcLocaleDropDownClass'\"\n class=\"menu-button-links\"\n >\n <button\n tabindex=\"1\"\n id=\"kc-current-locale-link\"\n [attr.aria-label]=\"i18n.msgStr('languages')\"\n aria-haspopup=\"true\"\n aria-expanded=\"false\"\n aria-controls=\"language-switch1\"\n >\n {{ i18n.currentLanguage.label }}\n </button>\n <ul\n role=\"menu\"\n tabindex=\"-1\"\n aria-labelledby=\"kc-current-locale-link\"\n aria-activedescendant=\"\"\n id=\"language-switch1\"\n [kcClass]=\"'kcLocaleListClass'\"\n >\n @for (entry of i18n.enabledLanguages; track entry; let idx = $index) {\n <li\n [kcClass]=\"'kcLocaleListItemClass'\"\n role=\"none\"\n >\n <a\n role=\"menuitem\"\n tabindex=\"-1\"\n [href]=\"entry.href\"\n [kcClass]=\"'kcLocaleItemClass'\"\n [id]=\"'language-' + idx\"\n >\n {{ entry.label }}\n </a>\n </li>\n }\n </ul>\n </div>\n </div>\n </div>\n }\n\n <!-- Header content -->\n <ng-template #node>\n @if (auth && !auth.showUsername && !auth.showResetCredentials) {\n <h1 id=\"kc-page-title\">\n <ng-content select=\"[headerNode]\"></ng-content>\n </h1>\n } @else {\n <div\n id=\"kc-username\"\n [kcClass]=\"'kcFormGroupClass'\"\n >\n <label id=\"kc-attempted-username\">{{ auth?.attemptedUsername }}</label>\n <a\n id=\"reset-login\"\n [href]=\"url?.loginRestartFlowUrl\"\n [attr.aria-label]=\"i18n.msgStr('restartLoginTooltip')\"\n >\n <div class=\"kc-login-tooltip\">\n <i [kcClass]=\"'kcResetFlowIcon'\"></i>\n <span class=\"kc-tooltip-text\">\n {{ i18n.msgStr('restartLoginTooltip') }}\n </span>\n </div>\n </a>\n </div>\n }\n </ng-template>\n\n @if (displayRequiredFields()) {\n <div [kcClass]=\"'kcContentWrapperClass'\">\n <div\n [kcClass]=\"'kcLabelWrapperClass'\"\n class=\"subtitle\"\n >\n <span class=\"subtitle\">\n <span class=\"required\">*</span>\n {{ i18n.msgStr('requiredFields') }}\n </span>\n </div>\n <div class=\"col-md-10\">\n <ng-container [ngTemplateOutlet]=\"node\"></ng-container>\n </div>\n </div>\n } @else {\n <ng-container [ngTemplateOutlet]=\"node\"></ng-container>\n }\n </header>\n\n <div id=\"kc-content\">\n <div id=\"kc-content-wrapper\">\n <!-- Message display -->\n @if (displayMessage() && message && (message.type !== 'warning' || !isAppInitiatedAction)) {\n <div\n [kcClass]=\"'kcAlertClass'\"\n [ngClass]=\"message.type === 'error' ? 'pf-m-danger' : 'pf-m-' + message.type\"\n [class]=\"'alert-' + message.type\"\n >\n <div class=\"pf-c-alert__icon\">\n @switch (message.type) {\n @case ('success') {\n <span [kcClass]=\"'kcFeedbackSuccessIcon'\"></span>\n }\n @case ('warning') {\n <span [kcClass]=\"'kcFeedbackWarningIcon'\"></span>\n }\n @case ('info') {\n <span [kcClass]=\"'kcFeedbackInfoIcon'\"></span>\n }\n @case ('error') {\n <span [kcClass]=\"'kcFeedbackErrorIcon'\"></span>\n }\n }\n </div>\n <span\n [kcClass]=\"'kcAlertTitleClass'\"\n [innerHTML]=\"message.summary | kcSanitize: 'html'\"\n ></span>\n </div>\n }\n <!-- Content -->\n <ng-content select=\"[content]\"></ng-content>\n @if (!!auth && auth?.showTryAnotherWayLink) {\n <form\n id=\"kc-select-try-another-way-form\"\n [action]=\"url?.loginAction\"\n method=\"post\"\n >\n <div [kcClass]=\"'kcFormGroupClass'\">\n <div [kcClass]=\"'kcFormGroupClass'\">\n <input\n type=\"hidden\"\n name=\"tryAnotherWay\"\n value=\"on\"\n />\n <a\n id=\"try-another-way\"\n (click)=\"tryAnotherWay()\"\n >\n {{ i18n.msgStr('doTryAnotherWay') }}\n </a>\n </div>\n </div>\n </form>\n }\n\n <ng-content select=\"[socialProvidersNode]\"></ng-content>\n <!-- Info display -->\n @if (displayInfo()) {\n <div\n id=\"kc-info\"\n [kcClass]=\"'kcSignUpClass'\"\n >\n <div\n id=\"kc-info-wrapper\"\n [kcClass]=\"'kcInfoAreaWrapperClass'\"\n >\n <ng-content select=\"[infoNode]\"></ng-content>\n </div>\n </div>\n }\n </div>\n </div>\n </div>\n </div>\n}\n" }]
72
- }], ctorParameters: () => [] });
73
-
74
- /**
75
- * Generated bundle index. Do not edit.
76
- */
77
-
78
- export { TemplateComponent };
79
- //# sourceMappingURL=keycloakify-angular-login-containers-template.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-containers-template.mjs","sources":["../../src/login/containers/template/template.component.ts","../../src/login/containers/template/template.component.html","../../src/login/containers/template/keycloakify-angular-login-containers-template.ts"],"sourcesContent":["import { AsyncPipe, NgTemplateOutlet } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, forwardRef, inject, input, OnInit, Renderer2 } from '@angular/core';\nimport { Meta, Title } from '@angular/platform-browser';\nimport { KcSanitizePipe } from '@keycloakify/angular/lib/pipes/kc-sanitize';\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 { LoginResourceInjectorService } from '@keycloakify/angular/login/services/login-resource-injector';\nimport { LOGIN_CLASSES } from '@keycloakify/angular/login/tokens/classes';\nimport { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';\nimport { KC_LOGIN_CONTEXT } from '@keycloakify/angular/login/tokens/kc-context';\nimport { type ClassKey, getKcClsx } from 'keycloakify/login/lib/kcClsx';\nimport { Observable } from 'rxjs';\nimport type { I18n } from '@keycloakify/angular/login/i18n';\nimport { KcContext } from '@keycloakify/angular/login/KcContext';\n\n@Component({\n selector: 'kc-login-template',\n templateUrl: './template.component.html',\n standalone: true,\n imports: [AsyncPipe, KcSanitizePipe, NgTemplateOutlet, KcClassDirective],\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: ComponentReference,\n useExisting: forwardRef(() => TemplateComponent)\n }\n ]\n})\nexport class TemplateComponent extends ComponentReference implements OnInit {\n i18n = inject<I18n>(LOGIN_I18N);\n renderer = inject(Renderer2);\n meta = inject(Meta);\n title = inject(Title);\n kcContext = inject<KcContext>(KC_LOGIN_CONTEXT);\n override doUseDefaultCss = inject<boolean>(USE_DEFAULT_CSS);\n override classes = inject<Partial<Record<ClassKey, string>>>(LOGIN_CLASSES);\n loginResourceInjectorService = inject(LoginResourceInjectorService);\n\n displayInfo = input(false);\n displayMessage = input(true);\n displayRequiredFields = input(false);\n documentTitle = input<string>();\n bodyClassName = input<string>();\n\n isReadyToRender$: Observable<boolean>;\n\n constructor() {\n super();\n this.title.setTitle(this.documentTitle() ?? this.i18n.msgStr('loginTitle', this.kcContext.realm.displayName));\n this.isReadyToRender$ = this.loginResourceInjectorService.injectResource(this.doUseDefaultCss);\n }\n\n ngOnInit() {\n this.applyKcIndexClasses();\n }\n\n private applyKcIndexClasses() {\n const kcClsx = getKcClsx({\n doUseDefaultCss: this.doUseDefaultCss,\n classes: this.classes\n }).kcClsx;\n const kcBodyClass = this.bodyClassName() ?? kcClsx('kcBodyClass');\n const kcHtmlClass = kcClsx('kcHtmlClass');\n const kcBodyClasses = kcBodyClass.split(/\\s+/);\n const kcHtmlClasses = kcHtmlClass.split(/\\s+/);\n kcBodyClasses.forEach(klass => {\n this.renderer.addClass(document.body, klass);\n });\n kcHtmlClasses.forEach(klass => {\n this.renderer.addClass(document.documentElement, klass);\n });\n }\n\n tryAnotherWay() {\n document.forms['kc-select-try-another-way-form' as never].submit();\n }\n}\n","@let realm = kcContext.realm;\n@let message = kcContext.message;\n@let auth = kcContext.auth;\n@let isAppInitiatedAction = kcContext.isAppInitiatedAction;\n@let url = kcContext.url;\n@let isReadyToRender = isReadyToRender$ | async;\n\n@if (isReadyToRender) {\n <div [kcClass]=\"'kcLoginClass'\">\n <div\n id=\"kc-header\"\n [kcClass]=\"'kcHeaderClass'\"\n >\n <div\n id=\"kc-header-wrapper\"\n [kcClass]=\"'kcHeaderWrapperClass'\"\n >\n <div [innerHTML]=\"realm?.displayNameHtml ?? '' | kcSanitize: 'html'\"></div>\n </div>\n </div>\n\n <div [kcClass]=\"'kcFormCardClass'\">\n <header [kcClass]=\"'kcFormHeaderClass'\">\n <!-- Locale switcher -->\n @if (i18n.enabledLanguages.length > 1) {\n <div\n id=\"kc-locale\"\n [kcClass]=\"'kcLocaleMainClass'\"\n >\n <div\n id=\"kc-locale-wrapper\"\n [kcClass]=\"'kcLocaleWrapperClass'\"\n >\n <div\n id=\"kc-locale-dropdown\"\n [kcClass]=\"'kcLocaleDropDownClass'\"\n class=\"menu-button-links\"\n >\n <button\n tabindex=\"1\"\n id=\"kc-current-locale-link\"\n [attr.aria-label]=\"i18n.msgStr('languages')\"\n aria-haspopup=\"true\"\n aria-expanded=\"false\"\n aria-controls=\"language-switch1\"\n >\n {{ i18n.currentLanguage.label }}\n </button>\n <ul\n role=\"menu\"\n tabindex=\"-1\"\n aria-labelledby=\"kc-current-locale-link\"\n aria-activedescendant=\"\"\n id=\"language-switch1\"\n [kcClass]=\"'kcLocaleListClass'\"\n >\n @for (entry of i18n.enabledLanguages; track entry; let idx = $index) {\n <li\n [kcClass]=\"'kcLocaleListItemClass'\"\n role=\"none\"\n >\n <a\n role=\"menuitem\"\n tabindex=\"-1\"\n [href]=\"entry.href\"\n [kcClass]=\"'kcLocaleItemClass'\"\n [id]=\"'language-' + idx\"\n >\n {{ entry.label }}\n </a>\n </li>\n }\n </ul>\n </div>\n </div>\n </div>\n }\n\n <!-- Header content -->\n <ng-template #node>\n @if (auth && !auth.showUsername && !auth.showResetCredentials) {\n <h1 id=\"kc-page-title\">\n <ng-content select=\"[headerNode]\"></ng-content>\n </h1>\n } @else {\n <div\n id=\"kc-username\"\n [kcClass]=\"'kcFormGroupClass'\"\n >\n <label id=\"kc-attempted-username\">{{ auth?.attemptedUsername }}</label>\n <a\n id=\"reset-login\"\n [href]=\"url?.loginRestartFlowUrl\"\n [attr.aria-label]=\"i18n.msgStr('restartLoginTooltip')\"\n >\n <div class=\"kc-login-tooltip\">\n <i [kcClass]=\"'kcResetFlowIcon'\"></i>\n <span class=\"kc-tooltip-text\">\n {{ i18n.msgStr('restartLoginTooltip') }}\n </span>\n </div>\n </a>\n </div>\n }\n </ng-template>\n\n @if (displayRequiredFields()) {\n <div [kcClass]=\"'kcContentWrapperClass'\">\n <div\n [kcClass]=\"'kcLabelWrapperClass'\"\n class=\"subtitle\"\n >\n <span class=\"subtitle\">\n <span class=\"required\">*</span>\n {{ i18n.msgStr('requiredFields') }}\n </span>\n </div>\n <div class=\"col-md-10\">\n <ng-container [ngTemplateOutlet]=\"node\"></ng-container>\n </div>\n </div>\n } @else {\n <ng-container [ngTemplateOutlet]=\"node\"></ng-container>\n }\n </header>\n\n <div id=\"kc-content\">\n <div id=\"kc-content-wrapper\">\n <!-- Message display -->\n @if (displayMessage() && message && (message.type !== 'warning' || !isAppInitiatedAction)) {\n <div\n [kcClass]=\"'kcAlertClass'\"\n [ngClass]=\"message.type === 'error' ? 'pf-m-danger' : 'pf-m-' + message.type\"\n [class]=\"'alert-' + message.type\"\n >\n <div class=\"pf-c-alert__icon\">\n @switch (message.type) {\n @case ('success') {\n <span [kcClass]=\"'kcFeedbackSuccessIcon'\"></span>\n }\n @case ('warning') {\n <span [kcClass]=\"'kcFeedbackWarningIcon'\"></span>\n }\n @case ('info') {\n <span [kcClass]=\"'kcFeedbackInfoIcon'\"></span>\n }\n @case ('error') {\n <span [kcClass]=\"'kcFeedbackErrorIcon'\"></span>\n }\n }\n </div>\n <span\n [kcClass]=\"'kcAlertTitleClass'\"\n [innerHTML]=\"message.summary | kcSanitize: 'html'\"\n ></span>\n </div>\n }\n <!-- Content -->\n <ng-content select=\"[content]\"></ng-content>\n @if (!!auth && auth?.showTryAnotherWayLink) {\n <form\n id=\"kc-select-try-another-way-form\"\n [action]=\"url?.loginAction\"\n method=\"post\"\n >\n <div [kcClass]=\"'kcFormGroupClass'\">\n <div [kcClass]=\"'kcFormGroupClass'\">\n <input\n type=\"hidden\"\n name=\"tryAnotherWay\"\n value=\"on\"\n />\n <a\n id=\"try-another-way\"\n (click)=\"tryAnotherWay()\"\n >\n {{ i18n.msgStr('doTryAnotherWay') }}\n </a>\n </div>\n </div>\n </form>\n }\n\n <ng-content select=\"[socialProvidersNode]\"></ng-content>\n <!-- Info display -->\n @if (displayInfo()) {\n <div\n id=\"kc-info\"\n [kcClass]=\"'kcSignUpClass'\"\n >\n <div\n id=\"kc-info-wrapper\"\n [kcClass]=\"'kcInfoAreaWrapperClass'\"\n >\n <ng-content select=\"[infoNode]\"></ng-content>\n </div>\n </div>\n }\n </div>\n </div>\n </div>\n </div>\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -1,145 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { inject, Renderer2, ElementRef, isDevMode, ɵstringify as _stringify, Directive, Input } from '@angular/core';
3
- import { getKcClsx } from 'keycloakify/login/lib/kcClsx';
4
- import { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';
5
-
6
- /* eslint-disable @typescript-eslint/no-explicit-any */
7
- /* eslint-disable @typescript-eslint/consistent-indexed-object-style */
8
- class KcClassDirective {
9
- constructor() {
10
- this.initialClasses = [];
11
- this.stateMap = new Map();
12
- this.#renderer = inject(Renderer2);
13
- this.#el = inject(ElementRef);
14
- this.#host = inject(ComponentReference);
15
- }
16
- #renderer;
17
- #el;
18
- #host;
19
- // eslint-disable-next-line @angular-eslint/no-input-rename
20
- set klass(value) {
21
- this.initialClasses = value != null ? value.trim().split(/\s+/) : [];
22
- }
23
- // eslint-disable-next-line @angular-eslint/no-input-rename
24
- set ngClass(value) {
25
- this.rawClass = typeof value === 'string' ? value.trim().split(/\s+/) : value;
26
- }
27
- // eslint-disable-next-line @angular-eslint/no-input-rename
28
- set kcClass(value) {
29
- this.rawKcClass =
30
- typeof value === 'string' ? value.trim().split(/\s+/) : value;
31
- }
32
- ngDoCheck() {
33
- for (const klass of this.initialClasses) {
34
- this._updateState(klass, true);
35
- }
36
- // classes from the [ngClass] binding
37
- const rawClass = this.rawClass;
38
- if (Array.isArray(rawClass) || rawClass instanceof Set) {
39
- for (const klass of rawClass) {
40
- this._updateState(klass, true);
41
- }
42
- }
43
- else if (rawClass != null) {
44
- for (const klass of Object.keys(rawClass)) {
45
- this._updateState(klass, Boolean(rawClass[klass]));
46
- }
47
- }
48
- // classes from the [kcClass] binding
49
- const rawKcClass = this.rawKcClass;
50
- if (Array.isArray(rawKcClass) || rawKcClass instanceof Set) {
51
- for (const klass of rawKcClass) {
52
- this._updateState(klass, true, true);
53
- }
54
- }
55
- else if (rawKcClass != null) {
56
- for (const klass of Object.keys(rawKcClass)) {
57
- this._updateState(klass, Boolean(rawKcClass[klass]), true);
58
- }
59
- }
60
- this._applyStateDiff();
61
- }
62
- _updateState(klass, nextEnabled, kcClsxCheck = false) {
63
- const state = this.stateMap.get(klass);
64
- if (state !== undefined) {
65
- if (state.enabled !== nextEnabled) {
66
- state.changed = true;
67
- state.enabled = nextEnabled;
68
- }
69
- state.touched = true;
70
- }
71
- else {
72
- let klassChecked = klass;
73
- if (kcClsxCheck) {
74
- const doUseDefaultCss = this.#host.doUseDefaultCss ?? true;
75
- const classes = this.#host.classes;
76
- const kcClsx = getKcClsx({ doUseDefaultCss, classes }).kcClsx;
77
- klassChecked = kcClsx(klass);
78
- }
79
- this.stateMap.set(klassChecked, {
80
- enabled: nextEnabled,
81
- changed: true,
82
- touched: true
83
- });
84
- }
85
- }
86
- _applyStateDiff() {
87
- for (const stateEntry of this.stateMap) {
88
- const klass = stateEntry[0];
89
- const state = stateEntry[1];
90
- if (state.changed) {
91
- this._toggleClass(klass, state.enabled);
92
- state.changed = false;
93
- }
94
- else if (!state.touched) {
95
- // A class that was previously active got removed from the new collection of classes -
96
- // remove from the DOM as well.
97
- if (state.enabled) {
98
- this._toggleClass(klass, false);
99
- }
100
- this.stateMap.delete(klass);
101
- }
102
- state.touched = false;
103
- }
104
- }
105
- _toggleClass(klass, enabled) {
106
- if (isDevMode()) {
107
- if (typeof klass !== 'string') {
108
- throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${_stringify(klass)}`);
109
- }
110
- }
111
- klass = klass.trim();
112
- if (klass.length > 0) {
113
- klass.split(/\s+/).forEach(klass => {
114
- if (enabled) {
115
- this.#renderer.addClass(this.#el.nativeElement, klass);
116
- }
117
- else {
118
- this.#renderer.removeClass(this.#el.nativeElement, klass);
119
- }
120
- });
121
- }
122
- }
123
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KcClassDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
124
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: KcClassDirective, isStandalone: true, selector: "[kcClass]", inputs: { klass: ["class", "klass"], ngClass: "ngClass", kcClass: "kcClass" }, ngImport: i0 }); }
125
- }
126
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KcClassDirective, decorators: [{
127
- type: Directive,
128
- args: [{ selector: '[kcClass]', standalone: true }]
129
- }], propDecorators: { klass: [{
130
- type: Input,
131
- args: ['class']
132
- }], ngClass: [{
133
- type: Input,
134
- args: ['ngClass']
135
- }], kcClass: [{
136
- type: Input,
137
- args: ['kcClass']
138
- }] } });
139
-
140
- /**
141
- * Generated bundle index. Do not edit.
142
- */
143
-
144
- export { KcClassDirective };
145
- //# sourceMappingURL=keycloakify-angular-login-directives-kc-class.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-directives-kc-class.mjs","sources":["../../src/login/directives/kc-class/kc-class.directive.ts","../../src/login/directives/kc-class/keycloakify-angular-login-directives-kc-class.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\n/* eslint-disable @typescript-eslint/consistent-indexed-object-style */\nimport {\n Directive,\n DoCheck,\n ElementRef,\n inject,\n Input,\n isDevMode,\n Renderer2,\n ɵstringify as stringify\n} from '@angular/core';\nimport type { ClassKey } from 'keycloakify/login/lib/kcClsx';\nimport { getKcClsx } from 'keycloakify/login/lib/kcClsx';\nimport { ComponentReference } from '@keycloakify/angular/login/classes/component-reference';\n\ninterface CssClassState {\n // PERF: could use a bit mask to represent state as all fields are boolean flags\n enabled: boolean;\n changed: boolean;\n touched: boolean;\n}\n\ntype KcClassSupportedTypes =\n | ClassKey[]\n | Set<ClassKey>\n | Partial<{ [key in ClassKey]: any }>\n | null\n | undefined;\n\ntype NgClassSupportedTypes =\n | string[]\n | Set<string>\n | { [key: string]: any }\n | null\n | undefined;\n\n@Directive({ selector: '[kcClass]', standalone: true })\nexport class KcClassDirective implements DoCheck {\n private initialClasses: string[] = [];\n private rawClass: NgClassSupportedTypes;\n private rawKcClass: KcClassSupportedTypes;\n\n private stateMap = new Map<string | ClassKey, CssClassState>();\n readonly #renderer = inject(Renderer2);\n readonly #el = inject(ElementRef);\n readonly #host = inject(ComponentReference);\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('class')\n set klass(value: string) {\n this.initialClasses = value != null ? value.trim().split(/\\s+/) : [];\n }\n\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('ngClass')\n set ngClass(value: string | NgClassSupportedTypes) {\n this.rawClass = typeof value === 'string' ? value.trim().split(/\\s+/) : value;\n }\n\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('kcClass')\n set kcClass(value: ClassKey | KcClassSupportedTypes) {\n this.rawKcClass =\n typeof value === 'string' ? (value.trim().split(/\\s+/) as ClassKey[]) : value;\n }\n\n ngDoCheck(): void {\n for (const klass of this.initialClasses) {\n this._updateState(klass, true);\n }\n // classes from the [ngClass] binding\n const rawClass = this.rawClass;\n if (Array.isArray(rawClass) || rawClass instanceof Set) {\n for (const klass of rawClass) {\n this._updateState(klass, true);\n }\n } else if (rawClass != null) {\n for (const klass of Object.keys(rawClass)) {\n this._updateState(klass, Boolean(rawClass[klass]));\n }\n }\n\n // classes from the [kcClass] binding\n const rawKcClass = this.rawKcClass;\n if (Array.isArray(rawKcClass) || rawKcClass instanceof Set) {\n for (const klass of rawKcClass) {\n this._updateState(klass, true, true);\n }\n } else if (rawKcClass != null) {\n for (const klass of Object.keys(rawKcClass)) {\n this._updateState(klass, Boolean(rawKcClass[klass as ClassKey]), true);\n }\n }\n\n this._applyStateDiff();\n }\n\n private _updateState(\n klass: string | ClassKey,\n nextEnabled: boolean,\n kcClsxCheck = false\n ) {\n const state = this.stateMap.get(klass);\n if (state !== undefined) {\n if (state.enabled !== nextEnabled) {\n state.changed = true;\n state.enabled = nextEnabled;\n }\n state.touched = true;\n } else {\n let klassChecked = klass;\n if (kcClsxCheck) {\n const doUseDefaultCss = this.#host.doUseDefaultCss ?? true;\n const classes = this.#host.classes;\n const kcClsx = getKcClsx({ doUseDefaultCss, classes }).kcClsx;\n klassChecked = kcClsx(klass as ClassKey);\n }\n this.stateMap.set(klassChecked, {\n enabled: nextEnabled,\n changed: true,\n touched: true\n });\n }\n }\n\n private _applyStateDiff() {\n for (const stateEntry of this.stateMap) {\n const klass = stateEntry[0];\n const state = stateEntry[1];\n\n if (state.changed) {\n this._toggleClass(klass, state.enabled);\n state.changed = false;\n } else if (!state.touched) {\n // A class that was previously active got removed from the new collection of classes -\n // remove from the DOM as well.\n if (state.enabled) {\n this._toggleClass(klass, false);\n }\n this.stateMap.delete(klass);\n }\n\n state.touched = false;\n }\n }\n\n private _toggleClass(klass: string, enabled: boolean): void {\n if (isDevMode()) {\n if (typeof klass !== 'string') {\n throw new Error(\n `NgClass can only toggle CSS classes expressed as strings, got ${stringify(klass)}`\n );\n }\n }\n\n klass = klass.trim();\n if (klass.length > 0) {\n klass.split(/\\s+/).forEach(klass => {\n if (enabled) {\n this.#renderer.addClass(this.#el.nativeElement, klass);\n } else {\n this.#renderer.removeClass(this.#el.nativeElement, klass);\n }\n });\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["stringify"],"mappings":"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"}
@@ -1,4 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- //# sourceMappingURL=keycloakify-angular-login-i18n.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"keycloakify-angular-login-i18n.mjs","sources":["../../src/login/i18n/keycloakify-angular-login-i18n.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;AAEG"}