From 06bb8502c64258ee48577e63b5c42995a2481e08 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Mon, 11 Sep 2023 09:06:44 -0400 Subject: [PATCH 1/2] feat(idp): allow disabling full screen loader --- README.md | 1 + renovate.json | 2 +- src/components/LoginForm.vue | 3 ++- src/elements/kong-auth-login/KongAuthLogin.ce.vue | 8 ++++++++ 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e8fd5568..934106086 100644 --- a/README.md +++ b/README.md @@ -462,6 +462,7 @@ The login element **must** reside at the `{window.location.origin}/login` path i | `idpLoginEnabled` | Boolean | `false` | Enable IdP login detection. | | `idpLoginCallbackUrl` | URL | `''` | Set the URL to return to in order to complete the OIDC flow. In most cases, this should be set to `${window.location.origin}/login` | | `idpLoginReturnTo` | URL | `''` | Set the URL to return to upon successful IdP login. In most cases, this should be set to `window.location.origin` | +| `idpFullScreenLoader` | Boolean | `true` | Show the full screen loading skeleton when IdP login is processing | > **Note**: When utilizing the props as a native web component, you may need to use dot syntax, as shown here > diff --git a/renovate.json b/renovate.json index 645d0f6ec..52dd180eb 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,5 @@ { "extends": [ - "github>Kong/public-shared-renovate:kong-frontend-config.json" + "github>Kong/public-shared-renovate:kong-frontend-config" ] } diff --git a/src/components/LoginForm.vue b/src/components/LoginForm.vue index 2b5e468e7..3d0e54fee 100644 --- a/src/components/LoginForm.vue +++ b/src/components/LoginForm.vue @@ -1,7 +1,7 @@