Compare commits

...

2 Commits

Author SHA1 Message Date
Balázs Orbán
0cbeb4055e chore(release): bump version 2023-01-24 14:03:59 +01:00
Balázs Orbán
5a128db369 fix(providers): add slash to default logo urls
fixes #6495
2023-01-24 14:03:40 +01:00
33 changed files with 67 additions and 67 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "next-auth",
"version": "4.18.9",
"version": "4.18.10",
"description": "Authentication for Next.js",
"homepage": "https://next-auth.js.org",
"repository": "https://github.com/nextauthjs/next-auth.git",

View File

@@ -118,8 +118,8 @@ export default function Apple<P extends AppleProfile>(
},
checks: ["pkce"],
style: {
logo: "apple.svg",
logoDark: "apple-dark.svg",
logo: "/apple.svg",
logoDark: "/apple-dark.svg",
bg: "#fff",
text: "#000",
bgDark: "#000",

View File

@@ -32,8 +32,8 @@ export default function Atlassian<P extends AtlassianProfile>(
}
},
style: {
logo: "atlassian.svg",
logoDark: "atlassian-dark.svg",
logo: "/atlassian.svg",
logoDark: "/atlassian-dark.svg",
bg: "#0052cc",
text: "#fff",
bgDark: "#fff",

View File

@@ -27,8 +27,8 @@ export default function Auth0<P extends Auth0Profile>(
}
},
style: {
logo: "auth0.svg",
logoDark: "auth0-dark.svg",
logo: "/auth0.svg",
logoDark: "/auth0-dark.svg",
bg: "#fff",
text: "#EB5424",
bgDark: "#EB5424",

View File

@@ -43,8 +43,8 @@ export default function AzureADB2C<P extends AzureB2CProfile>(
}
},
style: {
logo: "azure.svg",
logoDark: "azure-dark.svg",
logo: "/azure.svg",
logoDark: "/azure-dark.svg",
bg: "#fff",
text: "#0072c6",
bgDark: "#0072c6",

View File

@@ -57,8 +57,8 @@ export default function AzureAD<P extends AzureADProfile>(
}
},
style: {
logo: "azure.svg",
logoDark: "azure-dark.svg",
logo: "/azure.svg",
logoDark: "/azure-dark.svg",
bg: "#fff",
text: "#0072c6",
bgDark: "#0072c6",

View File

@@ -27,8 +27,8 @@ export default function BattleNet<P extends BattleNetProfile>(
}
},
style: {
logo: "battlenet.svg",
logoDark: "battlenet-dark.svg",
logo: "/battlenet.svg",
logoDark: "/battlenet-dark.svg",
bg: "#fff",
text: "#148eff",
bgDark: "#148eff",

View File

@@ -16,8 +16,8 @@ export default function Box(options) {
}
},
style: {
logo: "box.svg",
logoDark: "box-dark.svg",
logo: "/box.svg",
logoDark: "/box-dark.svg",
bg: "#fff",
text: "#0075C9",
bgDark: "#0075C9",

View File

@@ -25,8 +25,8 @@ export default function Cognito<P extends CognitoProfile>(
}
},
style: {
logo: "cognito.svg",
logoDark: "cognito.svg",
logo: "/cognito.svg",
logoDark: "/cognito.svg",
bg: "#fff",
text: "#C17B9E",
bgDark: "#fff",

View File

@@ -45,8 +45,8 @@ export default function Discord<P extends DiscordProfile>(
}
},
style: {
logo: "discord.svg",
logoDark: "discord-dark.svg",
logo: "/discord.svg",
logoDark: "/discord-dark.svg",
bg: "#fff",
text: "#7289DA",
bgDark: "#7289DA",

View File

@@ -42,8 +42,8 @@ export default function Facebook<P extends FacebookProfile>(
}
},
style: {
logo: "facebook.svg",
logoDark: "facebook-dark.svg",
logo: "/facebook.svg",
logoDark: "/facebook-dark.svg",
bg: "#fff",
text: "#006aff",
bgDark: "#006aff",

View File

@@ -51,8 +51,8 @@ export default function Foursquare(options) {
}
},
style: {
logo: "foursquare.svg",
logoDark: "foursquare-dark.svg",
logo: "/foursquare.svg",
logoDark: "/foursquare-dark.svg",
bg: "#fff",
text: "#000",
bgDark: "#000",

View File

@@ -18,8 +18,8 @@ export default function Freshbooks(options) {
}
},
style: {
logo: "freshbooks.svg",
logoDark: "freshbooks-dark.svg",
logo: "/freshbooks.svg",
logoDark: "/freshbooks-dark.svg",
bg: "#fff",
text: "#0075dd",
bgDark: "#0075dd",

View File

@@ -99,8 +99,8 @@ export default function Github<P extends GithubProfile>(
}
},
style: {
logo: "github.svg",
logoDark: "github-dark.svg",
logo: "/github.svg",
logoDark: "/github-dark.svg",
bg: "#fff",
bgDark: "#000",
text: "#000",

View File

@@ -68,8 +68,8 @@ export default function GitLab<P extends GitLabProfile>(
}
},
style: {
logo: "gitlab.svg",
logoDark: "gitlab-dark.svg",
logo: "/gitlab.svg",
logoDark: "/gitlab-dark.svg",
bg: "#fff",
text: "#FC6D26",
bgDark: "#FC6D26",

View File

@@ -38,8 +38,8 @@ export default function Google<P extends GoogleProfile>(
}
},
style: {
logo: "google.svg",
logoDark: "google.svg",
logo: "/google.svg",
logoDark: "/google.svg",
bgDark: "#fff",
bg: "#fff",
text: "#000",

View File

@@ -65,8 +65,8 @@ export default function HubSpot<P extends HubSpotProfile>(
}
},
style: {
logo: "hubspot.svg",
logoDark: "hubspot-dark.svg",
logo: "/hubspot.svg",
logoDark: "/hubspot-dark.svg",
bg: "#fff",
text: "#ff7a59",
bgDark: "#ff7a59",

View File

@@ -47,8 +47,8 @@ export default function Instagram(options) {
}
},
style: {
logo: "instagram.svg",
logoDark: "instagram.svg",
logo: "/instagram.svg",
logoDark: "/instagram.svg",
bg: "#fff",
text: "#000",
bgDark: "#fff",

View File

@@ -44,8 +44,8 @@ export default function Keycloak<P extends KeycloakProfile>(
}
},
style: {
logo: "keycloak.svg",
logoDark: "keycloak.svg",
logo: "/keycloak.svg",
logoDark: "/keycloak.svg",
bg: "#fff",
text: "#000",
bgDark: "#fff",

View File

@@ -34,8 +34,8 @@ export default function LINE<P extends LineProfile>(
id_token_signed_response_alg: "HS256",
},
style: {
logo: "line.svg",
logoDark: "line.svg",
logo: "/line.svg",
logoDark: "/line.svg",
bg: "#fff",
text: "#00C300",
bgDark: "#00C300",

View File

@@ -56,8 +56,8 @@ export default function LinkedIn<P extends LinkedInProfile>(
}
},
style: {
logo: "linkedin.svg",
logoDark: "linkedin-dark.svg",
logo: "/linkedin.svg",
logoDark: "/linkedin-dark.svg",
bg: "#fff",
text: "#069",
bgDark: "#069",

View File

@@ -16,8 +16,8 @@ export default function Mailchimp(options) {
}
},
style: {
logo: "mailchimp.svg",
logoDark: "mailchimp-dark.svg",
logo: "/mailchimp.svg",
logoDark: "/mailchimp-dark.svg",
bg: "#fff",
text: "#000",
bgDark: "#000",

View File

@@ -53,8 +53,8 @@ export default function Okta<P extends OktaProfile>(
}
},
style: {
logo: "okta.svg",
logoDark: "okta-dark.svg",
logo: "/okta.svg",
logoDark: "/okta-dark.svg",
bg: "#fff",
text: "#000",
bgDark: "#000",

View File

@@ -30,8 +30,8 @@ export default function Patreon<P extends PatreonProfile>(
}
},
style: {
logo: "patreon.svg",
logoDark: "patreon.svg",
logo: "/patreon.svg",
logoDark: "/patreon.svg",
bg: "#fff",
text: "#e85b46",
bgDark: "#000",

View File

@@ -50,8 +50,8 @@ export default function Slack<P extends SlackProfile>(
}
},
style: {
logo: "slack.svg",
logoDark: "slack.svg",
logo: "/slack.svg",
logoDark: "/slack.svg",
bg: "#fff",
text: "#000",
bgDark: "#000",

View File

@@ -30,8 +30,8 @@ export default function Spotify<P extends SpotifyProfile>(
}
},
style: {
logo: "spotify.svg",
logoDark: "spotify.svg",
logo: "/spotify.svg",
logoDark: "/spotify.svg",
bg: "#fff",
text: "#2ebd59",
bgDark: "#fff",

View File

@@ -54,8 +54,8 @@ export default function TodoistProvider<P extends TodoistProfile>(
}
},
style: {
logo: "todoist.svg",
logoDark: "todoist.svg",
logo: "/todoist.svg",
logoDark: "/todoist.svg",
bg: "#fff",
text: "#E44332",
bgDark: "#000",

View File

@@ -52,8 +52,8 @@ export default function Trakt<P extends TraktUser>(
}
},
style: {
logo: "trakt.svg",
logoDark: "trakt-dark.svg",
logo: "/trakt.svg",
logoDark: "/trakt-dark.svg",
bg: "#fff",
text: "#ED2224",
bgDark: "#ED2224",

View File

@@ -37,8 +37,8 @@ export default function Twitch<P extends TwitchProfile>(
}
},
style: {
logo: "twitch.svg",
logoDark: "twitch-dark.svg",
logo: "/twitch.svg",
logoDark: "/twitch-dark.svg",
bg: "#fff",
text: "#65459B",
bgDark: "#65459B",

View File

@@ -120,8 +120,8 @@ export function TwitterLegacy<
}
},
style: {
logo: "twitter.svg",
logoDark: "twitter-dark.svg",
logo: "/twitter.svg",
logoDark: "/twitter-dark.svg",
bg: "#fff",
text: "#1da1f2",
bgDark: "#1da1f2",
@@ -215,8 +215,8 @@ export default function Twitter<
},
checks: ["pkce", "state"],
style: {
logo: "twitter.svg",
logoDark: "twitter-dark.svg",
logo: "/twitter.svg",
logoDark: "/twitter-dark.svg",
bg: "#fff",
text: "#1da1f2",
bgDark: "#1da1f2",

View File

@@ -306,8 +306,8 @@ export default function VK<P extends Record<string, any> = VkProfile>(
}
},
style: {
logo: "vk.svg",
logoDark: "vk-dark.svg",
logo: "/vk.svg",
logoDark: "/vk-dark.svg",
bg: "#fff",
text: "#07F",
bgDark: "#07F",

View File

@@ -181,8 +181,8 @@ export default function Wikimedia<P extends WikimediaProfile>(
}
},
style: {
logo: "wikimedia.svg",
logoDark: "wikimedia-dark.svg",
logo: "/wikimedia.svg",
logoDark: "/wikimedia-dark.svg",
bg: "#fff",
text: "#000",
bgDark: "#000",

View File

@@ -45,8 +45,8 @@ export default function WorkOS<P extends WorkOSProfile>(
}
},
style: {
logo: "workos.svg",
logoDark: "workos-dark.svg",
logo: "/workos.svg",
logoDark: "/workos-dark.svg",
bg: "#fff",
text: "#6363f1",
bgDark: "#6363f1",