keycloakify 4.8.0 → 4.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/README.md +8 -1
- package/bin/create-keycloak-theme-email-directory.d.ts +1 -0
- package/bin/create-keycloak-theme-email-directory.js +1 -0
- package/bin/create-keycloak-theme-email-directory.js.map +1 -1
- package/package.json +1 -1
- package/src/bin/create-keycloak-theme-email-directory.ts +2 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
@@ -25,7 +25,7 @@
|
|
25
25
|
</a>
|
26
26
|
</p>
|
27
27
|
|
28
|
-
> New with v4.
|
28
|
+
> New with v4.8.0: [Email template customization.](#email-template-customization)
|
29
29
|
|
30
30
|
<p align="center">
|
31
31
|
<i>Ultimately this build tool generates a Keycloak theme</i>
|
@@ -89,6 +89,7 @@ If you already have a Keycloak custom theme, it can be easily ported to Keycloak
|
|
89
89
|
- [Downloading builtin theme resource files](#downloading-builtin-theme-resource-files)
|
90
90
|
- [Email domain whitelist](#email-domain-whitelist)
|
91
91
|
- [Changelog highlights](#changelog-highlights)
|
92
|
+
- [v4.8.0](#v480)
|
92
93
|
- [v4.7.4](#v474)
|
93
94
|
- [v4.7.2](#v472)
|
94
95
|
- [v4.7.0](#v470)
|
@@ -493,6 +494,8 @@ This approach is a bit hacky as it doesn't provide type safety but it works.
|
|
493
494
|
Running `npx download-builtin-keycloak-theme` will let you download the themes that comes by default with
|
494
495
|
a Keycloak version of your choosing.
|
495
496
|
|
497
|
+
[Video demo](https://user-images.githubusercontent.com/6702424/164304458-934b0e1d-9de7-4bb4-8a1c-e06a70b1636a.mov)
|
498
|
+
|
496
499
|
# Email domain whitelist
|
497
500
|
|
498
501
|
NOTE: This have been kind of deprecated by [user attribute](#user-profile-and-frontend-form-validation) you could
|
@@ -503,6 +506,10 @@ and `kcRegisterContext["authorizedMailDomains"]` to validate on.
|
|
503
506
|
|
504
507
|
# Changelog highlights
|
505
508
|
|
509
|
+
## v4.8.0
|
510
|
+
|
511
|
+
[Email template customization.](#email-template-customization)
|
512
|
+
|
506
513
|
## v4.7.4
|
507
514
|
|
508
515
|
**M1 Mac** support (for testing locally with a dockerized Keycloak).
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-keycloak-theme-email-directory.js","sourceRoot":"","sources":["../src/bin/create-keycloak-theme-email-directory.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"create-keycloak-theme-email-directory.js","sourceRoot":"","sources":["../src/bin/create-keycloak-theme-email-directory.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,qFAAiF;AACjF,+DAAmE;AACnE,6BAAkE;AAClE,+DAA8D;AAC9D,iEAAgE;AAChE,qCAAyB;AAEzB,IAAI,OAAO,CAAC,IAAI,KAAK,MAAM,EAAE;IACzB,CAAC;;;;;oBACG,IAAI,EAAE,CAAC,UAAU,CAAC,gDAAyB,CAAC,EAAE;wBAC1C,OAAO,CAAC,GAAG,CAAC,0BAAwB,IAAA,eAAY,EAAC,gDAAyB,CAAC,0CAAuC,CAAC,CAAC;wBAEpH,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;qBACpB;oBAE2B,qBAAM,IAAA,6CAAqB,GAAE,EAAA;;oBAAjD,eAAe,GAAK,CAAA,SAA6B,CAAA,gBAAlC;oBAEjB,8BAA8B,GAAG,IAAA,WAAQ,EAAC,gDAAyB,EAAE,IAAI,EAAE,kCAAkC,CAAC,CAAC;oBAErH,IAAA,8DAA4B,EAAC;wBACzB,eAAe,iBAAA;wBACf,aAAa,EAAE,8BAA8B;qBAChD,CAAC,CAAC;oBAEH,IAAA,qCAAiB,EAAC;wBACd,YAAY,EAAE,IAAA,WAAQ,EAAC,8BAA8B,EAAE,MAAM,EAAE,OAAO,CAAC;wBACvE,aAAa,EAAE,gDAAyB;qBAC3C,CAAC,CAAC;oBAEH,OAAO,CAAC,GAAG,CAAC,OAAK,IAAA,eAAY,EAAC,gDAAyB,CAAC,4BAAyB,CAAC,CAAC;oBAEnF,EAAE,CAAC,MAAM,CAAC,8BAA8B,EAAE,EAAE,WAAW,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC;;;;SACnF,CAAC,EAAE,CAAC;CACR"}
|
package/package.json
CHANGED