Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
c4f8879cda | |||
8f54166653 | |||
b9f020c447 | |||
c357f3eb4d | |||
7ebbb0417a | |||
6e4b4173b5 |
@ -25,6 +25,8 @@
|
|||||||
-
|
-
|
||||||
<a href="https://docs.keycloakify.dev">Documentation</a>
|
<a href="https://docs.keycloakify.dev">Documentation</a>
|
||||||
-
|
-
|
||||||
|
<a href="https://storybook.keycloakify.dev/storybook">Storybook</a>
|
||||||
|
-
|
||||||
<a href="https://github.com/codegouvfr/keycloakify-starter">Starter project</a>
|
<a href="https://github.com/codegouvfr/keycloakify-starter">Starter project</a>
|
||||||
</p>
|
</p>
|
||||||
</p>
|
</p>
|
||||||
@ -45,6 +47,8 @@
|
|||||||
- Account theme support 🚀
|
- Account theme support 🚀
|
||||||
- It's much easier to customize pages at the CSS level, you can now see in the browser dev tool the customizable classes.
|
- It's much easier to customize pages at the CSS level, you can now see in the browser dev tool the customizable classes.
|
||||||
- New interactive CLI tool `npx eject-keycloak-page`, that enables to select the page you want to customize at the component level.
|
- New interactive CLI tool `npx eject-keycloak-page`, that enables to select the page you want to customize at the component level.
|
||||||
|
- There is [a Storybook](https://storybook.keycloakify.dev)
|
||||||
|
- [Remember me is fixed](https://github.com/InseeFrLab/keycloakify/pull/272)
|
||||||
|
|
||||||
## 6.13
|
## 6.13
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "keycloakify",
|
"name": "keycloakify",
|
||||||
"version": "7.0.2",
|
"version": "7.0.3",
|
||||||
"description": "Create Keycloak themes using React",
|
"description": "Create Keycloak themes using React",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -101,7 +101,8 @@ export declare namespace KcContext {
|
|||||||
registrationDisabled: boolean;
|
registrationDisabled: boolean;
|
||||||
login: {
|
login: {
|
||||||
username?: string;
|
username?: string;
|
||||||
rememberMe?: boolean;
|
rememberMe?: string;
|
||||||
|
password?: string;
|
||||||
};
|
};
|
||||||
usernameEditDisabled: boolean;
|
usernameEditDisabled: boolean;
|
||||||
social: {
|
social: {
|
||||||
@ -219,7 +220,7 @@ export declare namespace KcContext {
|
|||||||
registrationDisabled: boolean;
|
registrationDisabled: boolean;
|
||||||
login: {
|
login: {
|
||||||
username?: string;
|
username?: string;
|
||||||
rememberMe?: boolean;
|
rememberMe?: string;
|
||||||
};
|
};
|
||||||
usernameHidden?: boolean;
|
usernameHidden?: boolean;
|
||||||
social: {
|
social: {
|
||||||
|
@ -260,9 +260,7 @@ export const kcContextMocks: KcContext[] = [
|
|||||||
"displayInfo": true
|
"displayInfo": true
|
||||||
},
|
},
|
||||||
"usernameEditDisabled": false,
|
"usernameEditDisabled": false,
|
||||||
"login": {
|
"login": {},
|
||||||
"rememberMe": false
|
|
||||||
},
|
|
||||||
"registrationDisabled": false
|
"registrationDisabled": false
|
||||||
}),
|
}),
|
||||||
...(() => {
|
...(() => {
|
||||||
@ -376,9 +374,7 @@ export const kcContextMocks: KcContext[] = [
|
|||||||
"displayInfo": true
|
"displayInfo": true
|
||||||
},
|
},
|
||||||
"usernameHidden": false,
|
"usernameHidden": false,
|
||||||
"login": {
|
"login": {},
|
||||||
"rememberMe": false
|
|
||||||
},
|
|
||||||
"registrationDisabled": false
|
"registrationDisabled": false
|
||||||
}),
|
}),
|
||||||
id<KcContext.LoginPassword>({
|
id<KcContext.LoginPassword>({
|
||||||
|
@ -124,7 +124,7 @@ export default function Login(props: PageProps<Extract<KcContext, { pageId: "log
|
|||||||
id="rememberMe"
|
id="rememberMe"
|
||||||
name="rememberMe"
|
name="rememberMe"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
{...(login.rememberMe
|
{...(login.rememberMe === "on"
|
||||||
? {
|
? {
|
||||||
"checked": true
|
"checked": true
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ export default function LoginUsername(props: PageProps<Extract<KcContext, { page
|
|||||||
id="rememberMe"
|
id="rememberMe"
|
||||||
name="rememberMe"
|
name="rememberMe"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
{...(login.rememberMe
|
{...(login.rememberMe === "on"
|
||||||
? {
|
? {
|
||||||
"checked": true
|
"checked": true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user