├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── Bug Report.yml │ ├── Feature Request.yml │ └── config.yml ├── actions │ ├── build │ │ └── action.yml │ ├── get-prerelease │ │ └── action.yml │ ├── get-release-notes │ │ └── action.yml │ ├── get-version │ │ └── action.yml │ ├── npm-publish │ │ └── action.yml │ ├── release-create │ │ └── action.yml │ ├── rl-scanner │ │ └── action.yml │ └── tag-exists │ │ └── action.yml ├── dependabot.yml ├── stale.yml └── workflows │ ├── browserstack.yml │ ├── claude-code-review.yml │ ├── codeql.yml │ ├── integration.yml │ ├── npm-release.yml │ ├── release.yml │ ├── rl-secure.yml │ ├── semgrep.yml │ ├── snyk.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .semgrepignore ├── .shiprc ├── .version ├── CHANGELOG.md ├── CONTRIBUTING.md ├── EXAMPLES.md ├── FAQ.md ├── Jenkinsfile ├── LICENSE ├── MIGRATION_GUIDE.md ├── README.md ├── TROUBLESHOOTING.md ├── __mocks__ └── @auth0 │ └── auth0-spa-js.tsx ├── __tests__ ├── auth-provider.test.tsx ├── auth-reducer.test.tsx ├── errors.test.tsx ├── helpers.tsx ├── ssr.test.tsx ├── use-auth.test.tsx ├── utils.test.tsx ├── with-auth0.test.tsx └── with-authentication-required.test.tsx ├── browserstack.json ├── codecov.yml ├── cypress-bs.config.js ├── cypress.config.js ├── cypress ├── e2e │ ├── smoke-bs.cy.ts │ └── smoke.cy.ts └── tsconfig.json ├── docs ├── .nojekyll ├── assets │ ├── hierarchy.js │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── AuthenticationError.html │ ├── ConnectError.html │ ├── GenericError.html │ ├── InMemoryCache.html │ ├── LocalStorageCache.html │ ├── MfaRequiredError.html │ ├── MissingRefreshTokenError.html │ ├── OAuthError.html │ ├── PopupCancelledError.html │ ├── PopupTimeoutError.html │ ├── TimeoutError.html │ ├── UseDpopNonceError.html │ └── User.html ├── enums │ └── ResponseType.html ├── functions │ ├── Auth0Provider.html │ ├── useAuth0.html │ ├── withAuth0.html │ └── withAuthenticationRequired.html ├── hierarchy.html ├── index.html ├── interfaces │ ├── Auth0ContextInterface.html │ ├── Auth0ProviderOptions.html │ ├── AuthorizationParams.html │ ├── GetTokenSilentlyOptions.html │ ├── GetTokenWithPopupOptions.html │ ├── ICache.html │ ├── IdToken.html │ ├── LogoutOptions.html │ ├── LogoutUrlOptions.html │ ├── PopupConfigOptions.html │ ├── PopupLoginOptions.html │ ├── RedirectConnectAccountOptions.html │ ├── RedirectLoginOptions.html │ ├── WithAuth0Props.html │ └── WithAuthenticationRequiredOptions.html ├── modules.html ├── types │ ├── AppState.html │ ├── CacheLocation.html │ ├── Cacheable.html │ ├── ConnectAccountRedirectResult.html │ ├── ConnectedAccount.html │ └── FetcherConfig.html └── variables │ └── Auth0Context.html ├── examples ├── README.md ├── cra-react-router │ ├── .env.sample │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── Error.tsx │ │ ├── Loading.tsx │ │ ├── Nav.tsx │ │ ├── Users.tsx │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ └── use-api.ts │ └── tsconfig.json ├── gatsby-app │ ├── .env.development.sample │ ├── .eslintrc │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── package.json │ └── src │ │ ├── components │ │ ├── App.css │ │ ├── Error.js │ │ ├── Loading.js │ │ ├── Nav.js │ │ └── Users.js │ │ ├── hooks │ │ └── use-api.js │ │ └── pages │ │ ├── index.js │ │ └── users.js ├── nextjs-app │ ├── .env.sample │ ├── .gitignore │ ├── README.md │ ├── components │ │ ├── App.css │ │ ├── Error.js │ │ ├── Loading.js │ │ └── Nav.js │ ├── hooks │ │ └── use-api.js │ ├── package.json │ └── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── index.js │ │ └── users.js └── users-api │ ├── .env.sample │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── server.js ├── jest.config.js ├── jest.setup.js ├── opslevel.yml ├── package.json ├── rollup.config.mjs ├── scripts └── oidc-provider.mjs ├── src ├── auth-state.tsx ├── auth0-context.tsx ├── auth0-provider.tsx ├── errors.tsx ├── index.tsx ├── reducer.tsx ├── use-auth0.tsx ├── utils.tsx ├── with-auth0.tsx └── with-authentication-required.tsx ├── static └── index.html ├── tsconfig.json └── typedoc.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @auth0/project-dx-sdks-engineer-codeowner 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug Report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/ISSUE_TEMPLATE/Bug Report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature Request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/ISSUE_TEMPLATE/Feature Request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/get-prerelease/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/get-prerelease/action.yml -------------------------------------------------------------------------------- /.github/actions/get-release-notes/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/get-release-notes/action.yml -------------------------------------------------------------------------------- /.github/actions/get-version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/get-version/action.yml -------------------------------------------------------------------------------- /.github/actions/npm-publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/npm-publish/action.yml -------------------------------------------------------------------------------- /.github/actions/release-create/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/release-create/action.yml -------------------------------------------------------------------------------- /.github/actions/rl-scanner/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/rl-scanner/action.yml -------------------------------------------------------------------------------- /.github/actions/tag-exists/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/actions/tag-exists/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/browserstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/browserstack.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/npm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/npm-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rl-secure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/rl-secure.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/snyk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/snyk.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | docs 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.prettierrc -------------------------------------------------------------------------------- /.semgrepignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.semgrepignore -------------------------------------------------------------------------------- /.shiprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/.shiprc -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | v2.9.0 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/FAQ.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /__mocks__/@auth0/auth0-spa-js.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__mocks__/@auth0/auth0-spa-js.tsx -------------------------------------------------------------------------------- /__tests__/auth-provider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/auth-provider.test.tsx -------------------------------------------------------------------------------- /__tests__/auth-reducer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/auth-reducer.test.tsx -------------------------------------------------------------------------------- /__tests__/errors.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/errors.test.tsx -------------------------------------------------------------------------------- /__tests__/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/helpers.tsx -------------------------------------------------------------------------------- /__tests__/ssr.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/ssr.test.tsx -------------------------------------------------------------------------------- /__tests__/use-auth.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/use-auth.test.tsx -------------------------------------------------------------------------------- /__tests__/utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/utils.test.tsx -------------------------------------------------------------------------------- /__tests__/with-auth0.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/with-auth0.test.tsx -------------------------------------------------------------------------------- /__tests__/with-authentication-required.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/__tests__/with-authentication-required.test.tsx -------------------------------------------------------------------------------- /browserstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/browserstack.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /cypress-bs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/cypress-bs.config.js -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/smoke-bs.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/cypress/e2e/smoke-bs.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/smoke.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/cypress/e2e/smoke.cy.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/hierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/hierarchy.js -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/AuthenticationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/AuthenticationError.html -------------------------------------------------------------------------------- /docs/classes/ConnectError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/ConnectError.html -------------------------------------------------------------------------------- /docs/classes/GenericError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/GenericError.html -------------------------------------------------------------------------------- /docs/classes/InMemoryCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/InMemoryCache.html -------------------------------------------------------------------------------- /docs/classes/LocalStorageCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/LocalStorageCache.html -------------------------------------------------------------------------------- /docs/classes/MfaRequiredError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/MfaRequiredError.html -------------------------------------------------------------------------------- /docs/classes/MissingRefreshTokenError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/MissingRefreshTokenError.html -------------------------------------------------------------------------------- /docs/classes/OAuthError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/OAuthError.html -------------------------------------------------------------------------------- /docs/classes/PopupCancelledError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/PopupCancelledError.html -------------------------------------------------------------------------------- /docs/classes/PopupTimeoutError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/PopupTimeoutError.html -------------------------------------------------------------------------------- /docs/classes/TimeoutError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/TimeoutError.html -------------------------------------------------------------------------------- /docs/classes/UseDpopNonceError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/UseDpopNonceError.html -------------------------------------------------------------------------------- /docs/classes/User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/classes/User.html -------------------------------------------------------------------------------- /docs/enums/ResponseType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/enums/ResponseType.html -------------------------------------------------------------------------------- /docs/functions/Auth0Provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/functions/Auth0Provider.html -------------------------------------------------------------------------------- /docs/functions/useAuth0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/functions/useAuth0.html -------------------------------------------------------------------------------- /docs/functions/withAuth0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/functions/withAuth0.html -------------------------------------------------------------------------------- /docs/functions/withAuthenticationRequired.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/functions/withAuthenticationRequired.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/Auth0ContextInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/Auth0ContextInterface.html -------------------------------------------------------------------------------- /docs/interfaces/Auth0ProviderOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/Auth0ProviderOptions.html -------------------------------------------------------------------------------- /docs/interfaces/AuthorizationParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/AuthorizationParams.html -------------------------------------------------------------------------------- /docs/interfaces/GetTokenSilentlyOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/GetTokenSilentlyOptions.html -------------------------------------------------------------------------------- /docs/interfaces/GetTokenWithPopupOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/GetTokenWithPopupOptions.html -------------------------------------------------------------------------------- /docs/interfaces/ICache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/ICache.html -------------------------------------------------------------------------------- /docs/interfaces/IdToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/IdToken.html -------------------------------------------------------------------------------- /docs/interfaces/LogoutOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/LogoutOptions.html -------------------------------------------------------------------------------- /docs/interfaces/LogoutUrlOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/LogoutUrlOptions.html -------------------------------------------------------------------------------- /docs/interfaces/PopupConfigOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/PopupConfigOptions.html -------------------------------------------------------------------------------- /docs/interfaces/PopupLoginOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/PopupLoginOptions.html -------------------------------------------------------------------------------- /docs/interfaces/RedirectConnectAccountOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/RedirectConnectAccountOptions.html -------------------------------------------------------------------------------- /docs/interfaces/RedirectLoginOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/RedirectLoginOptions.html -------------------------------------------------------------------------------- /docs/interfaces/WithAuth0Props.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/WithAuth0Props.html -------------------------------------------------------------------------------- /docs/interfaces/WithAuthenticationRequiredOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/interfaces/WithAuthenticationRequiredOptions.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/types/AppState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/types/AppState.html -------------------------------------------------------------------------------- /docs/types/CacheLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/types/CacheLocation.html -------------------------------------------------------------------------------- /docs/types/Cacheable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/types/Cacheable.html -------------------------------------------------------------------------------- /docs/types/ConnectAccountRedirectResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/types/ConnectAccountRedirectResult.html -------------------------------------------------------------------------------- /docs/types/ConnectedAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/types/ConnectedAccount.html -------------------------------------------------------------------------------- /docs/types/FetcherConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/types/FetcherConfig.html -------------------------------------------------------------------------------- /docs/variables/Auth0Context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/docs/variables/Auth0Context.html -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cra-react-router/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/.env.sample -------------------------------------------------------------------------------- /examples/cra-react-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/.gitignore -------------------------------------------------------------------------------- /examples/cra-react-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/README.md -------------------------------------------------------------------------------- /examples/cra-react-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/package.json -------------------------------------------------------------------------------- /examples/cra-react-router/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/public/favicon.ico -------------------------------------------------------------------------------- /examples/cra-react-router/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/public/index.html -------------------------------------------------------------------------------- /examples/cra-react-router/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/App.css -------------------------------------------------------------------------------- /examples/cra-react-router/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/App.tsx -------------------------------------------------------------------------------- /examples/cra-react-router/src/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/Error.tsx -------------------------------------------------------------------------------- /examples/cra-react-router/src/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/Loading.tsx -------------------------------------------------------------------------------- /examples/cra-react-router/src/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/Nav.tsx -------------------------------------------------------------------------------- /examples/cra-react-router/src/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/Users.tsx -------------------------------------------------------------------------------- /examples/cra-react-router/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/index.tsx -------------------------------------------------------------------------------- /examples/cra-react-router/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/react-app-env.d.ts -------------------------------------------------------------------------------- /examples/cra-react-router/src/use-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/src/use-api.ts -------------------------------------------------------------------------------- /examples/cra-react-router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/cra-react-router/tsconfig.json -------------------------------------------------------------------------------- /examples/gatsby-app/.env.development.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/.env.development.sample -------------------------------------------------------------------------------- /examples/gatsby-app/.eslintrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gatsby-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/.gitignore -------------------------------------------------------------------------------- /examples/gatsby-app/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/.prettierignore -------------------------------------------------------------------------------- /examples/gatsby-app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/.prettierrc -------------------------------------------------------------------------------- /examples/gatsby-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/README.md -------------------------------------------------------------------------------- /examples/gatsby-app/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/gatsby-browser.js -------------------------------------------------------------------------------- /examples/gatsby-app/gatsby-config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trailingSlash: 'never', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/gatsby-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/package.json -------------------------------------------------------------------------------- /examples/gatsby-app/src/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/components/App.css -------------------------------------------------------------------------------- /examples/gatsby-app/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/components/Error.js -------------------------------------------------------------------------------- /examples/gatsby-app/src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/components/Loading.js -------------------------------------------------------------------------------- /examples/gatsby-app/src/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/components/Nav.js -------------------------------------------------------------------------------- /examples/gatsby-app/src/components/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/components/Users.js -------------------------------------------------------------------------------- /examples/gatsby-app/src/hooks/use-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/hooks/use-api.js -------------------------------------------------------------------------------- /examples/gatsby-app/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/pages/index.js -------------------------------------------------------------------------------- /examples/gatsby-app/src/pages/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/gatsby-app/src/pages/users.js -------------------------------------------------------------------------------- /examples/nextjs-app/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/.env.sample -------------------------------------------------------------------------------- /examples/nextjs-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/README.md -------------------------------------------------------------------------------- /examples/nextjs-app/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/components/App.css -------------------------------------------------------------------------------- /examples/nextjs-app/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/components/Error.js -------------------------------------------------------------------------------- /examples/nextjs-app/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/components/Loading.js -------------------------------------------------------------------------------- /examples/nextjs-app/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/components/Nav.js -------------------------------------------------------------------------------- /examples/nextjs-app/hooks/use-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/hooks/use-api.js -------------------------------------------------------------------------------- /examples/nextjs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/package.json -------------------------------------------------------------------------------- /examples/nextjs-app/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/pages/_app.js -------------------------------------------------------------------------------- /examples/nextjs-app/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/pages/_document.js -------------------------------------------------------------------------------- /examples/nextjs-app/pages/index.js: -------------------------------------------------------------------------------- 1 | export default function Home() { 2 | return <>; 3 | } 4 | -------------------------------------------------------------------------------- /examples/nextjs-app/pages/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/nextjs-app/pages/users.js -------------------------------------------------------------------------------- /examples/users-api/.env.sample: -------------------------------------------------------------------------------- 1 | DOMAIN=your-tenant.auth0.com 2 | AUDIENCE=https://api.example.com/users 3 | PORT=3001 4 | -------------------------------------------------------------------------------- /examples/users-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/users-api/README.md -------------------------------------------------------------------------------- /examples/users-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/users-api/package-lock.json -------------------------------------------------------------------------------- /examples/users-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/users-api/package.json -------------------------------------------------------------------------------- /examples/users-api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/examples/users-api/server.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/jest.setup.js -------------------------------------------------------------------------------- /opslevel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/opslevel.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /scripts/oidc-provider.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/scripts/oidc-provider.mjs -------------------------------------------------------------------------------- /src/auth-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/auth-state.tsx -------------------------------------------------------------------------------- /src/auth0-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/auth0-context.tsx -------------------------------------------------------------------------------- /src/auth0-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/auth0-provider.tsx -------------------------------------------------------------------------------- /src/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/errors.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/reducer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/reducer.tsx -------------------------------------------------------------------------------- /src/use-auth0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/use-auth0.tsx -------------------------------------------------------------------------------- /src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/utils.tsx -------------------------------------------------------------------------------- /src/with-auth0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/with-auth0.tsx -------------------------------------------------------------------------------- /src/with-authentication-required.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/src/with-authentication-required.tsx -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/static/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-react/HEAD/typedoc.js --------------------------------------------------------------------------------