-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support error slot in LoginCallback
OKTA-468765 <<<Jenkins Check-In of Tested SHA: fb30b74 for [email protected]>>> Artifact: okta-vue Files changed count: 8 PR Link: "#89"
- Loading branch information
1 parent
647d484
commit 2654d98
Showing
8 changed files
with
50 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<template> | ||
<div> | ||
<router-view v-slot="{ Component }"> | ||
<component :is="Component"> | ||
<template #error="errorProps"> | ||
<p>Custom error: {{ errorProps.error }}</p> | ||
</template> | ||
</component> | ||
</router-view> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'app' | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export { default as App } from './App' | ||
export { default as AppWithRoutes } from './AppWithRoutes' | ||
export { default as AppWithRoutesAndSlots } from './AppWithRoutesAndSlots' | ||
export { default as Protected } from './Protected' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1211,27 +1211,6 @@ | |
"@nodelib/fs.scandir" "2.1.5" | ||
fastq "^1.6.0" | ||
|
||
"@okta/okta-auth-js@^5.8.0": | ||
version "5.8.0" | ||
resolved "https://registry.yarnpkg.com/@okta/okta-auth-js/-/okta-auth-js-5.8.0.tgz#e80a550e7850f3bc89ea3d6bcd6a66a95f8702f5" | ||
integrity sha512-gkQ3/IOlG10FsE7h3GCN38BJGv7QZqr8clh5dpmjmZ4L1xtFwoDuk1VP0iaHtxr3UhsOG/wxNx17tnFAuSjeoQ== | ||
dependencies: | ||
"@babel/runtime" "^7.12.5" | ||
"@okta/okta-idx-js" "0.22.0" | ||
"@peculiar/webcrypto" "1.1.6" | ||
Base64 "1.1.0" | ||
atob "^2.1.2" | ||
btoa "^1.2.1" | ||
core-js "^3.6.5" | ||
cross-fetch "^3.0.6" | ||
js-cookie "2.2.1" | ||
node-cache "^5.1.2" | ||
p-cancelable "^2.0.0" | ||
text-encoding "^0.7.0" | ||
tiny-emitter "1.1.0" | ||
webcrypto-shim "^0.1.5" | ||
xhr2 "0.1.3" | ||
|
||
"@okta/okta-auth-js@^6.0.0": | ||
version "6.0.0" | ||
resolved "https://registry.yarnpkg.com/@okta/okta-auth-js/-/okta-auth-js-6.0.0.tgz#5ec34f7d92f6c91a3efeef8a6441175693b6fa74" | ||
|
@@ -1253,16 +1232,6 @@ | |
webcrypto-shim "^0.1.5" | ||
xhr2 "0.1.3" | ||
|
||
"@okta/[email protected]": | ||
version "0.22.0" | ||
resolved "https://registry.yarnpkg.com/@okta/okta-idx-js/-/okta-idx-js-0.22.0.tgz#c5dbebd155be2c8a8e2bbceb2e92701b6ba59349" | ||
integrity sha512-SehJVwQI51xWrB1YaMn6UB54cOzhrM7z5k2xOI62I3B7qOQ3uFOZJvRCJnBcZ6TEcQuqJ3/6q93h6n8omw0tVQ== | ||
dependencies: | ||
"@babel/runtime" "^7.12.5" | ||
"@babel/runtime-corejs3" "^7.12.5" | ||
core-js "^3.15.1" | ||
jsonpath-plus "^5.1.0" | ||
|
||
"@okta/[email protected]": | ||
version "0.24.0" | ||
resolved "https://registry.yarnpkg.com/@okta/okta-idx-js/-/okta-idx-js-0.24.0.tgz#f7c048a866add49f40fde0e25734fe61998be7c3" | ||
|