Compare commits
10 commits
4d0f9fdf56
...
4529ae8727
Author | SHA1 | Date | |
---|---|---|---|
4529ae8727 | |||
eab2315e30 | |||
5e27831edb | |||
34072186f3 | |||
4890e410fd | |||
0c56eff3b0 | |||
f81a515ee7 | |||
a18a51d4fd | |||
de44bbc56a | |||
cfe16b430d |
|
@ -2,7 +2,6 @@ import type { Preview } from "@storybook/react";
|
||||||
|
|
||||||
const preview: Preview = {
|
const preview: Preview = {
|
||||||
parameters: {
|
parameters: {
|
||||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
|
||||||
controls: {
|
controls: {
|
||||||
matchers: {
|
matchers: {
|
||||||
color: /(background|color)$/i,
|
color: /(background|color)$/i,
|
||||||
|
|
24
package.json
24
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "keycloakify-starter",
|
"name": "keycloakify-starter",
|
||||||
"homepage": "https://starter.keycloakify.dev",
|
"homepage": "https://starter.keycloakify.dev",
|
||||||
"version": "6.1.0",
|
"version": "6.1.5",
|
||||||
"description": "A starter/demo project for keycloakify",
|
"description": "A starter/demo project for keycloakify",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"evt": "^2.5.7",
|
"evt": "^2.5.7",
|
||||||
"keycloakify": "^9.5.8",
|
"keycloakify": "^9.6.3",
|
||||||
"oidc-spa": "^4.2.1",
|
"oidc-spa": "^4.2.1",
|
||||||
"powerhooks": "^1.0.8",
|
"powerhooks": "^1.0.8",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
|
@ -29,14 +29,14 @@
|
||||||
"zod": "^3.22.4"
|
"zod": "^3.22.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@storybook/addon-essentials": "^7.6.14",
|
"@storybook/addon-essentials": "^8.0.2",
|
||||||
"@storybook/addon-interactions": "^7.6.14",
|
"@storybook/addon-interactions": "^8.0.2",
|
||||||
"@storybook/addon-links": "^7.6.14",
|
"@storybook/addon-links": "^8.0.2",
|
||||||
"@storybook/addon-onboarding": "^1.0.11",
|
"@storybook/addon-onboarding": "^8.0.2",
|
||||||
"@storybook/blocks": "^7.6.14",
|
"@storybook/blocks": "^8.0.2",
|
||||||
"@storybook/react": "^7.6.14",
|
"@storybook/react": "^8.0.2",
|
||||||
"@storybook/react-vite": "^7.6.14",
|
"@storybook/react-vite": "^8.0.2",
|
||||||
"@storybook/test": "^7.6.14",
|
"@storybook/test": "^8.0.2",
|
||||||
"@types/react": "^18.2.43",
|
"@types/react": "^18.2.43",
|
||||||
"@types/react-dom": "^18.2.17",
|
"@types/react-dom": "^18.2.17",
|
||||||
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
||||||
|
@ -45,8 +45,8 @@
|
||||||
"eslint": "^8.55.0",
|
"eslint": "^8.55.0",
|
||||||
"eslint-plugin-react-hooks": "^4.6.0",
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
"eslint-plugin-react-refresh": "^0.4.5",
|
"eslint-plugin-react-refresh": "^0.4.5",
|
||||||
"eslint-plugin-storybook": "^0.6.15",
|
"eslint-plugin-storybook": "^0.8.0",
|
||||||
"storybook": "^7.6.14",
|
"storybook": "^8.0.2",
|
||||||
"typescript": "^5.2.2",
|
"typescript": "^5.2.2",
|
||||||
"vite": "^5.0.8",
|
"vite": "^5.0.8",
|
||||||
"vite-plugin-commonjs": "^0.10.1"
|
"vite-plugin-commonjs": "^0.10.1"
|
||||||
|
|
|
@ -6,8 +6,7 @@ import { z } from "zod";
|
||||||
|
|
||||||
//On older Keycloak version you need the /auth (e.g: http://localhost:8080/auth)
|
//On older Keycloak version you need the /auth (e.g: http://localhost:8080/auth)
|
||||||
//On newer version you must remove it (e.g: http://localhost:8080 )
|
//On newer version you must remove it (e.g: http://localhost:8080 )
|
||||||
const keycloakUrl = "https://keycloakify.cloud-iam.com/";
|
const keycloakUrl = "https://cloud-iam.keycloakify.dev/";
|
||||||
//const keycloakUrl = "https://auth.code.gouv.fr/auth";
|
|
||||||
const keycloakRealm = "keycloakify";
|
const keycloakRealm = "keycloakify";
|
||||||
const keycloakClientId= "starter";
|
const keycloakClientId= "starter";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue