Compare commits
5 Commits
v10.0.0-rc
...
v10.0.0-rc
Author | SHA1 | Date | |
---|---|---|---|
66623e3324 | |||
4cc886fd04 | |||
a10b490245 | |||
b947b8a00d | |||
60fa240a4d |
@ -43,7 +43,8 @@
|
|||||||
|
|
||||||
Keycloakify is fully compatible with Keycloak 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, [~~22~~](https://github.com/keycloakify/keycloakify/issues/389#issuecomment-1822509763), 23, 24, 25...[and beyond](https://github.com/keycloakify/keycloakify/discussions/346#discussioncomment-5889791)
|
Keycloakify is fully compatible with Keycloak 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, [~~22~~](https://github.com/keycloakify/keycloakify/issues/389#issuecomment-1822509763), 23, 24, 25...[and beyond](https://github.com/keycloakify/keycloakify/discussions/346#discussioncomment-5889791)
|
||||||
|
|
||||||
> NOTE: Keycloakify 10 is still in release-candidate state. [Follow progress](https://github.com/keycloakify/keycloakify/pull/538).
|
> NOTE: Keycloakify 10, while still being tagged as release candidate is the version you should use if you are starting today.
|
||||||
|
> Use `yarn add keycloakify@next` or pin [the latest version candidate](https://www.npmjs.com/package/keycloakify?activeTab=versions).
|
||||||
|
|
||||||
## Sponsors
|
## Sponsors
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "keycloakify",
|
"name": "keycloakify",
|
||||||
"version": "10.0.0-rc.135",
|
"version": "10.0.0-rc.137",
|
||||||
"description": "Create Keycloak themes using React",
|
"description": "Create Keycloak themes using React",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -79,8 +79,8 @@ export declare namespace KcContext {
|
|||||||
};
|
};
|
||||||
realm: {
|
realm: {
|
||||||
name: string;
|
name: string;
|
||||||
displayName?: string;
|
displayName: string;
|
||||||
displayNameHtml?: string;
|
displayNameHtml: string;
|
||||||
internationalizationEnabled: boolean;
|
internationalizationEnabled: boolean;
|
||||||
registrationEmailAsUsername: boolean;
|
registrationEmailAsUsername: boolean;
|
||||||
};
|
};
|
||||||
|
@ -217,7 +217,13 @@ function createI18nTranslationFunctionsFactory<MessageKey_themeDefined extends s
|
|||||||
|
|
||||||
messageWithArgsInjected = messageWithArgsInjected.replace(
|
messageWithArgsInjected = messageWithArgsInjected.replace(
|
||||||
new RegExp(`\\{${i + startIndex}\\}`, "g"),
|
new RegExp(`\\{${i + startIndex}\\}`, "g"),
|
||||||
arg.replace(/</g, "<").replace(/>/g, ">")
|
(() => {
|
||||||
|
if (key === "loginTitleHtml") {
|
||||||
|
return arg;
|
||||||
|
}
|
||||||
|
|
||||||
|
return arg.replace(/</g, "<").replace(/>/g, ">");
|
||||||
|
})()
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user