├── .deep-dive.yaml ├── .dockerignore ├── .env ├── .env.development ├── .env.production ├── .env.test ├── .eslintrc.cjs ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── cache_cleanup.yml │ ├── ci.yml │ ├── enforce-license-compliance.yml │ ├── self-hosted-release-pr.yml │ ├── self-hosted-release.yml │ └── trigger-gazebo-preview.yml ├── .gitignore ├── .husky └── pre-commit ├── .huskyrc ├── .nvmrc ├── .prettierrc.json ├── .sentryclirc ├── .storybook ├── Layout.tsx ├── main.ts ├── manager.ts └── preview.tsx ├── .yarn └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION ├── codecov.yml ├── custom-headers └── _preview_headers ├── docker ├── Dockerfile ├── index.html ├── nginx-no-ipv6.conf ├── nginx.conf └── start-nginx.sh ├── index.html ├── package.json ├── postcss.config.mjs ├── public ├── _headers ├── _redirects ├── favicon.ico ├── logo-192x192.png ├── logo-256x256.png ├── logo.svg ├── logo_dark.svg ├── manifest.json ├── mockServiceWorker.js └── robots.txt ├── scripts ├── icon-list.mjs └── icons.mjs ├── src ├── App.test.tsx ├── App.tsx ├── DarkModeColors.mdx ├── LightModeColors.mdx ├── assets │ ├── billing │ │ ├── amex.svg │ │ ├── bank.svg │ │ ├── dinners-club.svg │ │ ├── discover.svg │ │ ├── jcb.svg │ │ ├── mastercard.svg │ │ ├── union-pay.svg │ │ └── visa.svg │ ├── codecovAI │ │ ├── pr-review-example-dark-mode.png │ │ ├── pr-review-example-light-mode.png │ │ ├── test-gen-example-dark-mode.png │ │ └── test-gen-example-light-mode.png │ ├── codecov_logo.png │ ├── enterprise-banner-bg.png │ ├── enterprise-rocket.png │ ├── flagManagement.svg │ ├── frontendAndBackend.jpg │ ├── githublogo.png │ ├── onboarding │ │ ├── env_variable_screenshot.png │ │ ├── org_list_install_app.png │ │ ├── org_secret_dark.png │ │ ├── org_secret_light.png │ │ ├── repo_secret_dark.png │ │ └── repo_secret_light.png │ ├── plan │ │ ├── parasol.png │ │ └── sentry_codecov.svg │ ├── providers │ │ ├── bitbucket-icon.svg │ │ ├── github-icon-white.svg │ │ ├── github-icon.svg │ │ ├── gitlab-icon.svg │ │ ├── okta-icon.svg │ │ ├── sentry-icon-white.svg │ │ └── sentry-icon.svg │ ├── repoConfig │ │ ├── codecov-report.svg │ │ └── patch-and-project.svg │ └── svg │ │ ├── codecov.tsx │ │ ├── flagManagement.svg │ │ ├── graphs │ │ ├── icicle.svg │ │ ├── index.js │ │ ├── sunburst.svg │ │ └── tree.svg │ │ ├── invoice.svg │ │ ├── onboardingTests │ │ ├── testsPRComment.svg │ │ ├── testsPRCommentDark.svg │ │ └── testsRunning.svg │ │ ├── signIn.svg │ │ └── umbrella.svg ├── config.js ├── config.test.js ├── custom-testing-library.js ├── globals.css ├── index.tsx ├── layouts │ ├── BaseLayout │ │ ├── BaseLayout.test.tsx │ │ ├── BaseLayout.tsx │ │ ├── hooks │ │ │ ├── NavigatorDataQueryOpts.test.tsx │ │ │ ├── NavigatorDataQueryOpts.ts │ │ │ ├── useUserAccessGate.js │ │ │ └── useUserAccessGate.test.tsx │ │ └── index.ts │ ├── EnterpriseLoginLayout │ │ ├── EnterpriseLoginLayout.test.tsx │ │ ├── EnterpriseLoginLayout.tsx │ │ ├── Header │ │ │ ├── Header.test.tsx │ │ │ ├── Header.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── Footer │ │ ├── Footer.test.tsx │ │ ├── Footer.tsx │ │ ├── FooterItem.test.tsx │ │ ├── FooterItem.tsx │ │ └── index.ts │ ├── Header │ │ ├── Header.test.tsx │ │ ├── Header.tsx │ │ ├── components │ │ │ ├── AdminLink │ │ │ │ ├── AdminLink.test.tsx │ │ │ │ ├── AdminLink.tsx │ │ │ │ └── index.ts │ │ │ ├── GuestHeader │ │ │ │ ├── GuestHeader.test.tsx │ │ │ │ ├── GuestHeader.tsx │ │ │ │ └── index.ts │ │ │ ├── HelpDropdown │ │ │ │ ├── HelpDropdown.test.tsx │ │ │ │ ├── HelpDropdown.tsx │ │ │ │ └── index.ts │ │ │ ├── Navigator │ │ │ │ ├── MyContextSwitcher.test.tsx │ │ │ │ ├── MyContextSwitcher.tsx │ │ │ │ ├── Navigator.test.tsx │ │ │ │ ├── Navigator.tsx │ │ │ │ └── index.ts │ │ │ ├── SeatDetails │ │ │ │ ├── SeatDetails.test.tsx │ │ │ │ ├── SeatDetails.tsx │ │ │ │ └── index.ts │ │ │ ├── ThemeToggle │ │ │ │ ├── ThemeToggle.test.tsx │ │ │ │ ├── ThemeToggle.tsx │ │ │ │ └── index.ts │ │ │ └── UserDropdown │ │ │ │ ├── UserDropdown.test.tsx │ │ │ │ ├── UserDropdown.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── LoginLayout │ │ ├── LoginLayout.test.tsx │ │ ├── LoginLayout.tsx │ │ └── index.ts │ ├── SidebarLayout │ │ ├── SidebarLayout.test.tsx │ │ ├── SidebarLayout.tsx │ │ └── index.ts │ ├── ToastNotifications │ │ ├── NotificationItem.jsx │ │ ├── ToastNotifications.jsx │ │ ├── ToastNotifications.test.jsx │ │ └── index.ts │ └── shared │ │ ├── ErrorBoundary │ │ ├── ErrorBoundary.test.tsx │ │ ├── ErrorBoundary.tsx │ │ └── index.ts │ │ ├── NetworkErrorBoundary │ │ ├── NetworkErrorBoundary.jsx │ │ ├── NetworkErrorBoundary.module.css │ │ ├── NetworkErrorBoundary.test.jsx │ │ ├── assets │ │ │ ├── error-open-umbrella.svg │ │ │ └── error-upsidedown-umbrella.svg │ │ └── index.ts │ │ ├── SilentNetworkError │ │ ├── SilentNetworkError.jsx │ │ ├── SilentNetworkError.test.jsx │ │ └── index.ts │ │ └── SilentNetworkErrorWrapper │ │ ├── SilentNetworkErrorWrapper.test.tsx │ │ ├── SilentNetworkErrorWrapper.tsx │ │ └── index.ts ├── mocks │ ├── browser.js │ └── handlers.js ├── old_ui │ ├── AppLink │ │ ├── AppLink.jsx │ │ ├── AppLink.test.jsx │ │ ├── index.js │ │ └── note.md │ ├── Avatar │ │ ├── Avatar.jsx │ │ ├── Avatar.test.jsx │ │ ├── BBAvatar.jsx │ │ └── index.js │ ├── Card │ │ ├── Card.jsx │ │ ├── Card.stories.jsx │ │ ├── Card.test.jsx │ │ └── index.js │ ├── Icon │ │ ├── Icon.jsx │ │ ├── Icon.stories.jsx │ │ ├── Icon.test.jsx │ │ ├── index.js │ │ └── svg │ │ │ ├── angleDown.svg │ │ │ ├── angleUp.svg │ │ │ ├── arrowLeft.svg │ │ │ ├── ban.svg │ │ │ ├── check.svg │ │ │ ├── chevronLeft.svg │ │ │ ├── chevronRight.svg │ │ │ ├── creditCard.svg │ │ │ ├── exclamationCircle.svg │ │ │ ├── fileAlt.svg │ │ │ ├── hamburger.svg │ │ │ ├── index.jsx │ │ │ ├── infoCircle.svg │ │ │ ├── search.svg │ │ │ ├── setting.svg │ │ │ ├── signOut.svg │ │ │ └── times.svg │ ├── Message │ │ ├── Message.jsx │ │ ├── Message.test.jsx │ │ └── index.js │ └── User │ │ ├── User.jsx │ │ ├── User.stories.jsx │ │ ├── User.test.jsx │ │ └── index.js ├── pages │ ├── AccountSettings │ │ ├── AccountSettings.jsx │ │ ├── AccountSettings.test.jsx │ │ ├── AccountSettingsSideMenu.jsx │ │ ├── AccountSettingsSideMenu.test.jsx │ │ ├── index.js │ │ ├── shared │ │ │ ├── BackLink │ │ │ │ ├── BackLink.jsx │ │ │ │ └── index.js │ │ │ └── Header │ │ │ │ ├── Header.test.tsx │ │ │ │ ├── Header.tsx │ │ │ │ └── index.js │ │ └── tabs │ │ │ ├── Access │ │ │ ├── Access.test.tsx │ │ │ ├── Access.tsx │ │ │ ├── CreateTokenModal.jsx │ │ │ ├── CreateTokenModal.test.jsx │ │ │ ├── SessionsTable.test.tsx │ │ │ ├── SessionsTable.tsx │ │ │ ├── TokensTable.test.tsx │ │ │ ├── TokensTable.tsx │ │ │ └── index.ts │ │ │ ├── Admin │ │ │ ├── Admin.jsx │ │ │ ├── Admin.test.jsx │ │ │ ├── DetailsSection │ │ │ │ ├── DetailsSection.jsx │ │ │ │ ├── DetailsSection.test.jsx │ │ │ │ └── index.js │ │ │ ├── GithubIntegrationSection │ │ │ │ ├── GithubIntegrationSection.jsx │ │ │ │ ├── GithubIntegrationSection.test.jsx │ │ │ │ └── index.js │ │ │ ├── ManageAdminCard │ │ │ │ ├── AddAdmins │ │ │ │ │ ├── AddAdmins.jsx │ │ │ │ │ ├── AddAdmins.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── AdminTable │ │ │ │ │ ├── AdminTable.test.tsx │ │ │ │ │ ├── AdminTable.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ManageAdminCard.jsx │ │ │ │ ├── ManageAdminCard.test.jsx │ │ │ │ └── index.js │ │ │ ├── StudentSection │ │ │ │ ├── StudentSection.jsx │ │ │ │ ├── StudentSection.test.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ ├── DeletionCard │ │ │ ├── DeletionCard.test.tsx │ │ │ ├── DeletionCard.tsx │ │ │ └── index.ts │ │ │ ├── OktaAccess │ │ │ ├── AdminAuthorizationBanner │ │ │ │ ├── AdminAuthorizationBanner.test.tsx │ │ │ │ ├── AdminAuthorizationBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── OktaAccess.test.tsx │ │ │ ├── OktaAccess.tsx │ │ │ ├── OktaConfigForm │ │ │ │ ├── OktaConfigForm.test.tsx │ │ │ │ ├── OktaConfigForm.tsx │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── useUpdateOktaConfig.test.tsx │ │ │ │ └── useUpdateOktaConfig.tsx │ │ │ ├── index.ts │ │ │ └── queries │ │ │ │ ├── OktaConfigQueryOpts.test.tsx │ │ │ │ └── OktaConfigQueryOpts.tsx │ │ │ ├── OrgUploadToken │ │ │ ├── GenerateOrgUploadToken.tsx │ │ │ ├── OrgUploadToken.test.tsx │ │ │ ├── OrgUploadToken.tsx │ │ │ ├── RegenerateOrgUploadToken.tsx │ │ │ ├── RegenrateTokenModal.tsx │ │ │ ├── TokenlessSection │ │ │ │ ├── TokenRequiredModal.test.tsx │ │ │ │ ├── TokenRequiredModal.tsx │ │ │ │ ├── TokenlessSection.test.tsx │ │ │ │ ├── TokenlessSection.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useSetUploadTokenRequired.test.tsx │ │ │ │ └── useSetUploadTokenRequired.tsx │ │ │ ├── index.ts │ │ │ └── useGenerateOrgUploadToken.ts │ │ │ ├── Profile │ │ │ ├── ActivationBanner │ │ │ │ ├── ActivationBanner.jsx │ │ │ │ ├── ActivationBanner.test.jsx │ │ │ │ ├── index.js │ │ │ │ ├── useSelfActivationMutation.js │ │ │ │ └── useSelfActivationMutation.test.jsx │ │ │ ├── AdminBanner │ │ │ │ ├── AdminBanner.jsx │ │ │ │ ├── AdminBanner.test.jsx │ │ │ │ └── index.js │ │ │ ├── NameEmailCard │ │ │ │ ├── NameEmailCard.jsx │ │ │ │ ├── NameEmailCard.test.jsx │ │ │ │ └── index.js │ │ │ ├── Profile.jsx │ │ │ ├── Profile.test.jsx │ │ │ └── index.js │ │ │ └── YAML │ │ │ ├── SuccessModal │ │ │ ├── SuccessModal.jsx │ │ │ ├── SuccessModal.test.jsx │ │ │ └── index.js │ │ │ ├── YAML.jsx │ │ │ ├── YAML.test.jsx │ │ │ ├── YamlEditor │ │ │ ├── YamlEditor.test.jsx │ │ │ ├── YamlEditor.tsx │ │ │ ├── codecov-theme.css │ │ │ └── index.js │ │ │ └── index.js │ ├── AdminSettings │ │ ├── AdminAccess │ │ │ ├── AdminAccess.test.tsx │ │ │ ├── AdminAccess.tsx │ │ │ ├── AdminAccessTable │ │ │ │ ├── AdminAccessTable.test.tsx │ │ │ │ ├── AdminAccessTable.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── useAdminAccessList.test.tsx │ │ │ │ └── useAdminAccessList.ts │ │ │ └── index.ts │ │ ├── AdminMembers │ │ │ ├── ActivationInfo │ │ │ │ ├── ActivationCount │ │ │ │ │ ├── ActivationCount.test.tsx │ │ │ │ │ ├── ActivationCount.tsx │ │ │ │ │ ├── ActivationLimit.jsx │ │ │ │ │ └── ActivationLimit.test.jsx │ │ │ │ ├── ActivationInfo.test.tsx │ │ │ │ ├── ActivationInfo.tsx │ │ │ │ ├── AutoActivateMembers │ │ │ │ │ ├── AutoActivateMembers.test.tsx │ │ │ │ │ └── AutoActivateMembers.tsx │ │ │ │ └── index.js │ │ │ ├── AdminMembers.jsx │ │ │ ├── AdminMembers.test.jsx │ │ │ ├── MemberList │ │ │ │ ├── MemberList.jsx │ │ │ │ ├── MemberList.test.jsx │ │ │ │ ├── MemberTable.test.jsx │ │ │ │ ├── MemberTable.tsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── AdminSettings.jsx │ │ ├── AdminSettings.test.jsx │ │ ├── AdminSettingsSidebar │ │ │ ├── AdminSettingsSidebar.jsx │ │ │ ├── AdminSettingsSidebar.test.jsx │ │ │ └── index.js │ │ └── index.js │ ├── AnalyticsPage │ │ ├── AnalyticsPage.jsx │ │ ├── AnalyticsPage.test.jsx │ │ ├── Chart │ │ │ ├── Chart.test.tsx │ │ │ ├── Chart.tsx │ │ │ ├── index.ts │ │ │ ├── useCoverage.test.tsx │ │ │ └── useCoverage.ts │ │ ├── ChartSelectors │ │ │ ├── ChartSelectors.jsx │ │ │ ├── ChartSelectors.test.jsx │ │ │ └── index.js │ │ ├── Tabs │ │ │ ├── Tabs.test.tsx │ │ │ ├── Tabs.tsx │ │ │ └── index.js │ │ ├── analytics.css │ │ └── index.js │ ├── CodecovAIPage │ │ ├── CodecovAICommands │ │ │ └── CodecovAICommands.tsx │ │ ├── CodecovAIPage.test.tsx │ │ ├── CodecovAIPage.tsx │ │ ├── ConfiguredRepositories │ │ │ └── ConfiguredRepositories.tsx │ │ ├── InstallCodecovAI │ │ │ └── InstallCodecovAI.tsx │ │ ├── LearnMoreBlurb │ │ │ └── LearnMoreBlurb.tsx │ │ ├── Tabs │ │ │ └── Tabs.tsx │ │ └── index.tsx │ ├── CommitDetailPage │ │ ├── CommitBundleAnalysis │ │ │ ├── BundleMessage │ │ │ │ ├── BundleMessage.test.tsx │ │ │ │ ├── BundleMessage.tsx │ │ │ │ └── index.ts │ │ │ ├── CommitBundleAnalysis.test.tsx │ │ │ ├── CommitBundleAnalysis.tsx │ │ │ ├── CommitBundleAnalysisTable │ │ │ │ ├── CommitBundleAnalysisTable.test.tsx │ │ │ │ ├── CommitBundleAnalysisTable.tsx │ │ │ │ └── index.ts │ │ │ ├── EmptyTable │ │ │ │ ├── EmptyTable.test.tsx │ │ │ │ ├── EmptyTable.tsx │ │ │ │ └── index.ts │ │ │ ├── FirstPullBanner │ │ │ │ ├── FirstPullBanner.test.tsx │ │ │ │ ├── FirstPullBanner.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── CommitCoverage │ │ │ ├── BotErrorBanner │ │ │ │ ├── BotErrorBanner.jsx │ │ │ │ ├── BotErrorBanner.test.jsx │ │ │ │ └── index.js │ │ │ ├── CommitCoverage.jsx │ │ │ ├── CommitCoverage.test.jsx │ │ │ ├── CommitCoverageSummary │ │ │ │ ├── CommitCoverageSummary.jsx │ │ │ │ ├── CommitCoverageSummary.test.jsx │ │ │ │ ├── CommitCoverageSummarySkeleton.jsx │ │ │ │ ├── CommitCoverageSummarySkeleton.test.jsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.js │ │ │ │ │ ├── useCommitForSummary.js │ │ │ │ │ └── useCommitForSummary.test.jsx │ │ │ │ └── index.js │ │ │ ├── CommitCoverageTabs │ │ │ │ ├── CommitCoverageTabs.jsx │ │ │ │ ├── CommitCoverageTabs.test.jsx │ │ │ │ └── index.js │ │ │ ├── ErroredUploads │ │ │ │ ├── ErroredUploads.jsx │ │ │ │ ├── ErroredUploads.test.jsx │ │ │ │ └── index.js │ │ │ ├── FirstPullBanner │ │ │ │ ├── FirstPullBanner.test.tsx │ │ │ │ ├── FirstPullBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── UploadsCard │ │ │ │ ├── RenderError.tsx │ │ │ │ ├── UploadItem.test.tsx │ │ │ │ ├── UploadItem.tsx │ │ │ │ ├── UploadReference.tsx │ │ │ │ ├── UploadsCard.test.tsx │ │ │ │ ├── UploadsCard.tsx │ │ │ │ ├── index.ts │ │ │ │ └── useUploads │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useUploads.test.tsx │ │ │ │ │ └── useUploads.ts │ │ │ ├── YamlErrorBanner │ │ │ │ ├── YamlErrorBanner.test.tsx │ │ │ │ ├── YamlErrorBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── YamlModal │ │ │ │ ├── YAMLViewer.css │ │ │ │ ├── YAMLViewer.jsx │ │ │ │ ├── YAMLViewer.test.jsx │ │ │ │ ├── YamlModal.jsx │ │ │ │ ├── YamlModal.test.jsx │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── routes │ │ │ │ ├── CommitDetailFileExplorer │ │ │ │ ├── CommitDetailFileExplorer.test.tsx │ │ │ │ ├── CommitDetailFileExplorer.tsx │ │ │ │ ├── CommitDetailFileExplorerTable.test.tsx │ │ │ │ ├── CommitDetailFileExplorerTable.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useRepoCommitContentsTable.test.tsx │ │ │ │ │ └── useRepoCommitContentsTable.tsx │ │ │ │ └── index.ts │ │ │ │ ├── CommitDetailFileViewer │ │ │ │ ├── CommitDetailFileViewer.jsx │ │ │ │ ├── CommitDetailFileViewer.test.jsx │ │ │ │ └── index.js │ │ │ │ ├── ComponentsSelector │ │ │ │ ├── ComponentsSelector.test.tsx │ │ │ │ ├── ComponentsSelector.tsx │ │ │ │ └── index.ts │ │ │ │ ├── FilesChangedTab │ │ │ │ ├── FilesChangedTab.test.tsx │ │ │ │ ├── FilesChangedTab.tsx │ │ │ │ ├── FilesChangedTable │ │ │ │ │ ├── FilesChangedTable.test.tsx │ │ │ │ │ ├── FilesChangedTable.tsx │ │ │ │ │ └── index.js │ │ │ │ ├── FilesChangedTableTeam │ │ │ │ │ ├── FilesChangedTableTeam.test.tsx │ │ │ │ │ ├── FilesChangedTableTeam.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── shared │ │ │ │ │ └── CommitFileDiff │ │ │ │ │ ├── CommitFileDiff.test.tsx │ │ │ │ │ ├── CommitFileDiff.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── IndirectChangesTab │ │ │ │ ├── IndirectChangesTab.jsx │ │ │ │ ├── IndirectChangesTab.test.jsx │ │ │ │ ├── IndirectChangesTable │ │ │ │ ├── CommitFileDiff │ │ │ │ │ ├── CommitFileDiff.test.tsx │ │ │ │ │ ├── CommitFileDiff.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── IndirectChangesTable.test.tsx │ │ │ │ ├── IndirectChangesTable.tsx │ │ │ │ └── index.ts │ │ │ │ └── index.js │ │ ├── CommitDetailPage.test.tsx │ │ ├── CommitDetailPage.tsx │ │ ├── Dropdowns │ │ │ ├── CommitBundleDropdown.test.tsx │ │ │ ├── CommitBundleDropdown.tsx │ │ │ ├── CommitCoverageDropdown.test.tsx │ │ │ └── CommitCoverageDropdown.tsx │ │ ├── Header │ │ │ ├── Header.test.tsx │ │ │ ├── Header.tsx │ │ │ ├── HeaderDefault │ │ │ │ ├── HeaderDefault.jsx │ │ │ │ ├── HeaderDefault.test.jsx │ │ │ │ ├── index.js │ │ │ │ └── queries │ │ │ │ │ ├── CommitHeaderDataQueryOpts.test.tsx │ │ │ │ │ └── CommitHeaderDataQueryOpts.tsx │ │ │ ├── HeaderTeam │ │ │ │ ├── HeaderTeam.jsx │ │ │ │ ├── HeaderTeam.test.jsx │ │ │ │ ├── index.js │ │ │ │ └── queries │ │ │ │ │ ├── CommitHeaderDataTeamQueryOpts.test.tsx │ │ │ │ │ └── CommitHeaderDataTeamQueryOpts.tsx │ │ │ ├── PullLabel │ │ │ │ ├── PullLabel.jsx │ │ │ │ ├── PullLabel.test.jsx │ │ │ │ └── index.js │ │ │ ├── ToggleHeader │ │ │ │ └── ToggleHeader.tsx │ │ │ └── index.ts │ │ ├── index.js │ │ └── queries │ │ │ ├── CommitPageDataQueryOpts.test.tsx │ │ │ ├── CommitPageDataQueryOpts.tsx │ │ │ ├── IgnoredIdsQueryOptions.test.tsx │ │ │ └── IgnoredIdsQueryOptions.ts │ ├── EnterpriseLandingPage │ │ ├── EnterpriseLandingPage.test.tsx │ │ ├── EnterpriseLandingPage.tsx │ │ ├── ProviderCard │ │ │ ├── ProviderCard.test.tsx │ │ │ └── ProviderCard.tsx │ │ ├── index.ts │ │ ├── useEnterpriseRedirect.test.tsx │ │ └── useEnterpriseRedirect.ts │ ├── LoginPage │ │ ├── LoginButton.jsx │ │ ├── LoginButton.test.jsx │ │ ├── LoginPage.jsx │ │ ├── LoginPage.test.jsx │ │ ├── SessionExpiredBanner.tsx │ │ └── index.js │ ├── MembersPage │ │ ├── MembersActivation │ │ │ ├── Activation │ │ │ │ ├── Activation.jsx │ │ │ │ ├── Activation.test.jsx │ │ │ │ ├── ChangePlanLink │ │ │ │ │ ├── ChangePlanLink.test.tsx │ │ │ │ │ └── ChangePlanLink.tsx │ │ │ │ └── index.js │ │ │ ├── AutoActivate │ │ │ │ ├── AutoActivate.jsx │ │ │ │ ├── AutoActivate.test.jsx │ │ │ │ └── index.js │ │ │ ├── MembersActivation.jsx │ │ │ ├── MembersActivation.test.jsx │ │ │ └── index.js │ │ ├── MembersList │ │ │ ├── MembersList.jsx │ │ │ ├── MembersList.test.jsx │ │ │ ├── MembersTable │ │ │ │ ├── MembersTable.test.tsx │ │ │ │ └── MembersTable.tsx │ │ │ ├── UpgradeModal │ │ │ │ ├── UpgradeModal.jsx │ │ │ │ ├── UpgradeModal.test.jsx │ │ │ │ └── index.js │ │ │ ├── enums.js │ │ │ └── index.js │ │ ├── MembersPage.jsx │ │ ├── MembersPage.test.jsx │ │ ├── MissingMemberBanner │ │ │ ├── MissingMemberBanner.jsx │ │ │ ├── MissingMemberBanner.test.jsx │ │ │ └── index.js │ │ ├── Tabs │ │ │ ├── Tabs.test.tsx │ │ │ ├── Tabs.tsx │ │ │ └── index.js │ │ └── index.js │ ├── NotFound │ │ ├── NotFound.jsx │ │ ├── NotFound.module.css │ │ ├── NotFound.test.jsx │ │ ├── assets │ │ │ └── error-404.svg │ │ └── index.js │ ├── OwnerPage │ │ ├── HeaderBanners │ │ │ ├── ExceededUploadsAlert │ │ │ │ ├── ExceededUploadsAlert.jsx │ │ │ │ ├── ExceededUploadsAlert.test.jsx │ │ │ │ └── index.js │ │ │ ├── GithubConfigBanner │ │ │ │ ├── GithubConfigBanner.jsx │ │ │ │ ├── GithubConfigBanner.test.jsx │ │ │ │ └── index.js │ │ │ ├── HeaderBanners.jsx │ │ │ ├── HeaderBanners.test.jsx │ │ │ ├── ReachingUploadLimitAlert │ │ │ │ ├── ReachingUploadLimitAlert.jsx │ │ │ │ ├── ReachingUploadLimitAlert.test.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── OnboardingContainerContext │ │ │ ├── context.test.tsx │ │ │ └── context.tsx │ │ ├── OnboardingOrg │ │ │ ├── OnboardingOrg.test.tsx │ │ │ ├── OnboardingOrg.tsx │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── OwnerPage.jsx │ │ ├── OwnerPage.test.jsx │ │ ├── Tabs │ │ │ ├── Tabs.test.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── TrialReminder │ │ │ │ ├── TrialReminder.test.tsx │ │ │ │ ├── TrialReminder.tsx │ │ │ │ └── index.ts │ │ │ └── index.js │ │ ├── hooks │ │ │ ├── index.js │ │ │ ├── useOwnerPageData.js │ │ │ └── useOwnerPageData.test.jsx │ │ └── index.js │ ├── PlanPage │ │ ├── PlanBreadcrumb.jsx │ │ ├── PlanPage.test.tsx │ │ ├── PlanPage.tsx │ │ ├── Tabs │ │ │ ├── Tabs.test.tsx │ │ │ ├── Tabs.tsx │ │ │ └── index.js │ │ ├── context.test.jsx │ │ ├── context.tsx │ │ ├── index.js │ │ ├── queries │ │ │ ├── PlanPageDataQueryOpts.test.tsx │ │ │ └── PlanPageDataQueryOpts.ts │ │ └── subRoutes │ │ │ ├── CancelPlanPage │ │ │ ├── CancelPlanPage.test.tsx │ │ │ ├── CancelPlanPage.tsx │ │ │ ├── index.js │ │ │ ├── subRoutes │ │ │ │ ├── DowngradePlan │ │ │ │ │ ├── CancelButton │ │ │ │ │ │ ├── CancelButton.jsx │ │ │ │ │ │ ├── CancelButton.test.jsx │ │ │ │ │ │ ├── hooks.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── useBarecancel.js │ │ │ │ │ │ ├── useBarecancel.test.jsx │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── utils.test.js │ │ │ │ │ ├── DowngradePlan.jsx │ │ │ │ │ ├── DowngradePlan.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── SpecialOffer │ │ │ │ │ ├── SpecialOffer.jsx │ │ │ │ │ ├── SpecialOffer.test.jsx │ │ │ │ │ └── index.js │ │ │ │ └── TeamPlanSpecialOffer │ │ │ │ │ ├── TeamPlanCard │ │ │ │ │ ├── TeamPlanCard.test.tsx │ │ │ │ │ ├── TeamPlanCard.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TeamPlanSpecialOffer.test.tsx │ │ │ │ │ ├── TeamPlanSpecialOffer.tsx │ │ │ │ │ └── index.ts │ │ │ └── umbrella.svg │ │ │ ├── CurrentOrgPlan │ │ │ ├── AccountOrgs │ │ │ │ ├── AccountOrgs.test.tsx │ │ │ │ ├── AccountOrgs.tsx │ │ │ │ └── index.ts │ │ │ ├── BillingDetails │ │ │ │ ├── Address │ │ │ │ │ ├── AddressCard.test.tsx │ │ │ │ │ ├── AddressCard.tsx │ │ │ │ │ └── AddressForm.tsx │ │ │ │ ├── BillingDetails.test.tsx │ │ │ │ ├── BillingDetails.tsx │ │ │ │ ├── EmailAddress │ │ │ │ │ ├── EmailAddress.test.tsx │ │ │ │ │ ├── EmailAddress.tsx │ │ │ │ │ └── index.js │ │ │ │ ├── PaymentCard │ │ │ │ │ ├── BankInformation.tsx │ │ │ │ │ ├── CardInformation.jsx │ │ │ │ │ ├── PaymentCard.jsx │ │ │ │ │ ├── PaymentCard.test.jsx │ │ │ │ │ ├── PaymentMethodForm.test.tsx │ │ │ │ │ ├── PaymentMethodForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── CurrentOrgPlan.test.tsx │ │ │ ├── CurrentOrgPlan.tsx │ │ │ ├── CurrentPlanCard │ │ │ │ ├── CurrentPlanCard.test.tsx │ │ │ │ ├── CurrentPlanCard.tsx │ │ │ │ ├── EnterprisePlanCard │ │ │ │ │ ├── EnterprisePlanCard.jsx │ │ │ │ │ ├── EnterprisePlanCard.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── FreePlanCard │ │ │ │ │ ├── FreePlanCard.jsx │ │ │ │ │ ├── FreePlanCard.test.jsx │ │ │ │ │ ├── PlanUpgradePro │ │ │ │ │ │ ├── PlanUpgradePro.jsx │ │ │ │ │ │ ├── PlanUpgradePro.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── PlanUpgradeTeam │ │ │ │ │ │ ├── PlanUpgradeTeam.jsx │ │ │ │ │ │ ├── PlanUpgradeTeam.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ProPlanSubheading │ │ │ │ │ │ ├── ProPlanSubheading.test.tsx │ │ │ │ │ │ ├── ProPlanSubheading.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.js │ │ │ │ ├── PaidPlanCard │ │ │ │ │ ├── PaidPlanCard.test.tsx │ │ │ │ │ ├── PaidPlanCard.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── shared │ │ │ │ │ ├── ActionsBilling │ │ │ │ │ ├── ActionsBilling.jsx │ │ │ │ │ ├── ActionsBilling.test.jsx │ │ │ │ │ └── index.js │ │ │ │ │ └── PlanPricing │ │ │ │ │ ├── PlanPricing.jsx │ │ │ │ │ ├── PlanPricing.test.jsx │ │ │ │ │ └── index.js │ │ │ ├── InfoAlertCancellation │ │ │ │ ├── InfoAlertCancellation.test.tsx │ │ │ │ ├── InfoAlertCancellation.tsx │ │ │ │ └── index.ts │ │ │ ├── InfoMessageStripeCallback │ │ │ │ ├── InfoMessageStripeCallback.test.tsx │ │ │ │ ├── InfoMessageStripeCallback.tsx │ │ │ │ └── index.ts │ │ │ ├── LatestInvoiceCard │ │ │ │ ├── LatestInvoiceCard.test.tsx │ │ │ │ ├── LatestInvoiceCard.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── queries │ │ │ │ ├── EnterpriseAccountDetailsQueryOpts.test.tsx │ │ │ │ ├── EnterpriseAccountDetailsQueryOpts.ts │ │ │ │ ├── InfiniteAccountOrganizationsQueryOpts.test.tsx │ │ │ │ └── InfiniteAccountOrganizationsQueryOpts.ts │ │ │ ├── useCurrentOrgPlanPageData.test.tsx │ │ │ └── useCurrentOrgPlanPageData.tsx │ │ │ ├── InvoiceDetailsPage │ │ │ ├── InvoiceDetail.jsx │ │ │ ├── InvoiceDetail.test.tsx │ │ │ ├── index.ts │ │ │ └── sections │ │ │ │ ├── InvoiceFooter.jsx │ │ │ │ ├── InvoiceFooter.test.jsx │ │ │ │ ├── InvoiceHeader.test.tsx │ │ │ │ ├── InvoiceHeader.tsx │ │ │ │ ├── InvoiceItems.jsx │ │ │ │ ├── InvoiceItems.test.jsx │ │ │ │ ├── InvoiceOverview.tsx │ │ │ │ ├── generateAddressInfo.js │ │ │ │ └── generateAddressInfo.test.js │ │ │ ├── InvoicesPage │ │ │ ├── InvoiceCard.jsx │ │ │ ├── InvoicesPage.jsx │ │ │ ├── InvoicesPage.test.jsx │ │ │ └── index.js │ │ │ └── UpgradePlanPage │ │ │ ├── PlanDetailsControls │ │ │ ├── PlanDetailsControls.test.tsx │ │ │ ├── PlanDetailsControls.tsx │ │ │ └── index.ts │ │ │ ├── UpgradeDetails │ │ │ ├── ProPlanDetails │ │ │ │ ├── ProPlanDetails.jsx │ │ │ │ ├── ProPlanDetails.test.jsx │ │ │ │ └── index.js │ │ │ ├── SentryPlanDetails │ │ │ │ ├── SentryPlanDetails.jsx │ │ │ │ ├── SentryPlanDetails.test.jsx │ │ │ │ └── index.js │ │ │ ├── TeamPlanDetails │ │ │ │ ├── TeamPlanDetails.jsx │ │ │ │ ├── TeamPlanDetails.test.jsx │ │ │ │ └── index.js │ │ │ ├── UpgradeDetails.test.tsx │ │ │ ├── UpgradeDetails.tsx │ │ │ └── index.ts │ │ │ ├── UpgradeForm │ │ │ ├── Controllers │ │ │ │ ├── Controller.test.tsx │ │ │ │ ├── Controller.tsx │ │ │ │ ├── ProPlanController │ │ │ │ │ ├── BillingOptions │ │ │ │ │ │ ├── BillingOptions.test.tsx │ │ │ │ │ │ ├── BillingOptions.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PriceCallout │ │ │ │ │ │ ├── PriceCallout.test.tsx │ │ │ │ │ │ ├── PriceCallout.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ProPlanController.test.tsx │ │ │ │ │ ├── ProPlanController.tsx │ │ │ │ │ ├── UserCount │ │ │ │ │ │ ├── UserCount.test.tsx │ │ │ │ │ │ ├── UserCount.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── SentryPlanController │ │ │ │ │ ├── BillingOptions │ │ │ │ │ │ ├── BillingOptions.test.tsx │ │ │ │ │ │ ├── BillingOptions.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PriceCallout │ │ │ │ │ │ ├── PriceCallout.test.tsx │ │ │ │ │ │ ├── PriceCallout.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SentryPlanController.test.tsx │ │ │ │ │ ├── SentryPlanController.tsx │ │ │ │ │ ├── UserCount │ │ │ │ │ │ ├── UserCount.test.tsx │ │ │ │ │ │ ├── UserCount.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TeamPlanController │ │ │ │ │ ├── BillingOptions │ │ │ │ │ │ ├── BillingOptions.test.tsx │ │ │ │ │ │ ├── BillingOptions.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ErrorBanner │ │ │ │ │ │ ├── ErrorBanner.test.tsx │ │ │ │ │ │ ├── ErrorBanner.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── PriceCallout │ │ │ │ │ │ ├── PriceCallout.test.tsx │ │ │ │ │ │ ├── PriceCallout.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TeamPlanController.test.tsx │ │ │ │ │ ├── TeamPlanController.tsx │ │ │ │ │ ├── UserCount │ │ │ │ │ │ ├── UserCount.test.tsx │ │ │ │ │ │ ├── UserCount.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ ├── PendingUpgradeModal.test.tsx │ │ │ ├── PendingUpgradeModal.tsx │ │ │ ├── PersonalOrgWarning.tsx │ │ │ ├── PlanTypeOptions │ │ │ │ ├── PlanTypeOptions.test.tsx │ │ │ │ ├── PlanTypeOptions.tsx │ │ │ │ └── index.ts │ │ │ ├── UpdateBlurb │ │ │ │ ├── UpdateBlurb.test.tsx │ │ │ │ ├── UpdateBlurb.tsx │ │ │ │ └── index.ts │ │ │ ├── UpdateButton │ │ │ │ ├── UpdateButton.test.tsx │ │ │ │ ├── UpdateButton.tsx │ │ │ │ └── index.ts │ │ │ ├── UpgradeForm.test.tsx │ │ │ ├── UpgradeForm.tsx │ │ │ ├── constants.tsx │ │ │ ├── hooks │ │ │ │ ├── index.js │ │ │ │ ├── usePlanParams.test.tsx │ │ │ │ ├── usePlanParams.ts │ │ │ │ └── useUpgradeControls.ts │ │ │ └── index.ts │ │ │ ├── UpgradePlanPage.jsx │ │ │ ├── UpgradePlanPage.test.jsx │ │ │ └── index.js │ ├── PullRequestPage │ │ ├── Dropdowns │ │ │ ├── PullBundleDropdown.test.tsx │ │ │ ├── PullBundleDropdown.tsx │ │ │ ├── PullCoverageDropdown.test.tsx │ │ │ └── PullCoverageDropdown.tsx │ │ ├── Header │ │ │ ├── Header.test.tsx │ │ │ ├── Header.tsx │ │ │ ├── HeaderDefault │ │ │ │ ├── HeaderDefault.test.tsx │ │ │ │ ├── HeaderDefault.tsx │ │ │ │ ├── index.ts │ │ │ │ └── queries │ │ │ │ │ ├── PullHeadDataQueryOpts.test.tsx │ │ │ │ │ └── PullHeadDataQueryOpts.tsx │ │ │ ├── HeaderTeam │ │ │ │ ├── HeaderTeam.test.tsx │ │ │ │ ├── HeaderTeam.tsx │ │ │ │ ├── index.ts │ │ │ │ └── queries │ │ │ │ │ ├── PullHeadDataTeamQueryOpts.test.tsx │ │ │ │ │ └── PullHeadDataTeamQueryOpts.tsx │ │ │ ├── ToggleHeader │ │ │ │ └── ToggleHeader.tsx │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── PullBundleAnalysis │ │ │ ├── BundleMessage │ │ │ │ ├── BundleMessage.test.tsx │ │ │ │ ├── BundleMessage.tsx │ │ │ │ └── index.ts │ │ │ ├── EmptyTable │ │ │ │ ├── EmptyTable.test.tsx │ │ │ │ ├── EmptyTable.tsx │ │ │ │ └── index.ts │ │ │ ├── FirstPullBanner │ │ │ │ ├── FirstPullBanner.test.tsx │ │ │ │ ├── FirstPullBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── PullBundleAnalysis.test.tsx │ │ │ ├── PullBundleAnalysis.tsx │ │ │ ├── PullBundleComparisonTable │ │ │ │ ├── PullBundleComparisonTable.test.tsx │ │ │ │ ├── PullBundleComparisonTable.tsx │ │ │ │ └── index.ts │ │ │ ├── PullBundleHeadTable │ │ │ │ ├── PullBundleHeadTable.test.tsx │ │ │ │ ├── PullBundleHeadTable.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── PullCoverage │ │ │ ├── FirstPullBanner │ │ │ │ ├── FirstPullBanner.test.tsx │ │ │ │ ├── FirstPullBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── PullCoverage.test.tsx │ │ │ ├── PullCoverage.tsx │ │ │ ├── PullCoverageTabs │ │ │ │ ├── PullCoverageTabs.jsx │ │ │ │ ├── PullCoverageTabs.test.jsx │ │ │ │ ├── index.ts │ │ │ │ ├── useTabsCounts.test.tsx │ │ │ │ └── useTabsCounts.ts │ │ │ ├── Summary │ │ │ │ ├── CompareSummary │ │ │ │ │ ├── CompareSummary.jsx │ │ │ │ │ ├── CompareSummary.test.jsx │ │ │ │ │ ├── CompareSummarySkeleton.jsx │ │ │ │ │ ├── CompareSummarySkeleton.test.jsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── usePullForCompareSummary.js │ │ │ │ │ └── usePullForCompareSummary.test.js │ │ │ │ ├── Summary.test.tsx │ │ │ │ ├── Summary.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── routes │ │ │ │ ├── CommitsTab │ │ │ │ ├── CommitsTab.test.tsx │ │ │ │ ├── CommitsTab.tsx │ │ │ │ ├── CommitsTable │ │ │ │ │ ├── CommitsTable.test.tsx │ │ │ │ │ ├── CommitsTable.tsx │ │ │ │ │ ├── Title │ │ │ │ │ │ ├── Title.test.tsx │ │ │ │ │ │ ├── Title.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── createCommitsTableData.test.tsx │ │ │ │ │ ├── createCommitsTableData.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── ComponentsSelector │ │ │ │ ├── ComponentsSelector.test.tsx │ │ │ │ ├── ComponentsSelector.tsx │ │ │ │ └── index.ts │ │ │ │ ├── ComponentsTab │ │ │ │ ├── ComponentsNotConfigured │ │ │ │ │ ├── ComponentsNotConfigured.jsx │ │ │ │ │ ├── ComponentsNotConfigured.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── ComponentsTable.test.jsx │ │ │ │ ├── ComponentsTable.tsx │ │ │ │ ├── index.ts │ │ │ │ └── queries │ │ │ │ │ ├── ComponentComparisonQueryOpts.test.tsx │ │ │ │ │ └── ComponentComparisonQueryOpts.tsx │ │ │ │ ├── FileExplorer │ │ │ │ ├── FileExplorer.test.tsx │ │ │ │ ├── FileExplorer.tsx │ │ │ │ ├── FileExplorerTable │ │ │ │ │ ├── FileExplorerTable.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useFileExplorerTableData.tsx │ │ │ │ └── index.ts │ │ │ │ ├── FileViewer │ │ │ │ ├── FileViewer.jsx │ │ │ │ ├── FileViewer.test.jsx │ │ │ │ └── index.js │ │ │ │ ├── FilesChangedTab │ │ │ │ ├── FilesChanged │ │ │ │ │ ├── FilesChanged.jsx │ │ │ │ │ ├── FilesChanged.test.jsx │ │ │ │ │ ├── FilesChangedTable │ │ │ │ │ │ ├── FilesChangedTable.test.tsx │ │ │ │ │ │ ├── FilesChangedTable.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── NameColumn │ │ │ │ │ │ ├── NameColumn.jsx │ │ │ │ │ │ ├── NameColumn.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── PullFileDiff │ │ │ │ │ │ ├── PullFileDiff.test.tsx │ │ │ │ │ │ ├── PullFileDiff.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TableTeam │ │ │ │ │ │ ├── TableTeam.test.tsx │ │ │ │ │ │ ├── TableTeam.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── useImpactedFilesTable.js │ │ │ │ │ │ └── useImpactedFilesTable.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── FilesChangedTab.test.tsx │ │ │ │ ├── FilesChangedTab.tsx │ │ │ │ └── index.ts │ │ │ │ ├── FlagsTab │ │ │ │ ├── FlagsTab.test.tsx │ │ │ │ ├── FlagsTab.tsx │ │ │ │ └── index.ts │ │ │ │ └── IndirectChangesTab │ │ │ │ ├── IndirectChangedFiles │ │ │ │ ├── IndirectChangedFiles.test.tsx │ │ │ │ ├── IndirectChangedFiles.tsx │ │ │ │ ├── NameColumn │ │ │ │ │ ├── NameColumn.jsx │ │ │ │ │ ├── NameColumn.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useIndirectChangedFilesTable.test.tsx │ │ │ │ │ └── useIndirectChangedFilesTable.ts │ │ │ │ └── index.ts │ │ │ │ ├── IndirectChangesInfo │ │ │ │ ├── IndirectChangesInfo.jsx │ │ │ │ ├── IndirectChangesInfo.test.jsx │ │ │ │ └── index.js │ │ │ │ ├── IndirectChangesTab.jsx │ │ │ │ ├── IndirectChangesTab.test.jsx │ │ │ │ ├── PullFileDiff │ │ │ │ ├── PullFileDiff.test.tsx │ │ │ │ ├── PullFileDiff.tsx │ │ │ │ └── index.ts │ │ │ │ └── index.js │ │ ├── PullRequestPage.test.tsx │ │ ├── PullRequestPage.tsx │ │ ├── index.ts │ │ ├── queries │ │ │ ├── PullPageDataQueryOpts.test.tsx │ │ │ └── PullPageDataQueryOpts.tsx │ │ └── utils │ │ │ ├── index.js │ │ │ ├── paths.js │ │ │ └── paths.test.js │ ├── RepoPage │ │ ├── ATSTab │ │ │ ├── ATSConfigured.test.tsx │ │ │ ├── ATSConfigured.tsx │ │ │ ├── ATSNotConfigured.test.tsx │ │ │ └── ATSNotConfigured.tsx │ │ ├── ActivationAlert │ │ │ ├── ActivationAlert.test.tsx │ │ │ ├── ActivationAlert.tsx │ │ │ ├── ActivationRequiredAlert │ │ │ │ ├── ActivationRequiredAlert.test.tsx │ │ │ │ ├── ActivationRequiredAlert.tsx │ │ │ │ └── index.ts │ │ │ ├── ActivationRequiredSelfHosted │ │ │ │ ├── ActivationRequiredSelfHosted.test.tsx │ │ │ │ ├── ActivationRequiredSelfHosted.tsx │ │ │ │ └── index.ts │ │ │ ├── FreePlanSeatsTakenAlert │ │ │ │ ├── FreePlanSeatsTakenAlert.test.tsx │ │ │ │ ├── FreePlanSeatsTakenAlert.tsx │ │ │ │ └── index.ts │ │ │ ├── PaidPlanSeatsTakenAlert │ │ │ │ ├── PaidPlanSeatsTakenAlert.test.tsx │ │ │ │ ├── PaidPlanSeatsTakenAlert.tsx │ │ │ │ └── index.ts │ │ │ ├── UnauthorizedRepoDisplay │ │ │ │ ├── UnauthorizedRepoDisplay.test.tsx │ │ │ │ ├── UnauthorizedRepoDisplay.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── BundlesTab │ │ │ ├── BundleContent │ │ │ │ ├── AssetsTable │ │ │ │ │ ├── AssetsTable.test.tsx │ │ │ │ │ ├── AssetsTable.tsx │ │ │ │ │ ├── EmptyTable.test.tsx │ │ │ │ │ ├── EmptyTable.tsx │ │ │ │ │ ├── ModulesTable.test.tsx │ │ │ │ │ ├── ModulesTable.tsx │ │ │ │ │ ├── assetTableHelpers.test.ts │ │ │ │ │ ├── assetTableHelpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useBundleAssetsTable.test.tsx │ │ │ │ │ └── useBundleAssetsTable.ts │ │ │ │ ├── BundleChart │ │ │ │ │ ├── BundleChart.test.tsx │ │ │ │ │ ├── BundleChart.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useBundleChartData.test.tsx │ │ │ │ │ └── useBundleChartData.ts │ │ │ │ ├── BundleContent.test.tsx │ │ │ │ ├── BundleContent.tsx │ │ │ │ ├── BundleDetails │ │ │ │ │ ├── BundleDetails.test.tsx │ │ │ │ │ ├── BundleDetails.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── BundleSelection │ │ │ │ │ ├── BranchSelector.test.tsx │ │ │ │ │ ├── BranchSelector.tsx │ │ │ │ │ ├── BundleSelection.test.tsx │ │ │ │ │ ├── BundleSelection.tsx │ │ │ │ │ ├── BundleSelector.test.tsx │ │ │ │ │ ├── BundleSelector.tsx │ │ │ │ │ ├── LoadSelector.test.tsx │ │ │ │ │ ├── LoadSelector.tsx │ │ │ │ │ ├── TypeSelector.test.tsx │ │ │ │ │ ├── TypeSelector.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ErrorBanner │ │ │ │ │ ├── ErrorBanner.test.tsx │ │ │ │ │ ├── ErrorBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── InfoBanner │ │ │ │ │ ├── InfoBanner.test.tsx │ │ │ │ │ ├── InfoBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TrendDropdown.test.tsx │ │ │ │ ├── TrendDropdown.tsx │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ │ ├── BundleOnboarding │ │ │ │ ├── BundleOnboarding.test.tsx │ │ │ │ ├── BundleOnboarding.tsx │ │ │ │ ├── LearnMoreBlurb │ │ │ │ │ ├── LearnMoreBlurb.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── NuxtOnboarding │ │ │ │ │ ├── NuxtOnboarding.test.tsx │ │ │ │ │ ├── NuxtOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RemixOnboarding │ │ │ │ │ ├── RemixOnboarding.test.tsx │ │ │ │ │ ├── RemixOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RollupOnboarding │ │ │ │ │ ├── RollupOnboarding.test.tsx │ │ │ │ │ ├── RollupOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SolidStartOnboarding │ │ │ │ │ ├── SolidStartOnboarding.test.tsx │ │ │ │ │ ├── SolidStartOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SvelteKitOnboarding │ │ │ │ │ ├── SvelteKitOnboarding.test.tsx │ │ │ │ │ ├── SvelteKitOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ViteOnboarding │ │ │ │ │ ├── ViteOnboarding.test.tsx │ │ │ │ │ ├── ViteOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── WebpackOnboarding │ │ │ │ │ ├── WebpackOnboarding.test.tsx │ │ │ │ │ ├── WebpackOnboarding.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── BundlesTab.test.tsx │ │ │ ├── BundlesTab.tsx │ │ │ └── index.ts │ │ ├── CommitsTab │ │ │ ├── CommitsTab.jsx │ │ │ ├── CommitsTab.test.jsx │ │ │ ├── CommitsTable │ │ │ │ ├── CommitsTable.test.tsx │ │ │ │ ├── CommitsTable.tsx │ │ │ │ ├── Title │ │ │ │ │ ├── Title.test.tsx │ │ │ │ │ ├── Title.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── createCommitsTableData.test.tsx │ │ │ │ ├── createCommitsTableData.tsx │ │ │ │ └── index.ts │ │ │ ├── enums.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useCommitsTabBranchSelector.test.tsx │ │ │ │ └── useCommitsTabBranchSelector.ts │ │ │ └── index.ts │ │ ├── ConfigTab │ │ │ ├── ConfigTab.test.tsx │ │ │ ├── ConfigTab.tsx │ │ │ ├── index.js │ │ │ └── tabs │ │ │ │ ├── BadgesAndGraphsTab │ │ │ │ ├── Badges │ │ │ │ │ ├── Badges.test.tsx │ │ │ │ │ ├── Badges.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── BadgesAndGraphsTab.test.tsx │ │ │ │ ├── BadgesAndGraphsTab.tsx │ │ │ │ ├── Graphs │ │ │ │ │ ├── Graphs.jsx │ │ │ │ │ ├── Graphs.test.jsx │ │ │ │ │ ├── URLEmbed.jsx │ │ │ │ │ ├── index.js │ │ │ │ │ └── useGraphsDetails.js │ │ │ │ └── index.ts │ │ │ │ ├── ConfigurationManager │ │ │ │ ├── ConfigurationManager.test.tsx │ │ │ │ ├── ConfigurationManager.tsx │ │ │ │ ├── components │ │ │ │ │ ├── FeatureGroup │ │ │ │ │ │ ├── FeatureGroup.test.tsx │ │ │ │ │ │ ├── FeatureGroup.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── FeatureItem │ │ │ │ │ │ ├── FeatureItem.test.tsx │ │ │ │ │ │ ├── FeatureItem.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ └── useRepoConfigurationStatus │ │ │ │ │ │ ├── RepoConfigurationStatusQueryOpts.test.tsx │ │ │ │ │ │ └── RepoConfigurationStatusQueryOpts.tsx │ │ │ │ └── index.ts │ │ │ │ ├── GeneralTab │ │ │ │ ├── DangerZone │ │ │ │ │ ├── DangerZone.jsx │ │ │ │ │ ├── EraseRepo │ │ │ │ │ │ ├── EraseRepo.test.tsx │ │ │ │ │ │ ├── EraseRepo.tsx │ │ │ │ │ │ ├── EraseRepoModal.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── RepoState │ │ │ │ │ │ ├── DeactivateRepoModal │ │ │ │ │ │ │ ├── DeactivateRepoModal.jsx │ │ │ │ │ │ │ ├── DeactivateRepoModal.test.jsx │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── RepoState.jsx │ │ │ │ │ │ ├── RepoState.test.jsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── useRepoActivation.js │ │ │ │ │ │ │ └── useRepoActivation.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── DefaultBranch │ │ │ │ │ ├── DefaultBranch.jsx │ │ │ │ │ ├── DefaultBranch.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── GeneralTab.test.tsx │ │ │ │ ├── GeneralTab.tsx │ │ │ │ ├── Tokens │ │ │ │ │ ├── GraphToken │ │ │ │ │ │ ├── GraphToken.jsx │ │ │ │ │ │ ├── GraphToken.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── RepoUploadToken │ │ │ │ │ │ ├── RegenerateTokenModal.jsx │ │ │ │ │ │ ├── RepoUploadToken.jsx │ │ │ │ │ │ ├── RepoUploadToken.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── StaticAnalysisToken │ │ │ │ │ │ ├── RegenerateStaticTokenModal.jsx │ │ │ │ │ │ ├── StaticAnalysisToken.jsx │ │ │ │ │ │ ├── StaticAnalysisToken.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Tokens.jsx │ │ │ │ │ ├── Tokens.test.jsx │ │ │ │ │ ├── TokensTeam │ │ │ │ │ │ ├── TokensTeam.jsx │ │ │ │ │ │ ├── TokensTeam.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── enums.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.ts │ │ │ │ └── queries │ │ │ │ │ ├── RepoForTokensTeamQueryOpts.test.tsx │ │ │ │ │ └── RepoForTokensTeamQueryOpts.tsx │ │ │ │ └── YamlTab │ │ │ │ ├── CurrentRepoSettings │ │ │ │ ├── CurrentRepoSettings.jsx │ │ │ │ ├── CurrentRepoSettings.test.jsx │ │ │ │ └── index.js │ │ │ │ ├── SecretString │ │ │ │ ├── CopySecretStringModal.jsx │ │ │ │ ├── GenerateSecretStringModal.jsx │ │ │ │ ├── SecretString.jsx │ │ │ │ ├── SecretString.test.jsx │ │ │ │ ├── index.js │ │ │ │ └── useGenerateSecretSring.js │ │ │ │ ├── ValidateYaml │ │ │ │ ├── ValidateYaml.jsx │ │ │ │ ├── ValidateYaml.test.jsx │ │ │ │ └── index.js │ │ │ │ ├── YAML │ │ │ │ ├── YAML.jsx │ │ │ │ ├── YAML.test.jsx │ │ │ │ └── index.js │ │ │ │ ├── YamlTab.jsx │ │ │ │ ├── YamlTab.test.jsx │ │ │ │ └── index.js │ │ ├── CoverageOnboarding │ │ │ ├── ActivationBanner │ │ │ │ ├── ActivationBanner.test.tsx │ │ │ │ ├── ActivationBanner.tsx │ │ │ │ ├── ActivationRequiredBanner │ │ │ │ │ ├── ActivationRequiredBanner.test.tsx │ │ │ │ │ ├── ActivationRequiredBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ActivationRequiredSelfHosted │ │ │ │ │ ├── ActivationRequiredSelfHosted.test.tsx │ │ │ │ │ ├── ActivationRequiredSelfHosted.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FreePlanSeatsLimitBanner │ │ │ │ │ ├── FreePlanSeatsLimitBanner.test.tsx │ │ │ │ │ ├── FreePlanSeatsLimitBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PaidPlanSeatsLimitBanner │ │ │ │ │ ├── PaidPlanSeatsLimitBanner.test.tsx │ │ │ │ │ ├── PaidPlanSeatsLimitBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TrialEligibleBanner │ │ │ │ │ ├── TrialEligibleBanner.test.tsx │ │ │ │ │ ├── TrialEligibleBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── CircleCI │ │ │ │ ├── CircleCI.test.tsx │ │ │ │ ├── CircleCI.tsx │ │ │ │ └── index.ts │ │ │ ├── ExampleBlurb │ │ │ │ ├── ExampleBlurb.test.tsx │ │ │ │ ├── ExampleBlurb.tsx │ │ │ │ └── index.ts │ │ │ ├── GitHubActions │ │ │ │ ├── GitHubActions.test.tsx │ │ │ │ ├── GitHubActions.tsx │ │ │ │ ├── MergeStep.test.tsx │ │ │ │ ├── MergeStep.tsx │ │ │ │ ├── TokenStep.test.tsx │ │ │ │ ├── TokenStep.tsx │ │ │ │ ├── WorkflowYMLStep.tsx │ │ │ │ └── index.ts │ │ │ ├── LearnMoreBlurb │ │ │ │ ├── LearnMoreBlurb.tsx │ │ │ │ └── index.ts │ │ │ ├── NewRepoTab.test.tsx │ │ │ ├── NewRepoTab.tsx │ │ │ ├── OtherCI │ │ │ │ ├── OtherCI.test.tsx │ │ │ │ ├── OtherCI.tsx │ │ │ │ ├── TerminalInstructions │ │ │ │ │ ├── InstructionBox.test.tsx │ │ │ │ │ ├── InstructionBox.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── instructions.ts │ │ │ │ └── index.ts │ │ │ ├── OutputCoverageStep │ │ │ │ ├── OutputCoverageStep.test.tsx │ │ │ │ └── OutputCoverageStep.tsx │ │ │ ├── UseFrameworkInstructions.tsx │ │ │ └── index.ts │ │ ├── CoverageTab │ │ │ ├── ComponentsTab │ │ │ │ ├── BackfillBanners │ │ │ │ │ ├── BackfillBanners.test.tsx │ │ │ │ │ ├── BackfillBanners.tsx │ │ │ │ │ ├── SyncingBanner │ │ │ │ │ │ ├── SyncingBanner.test.tsx │ │ │ │ │ │ ├── SyncingBanner.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TriggerSyncBanner │ │ │ │ │ │ ├── TriggerSyncBanner.test.tsx │ │ │ │ │ │ ├── TriggerSyncBanner.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useRepoBackfillingStatus.test.tsx │ │ │ │ │ └── useRepoBackfillingStatus.ts │ │ │ │ ├── ComponentsTab.test.tsx │ │ │ │ ├── ComponentsTab.tsx │ │ │ │ ├── Header │ │ │ │ │ ├── BranchSelector │ │ │ │ │ │ ├── BranchSelector.test.tsx │ │ │ │ │ │ ├── BranchSelector.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Header.test.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TimescaleDisabled │ │ │ │ │ ├── TimescaleDisabled.test.tsx │ │ │ │ │ ├── TimescaleDisabled.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── assets │ │ │ │ │ ├── blurredTable.png │ │ │ │ │ └── componentsEmptystate.svg │ │ │ │ ├── index.ts │ │ │ │ └── subroute │ │ │ │ │ └── ComponentsTable │ │ │ │ │ ├── ComponentsTable.test.tsx │ │ │ │ │ ├── ComponentsTable.tsx │ │ │ │ │ ├── DeleteComponentModal │ │ │ │ │ ├── DeleteComponentModal.test.tsx │ │ │ │ │ ├── DeleteComponentModal.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TableEntries │ │ │ │ │ ├── TableSparkline.test.tsx │ │ │ │ │ └── TableSparkline.tsx │ │ │ │ │ └── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useRepoComponentsTable.test.tsx │ │ │ │ │ └── useRepoComponentsTable.ts │ │ │ ├── CoverageTab.test.tsx │ │ │ ├── CoverageTab.tsx │ │ │ ├── CoverageTabNavigator.tsx │ │ │ ├── FlagsTab │ │ │ │ ├── BackfillBanners │ │ │ │ │ ├── BackfillBanners.jsx │ │ │ │ │ ├── BackfillBanners.test.jsx │ │ │ │ │ ├── SyncingBanner │ │ │ │ │ │ ├── SyncingBanner.test.tsx │ │ │ │ │ │ ├── SyncingBanner.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TriggerSyncBanner │ │ │ │ │ │ ├── TriggerSyncBanner.test.tsx │ │ │ │ │ │ ├── TriggerSyncBanner.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useRepoBackfillingStatus.test.ts │ │ │ │ │ └── useRepoBackfillingStatus.ts │ │ │ │ ├── FlagsTab.jsx │ │ │ │ ├── FlagsTab.test.jsx │ │ │ │ ├── Header │ │ │ │ │ ├── Header.jsx │ │ │ │ │ ├── Header.test.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── TimescaleDisabled │ │ │ │ │ ├── TimescaleDisabled.test.tsx │ │ │ │ │ ├── TimescaleDisabled.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── assets │ │ │ │ │ ├── blurredTable.png │ │ │ │ │ └── flagsEmptystate.svg │ │ │ │ ├── index.js │ │ │ │ └── subroute │ │ │ │ │ └── FlagsTable │ │ │ │ │ ├── DeleteFlagModal │ │ │ │ │ ├── DeleteFlagModal.test.tsx │ │ │ │ │ ├── DeleteFlagModal.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── FlagsTable.test.tsx │ │ │ │ │ ├── FlagsTable.tsx │ │ │ │ │ ├── TableEntries │ │ │ │ │ ├── TableSparkline.test.tsx │ │ │ │ │ └── TableSparkline.tsx │ │ │ │ │ └── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useRepoFlagsTable.test.tsx │ │ │ │ │ └── useRepoFlagsTable.ts │ │ │ ├── OverviewTab │ │ │ │ ├── FirstPullRequestBanner │ │ │ │ │ ├── FirstPullRequestBanner.test.tsx │ │ │ │ │ ├── FirstPullRequestBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── OverviewTab.test.tsx │ │ │ │ ├── OverviewTab.tsx │ │ │ │ ├── Summary │ │ │ │ │ ├── CoverageTrend │ │ │ │ │ │ ├── CoverageTrend.test.tsx │ │ │ │ │ │ ├── CoverageTrend.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Summary.jsx │ │ │ │ │ ├── Summary.test.jsx │ │ │ │ │ ├── TrendDropdown │ │ │ │ │ │ ├── TrendDropdown.jsx │ │ │ │ │ │ ├── TrendDropdown.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── utils │ │ │ │ │ │ └── paths.ts │ │ │ │ ├── SummaryTeamPlan │ │ │ │ │ ├── SummaryTeamPlan.test.tsx │ │ │ │ │ ├── SummaryTeamPlan.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useBranchSelector.test.tsx │ │ │ │ │ ├── useBranchSelector.ts │ │ │ │ │ ├── useRepoCoverageTimeseries.test.tsx │ │ │ │ │ └── useRepoCoverageTimeseries.ts │ │ │ │ ├── index.ts │ │ │ │ ├── queries │ │ │ │ │ ├── CoverageTabDataQueryOpts.test.tsx │ │ │ │ │ └── CoverageTabDataQueryOpts.tsx │ │ │ │ ├── subroute │ │ │ │ │ ├── ComponentsMultiSelect │ │ │ │ │ │ ├── ComponentsMultiSelect.test.tsx │ │ │ │ │ │ ├── ComponentsMultiSelect.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── CoverageChart │ │ │ │ │ │ ├── CoverageChart.test.tsx │ │ │ │ │ │ ├── CoverageChart.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── FileExplorer │ │ │ │ │ │ ├── CodeTreeTable │ │ │ │ │ │ │ ├── CodeTreeTable.test.tsx │ │ │ │ │ │ │ ├── CodeTreeTable.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── FileExplorer.jsx │ │ │ │ │ │ ├── FileExplorer.test.jsx │ │ │ │ │ │ ├── FileListTable │ │ │ │ │ │ │ ├── FileListTable.test.tsx │ │ │ │ │ │ │ ├── FileListTable.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── FlagMultiSelect.jsx │ │ │ │ │ │ ├── FlagMultiSelect.test.jsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── useRepoBranchContentsTable.test.tsx │ │ │ │ │ │ │ └── useRepoBranchContentsTable.tsx │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── Loader.jsx │ │ │ │ │ │ │ ├── RepoContentsResult.test.tsx │ │ │ │ │ │ │ ├── RepoContentsResult.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Fileviewer │ │ │ │ │ │ ├── Fileviewer.jsx │ │ │ │ │ │ ├── Fileviewer.test.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ └── Sunburst │ │ │ │ │ │ ├── Sunburst.jsx │ │ │ │ │ │ ├── Sunburst.test.jsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useConvertD3ToBreadcrumbs.js │ │ │ │ │ │ ├── useConvertD3ToBreadcrumbs.test.jsx │ │ │ │ │ │ ├── useSunburstChart.test.tsx │ │ │ │ │ │ └── useSunburstChart.ts │ │ │ │ │ │ └── index.js │ │ │ │ └── summaryHooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useCoverageRedirect.test.tsx │ │ │ │ │ ├── useCoverageRedirect.ts │ │ │ │ │ ├── useSummary.test.tsx │ │ │ │ │ └── useSummary.ts │ │ │ └── index.ts │ │ ├── DeactivatedRepo │ │ │ ├── DeactivatedRepo.test.tsx │ │ │ ├── DeactivatedRepo.tsx │ │ │ ├── assets │ │ │ │ └── deactivatedRepo.svg │ │ │ └── index.ts │ │ ├── FailedTestsTab │ │ │ ├── CodecovCLI │ │ │ │ ├── CodecovCLI.test.tsx │ │ │ │ ├── CodecovCLI.tsx │ │ │ │ └── index.ts │ │ │ ├── FailedTestsPage │ │ │ │ ├── FailedTestsErrorBanner │ │ │ │ │ ├── FailedTestsErrorBanner.test.tsx │ │ │ │ │ ├── FailedTestsErrorBanner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FailedTestsPage.test.tsx │ │ │ │ ├── FailedTestsPage.tsx │ │ │ │ ├── FailedTestsTable │ │ │ │ │ ├── FailedTestsTable.test.tsx │ │ │ │ │ ├── FailedTestsTable.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── MetricsSection │ │ │ │ │ ├── MetricsSection.test.tsx │ │ │ │ │ ├── MetricsSection.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SelectorSection │ │ │ │ │ ├── BranchSelector │ │ │ │ │ │ ├── BranchSelector.test.tsx │ │ │ │ │ │ ├── BranchSelector.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── SelectorSection.test.tsx │ │ │ │ │ ├── SelectorSection.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TableHeader │ │ │ │ │ ├── TableHeader.test.tsx │ │ │ │ │ ├── TableHeader.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useFlakeAggregates │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useFlakeAggregates.test.tsx │ │ │ │ │ │ └── useFlakeAggregates.tsx │ │ │ │ │ ├── useInfiniteTestResults │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useInfiniteTestResults.test.tsx │ │ │ │ │ │ └── useInfiniteTestResults.tsx │ │ │ │ │ ├── useTestResultsAggregates │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useTestResultsAggregates.tsx │ │ │ │ │ │ └── useTestsResultsAggregates.test.tsx │ │ │ │ │ ├── useTestResultsFlags │ │ │ │ │ │ ├── useTestResultsFlags.test.tsx │ │ │ │ │ │ └── useTestResultsFlags.tsx │ │ │ │ │ └── useTestResultsTestSuites │ │ │ │ │ │ ├── useTestResultsTestSuites.test.tsx │ │ │ │ │ │ └── useTestResultsTestSuites.tsx │ │ │ │ └── index.ts │ │ │ ├── FailedTestsTab.test.tsx │ │ │ ├── FailedTestsTab.tsx │ │ │ ├── FrameworkTabsCard │ │ │ │ ├── FrameworkTabs │ │ │ │ │ ├── FrameworkTabs.test.tsx │ │ │ │ │ ├── FrameworkTabs.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FrameworkTabsCard.test.tsx │ │ │ │ ├── FrameworkTabsCard.tsx │ │ │ │ └── index.ts │ │ │ ├── GitHubActions │ │ │ │ ├── GitHubActions.test.tsx │ │ │ │ ├── GitHubActions.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── PullsTab │ │ │ ├── PullsTab.test.tsx │ │ │ ├── PullsTab.tsx │ │ │ ├── PullsTable │ │ │ │ ├── PullsTable.test.tsx │ │ │ │ ├── PullsTable.tsx │ │ │ │ ├── Title │ │ │ │ │ ├── Title.test.tsx │ │ │ │ │ ├── Title.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── createPullsTableData.test.tsx │ │ │ │ ├── createPullsTableData.tsx │ │ │ │ └── index.ts │ │ │ ├── enums.ts │ │ │ ├── index.ts │ │ │ └── types.js │ │ ├── RepoPage.test.tsx │ │ ├── RepoPage.tsx │ │ ├── RepoPageTabs.test.tsx │ │ ├── RepoPageTabs.tsx │ │ ├── context.test.tsx │ │ ├── context.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── pathMatchersHooks.test.tsx │ │ │ ├── pathMatchersHooks.ts │ │ │ ├── useJSorTSPendoTracking.test.tsx │ │ │ └── useJSorTSPendoTracking.ts │ │ ├── index.js │ │ ├── repo-test-setup.jsx │ │ ├── shared │ │ │ ├── ConfigureCachedBundleModal │ │ │ │ ├── ConfigureCachedBundleModal.test.tsx │ │ │ │ └── ConfigureCachedBundleModal.tsx │ │ │ └── constants.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── paths.test.ts │ │ │ └── paths.ts │ ├── SyncProviderPage │ │ ├── SyncButton.test.tsx │ │ ├── SyncButton.tsx │ │ ├── SyncProviderPage.test.tsx │ │ ├── SyncProviderPage.tsx │ │ └── index.tsx │ └── TermsOfService │ │ ├── TermsOfService.test.tsx │ │ ├── TermsOfService.tsx │ │ ├── constants.ts │ │ ├── hooks │ │ ├── useTermsOfService.test.tsx │ │ └── useTermsOfService.ts │ │ └── index.ts ├── sentry.ts ├── services │ ├── access │ │ ├── SessionsQueryOpts.test.tsx │ │ ├── SessionsQueryOpts.ts │ │ ├── constants.ts │ │ ├── useDeleteSession.test.tsx │ │ ├── useDeleteSession.ts │ │ ├── useGenerateUserToken.test.tsx │ │ ├── useGenerateUserToken.ts │ │ ├── useRevokeUserToken.test.tsx │ │ └── useRevokeUserToken.ts │ ├── account │ │ ├── mocks.ts │ │ ├── propTypes.js │ │ ├── useAccountDetails.test.tsx │ │ ├── useAccountDetails.ts │ │ ├── useAutoActivate.js │ │ ├── useAutoActivate.test.jsx │ │ ├── useAvailablePlans.test.tsx │ │ ├── useAvailablePlans.ts │ │ ├── useCancelPlan.js │ │ ├── useCancelPlan.test.jsx │ │ ├── useCreateStripeSetupIntent.test.tsx │ │ ├── useCreateStripeSetupIntent.ts │ │ ├── useEraseAccount.js │ │ ├── useEraseAccount.test.jsx │ │ ├── useInvoice.test.tsx │ │ ├── useInvoice.ts │ │ ├── useInvoices.test.tsx │ │ ├── useInvoices.ts │ │ ├── usePlanData.test.tsx │ │ ├── usePlanData.ts │ │ ├── useSentryToken.test.tsx │ │ ├── useSentryToken.tsx │ │ ├── useUnverifiedPaymentMethods.test.tsx │ │ ├── useUnverifiedPaymentMethods.tsx │ │ ├── useUpdateBillingAddress.test.tsx │ │ ├── useUpdateBillingAddress.ts │ │ ├── useUpdateBillingEmail.test.tsx │ │ ├── useUpdateBillingEmail.ts │ │ ├── useUpdatePaymentMethod.test.tsx │ │ ├── useUpdatePaymentMethod.ts │ │ ├── useUpdateSelfHostedSettings.test.tsx │ │ ├── useUpdateSelfHostedSettings.tsx │ │ ├── useUpgradePlan.test.tsx │ │ └── useUpgradePlan.ts │ ├── ats │ │ ├── useRepoATS.test.tsx │ │ └── useRepoATS.tsx │ ├── branches │ │ ├── useBranch.test.tsx │ │ ├── useBranch.tsx │ │ ├── useBranchComponents.test.tsx │ │ ├── useBranchComponents.tsx │ │ ├── useBranchHasCommits.test.tsx │ │ ├── useBranchHasCommits.tsx │ │ ├── useBranches.test.tsx │ │ └── useBranches.tsx │ ├── bundleAnalysis │ │ ├── BranchBundleSummaryQueryOpts.test.tsx │ │ ├── BranchBundleSummaryQueryOpts.tsx │ │ ├── BranchBundlesNamesQueryOpts.test.tsx │ │ ├── BranchBundlesNamesQueryOpts.tsx │ │ ├── BundleAssetsQueryOpts.test.tsx │ │ ├── BundleAssetsQueryOpts.tsx │ │ ├── BundleTrendDataQueryOpts.test.tsx │ │ ├── BundleTrendDataQueryOpts.tsx │ │ ├── CachedBundlesQueryOpts.test.tsx │ │ ├── CachedBundlesQueryOpts.tsx │ │ ├── useBundleAssetModules.test.tsx │ │ ├── useBundleAssetModules.tsx │ │ ├── useBundleSummary.test.tsx │ │ ├── useBundleSummary.tsx │ │ ├── useUpdateBundleCache.test.tsx │ │ └── useUpdateBundleCache.tsx │ ├── charts │ │ ├── BranchCoverageMeasurementsQueryOpts.test.tsx │ │ ├── BranchCoverageMeasurementsQueryOpts.tsx │ │ ├── ReposCoverageMeasurementsQueryOpts.test.tsx │ │ ├── ReposCoverageMeasurementsQueryOpts.ts │ │ ├── SunburstCoverageQueryOpts.test.tsx │ │ ├── SunburstCoverageQueryOpts.ts │ │ └── mocks.ts │ ├── codecovAI │ │ ├── useCodecovAIInstallation.test.tsx │ │ ├── useCodecovAIInstallation.tsx │ │ ├── useCodecovAIInstalledRepos.test.tsx │ │ └── useCodecovAIInstalledRepos.tsx │ ├── commit │ │ ├── mocks.ts │ │ ├── useCommit.test.tsx │ │ ├── useCommit.tsx │ │ ├── useCommitBADropdownSummary.test.tsx │ │ ├── useCommitBADropdownSummary.tsx │ │ ├── useCommitBundleList.test.tsx │ │ ├── useCommitBundleList.tsx │ │ ├── useCommitComponents.test.tsx │ │ ├── useCommitComponents.tsx │ │ ├── useCommitCoverageDropdownSummary.test.tsx │ │ ├── useCommitCoverageDropdownSummary.tsx │ │ ├── useCommitTeam.test.tsx │ │ ├── useCommitTeam.tsx │ │ ├── useCommitYaml.test.tsx │ │ ├── useCommitYaml.tsx │ │ ├── useCompareTotals.test.tsx │ │ ├── useCompareTotals.tsx │ │ ├── useCompareTotalsTeam.test.tsx │ │ └── useCompareTotalsTeam.tsx │ ├── commitErrors │ │ ├── useCommitErrors.test.tsx │ │ └── useCommitErrors.tsx │ ├── commits │ │ ├── useCommits.test.tsx │ │ └── useCommits.tsx │ ├── comparison │ │ ├── constants.ts │ │ ├── schemas │ │ │ ├── FirstPullRequest.ts │ │ │ ├── MissingBaseCommit.ts │ │ │ ├── MissingBaseReport.ts │ │ │ ├── MissingComparison.ts │ │ │ ├── MissingHeadCommit.ts │ │ │ └── MissingHeadReport.ts │ │ ├── useComparisonForCommitAndParent │ │ │ ├── index.ts │ │ │ ├── query.ts │ │ │ ├── useComparisonForCommitAndParent.test.tsx │ │ │ └── useComparisonForCommitAndParent.tsx │ │ └── utils.ts │ ├── config │ │ ├── LoginProvidersQueryOpts.test.tsx │ │ ├── LoginProvidersQueryOpts.ts │ │ ├── SyncProvidersQueryOpts.test.tsx │ │ └── SyncProvidersQueryOpts.ts │ ├── defaultOrganization │ │ ├── useUpdateDefaultOrganization.test.tsx │ │ └── useUpdateDefaultOrganization.ts │ ├── deleteComponentMeasurements │ │ ├── useDeleteComponentMeasurements.test.tsx │ │ └── useDeleteComponentMeasurements.ts │ ├── deleteFlag │ │ ├── useDeleteFlag.js │ │ └── useDeleteFlag.test.jsx │ ├── events │ │ ├── __mocks__ │ │ │ └── events.ts │ │ ├── amplitude │ │ │ ├── amplitude.test.tsx │ │ │ └── amplitude.ts │ │ ├── events.test.tsx │ │ ├── events.ts │ │ ├── hooks.test.tsx │ │ ├── hooks.tsx │ │ └── types.ts │ ├── file │ │ ├── useCommitBasedCoverageForFileViewer.test.jsx │ │ └── useCommitBasedCoverageForFileViewer.ts │ ├── image │ │ ├── index.ts │ │ ├── useImage.test.ts │ │ └── useImage.ts │ ├── impactedFiles │ │ └── schemas │ │ │ └── UnknownFlags.ts │ ├── impersonate │ │ ├── useImpersonate.js │ │ └── useImpersonate.test.jsx │ ├── navigation │ │ ├── normalize.test.ts │ │ ├── normalize.ts │ │ ├── useLocationParams.test.tsx │ │ ├── useLocationParams.ts │ │ ├── useNavLinks.test.tsx │ │ ├── useNavLinks.ts │ │ ├── useStaticNavLinks.test.tsx │ │ └── useStaticNavLinks.ts │ ├── orgUploadToken │ │ ├── useOrgUploadToken.test.tsx │ │ ├── useOrgUploadToken.ts │ │ ├── useRegenerateOrgUploadToken.test.tsx │ │ └── useRegenerateOrgUploadToken.tsx │ ├── pathContents │ │ ├── branch │ │ │ ├── dir │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── usePrefetchBranchDirEntry.test.tsx │ │ │ │ ├── usePrefetchBranchDirEntry.tsx │ │ │ │ ├── useRepoBranchContents.test.tsx │ │ │ │ └── useRepoBranchContents.tsx │ │ │ └── file │ │ │ │ ├── index.ts │ │ │ │ ├── usePrefetchBranchFileEntry.test.tsx │ │ │ │ └── usePrefetchBranchFileEntry.ts │ │ ├── commit │ │ │ ├── dir │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── usePrefetchCommitDirEntry.test.tsx │ │ │ │ ├── usePrefetchCommitDirEntry.tsx │ │ │ │ ├── useRepoCommitContents.test.tsx │ │ │ │ └── useRepoCommitContents.tsx │ │ │ └── file │ │ │ │ ├── index.ts │ │ │ │ ├── usePrefetchCommitFileEntry.test.tsx │ │ │ │ └── usePrefetchCommitFileEntry.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── pull │ │ │ ├── dir │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── usePrefetchPullDirEntry.test.tsx │ │ │ │ ├── usePrefetchPullDirEntry.tsx │ │ │ │ ├── useRepoPullContents.test.tsx │ │ │ │ └── useRepoPullContents.tsx │ │ │ └── file │ │ │ │ ├── index.ts │ │ │ │ ├── usePrefetchPullFileEntry.test.tsx │ │ │ │ └── usePrefetchPullFileEntry.tsx │ │ ├── useFileWithMainCoverage.test.tsx │ │ ├── useFileWithMainCoverage.tsx │ │ └── utils.ts │ ├── pull │ │ ├── fragments.ts │ │ ├── usePrefetchSingleFileComp.test.tsx │ │ ├── usePrefetchSingleFileComp.tsx │ │ ├── usePull.test.tsx │ │ ├── usePull.tsx │ │ ├── usePullBADropdownSummary.test.tsx │ │ ├── usePullBADropdownSummary.tsx │ │ ├── usePullBundleComparisonList.test.tsx │ │ ├── usePullBundleComparisonList.tsx │ │ ├── usePullBundleHeadList.test.tsx │ │ ├── usePullBundleHeadList.tsx │ │ ├── usePullCompareTotalsTeam.test.tsx │ │ ├── usePullCompareTotalsTeam.tsx │ │ ├── usePullComponents.test.tsx │ │ ├── usePullComponents.tsx │ │ ├── usePullCoverageDropdownSummary.test.tsx │ │ ├── usePullCoverageDropdownSummary.tsx │ │ ├── usePullTeam.test.tsx │ │ ├── usePullTeam.tsx │ │ ├── useSingularImpactedFileComparison.test.tsx │ │ ├── useSingularImpactedFileComparison.tsx │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── setFileLabel.test.ts │ │ │ ├── setFileLabel.ts │ │ │ ├── transformImpactedPullFileToDiff.test.ts │ │ │ └── transformImpactedPullFileToDiff.ts │ ├── pulls │ │ ├── index.ts │ │ ├── usePulls.test.tsx │ │ └── usePulls.tsx │ ├── repo │ │ ├── index.ts │ │ ├── mocks.ts │ │ ├── schemas │ │ │ ├── RepoNotFoundError.ts │ │ │ └── RepoOwnerNotActivatedError.ts │ │ ├── useActivateMeasurements.test.tsx │ │ ├── useActivateMeasurements.tsx │ │ ├── useComponentsBackfilled.test.tsx │ │ ├── useComponentsBackfilled.tsx │ │ ├── useEncodeString.test.tsx │ │ ├── useEncodeString.tsx │ │ ├── useEraseRepoContent.test.tsx │ │ ├── useEraseRepoContent.tsx │ │ ├── useRepo.test.tsx │ │ ├── useRepo.tsx │ │ ├── useRepoBackfilled.test.tsx │ │ ├── useRepoBackfilled.tsx │ │ ├── useRepoComponents.test.tsx │ │ ├── useRepoComponents.tsx │ │ ├── useRepoComponentsSelect.test.tsx │ │ ├── useRepoComponentsSelect.tsx │ │ ├── useRepoConfig.test.tsx │ │ ├── useRepoConfig.tsx │ │ ├── useRepoCoverage.test.tsx │ │ ├── useRepoCoverage.tsx │ │ ├── useRepoFlags.test.tsx │ │ ├── useRepoFlags.tsx │ │ ├── useRepoFlagsSelect.test.tsx │ │ ├── useRepoFlagsSelect.tsx │ │ ├── useRepoOverview.test.tsx │ │ ├── useRepoOverview.tsx │ │ ├── useRepoRateLimitStatus.test.tsx │ │ ├── useRepoRateLimitStatus.tsx │ │ ├── useRepoSettings.test.tsx │ │ ├── useRepoSettings.tsx │ │ ├── useRepoSettingsTeam.test.tsx │ │ ├── useRepoSettingsTeam.tsx │ │ ├── useUpdateRepo.js │ │ └── useUpdateRepo.test.tsx │ ├── repoUploadToken │ │ ├── useRegenerateRepoUploadToken.test.tsx │ │ └── useRegenerateRepoUploadToken.tsx │ ├── repos │ │ ├── ReposQueryOpts.test.tsx │ │ ├── ReposQueryOpts.tsx │ │ ├── ReposTeamQueryOpts.test.tsx │ │ ├── ReposTeamQueryOpts.tsx │ │ └── orderingOptions.ts │ ├── repositoryToken │ │ ├── useRegenerateRepositoryToken.js │ │ └── useRegenerateRepositoryToken.test.jsx │ ├── selfHosted │ │ ├── SelfHostedCurrentUserQueryOpts.test.tsx │ │ ├── SelfHostedCurrentUserQueryOpts.ts │ │ ├── SelfHostedHasAdminsQueryOpts.test.tsx │ │ ├── SelfHostedHasAdminsQueryOpts.ts │ │ ├── SelfHostedSeatsAndLicenseQueryOpts.test.tsx │ │ ├── SelfHostedSeatsAndLicenseQueryOpts.ts │ │ ├── SelfHostedSeatsConfigQueryOpts.test.tsx │ │ ├── SelfHostedSeatsConfigQueryOpts.ts │ │ ├── SelfHostedSettingsQueryOpts.test.tsx │ │ ├── SelfHostedSettingsQueryOpts.tsx │ │ ├── SelfHostedUserListQueryOpts.test.tsx │ │ └── SelfHostedUserListQueryOpts.ts │ ├── toast │ │ ├── ErrorToast │ │ │ ├── ErrorToast.test.tsx │ │ │ └── ErrorToast.tsx │ │ ├── GenericToast │ │ │ ├── GenericToast.test.tsx │ │ │ └── GenericToast.tsx │ │ ├── SuccessToast │ │ │ ├── SuccessToast.test.tsx │ │ │ └── SuccessToast.tsx │ │ ├── renderToast.test.tsx │ │ └── renderToast.tsx │ ├── toastNotification │ │ ├── context.jsx │ │ ├── context.test.jsx │ │ └── propTypes.js │ ├── tracking │ │ ├── featureFlags.js │ │ ├── featureFlags.test.jsx │ │ ├── pendo.js │ │ ├── pendo.test.jsx │ │ ├── useTracking.js │ │ ├── useTracking.test.jsx │ │ ├── utils.js │ │ └── utils.test.js │ ├── trial │ │ ├── index.ts │ │ ├── useStartTrial.test.tsx │ │ └── useStartTrial.ts │ ├── uploadTokenRequired │ │ ├── index.ts │ │ ├── useUploadTokenRequired.test.tsx │ │ └── useUploadTokenRequired.tsx │ ├── useIsTeamPlan │ │ ├── index.ts │ │ ├── useIsTeamPlan.test.tsx │ │ └── useIsTeamPlan.ts │ ├── usePaginatedContents │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── usePaginatedContents.test.ts │ │ └── usePaginatedContents.ts │ ├── user │ │ ├── TokenlessQueryOpts.test.tsx │ │ ├── TokenlessQueryOpts.ts │ │ ├── enums.ts │ │ ├── index.ts │ │ ├── useInternalUser.test.tsx │ │ ├── useInternalUser.ts │ │ ├── useIsCurrentUserAnAdmin.test.tsx │ │ ├── useIsCurrentUserAnAdmin.ts │ │ ├── useMyContexts.test.tsx │ │ ├── useMyContexts.ts │ │ ├── useOnboardUser.test.tsx │ │ ├── useOnboardUser.ts │ │ ├── useOwner.test.tsx │ │ ├── useOwner.ts │ │ ├── useOwnerRateLimitStatus.test.tsx │ │ ├── useOwnerRateLimitStatus.tsx │ │ ├── useResyncUser.test.tsx │ │ ├── useResyncUser.ts │ │ ├── useUpdateProfile.test.tsx │ │ ├── useUpdateProfile.ts │ │ ├── useUser.test.tsx │ │ └── useUser.ts │ ├── users │ │ ├── index.js │ │ ├── mocks.js │ │ ├── useInfiniteUser.test.tsx │ │ ├── useInfiniteUser.tsx │ │ ├── useUpdateUser.js │ │ ├── useUpdateUser.test.jsx │ │ ├── useUsers.js │ │ └── useUsers.test.jsx │ └── yaml │ │ ├── index.js │ │ ├── useUpdateYaml.js │ │ ├── useUpdateYaml.test.jsx │ │ ├── useYamlConfig.js │ │ └── useYamlConfig.test.jsx ├── setupProxy.js ├── shared │ ├── AppInstallModal │ │ ├── AppInstallModal.test.tsx │ │ ├── AppInstallModal.tsx │ │ └── index.ts │ ├── AppLink │ │ ├── AppLink.test.jsx │ │ ├── AppLink.tsx │ │ └── index.ts │ ├── CachedBundleContentBanner │ │ ├── CachedBundleContentBanner.test.tsx │ │ └── CachedBundleContentBanner.tsx │ ├── ComparisonErrorBanner │ │ ├── ComparisonErrorBanner.test.tsx │ │ ├── ComparisonErrorBanner.tsx │ │ └── index.ts │ ├── ComponentsNotConfigured │ │ ├── ComponentsNotConfigured.test.tsx │ │ ├── ComponentsNotConfigured.tsx │ │ └── index.ts │ ├── ContentsTable │ │ ├── ContentsTableHeader │ │ │ ├── ContentsTableHeader.jsx │ │ │ ├── ContentsTableHeader.test.jsx │ │ │ └── index.js │ │ ├── DisplayTypeButton │ │ │ ├── DisplayTypeButton.test.tsx │ │ │ └── DisplayTypeButton.tsx │ │ ├── FileBreadcrumb │ │ │ ├── FileBreadcrumb.jsx │ │ │ ├── FileBreadcrumb.test.jsx │ │ │ └── index.js │ │ ├── MissingFileData │ │ │ ├── MissingFileData.test.tsx │ │ │ ├── MissingFileData.tsx │ │ │ └── index.js │ │ ├── TableEntries │ │ │ ├── BaseEntries │ │ │ │ ├── DirEntry.test.tsx │ │ │ │ ├── DirEntry.tsx │ │ │ │ ├── FileEntry.test.tsx │ │ │ │ └── FileEntry.tsx │ │ │ ├── BranchEntries │ │ │ │ ├── BranchDirEntry.test.tsx │ │ │ │ ├── BranchDirEntry.tsx │ │ │ │ ├── BranchFileEntry.test.tsx │ │ │ │ ├── BranchFileEntry.tsx │ │ │ │ └── useTypeSafeFilters.ts │ │ │ ├── CommitEntries │ │ │ │ ├── CommitDirEntry.test.tsx │ │ │ │ ├── CommitDirEntry.tsx │ │ │ │ ├── CommitFileEntry.test.tsx │ │ │ │ └── CommitFileEntry.tsx │ │ │ └── PullEntries │ │ │ │ ├── PullDirEntry.test.tsx │ │ │ │ ├── PullDirEntry.tsx │ │ │ │ ├── PullFileEntry.test.tsx │ │ │ │ └── PullFileEntry.tsx │ │ ├── constants.ts │ │ ├── useTableDefaultSort │ │ │ ├── index.ts │ │ │ ├── useTableDefaultSort.test.tsx │ │ │ └── useTableDefaultSort.ts │ │ └── utils │ │ │ ├── adjustListIfUpDir.test.tsx │ │ │ ├── adjustListIfUpDir.tsx │ │ │ └── index.ts │ ├── FlagsNotConfigured │ │ ├── FlagsNotConfigured.test.tsx │ │ ├── FlagsNotConfigured.tsx │ │ └── index.ts │ ├── GlobalBanners │ │ ├── GitHubRateLimitExceeded │ │ │ ├── GitHubRateLimitExceededBanner.test.tsx │ │ │ └── GitHubRateLimitExceededBanner.tsx │ │ ├── GlobalBanners.test.tsx │ │ ├── GlobalBanners.tsx │ │ ├── MissingDesignatedAdmins │ │ │ ├── MissingDesignatedAdmins.test.jsx │ │ │ ├── MissingDesignatedAdmins.tsx │ │ │ └── index.ts │ │ ├── SelfHostedLicenseExpiration │ │ │ ├── LicenseExpirationModal │ │ │ │ ├── LicenseExpirationModal.tsx │ │ │ │ └── index.ts │ │ │ ├── SelfHostedLicenseExpiration.test.tsx │ │ │ ├── SelfHostedLicenseExpiration.tsx │ │ │ └── index.ts │ │ └── index.js │ ├── GlobalTopBanners │ │ ├── BundleFeedbackBanner │ │ │ ├── BundleFeedbackBanner.test.tsx │ │ │ ├── BundleFeedbackBanner.tsx │ │ │ └── index.ts │ │ ├── GlobalTopBanners.test.tsx │ │ ├── GlobalTopBanners.tsx │ │ ├── OktaBanners │ │ │ ├── OktaBanners.test.tsx │ │ │ ├── OktaBanners.tsx │ │ │ └── index.ts │ │ ├── OktaEnabledBanner │ │ │ ├── OktaEnabledBanner.test.tsx │ │ │ ├── OktaEnabledBanner.tsx │ │ │ └── index.ts │ │ ├── OktaEnforcedBanner │ │ │ ├── OktaEnforcedBanner.test.tsx │ │ │ ├── OktaEnforcedBanner.tsx │ │ │ └── index.ts │ │ ├── OktaErrorBanners │ │ │ ├── OktaErrorBanners.test.tsx │ │ │ ├── OktaErrorBanners.tsx │ │ │ ├── enums.ts │ │ │ └── index.ts │ │ ├── ProPlanFeedbackBanner │ │ │ ├── ProPlanFeedbackBanner.test.tsx │ │ │ ├── ProPlanFeedbackBanner.tsx │ │ │ └── index.ts │ │ ├── TeamPlanFeedbackBanner │ │ │ ├── TeamPlanFeedbackBanner.test.tsx │ │ │ ├── TeamPlanFeedbackBanner.tsx │ │ │ └── index.ts │ │ ├── TokenlessBanner │ │ │ ├── TokenNotRequiredBanner │ │ │ │ ├── TokenNotRequiredBanner.test.tsx │ │ │ │ ├── TokenNotRequiredBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── TokenRequiredBanner │ │ │ │ ├── TokenRequired.test.tsx │ │ │ │ ├── TokenRequiredBanner.tsx │ │ │ │ └── index.ts │ │ │ ├── TokenlessBanner.test.tsx │ │ │ ├── TokenlessBanner.tsx │ │ │ └── index.ts │ │ ├── TrialBanner │ │ │ ├── ExpiredBanner.test.tsx │ │ │ ├── ExpiredBanner.tsx │ │ │ ├── OngoingBanner.test.tsx │ │ │ ├── OngoingBanner.tsx │ │ │ ├── TrialBanner.test.tsx │ │ │ ├── TrialBanner.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── ListRepo │ │ ├── InactiveRepo │ │ │ ├── InactiveRepo.test.tsx │ │ │ ├── InactiveRepo.tsx │ │ │ └── index.ts │ │ ├── ListRepo.test.tsx │ │ ├── ListRepo.tsx │ │ ├── NoReposBlock │ │ │ ├── NoReposBlock.jsx │ │ │ ├── NoReposBlock.test.jsx │ │ │ └── index.js │ │ ├── OrgControlTable │ │ │ ├── OrgControlTable.test.tsx │ │ │ ├── OrgControlTable.tsx │ │ │ ├── RepoOrgNotFound │ │ │ │ ├── RepoOrgNotFound.test.tsx │ │ │ │ ├── RepoOrgNotFound.tsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── RepoTitleLink │ │ │ ├── RepoTitleLink.jsx │ │ │ ├── RepoTitleLink.test.jsx │ │ │ └── index.js │ │ ├── ReposTable │ │ │ ├── NoRepoCoverage.jsx │ │ │ ├── ReposTable.test.tsx │ │ │ ├── ReposTable.tsx │ │ │ ├── getReposColumnsHelper.tsx │ │ │ └── index.js │ │ ├── ReposTableTeam │ │ │ ├── ReposTableTeam.test.tsx │ │ │ ├── ReposTableTeam.tsx │ │ │ └── index.ts │ │ └── index.js │ ├── RawFileViewer │ │ ├── RawFileViewer.test.tsx │ │ ├── RawFileViewer.tsx │ │ └── index.ts │ ├── ThemeContext │ │ ├── ThemeContext.test.tsx │ │ ├── ThemeContext.tsx │ │ └── index.ts │ ├── api │ │ ├── api.test.ts │ │ ├── api.ts │ │ ├── helpers.test.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── rejectNetworkError.test.ts │ │ └── rejectNetworkError.ts │ ├── asserts │ │ ├── assertIsError.test.ts │ │ ├── assertIsError.ts │ │ ├── assertIsString.test.ts │ │ ├── assertIsString.ts │ │ └── index.ts │ ├── context │ │ ├── activeContext.ts │ │ └── index.ts │ ├── featureFlags │ │ ├── featureFlag.test.tsx │ │ ├── featureFlag.ts │ │ └── index.ts │ ├── plan │ │ ├── BenefitList │ │ │ ├── BenefitList.test.tsx │ │ │ ├── BenefitList.tsx │ │ │ └── index.ts │ │ └── ScheduledPlanDetails │ │ │ ├── ScheduledPlanDetails.test.tsx │ │ │ ├── ScheduledPlanDetails.tsx │ │ │ └── index.ts │ ├── propTypes │ │ ├── commitRequestType.ts │ │ ├── dataMarketingType.ts │ │ └── index.ts │ ├── treePaths │ │ ├── index.ts │ │ ├── useCommitTreePath.ts │ │ ├── useCommitTreePaths.test.tsx │ │ ├── usePullTreePaths.ts │ │ ├── useTreePaths.test.tsx │ │ └── useTreePaths.ts │ ├── useDisablePointerEvents │ │ ├── index.ts │ │ ├── useDisablePointerEvents.test.tsx │ │ └── useDisablePointerEvents.ts │ ├── useRedirect │ │ ├── hooks.test.ts │ │ ├── hooks.ts │ │ └── index.ts │ └── utils │ │ ├── animationFrameUtils.test.ts │ │ ├── animationFrameUtils.ts │ │ ├── billing.test.ts │ │ ├── billing.ts │ │ ├── bundleAnalysis.test.ts │ │ ├── bundleAnalysis.ts │ │ ├── camelizeKeys.test.ts │ │ ├── camelizeKeys.ts │ │ ├── cn.test.ts │ │ ├── cn.ts │ │ ├── commit.ts │ │ ├── comparison.ts │ │ ├── dates.test.ts │ │ ├── dates.ts │ │ ├── demo.test.ts │ │ ├── demo.ts │ │ ├── determineProgressColor.test.ts │ │ ├── determineProgressColor.ts │ │ ├── extractUploads.test.ts │ │ ├── extractUploads.ts │ │ ├── fileviewer.test.tsx │ │ ├── fileviewer.tsx │ │ ├── getFilteredRecentlyVisitedRepo.test.ts │ │ ├── getFilteredRecentlyVisitedRepo.ts │ │ ├── graphql.test.ts │ │ ├── graphql.ts │ │ ├── impactedFiles.ts │ │ ├── loginProviders.test.ts │ │ ├── loginProviders.ts │ │ ├── ownerHelpers.ts │ │ ├── prism │ │ ├── prismLanguageMapper.test.ts │ │ ├── prismLanguageMapper.ts │ │ ├── prismLanguages.ts │ │ └── prismTheme.css │ │ ├── provider.test.ts │ │ ├── provider.ts │ │ ├── queries.ts │ │ ├── snakeifyKeys.test.ts │ │ ├── snakeifyKeys.ts │ │ ├── timeseriesCharts.test.ts │ │ ├── timeseriesCharts.ts │ │ ├── transformStringToLocalStorageKey.test.ts │ │ ├── transformStringToLocalStorageKey.ts │ │ ├── unsupportedExtensionsMapper.test.ts │ │ ├── unsupportedExtensionsMapper.ts │ │ ├── upgradeForm.test.ts │ │ ├── upgradeForm.ts │ │ ├── url.test.ts │ │ └── url.ts ├── stripe.ts ├── ts-override.d.ts ├── types.ts ├── ui │ ├── A │ │ ├── A.jsx │ │ ├── A.stories.jsx │ │ ├── A.test.jsx │ │ └── index.js │ ├── Alert │ │ ├── Alert.stories.tsx │ │ ├── Alert.test.tsx │ │ ├── Alert.tsx │ │ └── index.ts │ ├── Avatar │ │ ├── Avatar.jsx │ │ ├── Avatar.stories.jsx │ │ ├── Avatar.test.jsx │ │ ├── AvatarSVG.jsx │ │ ├── AvatarSVG.test.jsx │ │ ├── enums.js │ │ └── index.js │ ├── Badge │ │ ├── Badge.stories.tsx │ │ ├── Badge.test.tsx │ │ ├── Badge.tsx │ │ └── index.ts │ ├── Banner │ │ ├── Banner.jsx │ │ ├── Banner.stories.jsx │ │ ├── Banner.test.jsx │ │ ├── BannerContent │ │ │ ├── BannerContent.jsx │ │ │ ├── BannerContent.stories.jsx │ │ │ ├── BannerContent.test.jsx │ │ │ └── index.js │ │ ├── BannerHeading │ │ │ ├── BannerHeading.jsx │ │ │ ├── BannerHeading.stories.jsx │ │ │ ├── BannerHeading.test.jsx │ │ │ └── index.js │ │ └── index.js │ ├── Breadcrumb │ │ ├── Breadcrumb.stories.jsx │ │ ├── Breadcrumb.test.tsx │ │ ├── Breadcrumb.tsx │ │ └── index.ts │ ├── Button │ │ ├── Button.stories.tsx │ │ ├── Button.test.tsx │ │ ├── Button.tsx │ │ └── index.ts │ ├── CIStatus │ │ ├── CIStatus.stories.tsx │ │ ├── CIStatus.test.jsx │ │ ├── CIStatus.tsx │ │ └── index.ts │ ├── Card │ │ ├── Card.stories.tsx │ │ ├── Card.test.tsx │ │ ├── Card.tsx │ │ └── index.ts │ ├── Chart │ │ ├── Chart.stories.tsx │ │ ├── Chart.test.tsx │ │ ├── Chart.tsx │ │ └── index.ts │ ├── Checkbox │ │ ├── Checkbox.stories.tsx │ │ ├── Checkbox.test.tsx │ │ ├── Checkbox.tsx │ │ └── index.ts │ ├── CodeRenderer │ │ ├── CodeRenderer.css │ │ ├── CodeRenderer.stories.tsx │ │ ├── CodeRenderer.test.tsx │ │ ├── CodeRenderer.tsx │ │ ├── CodeRendererInfoRow │ │ │ ├── CodeRendererInfoRow.jsx │ │ │ ├── CodeRendererInfoRow.stories.jsx │ │ │ ├── CodeRendererInfoRow.test.jsx │ │ │ └── index.js │ │ ├── CodeRendererProgressHeader │ │ │ ├── CodeRendererProgressHeader.jsx │ │ │ ├── CodeRendererProgressHeader.stories.jsx │ │ │ ├── CodeRendererProgressHeader.test.jsx │ │ │ └── index.js │ │ ├── CoverageLineIndicator │ │ │ ├── CoverageLineIndicator.jsx │ │ │ ├── CoverageLineIndicator.stories.jsx │ │ │ ├── CoverageLineIndicator.test.jsx │ │ │ └── index.js │ │ ├── DiffLine │ │ │ ├── DiffLine.stories.tsx │ │ │ ├── DiffLine.test.tsx │ │ │ ├── DiffLine.tsx │ │ │ └── index.ts │ │ ├── FileHeader │ │ │ ├── Coverage │ │ │ │ ├── Coverage.jsx │ │ │ │ └── index.js │ │ │ ├── CoverageValue │ │ │ │ ├── CoverageValue.jsx │ │ │ │ └── index.js │ │ │ ├── FileHeader.jsx │ │ │ ├── FileHeader.stories.jsx │ │ │ ├── FileHeader.test.jsx │ │ │ └── index.js │ │ ├── SingleLine │ │ │ ├── SingleLine.jsx │ │ │ ├── SingleLine.stories.jsx │ │ │ ├── SingleLine.test.jsx │ │ │ └── index.js │ │ ├── hooks │ │ │ ├── index.js │ │ │ ├── useScrollToLine.js │ │ │ └── useScrollToLine.test.jsx │ │ └── index.ts │ ├── CodeSnippet │ │ ├── CodeSnippet.stories.tsx │ │ ├── CodeSnippet.test.tsx │ │ ├── CodeSnippet.tsx │ │ └── index.ts │ ├── ContextSwitcher │ │ ├── ContextSwitcher.stories.tsx │ │ ├── ContextSwitcher.test.jsx │ │ ├── ContextSwitcher.tsx │ │ └── index.ts │ ├── CopyClipboard │ │ ├── CopyClipboard.stories.tsx │ │ ├── CopyClipboard.test.tsx │ │ ├── CopyClipboard.tsx │ │ └── index.ts │ ├── CoverageProgress │ │ ├── CoverageProgress.stories.jsx │ │ ├── CoverageProgress.test.tsx │ │ ├── CoverageProgress.tsx │ │ └── index.ts │ ├── DateRangePicker │ │ ├── DateRangePicker.stories.tsx │ │ ├── DateRangePicker.test.tsx │ │ ├── DateRangePicker.tsx │ │ └── index.ts │ ├── Dropdown │ │ ├── Dropdown.stories.tsx │ │ ├── Dropdown.test.tsx │ │ └── Dropdown.tsx │ ├── ExpandableSection │ │ ├── ExpandableSection.stories.tsx │ │ ├── ExpandableSection.test.tsx │ │ ├── ExpandableSection.tsx │ │ └── index.ts │ ├── FileList │ │ ├── FileList.css │ │ └── FileList.stories.tsx │ ├── FileViewer │ │ └── ToggleHeader │ │ │ ├── Title │ │ │ ├── CoverageSelect.stories.tsx │ │ │ ├── CoverageSelect.test.tsx │ │ │ ├── CoverageSelect.tsx │ │ │ ├── Title.stories.tsx │ │ │ ├── Title.test.tsx │ │ │ ├── Title.tsx │ │ │ └── index.ts │ │ │ ├── ToggleHeader.stories.tsx │ │ │ ├── ToggleHeader.test.tsx │ │ │ ├── ToggleHeader.tsx │ │ │ └── index.ts │ ├── GraphCard │ │ ├── GraphCard.stories.tsx │ │ ├── GraphCard.test.tsx │ │ ├── GraphCard.tsx │ │ └── index.ts │ ├── Icon │ │ ├── Icon.stories.jsx │ │ ├── Icon.test.tsx │ │ ├── Icon.tsx │ │ ├── index.ts │ │ └── svg │ │ │ ├── developer │ │ │ ├── branch-deleted.svg │ │ │ ├── branch.svg │ │ │ ├── commit.svg │ │ │ ├── comparison.svg │ │ │ ├── fork.svg │ │ │ ├── git-merge.svg │ │ │ ├── hook.svg │ │ │ ├── index.jsx │ │ │ ├── merge.svg │ │ │ ├── pull-request-closed.svg │ │ │ ├── pull-request-open.svg │ │ │ ├── pull-request.svg │ │ │ └── status-running.svg │ │ │ ├── outline │ │ │ ├── academic-cap.svg │ │ │ ├── adjustments.svg │ │ │ ├── annotation.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-narrow-down.svg │ │ │ ├── arrow-narrow-left.svg │ │ │ ├── arrow-narrow-right.svg │ │ │ ├── arrow-narrow-up.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-expand.svg │ │ │ ├── at-symbol.svg │ │ │ ├── backspace.svg │ │ │ ├── badge-check.svg │ │ │ ├── ban.svg │ │ │ ├── beaker.svg │ │ │ ├── bell.svg │ │ │ ├── book-open.svg │ │ │ ├── bookmark-alt.svg │ │ │ ├── bookmark.svg │ │ │ ├── briefcase.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── cash.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-square-bar.svg │ │ │ ├── chat-alt-2.svg │ │ │ ├── chat-alt.svg │ │ │ ├── chat.svg │ │ │ ├── check-circle.svg │ │ │ ├── check.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── chip.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-copy.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code.svg │ │ │ ├── cog.svg │ │ │ ├── collection.svg │ │ │ ├── color-swatch.svg │ │ │ ├── credit-card.svg │ │ │ ├── cube-transparent.svg │ │ │ ├── cube.svg │ │ │ ├── currency-bangladeshi.svg │ │ │ ├── currency-dollar.svg │ │ │ ├── currency-euro.svg │ │ │ ├── currency-pound.svg │ │ │ ├── currency-rupee.svg │ │ │ ├── currency-yen.svg │ │ │ ├── cursor-click.svg │ │ │ ├── database.svg │ │ │ ├── desktop-computer.svg │ │ │ ├── device-mobile.svg │ │ │ ├── device-tablet.svg │ │ │ ├── document-add.svg │ │ │ ├── document-download.svg │ │ │ ├── document-duplicate.svg │ │ │ ├── document-remove.svg │ │ │ ├── document-report.svg │ │ │ ├── document-search.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── dots-circle-horizontal.svg │ │ │ ├── dots-horizontal.svg │ │ │ ├── dots-vertical.svg │ │ │ ├── download.svg │ │ │ ├── duplicate.svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye.svg │ │ │ ├── fast-forward.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── finger-print.svg │ │ │ ├── fire.svg │ │ │ ├── flag.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-remove.svg │ │ │ ├── folder.svg │ │ │ ├── gift.svg │ │ │ ├── globe-alt.svg │ │ │ ├── globe.svg │ │ │ ├── hand.svg │ │ │ ├── hashtag.svg │ │ │ ├── heart.svg │ │ │ ├── home.svg │ │ │ ├── identification.svg │ │ │ ├── inbox-in.svg │ │ │ ├── inbox.svg │ │ │ ├── index.jsx │ │ │ ├── information-circle.svg │ │ │ ├── key.svg │ │ │ ├── library.svg │ │ │ ├── light-bulb.svg │ │ │ ├── lightning-bolt.svg │ │ │ ├── link.svg │ │ │ ├── location-marker.svg │ │ │ ├── lock-closed.svg │ │ │ ├── lock-open.svg │ │ │ ├── login.svg │ │ │ ├── logout.svg │ │ │ ├── mail-open.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── menu-alt-1.svg │ │ │ ├── menu-alt-2.svg │ │ │ ├── menu-alt-3.svg │ │ │ ├── menu-alt-4.svg │ │ │ ├── menu.svg │ │ │ ├── microphone.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-sm.svg │ │ │ ├── minus.svg │ │ │ ├── moon.svg │ │ │ ├── music-note.svg │ │ │ ├── newspaper.svg │ │ │ ├── no-symbol.svg │ │ │ ├── office-building.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── paper-clip.svg │ │ │ ├── pause.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil.svg │ │ │ ├── phone-incoming.svg │ │ │ ├── phone-missed-call.svg │ │ │ ├── phone-outgoing.svg │ │ │ ├── phone.svg │ │ │ ├── photograph.svg │ │ │ ├── play.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-sm.svg │ │ │ ├── plus.svg │ │ │ ├── presentation-chart-bar.svg │ │ │ ├── presentation-chart-line.svg │ │ │ ├── printer.svg │ │ │ ├── puzzle.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-mark-circle.svg │ │ │ ├── receipt-refund.svg │ │ │ ├── receipt-tax.svg │ │ │ ├── refresh.svg │ │ │ ├── reply.svg │ │ │ ├── rewind.svg │ │ │ ├── rss.svg │ │ │ ├── save-as.svg │ │ │ ├── save.svg │ │ │ ├── scale.svg │ │ │ ├── scissors.svg │ │ │ ├── search-circle.svg │ │ │ ├── search.svg │ │ │ ├── selector.svg │ │ │ ├── server.svg │ │ │ ├── share.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-exclamation.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── sort-ascending.svg │ │ │ ├── sort-descending.svg │ │ │ ├── sparkles.svg │ │ │ ├── speakerphone.svg │ │ │ ├── star.svg │ │ │ ├── status-offline.svg │ │ │ ├── status-online.svg │ │ │ ├── stop.svg │ │ │ ├── sun.svg │ │ │ ├── support.svg │ │ │ ├── switch-horizontal.svg │ │ │ ├── switch-vertical.svg │ │ │ ├── table.svg │ │ │ ├── tag.svg │ │ │ ├── template.svg │ │ │ ├── terminal.svg │ │ │ ├── thumb-down.svg │ │ │ ├── thumb-up.svg │ │ │ ├── ticket.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up.svg │ │ │ ├── truck.svg │ │ │ ├── upload.svg │ │ │ ├── user-add.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-group.svg │ │ │ ├── user-remove.svg │ │ │ ├── user.svg │ │ │ ├── users.svg │ │ │ ├── variable.svg │ │ │ ├── video-camera.svg │ │ │ ├── view-boards.svg │ │ │ ├── view-grid-add.svg │ │ │ ├── view-grid.svg │ │ │ ├── view-list.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── wifi.svg │ │ │ ├── x-circle.svg │ │ │ ├── x.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ │ └── solid │ │ │ ├── academic-cap.svg │ │ │ ├── adjustments.svg │ │ │ ├── annotation.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-narrow-down.svg │ │ │ ├── arrow-narrow-left.svg │ │ │ ├── arrow-narrow-right.svg │ │ │ ├── arrow-narrow-up.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-expand.svg │ │ │ ├── at-symbol.svg │ │ │ ├── backspace.svg │ │ │ ├── badge-check.svg │ │ │ ├── ban.svg │ │ │ ├── beaker.svg │ │ │ ├── bell.svg │ │ │ ├── book-open.svg │ │ │ ├── bookmark-alt.svg │ │ │ ├── bookmark.svg │ │ │ ├── briefcase.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── cash.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-square-bar.svg │ │ │ ├── chat-alt-2.svg │ │ │ ├── chat-alt.svg │ │ │ ├── chat.svg │ │ │ ├── check-circle.svg │ │ │ ├── check.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── chip.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-copy.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code.svg │ │ │ ├── cog.svg │ │ │ ├── collection.svg │ │ │ ├── color-swatch.svg │ │ │ ├── credit-card.svg │ │ │ ├── cube-transparent.svg │ │ │ ├── cube.svg │ │ │ ├── currency-bangladeshi.svg │ │ │ ├── currency-dollar.svg │ │ │ ├── currency-euro.svg │ │ │ ├── currency-pound.svg │ │ │ ├── currency-rupee.svg │ │ │ ├── currency-yen.svg │ │ │ ├── cursor-click.svg │ │ │ ├── database.svg │ │ │ ├── desktop-computer.svg │ │ │ ├── device-mobile.svg │ │ │ ├── device-tablet.svg │ │ │ ├── document-add.svg │ │ │ ├── document-download.svg │ │ │ ├── document-duplicate.svg │ │ │ ├── document-remove.svg │ │ │ ├── document-report.svg │ │ │ ├── document-search.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── dots-circle-horizontal.svg │ │ │ ├── dots-horizontal.svg │ │ │ ├── dots-vertical.svg │ │ │ ├── download.svg │ │ │ ├── duplicate.svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye.svg │ │ │ ├── fast-forward.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── finger-print.svg │ │ │ ├── fire.svg │ │ │ ├── flag.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-remove.svg │ │ │ ├── folder.svg │ │ │ ├── gift.svg │ │ │ ├── globe-alt.svg │ │ │ ├── globe.svg │ │ │ ├── hand.svg │ │ │ ├── hashtag.svg │ │ │ ├── heart.svg │ │ │ ├── home.svg │ │ │ ├── identification.svg │ │ │ ├── inbox-in.svg │ │ │ ├── inbox.svg │ │ │ ├── index.jsx │ │ │ ├── information-circle.svg │ │ │ ├── key.svg │ │ │ ├── library.svg │ │ │ ├── light-bulb.svg │ │ │ ├── lightning-bolt.svg │ │ │ ├── link.svg │ │ │ ├── location-marker.svg │ │ │ ├── lock-closed.svg │ │ │ ├── lock-open.svg │ │ │ ├── login.svg │ │ │ ├── logout.svg │ │ │ ├── mail-open.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── menu-alt-1.svg │ │ │ ├── menu-alt-2.svg │ │ │ ├── menu-alt-3.svg │ │ │ ├── menu-alt-4.svg │ │ │ ├── menu.svg │ │ │ ├── microphone.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-sm.svg │ │ │ ├── minus.svg │ │ │ ├── moon.svg │ │ │ ├── music-note.svg │ │ │ ├── newspaper.svg │ │ │ ├── no-symbol.svg │ │ │ ├── office-building.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── paper-clip.svg │ │ │ ├── pause.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil.svg │ │ │ ├── phone-incoming.svg │ │ │ ├── phone-missed-call.svg │ │ │ ├── phone-outgoing.svg │ │ │ ├── phone.svg │ │ │ ├── photograph.svg │ │ │ ├── play.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-sm.svg │ │ │ ├── plus.svg │ │ │ ├── presentation-chart-bar.svg │ │ │ ├── presentation-chart-line.svg │ │ │ ├── printer.svg │ │ │ ├── puzzle.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-mark-circle.svg │ │ │ ├── receipt-refund.svg │ │ │ ├── receipt-tax.svg │ │ │ ├── refresh.svg │ │ │ ├── reply.svg │ │ │ ├── rewind.svg │ │ │ ├── rss.svg │ │ │ ├── save-as.svg │ │ │ ├── save.svg │ │ │ ├── scale.svg │ │ │ ├── scissors.svg │ │ │ ├── search-circle.svg │ │ │ ├── search.svg │ │ │ ├── selector.svg │ │ │ ├── server.svg │ │ │ ├── share.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-exclamation.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── sort-ascending.svg │ │ │ ├── sort-descending.svg │ │ │ ├── sparkles.svg │ │ │ ├── speakerphone.svg │ │ │ ├── star.svg │ │ │ ├── status-offline.svg │ │ │ ├── status-online.svg │ │ │ ├── stop.svg │ │ │ ├── sun.svg │ │ │ ├── support.svg │ │ │ ├── switch-horizontal.svg │ │ │ ├── switch-vertical.svg │ │ │ ├── table.svg │ │ │ ├── tag.svg │ │ │ ├── template.svg │ │ │ ├── terminal.svg │ │ │ ├── thumb-down.svg │ │ │ ├── thumb-up.svg │ │ │ ├── ticket.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up.svg │ │ │ ├── truck.svg │ │ │ ├── upload.svg │ │ │ ├── user-add.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-group.svg │ │ │ ├── user-remove.svg │ │ │ ├── user.svg │ │ │ ├── users.svg │ │ │ ├── variable.svg │ │ │ ├── video-camera.svg │ │ │ ├── view-boards.svg │ │ │ ├── view-grid-add.svg │ │ │ ├── view-grid.svg │ │ │ ├── view-list.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── wifi.svg │ │ │ ├── x-circle.svg │ │ │ ├── x.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ ├── Label │ │ ├── Label.stories.tsx │ │ ├── Label.test.tsx │ │ ├── Label.tsx │ │ └── index.ts │ ├── LightDarkImg │ │ ├── LightDarkImg.stories.tsx │ │ ├── LightDarkImg.test.tsx │ │ ├── LightDarkImg.tsx │ │ └── index.ts │ ├── LoadingLogo │ │ ├── LoadingLogo.stories.tsx │ │ ├── LoadingLogo.tsx │ │ └── index.ts │ ├── MetricCard │ │ ├── MetricCard.stories.tsx │ │ ├── MetricCard.test.tsx │ │ ├── MetricCard.tsx │ │ └── index.ts │ ├── Modal │ │ ├── BaseModal.tsx │ │ ├── Modal.stories.tsx │ │ ├── Modal.test.tsx │ │ ├── Modal.tsx │ │ └── index.ts │ ├── MultiSelect │ │ ├── MultiSelect.jsx │ │ ├── MultiSelect.stories.jsx │ │ ├── MultiSelect.test.jsx │ │ └── index.ts │ ├── OptionButton │ │ ├── OptionButton.stories.tsx │ │ ├── OptionButton.test.tsx │ │ └── OptionButton.tsx │ ├── Progress │ │ ├── Progress.stories.jsx │ │ ├── Progress.test.tsx │ │ ├── Progress.tsx │ │ └── index.ts │ ├── RadioInput │ │ ├── RadioInput.stories.tsx │ │ ├── RadioInput.test.tsx │ │ └── RadioInput.tsx │ ├── RadioTileGroup │ │ ├── RadioTileGroup.stories.tsx │ │ ├── RadioTileGroup.test.tsx │ │ ├── RadioTileGroup.tsx │ │ └── index.ts │ ├── SearchField │ │ ├── SearchField.jsx │ │ ├── SearchField.stories.jsx │ │ ├── SearchField.test.jsx │ │ └── index.ts │ ├── Select │ │ ├── Select.jsx │ │ ├── Select.stories.jsx │ │ ├── Select.test.jsx │ │ └── index.ts │ ├── SettingsDescriptor │ │ ├── SettingsDescriptor.stories.tsx │ │ ├── SettingsDescriptor.test.tsx │ │ ├── SettingsDescriptor.tsx │ │ └── index.ts │ ├── Sidemenu │ │ ├── Sidemenu.stories.tsx │ │ ├── Sidemenu.test.tsx │ │ ├── Sidemenu.tsx │ │ └── index.ts │ ├── Sparkline │ │ ├── Sparkline.stories.tsx │ │ ├── Sparkline.test.tsx │ │ ├── Sparkline.tsx │ │ ├── index.js │ │ └── sparkline.css │ ├── Spinner │ │ ├── Spinner.stories.jsx │ │ ├── Spinner.tsx │ │ └── index.ts │ ├── Summary │ │ ├── Summary.stories.tsx │ │ ├── Summary.test.tsx │ │ ├── Summary.tsx │ │ ├── SummaryField │ │ │ ├── SummaryField.stories.tsx │ │ │ ├── SummaryField.test.tsx │ │ │ ├── SummaryField.tsx │ │ │ └── index.ts │ │ ├── SummaryRoot │ │ │ ├── SummaryRoot.stories.tsx │ │ │ ├── SummaryRoot.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── SummaryDropdown │ │ ├── SummaryDropdown.stories.tsx │ │ ├── SummaryDropdown.test.tsx │ │ ├── SummaryDropdown.tsx │ │ └── index.ts │ ├── SunburstChart │ │ ├── SunburstChart.jsx │ │ ├── SunburstChart.stories.jsx │ │ ├── data.json │ │ ├── index.js │ │ ├── note.txt │ │ └── utils.js │ ├── TabNavigation │ │ ├── TabNavigation.stories.tsx │ │ ├── TabNavigation.test.tsx │ │ ├── TabNavigation.tsx │ │ └── index.ts │ ├── Table │ │ ├── Table.css │ │ ├── Table.stories.md │ │ ├── Table.stories.tsx │ │ ├── TableColumnWidths.stories.tsx │ │ ├── TableMultiline.stories.tsx │ │ ├── TableResponsive.stories.tsx │ │ └── TableSorting.stories.tsx │ ├── TextInput │ │ ├── TextInput.stories.tsx │ │ ├── TextInput.test.tsx │ │ ├── TextInput.tsx │ │ └── index.ts │ ├── Toggle │ │ ├── Toggle.stories.tsx │ │ ├── Toggle.test.tsx │ │ ├── Toggle.tsx │ │ └── index.ts │ ├── ToggleElement │ │ ├── ToggleElement.test.tsx │ │ ├── ToggleElement.tsx │ │ └── index.ts │ ├── TokenWrapper │ │ ├── TokenWrapper.stories.tsx │ │ ├── TokenWrapper.test.tsx │ │ ├── TokenWrapper.tsx │ │ └── index.ts │ ├── Tooltip │ │ ├── Tooltip.stories.tsx │ │ ├── Tooltip.test.tsx │ │ ├── Tooltip.tsx │ │ └── index.ts │ ├── TopBanner │ │ ├── TopBanner.stories.tsx │ │ ├── TopBanner.test.tsx │ │ ├── TopBanner.tsx │ │ └── index.ts │ ├── TotalsNumber │ │ ├── TotalsNumber.stories.tsx │ │ ├── TotalsNumber.test.tsx │ │ ├── TotalsNumber.tsx │ │ └── index.ts │ ├── TruncatedMessage │ │ ├── TruncatedMessage.test.tsx │ │ ├── TruncatedMessage.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useTruncation.test.ts │ │ │ └── useTruncation.ts │ │ └── index.ts │ └── VirtualRenderers │ │ ├── ColorBar.test.tsx │ │ ├── ColorBar.tsx │ │ ├── LineNumber.tsx │ │ ├── ScrollBar.tsx │ │ ├── VirtualDiffRenderer.test.tsx │ │ ├── VirtualDiffRenderer.tsx │ │ ├── VirtualFileRenderer.css │ │ ├── VirtualFileRenderer.test.tsx │ │ ├── VirtualFileRenderer.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useIsOverflowing.test.ts │ │ ├── useIsOverflowing.ts │ │ ├── useScrollLeftSync.test.tsx │ │ ├── useScrollLeftSync.ts │ │ ├── useSyncScrollMargin.test.ts │ │ ├── useSyncScrollMargin.ts │ │ ├── useSyncTotalWidth.test.tsx │ │ ├── useSyncTotalWidth.ts │ │ ├── useSyncWrapperWidth.test.ts │ │ └── useSyncWrapperWidth.ts ├── vite-env.d.ts └── vitest.setup.ts ├── tailwind.config.mjs ├── tsconfig.json ├── vite.config.mjs ├── vitest.config.mjs └── yarn.lock /.deep-dive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.deep-dive.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .circleci 2 | .github 3 | Makefile -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.env.production -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cache_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.github/workflows/cache_cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.huskyrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.11.0 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.sentryclirc: -------------------------------------------------------------------------------- 1 | [defaults] 2 | project=gazebo 3 | org=codecov 4 | -------------------------------------------------------------------------------- /.storybook/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.storybook/Layout.tsx -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.storybook/manager.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 25.11.3 -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/codecov.yml -------------------------------------------------------------------------------- /custom-headers/_preview_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/custom-headers/_preview_headers -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/docker/index.html -------------------------------------------------------------------------------- /docker/nginx-no-ipv6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/docker/nginx-no-ipv6.conf -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/start-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/docker/start-nginx.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/_headers -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/logo-192x192.png -------------------------------------------------------------------------------- /public/logo-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/logo-256x256.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/logo_dark.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/icon-list.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/scripts/icon-list.mjs -------------------------------------------------------------------------------- /scripts/icons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/scripts/icons.mjs -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/DarkModeColors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/DarkModeColors.mdx -------------------------------------------------------------------------------- /src/LightModeColors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/LightModeColors.mdx -------------------------------------------------------------------------------- /src/assets/billing/amex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/amex.svg -------------------------------------------------------------------------------- /src/assets/billing/bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/bank.svg -------------------------------------------------------------------------------- /src/assets/billing/dinners-club.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/dinners-club.svg -------------------------------------------------------------------------------- /src/assets/billing/discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/discover.svg -------------------------------------------------------------------------------- /src/assets/billing/jcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/jcb.svg -------------------------------------------------------------------------------- /src/assets/billing/mastercard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/mastercard.svg -------------------------------------------------------------------------------- /src/assets/billing/union-pay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/union-pay.svg -------------------------------------------------------------------------------- /src/assets/billing/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/billing/visa.svg -------------------------------------------------------------------------------- /src/assets/codecov_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/codecov_logo.png -------------------------------------------------------------------------------- /src/assets/enterprise-banner-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/enterprise-banner-bg.png -------------------------------------------------------------------------------- /src/assets/enterprise-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/enterprise-rocket.png -------------------------------------------------------------------------------- /src/assets/flagManagement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/flagManagement.svg -------------------------------------------------------------------------------- /src/assets/frontendAndBackend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/frontendAndBackend.jpg -------------------------------------------------------------------------------- /src/assets/githublogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/githublogo.png -------------------------------------------------------------------------------- /src/assets/plan/parasol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/plan/parasol.png -------------------------------------------------------------------------------- /src/assets/plan/sentry_codecov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/plan/sentry_codecov.svg -------------------------------------------------------------------------------- /src/assets/providers/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/providers/github-icon.svg -------------------------------------------------------------------------------- /src/assets/providers/gitlab-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/providers/gitlab-icon.svg -------------------------------------------------------------------------------- /src/assets/providers/okta-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/providers/okta-icon.svg -------------------------------------------------------------------------------- /src/assets/providers/sentry-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/providers/sentry-icon.svg -------------------------------------------------------------------------------- /src/assets/svg/codecov.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/codecov.tsx -------------------------------------------------------------------------------- /src/assets/svg/flagManagement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/flagManagement.svg -------------------------------------------------------------------------------- /src/assets/svg/graphs/icicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/graphs/icicle.svg -------------------------------------------------------------------------------- /src/assets/svg/graphs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/graphs/index.js -------------------------------------------------------------------------------- /src/assets/svg/graphs/sunburst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/graphs/sunburst.svg -------------------------------------------------------------------------------- /src/assets/svg/graphs/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/graphs/tree.svg -------------------------------------------------------------------------------- /src/assets/svg/invoice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/invoice.svg -------------------------------------------------------------------------------- /src/assets/svg/signIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/signIn.svg -------------------------------------------------------------------------------- /src/assets/svg/umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/assets/svg/umbrella.svg -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/config.js -------------------------------------------------------------------------------- /src/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/config.test.js -------------------------------------------------------------------------------- /src/custom-testing-library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/custom-testing-library.js -------------------------------------------------------------------------------- /src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/globals.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layouts/BaseLayout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BaseLayout' 2 | -------------------------------------------------------------------------------- /src/layouts/EnterpriseLoginLayout/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/layouts/EnterpriseLoginLayout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EnterpriseLoginLayout' 2 | -------------------------------------------------------------------------------- /src/layouts/Footer/Footer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/layouts/Footer/Footer.test.tsx -------------------------------------------------------------------------------- /src/layouts/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/layouts/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/layouts/Footer/FooterItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/layouts/Footer/FooterItem.tsx -------------------------------------------------------------------------------- /src/layouts/Footer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Footer' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/layouts/Header/Header.test.tsx -------------------------------------------------------------------------------- /src/layouts/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/layouts/Header/Header.tsx -------------------------------------------------------------------------------- /src/layouts/Header/components/AdminLink/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdminLink' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/components/GuestHeader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GuestHeader' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/components/HelpDropdown/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HelpDropdown' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/components/Navigator/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Navigator' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/components/SeatDetails/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SeatDetails' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/components/ThemeToggle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ThemeToggle' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/components/UserDropdown/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UserDropdown' 2 | -------------------------------------------------------------------------------- /src/layouts/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/layouts/LoginLayout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LoginLayout' 2 | -------------------------------------------------------------------------------- /src/layouts/SidebarLayout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SidebarLayout' 2 | -------------------------------------------------------------------------------- /src/layouts/ToastNotifications/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ToastNotifications' 2 | -------------------------------------------------------------------------------- /src/layouts/shared/ErrorBoundary/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ErrorBoundary' 2 | -------------------------------------------------------------------------------- /src/layouts/shared/NetworkErrorBoundary/NetworkErrorBoundary.module.css: -------------------------------------------------------------------------------- 1 | .illustrationError { 2 | width: 200px; 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/shared/NetworkErrorBoundary/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NetworkErrorBoundary' 2 | -------------------------------------------------------------------------------- /src/layouts/shared/SilentNetworkError/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SilentNetworkError' 2 | -------------------------------------------------------------------------------- /src/layouts/shared/SilentNetworkErrorWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SilentNetworkErrorWrapper' 2 | -------------------------------------------------------------------------------- /src/mocks/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/mocks/browser.js -------------------------------------------------------------------------------- /src/mocks/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/mocks/handlers.js -------------------------------------------------------------------------------- /src/old_ui/AppLink/AppLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/AppLink/AppLink.jsx -------------------------------------------------------------------------------- /src/old_ui/AppLink/AppLink.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/AppLink/AppLink.test.jsx -------------------------------------------------------------------------------- /src/old_ui/AppLink/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AppLink' 2 | -------------------------------------------------------------------------------- /src/old_ui/AppLink/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/AppLink/note.md -------------------------------------------------------------------------------- /src/old_ui/Avatar/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Avatar/Avatar.jsx -------------------------------------------------------------------------------- /src/old_ui/Avatar/Avatar.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Avatar/Avatar.test.jsx -------------------------------------------------------------------------------- /src/old_ui/Avatar/BBAvatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Avatar/BBAvatar.jsx -------------------------------------------------------------------------------- /src/old_ui/Avatar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Avatar' 2 | -------------------------------------------------------------------------------- /src/old_ui/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Card/Card.jsx -------------------------------------------------------------------------------- /src/old_ui/Card/Card.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Card/Card.stories.jsx -------------------------------------------------------------------------------- /src/old_ui/Card/Card.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Card/Card.test.jsx -------------------------------------------------------------------------------- /src/old_ui/Card/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Card' 2 | -------------------------------------------------------------------------------- /src/old_ui/Icon/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/Icon.jsx -------------------------------------------------------------------------------- /src/old_ui/Icon/Icon.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/Icon.stories.jsx -------------------------------------------------------------------------------- /src/old_ui/Icon/Icon.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/Icon.test.jsx -------------------------------------------------------------------------------- /src/old_ui/Icon/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Icon' 2 | -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/angleDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/angleDown.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/angleUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/angleUp.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/arrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/arrowLeft.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/ban.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/check.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/chevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/chevronLeft.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/chevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/chevronRight.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/creditCard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/creditCard.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/fileAlt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/fileAlt.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/hamburger.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/index.jsx -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/infoCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/infoCircle.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/search.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/setting.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/signOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/signOut.svg -------------------------------------------------------------------------------- /src/old_ui/Icon/svg/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Icon/svg/times.svg -------------------------------------------------------------------------------- /src/old_ui/Message/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Message/Message.jsx -------------------------------------------------------------------------------- /src/old_ui/Message/Message.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/Message/Message.test.jsx -------------------------------------------------------------------------------- /src/old_ui/Message/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Message' 2 | -------------------------------------------------------------------------------- /src/old_ui/User/User.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/User/User.jsx -------------------------------------------------------------------------------- /src/old_ui/User/User.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/User/User.stories.jsx -------------------------------------------------------------------------------- /src/old_ui/User/User.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/old_ui/User/User.test.jsx -------------------------------------------------------------------------------- /src/old_ui/User/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './User' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AccountSettings' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/shared/BackLink/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './BackLink' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/shared/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Access/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Access' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Admin/DetailsSection/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './DetailsSection' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Admin/ManageAdminCard/AddAdmins/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AddAdmins' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Admin/ManageAdminCard/AdminTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdminTable' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Admin/ManageAdminCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ManageAdminCard' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Admin/StudentSection/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './StudentSection.jsx' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Admin/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Admin' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/DeletionCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DeletionCard' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/OktaAccess/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OktaAccess' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/OrgUploadToken/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OrgUploadToken' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Profile/ActivationBanner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ActivationBanner' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Profile/AdminBanner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AdminBanner' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Profile/NameEmailCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NameEmailCard' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/Profile/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Profile' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/YAML/SuccessModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SuccessModal' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/YAML/YamlEditor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './YamlEditor' 2 | -------------------------------------------------------------------------------- /src/pages/AccountSettings/tabs/YAML/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './YAML' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/AdminAccess/AdminAccessTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdminAccessTable' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/AdminAccess/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdminAccess' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/AdminMembers/ActivationInfo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ActivationInfo' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/AdminMembers/MemberList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MemberList' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/AdminMembers/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AdminMembers' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/AdminSettingsSidebar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AdminSettingsSidebar' 2 | -------------------------------------------------------------------------------- /src/pages/AdminSettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AdminSettings' 2 | -------------------------------------------------------------------------------- /src/pages/AnalyticsPage/Chart/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Chart' 2 | -------------------------------------------------------------------------------- /src/pages/AnalyticsPage/ChartSelectors/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ChartSelectors' 2 | -------------------------------------------------------------------------------- /src/pages/AnalyticsPage/Tabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Tabs' 2 | -------------------------------------------------------------------------------- /src/pages/AnalyticsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AnalyticsPage' 2 | -------------------------------------------------------------------------------- /src/pages/CodecovAIPage/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './CodecovAIPage' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitBundleAnalysis/BundleMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundleMessage' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitBundleAnalysis/EmptyTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EmptyTable' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitBundleAnalysis/FirstPullBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FirstPullBanner' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitBundleAnalysis/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CommitBundleAnalysis' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/BotErrorBanner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './BotErrorBanner' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/CommitCoverageSummary/hooks/index.js: -------------------------------------------------------------------------------- 1 | export * from './useCommitForSummary' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/CommitCoverageTabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CommitCoverageTabs' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/ErroredUploads/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ErroredUploads' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/FirstPullBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FirstPullBanner' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/UploadsCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UploadsCard' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/UploadsCard/useUploads/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useUploads' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/YamlErrorBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './YamlErrorBanner' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/YamlModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './YamlModal' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CommitCoverage' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/CommitCoverage/routes/FilesChangedTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FilesChangedTab' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/Header/HeaderTeam/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './HeaderTeam' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/Header/PullLabel/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PullLabel' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/pages/CommitDetailPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CommitDetailPage' 2 | -------------------------------------------------------------------------------- /src/pages/EnterpriseLandingPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EnterpriseLandingPage' 2 | -------------------------------------------------------------------------------- /src/pages/LoginPage/LoginButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/LoginPage/LoginButton.jsx -------------------------------------------------------------------------------- /src/pages/LoginPage/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/LoginPage/LoginPage.jsx -------------------------------------------------------------------------------- /src/pages/LoginPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './LoginPage' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/MembersActivation/Activation/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Activation' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/MembersActivation/AutoActivate/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AutoActivate' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/MembersActivation/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MembersActivation' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/MembersList/UpgradeModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UpgradeModal' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/MembersList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MembersList' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/MissingMemberBanner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MissingMemberBanner' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/MembersPage/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/pages/MembersPage/Tabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Tabs' 2 | -------------------------------------------------------------------------------- /src/pages/MembersPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MembersPage' 2 | -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/NotFound/NotFound.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.module.css: -------------------------------------------------------------------------------- 1 | .illustrationError { 2 | width: 200px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/NotFound/NotFound.test.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NotFound' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/HeaderBanners/ExceededUploadsAlert/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ExceededUploadsAlert' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/HeaderBanners/GithubConfigBanner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './GithubConfigBanner' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/HeaderBanners/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './HeaderBanners' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/OwnerPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/OwnerPage/OwnerPage.jsx -------------------------------------------------------------------------------- /src/pages/OwnerPage/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/OwnerPage/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/pages/OwnerPage/Tabs/TrialReminder/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TrialReminder' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/Tabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Tabs' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/hooks/index.js: -------------------------------------------------------------------------------- 1 | export * from './useOwnerPageData' 2 | -------------------------------------------------------------------------------- /src/pages/OwnerPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './OwnerPage' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/PlanPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/PlanPage/PlanPage.test.tsx -------------------------------------------------------------------------------- /src/pages/PlanPage/PlanPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/PlanPage/PlanPage.tsx -------------------------------------------------------------------------------- /src/pages/PlanPage/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/PlanPage/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/pages/PlanPage/Tabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Tabs' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/context.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/PlanPage/context.test.jsx -------------------------------------------------------------------------------- /src/pages/PlanPage/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/PlanPage/context.tsx -------------------------------------------------------------------------------- /src/pages/PlanPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PlanPage' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CancelPlanPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CancelPlanPage' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CancelPlanPage/subRoutes/DowngradePlan/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './DowngradePlan' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CancelPlanPage/subRoutes/SpecialOffer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SpecialOffer' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CurrentOrgPlan/AccountOrgs/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountOrgs' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CurrentOrgPlan/BillingDetails/PaymentCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PaymentCard' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CurrentOrgPlan/BillingDetails/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BillingDetails' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CurrentOrgPlan/CurrentPlanCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CurrentPlanCard' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CurrentOrgPlan/LatestInvoiceCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LatestInvoiceCard' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/CurrentOrgPlan/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CurrentOrgPlan' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/InvoiceDetailsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InvoiceDetail' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/InvoicesPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './InvoicesPage' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/UpgradeDetails/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UpgradeDetails' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/UpgradeForm/Controllers/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Controller' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/UpgradeForm/UpdateBlurb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UpdateBlurb' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/UpgradeForm/UpdateButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UpdateButton' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/UpgradeForm/hooks/index.js: -------------------------------------------------------------------------------- 1 | export * from './useUpgradeControls' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/UpgradeForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UpgradeForm' 2 | -------------------------------------------------------------------------------- /src/pages/PlanPage/subRoutes/UpgradePlanPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UpgradePlanPage' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/Header/HeaderTeam/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HeaderTeam' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullBundleAnalysis/BundleMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundleMessage' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullBundleAnalysis/EmptyTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EmptyTable' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullBundleAnalysis/FirstPullBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FirstPullBanner' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullBundleAnalysis/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PullBundleAnalysis' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/FirstPullBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FirstPullBanner' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/PullCoverageTabs/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PullCoverageTabs' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/Summary/CompareSummary/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CompareSummary' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/Summary/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Summary' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PullCoverage' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/CommitsTab/CommitsTable/Title/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Title' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/CommitsTab/CommitsTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CommitsTable' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/CommitsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CommitsTab' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/ComponentsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ComponentsTable' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/FileExplorer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FileExplorer' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/FileViewer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FileViewer' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/FilesChangedTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FilesChangedTab' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/PullCoverage/routes/FlagsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FlagsTab' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PullRequestPage' 2 | -------------------------------------------------------------------------------- /src/pages/PullRequestPage/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from './paths' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ActivationAlert/ActivationRequiredAlert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ActivationRequiredAlert' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ActivationAlert/FreePlanSeatsTakenAlert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FreePlanSeatsTakenAlert' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ActivationAlert/PaidPlanSeatsTakenAlert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PaidPlanSeatsTakenAlert' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ActivationAlert/UnauthorizedRepoDisplay/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UnauthorizedRepoDisplay' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ActivationAlert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ActivationAlert' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleContent/BundleSelection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundleSelection' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleContent/ErrorBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ErrorBanner' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleContent/InfoBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InfoBanner' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundleContent' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/LearnMoreBlurb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LearnMoreBlurb' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/NuxtOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NuxtOnboarding' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/RemixOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RemixOnboarding' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/RollupOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RollupOnboarding' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/ViteOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ViteOnboarding' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/WebpackOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebpackOnboarding' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/BundleOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundleOnboarding' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/BundlesTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundlesTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CommitsTab/CommitsTable/Title/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Title' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CommitsTab/CommitsTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CommitsTable' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CommitsTab/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useCommitsTabBranchSelector' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CommitsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CommitsTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ConfigTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/BadgesAndGraphsTab/Badges/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Badges' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/BadgesAndGraphsTab/Graphs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Graphs' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/BadgesAndGraphsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BadgesAndGraphsTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/ConfigurationManager/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConfigurationManager' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/DangerZone/EraseRepo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EraseRepo' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/DangerZone/RepoState/hooks/index.js: -------------------------------------------------------------------------------- 1 | export * from './useRepoActivation' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/DangerZone/RepoState/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './RepoState' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/DangerZone/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './DangerZone' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/Tokens/GraphToken/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './GraphToken' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/Tokens/TokensTeam/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TokensTeam' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/GeneralTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GeneralTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/YamlTab/CurrentRepoSettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CurrentRepoSettings' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/YamlTab/SecretString/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SecretString' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/YamlTab/ValidateYaml/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ValidateYaml' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/YamlTab/YAML/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './YAML' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/ConfigTab/tabs/YamlTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './YamlTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/ActivationBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ActivationBanner' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/CircleCI/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CircleCI' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/ExampleBlurb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ExampleBlurb' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/GitHubActions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GitHubActions' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/LearnMoreBlurb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LearnMoreBlurb' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/OtherCI/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OtherCI' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageOnboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NewRepoTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/ComponentsTab/BackfillBanners/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BackfillBanners' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/ComponentsTab/Header/BranchSelector/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BranchSelector' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/ComponentsTab/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/ComponentsTab/TimescaleDisabled/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TimescaleDisabled' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/ComponentsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ComponentsTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/FlagsTab/BackfillBanners/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BackfillBanners' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/FlagsTab/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/FlagsTab/TimescaleDisabled/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TimescaleDisabled' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/FlagsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FlagsTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/Summary/CoverageTrend/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CoverageTrend' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/Summary/TrendDropdown/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TrendDropdown' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/Summary/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Summary' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/SummaryTeamPlan/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SummaryTeamPlan' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OverviewTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/subroute/CoverageChart/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CoverageChart' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FileExplorer' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/subroute/Fileviewer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Fileviewer' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/OverviewTab/subroute/Sunburst/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Sunburst' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/CoverageTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CoverageTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/DeactivatedRepo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DeactivatedRepo' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/FailedTestsTab/CodecovCLI/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CodecovCLI' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/FailedTestsTab/FailedTestsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FailedTestsPage' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/FailedTestsTab/GitHubActions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GitHubActions' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/FailedTestsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FailedTestsTab' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/PullsTab/PullsTable/Title/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Title' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/PullsTab/PullsTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PullsTable' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/PullsTab/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/PullsTab/enums.ts -------------------------------------------------------------------------------- /src/pages/RepoPage/PullsTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/PullsTab/index.ts -------------------------------------------------------------------------------- /src/pages/RepoPage/PullsTab/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/PullsTab/types.js -------------------------------------------------------------------------------- /src/pages/RepoPage/RepoPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/RepoPage.test.tsx -------------------------------------------------------------------------------- /src/pages/RepoPage/RepoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/RepoPage.tsx -------------------------------------------------------------------------------- /src/pages/RepoPage/RepoPageTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/RepoPageTabs.tsx -------------------------------------------------------------------------------- /src/pages/RepoPage/context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/context.test.tsx -------------------------------------------------------------------------------- /src/pages/RepoPage/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/context.tsx -------------------------------------------------------------------------------- /src/pages/RepoPage/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pathMatchersHooks' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './RepoPage' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './paths' 2 | -------------------------------------------------------------------------------- /src/pages/RepoPage/utils/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/pages/RepoPage/utils/paths.ts -------------------------------------------------------------------------------- /src/pages/SyncProviderPage/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './SyncProviderPage' 2 | -------------------------------------------------------------------------------- /src/pages/TermsOfService/constants.ts: -------------------------------------------------------------------------------- 1 | export const ONBOARDING_SOURCE = 'onboarding' 2 | -------------------------------------------------------------------------------- /src/pages/TermsOfService/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TermsOfService' 2 | -------------------------------------------------------------------------------- /src/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/sentry.ts -------------------------------------------------------------------------------- /src/services/access/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/access/constants.ts -------------------------------------------------------------------------------- /src/services/account/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/account/mocks.ts -------------------------------------------------------------------------------- /src/services/account/propTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/account/propTypes.js -------------------------------------------------------------------------------- /src/services/account/useInvoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/account/useInvoice.ts -------------------------------------------------------------------------------- /src/services/account/useInvoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/account/useInvoices.ts -------------------------------------------------------------------------------- /src/services/account/usePlanData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/account/usePlanData.ts -------------------------------------------------------------------------------- /src/services/ats/useRepoATS.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/ats/useRepoATS.test.tsx -------------------------------------------------------------------------------- /src/services/ats/useRepoATS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/ats/useRepoATS.tsx -------------------------------------------------------------------------------- /src/services/branches/useBranch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/branches/useBranch.tsx -------------------------------------------------------------------------------- /src/services/charts/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/charts/mocks.ts -------------------------------------------------------------------------------- /src/services/commit/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/commit/mocks.ts -------------------------------------------------------------------------------- /src/services/commit/useCommit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/commit/useCommit.tsx -------------------------------------------------------------------------------- /src/services/commits/useCommits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/commits/useCommits.tsx -------------------------------------------------------------------------------- /src/services/comparison/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/comparison/constants.ts -------------------------------------------------------------------------------- /src/services/comparison/useComparisonForCommitAndParent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useComparisonForCommitAndParent' 2 | -------------------------------------------------------------------------------- /src/services/comparison/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/comparison/utils.ts -------------------------------------------------------------------------------- /src/services/events/events.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/events/events.test.tsx -------------------------------------------------------------------------------- /src/services/events/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/events/events.ts -------------------------------------------------------------------------------- /src/services/events/hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/events/hooks.test.tsx -------------------------------------------------------------------------------- /src/services/events/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/events/hooks.tsx -------------------------------------------------------------------------------- /src/services/events/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/events/types.ts -------------------------------------------------------------------------------- /src/services/image/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useImage' 2 | -------------------------------------------------------------------------------- /src/services/image/useImage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/image/useImage.test.ts -------------------------------------------------------------------------------- /src/services/image/useImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/image/useImage.ts -------------------------------------------------------------------------------- /src/services/navigation/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/navigation/normalize.ts -------------------------------------------------------------------------------- /src/services/pathContents/branch/file/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePrefetchBranchFileEntry' 2 | -------------------------------------------------------------------------------- /src/services/pathContents/commit/file/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePrefetchCommitFileEntry' 2 | -------------------------------------------------------------------------------- /src/services/pathContents/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useFileWithMainCoverage' 2 | -------------------------------------------------------------------------------- /src/services/pathContents/pull/file/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePrefetchPullFileEntry' 2 | -------------------------------------------------------------------------------- /src/services/pathContents/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pathContents/utils.ts -------------------------------------------------------------------------------- /src/services/pull/fragments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pull/fragments.ts -------------------------------------------------------------------------------- /src/services/pull/usePull.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pull/usePull.test.tsx -------------------------------------------------------------------------------- /src/services/pull/usePull.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pull/usePull.tsx -------------------------------------------------------------------------------- /src/services/pull/usePullTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pull/usePullTeam.tsx -------------------------------------------------------------------------------- /src/services/pull/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pull/utils/index.ts -------------------------------------------------------------------------------- /src/services/pulls/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePulls' 2 | -------------------------------------------------------------------------------- /src/services/pulls/usePulls.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pulls/usePulls.test.tsx -------------------------------------------------------------------------------- /src/services/pulls/usePulls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/pulls/usePulls.tsx -------------------------------------------------------------------------------- /src/services/repo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/index.ts -------------------------------------------------------------------------------- /src/services/repo/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/mocks.ts -------------------------------------------------------------------------------- /src/services/repo/useRepo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/useRepo.test.tsx -------------------------------------------------------------------------------- /src/services/repo/useRepo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/useRepo.tsx -------------------------------------------------------------------------------- /src/services/repo/useRepoConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/useRepoConfig.tsx -------------------------------------------------------------------------------- /src/services/repo/useRepoFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/useRepoFlags.tsx -------------------------------------------------------------------------------- /src/services/repo/useUpdateRepo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/repo/useUpdateRepo.js -------------------------------------------------------------------------------- /src/services/toast/renderToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/toast/renderToast.tsx -------------------------------------------------------------------------------- /src/services/tracking/pendo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/tracking/pendo.js -------------------------------------------------------------------------------- /src/services/tracking/pendo.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/tracking/pendo.test.jsx -------------------------------------------------------------------------------- /src/services/tracking/useTracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/tracking/useTracking.js -------------------------------------------------------------------------------- /src/services/tracking/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/tracking/utils.js -------------------------------------------------------------------------------- /src/services/tracking/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/tracking/utils.test.js -------------------------------------------------------------------------------- /src/services/trial/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useStartTrial' 2 | -------------------------------------------------------------------------------- /src/services/trial/useStartTrial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/trial/useStartTrial.ts -------------------------------------------------------------------------------- /src/services/useIsTeamPlan/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useIsTeamPlan' 2 | -------------------------------------------------------------------------------- /src/services/usePaginatedContents/constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 25 2 | -------------------------------------------------------------------------------- /src/services/usePaginatedContents/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePaginatedContents' 2 | -------------------------------------------------------------------------------- /src/services/user/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/enums.ts -------------------------------------------------------------------------------- /src/services/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/index.ts -------------------------------------------------------------------------------- /src/services/user/useInternalUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useInternalUser.ts -------------------------------------------------------------------------------- /src/services/user/useMyContexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useMyContexts.ts -------------------------------------------------------------------------------- /src/services/user/useOnboardUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useOnboardUser.ts -------------------------------------------------------------------------------- /src/services/user/useOwner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useOwner.test.tsx -------------------------------------------------------------------------------- /src/services/user/useOwner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useOwner.ts -------------------------------------------------------------------------------- /src/services/user/useResyncUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useResyncUser.ts -------------------------------------------------------------------------------- /src/services/user/useUser.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useUser.test.tsx -------------------------------------------------------------------------------- /src/services/user/useUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/user/useUser.ts -------------------------------------------------------------------------------- /src/services/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/users/index.js -------------------------------------------------------------------------------- /src/services/users/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/users/mocks.js -------------------------------------------------------------------------------- /src/services/users/useUpdateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/users/useUpdateUser.js -------------------------------------------------------------------------------- /src/services/users/useUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/users/useUsers.js -------------------------------------------------------------------------------- /src/services/users/useUsers.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/users/useUsers.test.jsx -------------------------------------------------------------------------------- /src/services/yaml/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/yaml/index.js -------------------------------------------------------------------------------- /src/services/yaml/useUpdateYaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/yaml/useUpdateYaml.js -------------------------------------------------------------------------------- /src/services/yaml/useYamlConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/services/yaml/useYamlConfig.js -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /src/shared/AppInstallModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AppInstallModal' 2 | -------------------------------------------------------------------------------- /src/shared/AppLink/AppLink.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/AppLink/AppLink.test.jsx -------------------------------------------------------------------------------- /src/shared/AppLink/AppLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/AppLink/AppLink.tsx -------------------------------------------------------------------------------- /src/shared/AppLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/AppLink/index.ts -------------------------------------------------------------------------------- /src/shared/ComparisonErrorBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ComparisonErrorBanner' 2 | -------------------------------------------------------------------------------- /src/shared/ComponentsNotConfigured/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ComponentsNotConfigured' 2 | -------------------------------------------------------------------------------- /src/shared/ContentsTable/ContentsTableHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ContentsTableHeader' 2 | -------------------------------------------------------------------------------- /src/shared/ContentsTable/FileBreadcrumb/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FileBreadcrumb' 2 | -------------------------------------------------------------------------------- /src/shared/ContentsTable/MissingFileData/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MissingFileData' 2 | -------------------------------------------------------------------------------- /src/shared/ContentsTable/useTableDefaultSort/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useTableDefaultSort' 2 | -------------------------------------------------------------------------------- /src/shared/ContentsTable/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './adjustListIfUpDir' 2 | -------------------------------------------------------------------------------- /src/shared/FlagsNotConfigured/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FlagsNotConfigured' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalBanners/MissingDesignatedAdmins/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MissingDesignatedAdmins' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalBanners/SelfHostedLicenseExpiration/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SelfHostedLicenseExpiration' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalBanners/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './GlobalBanners' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/BundleFeedbackBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BundleFeedbackBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/OktaBanners/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OktaBanners' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/OktaEnabledBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OktaEnabledBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/OktaEnforcedBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OktaEnforcedBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/OktaErrorBanners/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OktaErrorBanners' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/ProPlanFeedbackBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProPlanFeedbackBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/TeamPlanFeedbackBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TeamPlanFeedbackBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/TokenlessBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TokenlessBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/TrialBanner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TrialBanner' 2 | -------------------------------------------------------------------------------- /src/shared/GlobalTopBanners/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GlobalTopBanners' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/InactiveRepo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InactiveRepo' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/ListRepo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/ListRepo/ListRepo.tsx -------------------------------------------------------------------------------- /src/shared/ListRepo/NoReposBlock/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NoReposBlock' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/OrgControlTable/RepoOrgNotFound/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './RepoOrgNotFound' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/OrgControlTable/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './OrgControlTable' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/RepoTitleLink/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './RepoTitleLink' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/ReposTable/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ReposTable' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/ReposTableTeam/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ReposTableTeam' 2 | -------------------------------------------------------------------------------- /src/shared/ListRepo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ListRepo' 2 | -------------------------------------------------------------------------------- /src/shared/RawFileViewer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RawFileViewer' 2 | -------------------------------------------------------------------------------- /src/shared/ThemeContext/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/ThemeContext/index.ts -------------------------------------------------------------------------------- /src/shared/api/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/api/api.test.ts -------------------------------------------------------------------------------- /src/shared/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/api/api.ts -------------------------------------------------------------------------------- /src/shared/api/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/api/helpers.test.ts -------------------------------------------------------------------------------- /src/shared/api/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/api/helpers.ts -------------------------------------------------------------------------------- /src/shared/api/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './api' 2 | -------------------------------------------------------------------------------- /src/shared/api/rejectNetworkError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/api/rejectNetworkError.ts -------------------------------------------------------------------------------- /src/shared/asserts/assertIsError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/asserts/assertIsError.ts -------------------------------------------------------------------------------- /src/shared/asserts/assertIsString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/asserts/assertIsString.ts -------------------------------------------------------------------------------- /src/shared/asserts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/asserts/index.ts -------------------------------------------------------------------------------- /src/shared/context/activeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/context/activeContext.ts -------------------------------------------------------------------------------- /src/shared/context/index.ts: -------------------------------------------------------------------------------- 1 | export * from './activeContext' 2 | -------------------------------------------------------------------------------- /src/shared/featureFlags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/featureFlags/index.ts -------------------------------------------------------------------------------- /src/shared/plan/BenefitList/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BenefitList' 2 | -------------------------------------------------------------------------------- /src/shared/plan/ScheduledPlanDetails/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScheduledPlanDetails' 2 | -------------------------------------------------------------------------------- /src/shared/propTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/propTypes/index.ts -------------------------------------------------------------------------------- /src/shared/treePaths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/treePaths/index.ts -------------------------------------------------------------------------------- /src/shared/treePaths/useTreePaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/treePaths/useTreePaths.ts -------------------------------------------------------------------------------- /src/shared/useRedirect/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/useRedirect/hooks.test.ts -------------------------------------------------------------------------------- /src/shared/useRedirect/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/useRedirect/hooks.ts -------------------------------------------------------------------------------- /src/shared/useRedirect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hooks' 2 | -------------------------------------------------------------------------------- /src/shared/utils/billing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/billing.test.ts -------------------------------------------------------------------------------- /src/shared/utils/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/billing.ts -------------------------------------------------------------------------------- /src/shared/utils/bundleAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/bundleAnalysis.ts -------------------------------------------------------------------------------- /src/shared/utils/camelizeKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/camelizeKeys.ts -------------------------------------------------------------------------------- /src/shared/utils/cn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/cn.test.ts -------------------------------------------------------------------------------- /src/shared/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/cn.ts -------------------------------------------------------------------------------- /src/shared/utils/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/commit.ts -------------------------------------------------------------------------------- /src/shared/utils/comparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/comparison.ts -------------------------------------------------------------------------------- /src/shared/utils/dates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/dates.test.ts -------------------------------------------------------------------------------- /src/shared/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/dates.ts -------------------------------------------------------------------------------- /src/shared/utils/demo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/demo.test.ts -------------------------------------------------------------------------------- /src/shared/utils/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/demo.ts -------------------------------------------------------------------------------- /src/shared/utils/extractUploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/extractUploads.ts -------------------------------------------------------------------------------- /src/shared/utils/fileviewer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/fileviewer.test.tsx -------------------------------------------------------------------------------- /src/shared/utils/fileviewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/fileviewer.tsx -------------------------------------------------------------------------------- /src/shared/utils/graphql.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/graphql.test.ts -------------------------------------------------------------------------------- /src/shared/utils/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/graphql.ts -------------------------------------------------------------------------------- /src/shared/utils/impactedFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/impactedFiles.ts -------------------------------------------------------------------------------- /src/shared/utils/loginProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/loginProviders.ts -------------------------------------------------------------------------------- /src/shared/utils/ownerHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/ownerHelpers.ts -------------------------------------------------------------------------------- /src/shared/utils/provider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/provider.test.ts -------------------------------------------------------------------------------- /src/shared/utils/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/provider.ts -------------------------------------------------------------------------------- /src/shared/utils/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/queries.ts -------------------------------------------------------------------------------- /src/shared/utils/snakeifyKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/snakeifyKeys.ts -------------------------------------------------------------------------------- /src/shared/utils/timeseriesCharts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/timeseriesCharts.ts -------------------------------------------------------------------------------- /src/shared/utils/upgradeForm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/upgradeForm.test.ts -------------------------------------------------------------------------------- /src/shared/utils/upgradeForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/upgradeForm.ts -------------------------------------------------------------------------------- /src/shared/utils/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/url.test.ts -------------------------------------------------------------------------------- /src/shared/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/shared/utils/url.ts -------------------------------------------------------------------------------- /src/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/stripe.ts -------------------------------------------------------------------------------- /src/ts-override.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ts-override.d.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | export type OrderingDirection = 'ASC' | 'DESC' 2 | -------------------------------------------------------------------------------- /src/ui/A/A.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/A/A.jsx -------------------------------------------------------------------------------- /src/ui/A/A.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/A/A.stories.jsx -------------------------------------------------------------------------------- /src/ui/A/A.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/A/A.test.jsx -------------------------------------------------------------------------------- /src/ui/A/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './A' 2 | -------------------------------------------------------------------------------- /src/ui/Alert/Alert.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Alert/Alert.stories.tsx -------------------------------------------------------------------------------- /src/ui/Alert/Alert.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Alert/Alert.test.tsx -------------------------------------------------------------------------------- /src/ui/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Alert/Alert.tsx -------------------------------------------------------------------------------- /src/ui/Alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Alert/index.ts -------------------------------------------------------------------------------- /src/ui/Avatar/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/Avatar.jsx -------------------------------------------------------------------------------- /src/ui/Avatar/Avatar.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/Avatar.stories.jsx -------------------------------------------------------------------------------- /src/ui/Avatar/Avatar.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/Avatar.test.jsx -------------------------------------------------------------------------------- /src/ui/Avatar/AvatarSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/AvatarSVG.jsx -------------------------------------------------------------------------------- /src/ui/Avatar/AvatarSVG.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/AvatarSVG.test.jsx -------------------------------------------------------------------------------- /src/ui/Avatar/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/enums.js -------------------------------------------------------------------------------- /src/ui/Avatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Avatar/index.js -------------------------------------------------------------------------------- /src/ui/Badge/Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Badge/Badge.stories.tsx -------------------------------------------------------------------------------- /src/ui/Badge/Badge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Badge/Badge.test.tsx -------------------------------------------------------------------------------- /src/ui/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/ui/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Badge' 2 | -------------------------------------------------------------------------------- /src/ui/Banner/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Banner/Banner.jsx -------------------------------------------------------------------------------- /src/ui/Banner/Banner.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Banner/Banner.stories.jsx -------------------------------------------------------------------------------- /src/ui/Banner/Banner.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Banner/Banner.test.jsx -------------------------------------------------------------------------------- /src/ui/Banner/BannerContent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './BannerContent' 2 | -------------------------------------------------------------------------------- /src/ui/Banner/BannerHeading/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './BannerHeading' 2 | -------------------------------------------------------------------------------- /src/ui/Banner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Banner' 2 | -------------------------------------------------------------------------------- /src/ui/Breadcrumb/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Breadcrumb/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/ui/Breadcrumb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Breadcrumb' 2 | -------------------------------------------------------------------------------- /src/ui/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Button/Button.stories.tsx -------------------------------------------------------------------------------- /src/ui/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Button/Button.test.tsx -------------------------------------------------------------------------------- /src/ui/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Button/Button.tsx -------------------------------------------------------------------------------- /src/ui/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button' 2 | -------------------------------------------------------------------------------- /src/ui/CIStatus/CIStatus.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CIStatus/CIStatus.stories.tsx -------------------------------------------------------------------------------- /src/ui/CIStatus/CIStatus.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CIStatus/CIStatus.test.jsx -------------------------------------------------------------------------------- /src/ui/CIStatus/CIStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CIStatus/CIStatus.tsx -------------------------------------------------------------------------------- /src/ui/CIStatus/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CIStatus' 2 | -------------------------------------------------------------------------------- /src/ui/Card/Card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Card/Card.stories.tsx -------------------------------------------------------------------------------- /src/ui/Card/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Card/Card.test.tsx -------------------------------------------------------------------------------- /src/ui/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Card/Card.tsx -------------------------------------------------------------------------------- /src/ui/Card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Card/index.ts -------------------------------------------------------------------------------- /src/ui/Chart/Chart.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Chart/Chart.stories.tsx -------------------------------------------------------------------------------- /src/ui/Chart/Chart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Chart/Chart.test.tsx -------------------------------------------------------------------------------- /src/ui/Chart/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Chart/Chart.tsx -------------------------------------------------------------------------------- /src/ui/Chart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Chart/index.ts -------------------------------------------------------------------------------- /src/ui/Checkbox/Checkbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Checkbox/Checkbox.stories.tsx -------------------------------------------------------------------------------- /src/ui/Checkbox/Checkbox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Checkbox/Checkbox.test.tsx -------------------------------------------------------------------------------- /src/ui/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/ui/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Checkbox' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/CodeRenderer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CodeRenderer/CodeRenderer.css -------------------------------------------------------------------------------- /src/ui/CodeRenderer/CodeRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CodeRenderer/CodeRenderer.tsx -------------------------------------------------------------------------------- /src/ui/CodeRenderer/CodeRendererInfoRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CodeRendererInfoRow' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/CodeRendererProgressHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CodeRendererProgressHeader' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/CoverageLineIndicator/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CoverageLineIndicator' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/DiffLine/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DiffLine' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/FileHeader/Coverage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Coverage' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/FileHeader/CoverageValue/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CoverageValue' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/FileHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FileHeader' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/SingleLine/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SingleLine' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/hooks/index.js: -------------------------------------------------------------------------------- 1 | export * from './useScrollToLine' 2 | -------------------------------------------------------------------------------- /src/ui/CodeRenderer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CodeRenderer' 2 | -------------------------------------------------------------------------------- /src/ui/CodeSnippet/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CodeSnippet/CodeSnippet.tsx -------------------------------------------------------------------------------- /src/ui/CodeSnippet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CodeSnippet/index.ts -------------------------------------------------------------------------------- /src/ui/ContextSwitcher/index.ts: -------------------------------------------------------------------------------- 1 | export { default, type Props } from './ContextSwitcher' 2 | -------------------------------------------------------------------------------- /src/ui/CopyClipboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/CopyClipboard/index.ts -------------------------------------------------------------------------------- /src/ui/CoverageProgress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CoverageProgress' 2 | -------------------------------------------------------------------------------- /src/ui/DateRangePicker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DateRangePicker' 2 | -------------------------------------------------------------------------------- /src/ui/Dropdown/Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Dropdown/Dropdown.stories.tsx -------------------------------------------------------------------------------- /src/ui/Dropdown/Dropdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Dropdown/Dropdown.test.tsx -------------------------------------------------------------------------------- /src/ui/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/ui/ExpandableSection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/ExpandableSection/index.ts -------------------------------------------------------------------------------- /src/ui/FileList/FileList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/FileList/FileList.css -------------------------------------------------------------------------------- /src/ui/FileList/FileList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/FileList/FileList.stories.tsx -------------------------------------------------------------------------------- /src/ui/FileViewer/ToggleHeader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ToggleHeader' 2 | -------------------------------------------------------------------------------- /src/ui/GraphCard/GraphCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/GraphCard/GraphCard.test.tsx -------------------------------------------------------------------------------- /src/ui/GraphCard/GraphCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/GraphCard/GraphCard.tsx -------------------------------------------------------------------------------- /src/ui/GraphCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GraphCard' 2 | -------------------------------------------------------------------------------- /src/ui/Icon/Icon.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/Icon.stories.jsx -------------------------------------------------------------------------------- /src/ui/Icon/Icon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/Icon.test.tsx -------------------------------------------------------------------------------- /src/ui/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/ui/Icon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Icon' 2 | -------------------------------------------------------------------------------- /src/ui/Icon/svg/developer/branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/developer/branch.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/developer/commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/developer/commit.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/developer/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/developer/fork.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/developer/hook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/developer/hook.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/developer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/developer/index.jsx -------------------------------------------------------------------------------- /src/ui/Icon/svg/developer/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/developer/merge.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/archive.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/arrow-up.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/ban.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/beaker.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/bell.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/bookmark.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/cake.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/calendar.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/camera.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/cash.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/chat-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/chat-alt.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/chat.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/check.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/chip.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/clock.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/cloud.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/code.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/cog.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/cube.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/database.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/document.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/download.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/eye-off.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/eye.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/film.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/filter.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/fire.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/flag.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/folder.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/gift.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/globe.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/hand.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/hashtag.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/heart.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/home.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/inbox-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/inbox-in.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/inbox.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/index.jsx -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/key.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/library.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/link.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/login.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/logout.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/mail.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/map.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/menu.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/minus-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/minus-sm.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/minus.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/moon.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/pause.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/pencil.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/phone.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/play.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/plus-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/plus-sm.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/plus.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/printer.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/puzzle.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/qrcode.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/refresh.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/reply.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/rewind.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/rss.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/save-as.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/save.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/scale.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/scissors.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/search.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/selector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/selector.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/server.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/share.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/sparkles.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/star.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/stop.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/sun.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/support.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/table.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/tag.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/template.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/terminal.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/thumb-up.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/ticket.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/trash.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/truck.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/upload.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/user-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/user-add.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/user.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/users.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/variable.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/wifi.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/x-circle.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/x.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/zoom-in.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/outline/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/outline/zoom-out.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/annotation.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/archive.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/arrow-down.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/arrow-left.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/arrow-up.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/at-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/at-symbol.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/backspace.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/ban.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/beaker.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/bell.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/book-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/book-open.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/bookmark.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/briefcase.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/cake.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/calculator.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/calendar.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/camera.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/cash.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chart-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chart-bar.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chart-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chart-pie.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chat-alt-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chat-alt-2.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chat-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chat-alt.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chat.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/check.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chevron-up.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/chip.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/clipboard.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/clock.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/cloud.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/code.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/cog.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/collection.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/cube.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/database.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/document.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/download.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/duplicate.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/emoji-sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/emoji-sad.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/eye-off.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/eye.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/film.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/filter.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/fire.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/flag.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/folder-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/folder-add.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/folder.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/gift.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/globe-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/globe-alt.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/globe.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/hand.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/hashtag.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/heart.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/home.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/inbox-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/inbox-in.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/inbox.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/index.jsx -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/key.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/library.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/light-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/light-bulb.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/link.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/lock-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/lock-open.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/login.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/logout.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/mail-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/mail-open.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/mail.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/map.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/menu-alt-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/menu-alt-1.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/menu.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/minus-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/minus-sm.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/minus.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/moon.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/pause.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/pencil.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/phone.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/play.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/plus-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/plus-sm.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/plus.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/printer.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/puzzle.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/qrcode.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/refresh.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/reply.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/rewind.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/rss.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/save-as.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/save.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/scale.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/scissors.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/search.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/selector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/selector.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/server.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/share.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/sparkles.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/star.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/stop.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/sun.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/support.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/table.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/tag.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/template.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/terminal.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/thumb-up.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/ticket.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/trash.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/truck.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/upload.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/user-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/user-add.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/user.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/users.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/variable.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/wifi.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/x-circle.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/x.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/zoom-in.svg -------------------------------------------------------------------------------- /src/ui/Icon/svg/solid/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Icon/svg/solid/zoom-out.svg -------------------------------------------------------------------------------- /src/ui/Label/Label.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Label/Label.stories.tsx -------------------------------------------------------------------------------- /src/ui/Label/Label.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Label/Label.test.tsx -------------------------------------------------------------------------------- /src/ui/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Label/Label.tsx -------------------------------------------------------------------------------- /src/ui/Label/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Label' 2 | -------------------------------------------------------------------------------- /src/ui/LightDarkImg/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LightDarkImg' 2 | -------------------------------------------------------------------------------- /src/ui/LoadingLogo/LoadingLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/LoadingLogo/LoadingLogo.tsx -------------------------------------------------------------------------------- /src/ui/LoadingLogo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LoadingLogo' 2 | -------------------------------------------------------------------------------- /src/ui/MetricCard/MetricCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/MetricCard/MetricCard.tsx -------------------------------------------------------------------------------- /src/ui/MetricCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/MetricCard/index.ts -------------------------------------------------------------------------------- /src/ui/Modal/BaseModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Modal/BaseModal.tsx -------------------------------------------------------------------------------- /src/ui/Modal/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Modal/Modal.stories.tsx -------------------------------------------------------------------------------- /src/ui/Modal/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Modal/Modal.test.tsx -------------------------------------------------------------------------------- /src/ui/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/ui/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Modal' 2 | -------------------------------------------------------------------------------- /src/ui/MultiSelect/MultiSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/MultiSelect/MultiSelect.jsx -------------------------------------------------------------------------------- /src/ui/MultiSelect/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MultiSelect' 2 | -------------------------------------------------------------------------------- /src/ui/Progress/Progress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Progress/Progress.test.tsx -------------------------------------------------------------------------------- /src/ui/Progress/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Progress/Progress.tsx -------------------------------------------------------------------------------- /src/ui/Progress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Progress' 2 | -------------------------------------------------------------------------------- /src/ui/RadioInput/RadioInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/RadioInput/RadioInput.tsx -------------------------------------------------------------------------------- /src/ui/RadioTileGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/RadioTileGroup/index.ts -------------------------------------------------------------------------------- /src/ui/SearchField/SearchField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/SearchField/SearchField.jsx -------------------------------------------------------------------------------- /src/ui/SearchField/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SearchField' 2 | -------------------------------------------------------------------------------- /src/ui/Select/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Select/Select.jsx -------------------------------------------------------------------------------- /src/ui/Select/Select.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Select/Select.stories.jsx -------------------------------------------------------------------------------- /src/ui/Select/Select.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Select/Select.test.jsx -------------------------------------------------------------------------------- /src/ui/Select/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Select' 2 | -------------------------------------------------------------------------------- /src/ui/SettingsDescriptor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsDescriptor' 2 | -------------------------------------------------------------------------------- /src/ui/Sidemenu/Sidemenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Sidemenu/Sidemenu.test.tsx -------------------------------------------------------------------------------- /src/ui/Sidemenu/Sidemenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Sidemenu/Sidemenu.tsx -------------------------------------------------------------------------------- /src/ui/Sidemenu/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Sidemenu' 2 | -------------------------------------------------------------------------------- /src/ui/Sparkline/Sparkline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Sparkline/Sparkline.tsx -------------------------------------------------------------------------------- /src/ui/Sparkline/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Sparkline' 2 | -------------------------------------------------------------------------------- /src/ui/Sparkline/sparkline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Sparkline/sparkline.css -------------------------------------------------------------------------------- /src/ui/Spinner/Spinner.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Spinner/Spinner.stories.jsx -------------------------------------------------------------------------------- /src/ui/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/ui/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner' 2 | -------------------------------------------------------------------------------- /src/ui/Summary/Summary.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Summary/Summary.stories.tsx -------------------------------------------------------------------------------- /src/ui/Summary/Summary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Summary/Summary.test.tsx -------------------------------------------------------------------------------- /src/ui/Summary/Summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Summary/Summary.tsx -------------------------------------------------------------------------------- /src/ui/Summary/SummaryField/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SummaryField' 2 | -------------------------------------------------------------------------------- /src/ui/Summary/SummaryRoot/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SummaryRoot' 2 | -------------------------------------------------------------------------------- /src/ui/Summary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Summary/index.ts -------------------------------------------------------------------------------- /src/ui/SummaryDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/SummaryDropdown/index.ts -------------------------------------------------------------------------------- /src/ui/SunburstChart/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/SunburstChart/data.json -------------------------------------------------------------------------------- /src/ui/SunburstChart/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SunburstChart' 2 | -------------------------------------------------------------------------------- /src/ui/SunburstChart/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/SunburstChart/note.txt -------------------------------------------------------------------------------- /src/ui/SunburstChart/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/SunburstChart/utils.js -------------------------------------------------------------------------------- /src/ui/TabNavigation/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TabNavigation' 2 | -------------------------------------------------------------------------------- /src/ui/Table/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Table/Table.css -------------------------------------------------------------------------------- /src/ui/Table/Table.stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Table/Table.stories.md -------------------------------------------------------------------------------- /src/ui/Table/Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Table/Table.stories.tsx -------------------------------------------------------------------------------- /src/ui/TextInput/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/TextInput/TextInput.tsx -------------------------------------------------------------------------------- /src/ui/TextInput/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TextInput' 2 | -------------------------------------------------------------------------------- /src/ui/Toggle/Toggle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Toggle/Toggle.stories.tsx -------------------------------------------------------------------------------- /src/ui/Toggle/Toggle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Toggle/Toggle.test.tsx -------------------------------------------------------------------------------- /src/ui/Toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Toggle/Toggle.tsx -------------------------------------------------------------------------------- /src/ui/Toggle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Toggle' 2 | -------------------------------------------------------------------------------- /src/ui/ToggleElement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/ToggleElement/index.ts -------------------------------------------------------------------------------- /src/ui/TokenWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TokenWrapper' 2 | -------------------------------------------------------------------------------- /src/ui/Tooltip/Tooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Tooltip/Tooltip.stories.tsx -------------------------------------------------------------------------------- /src/ui/Tooltip/Tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Tooltip/Tooltip.test.tsx -------------------------------------------------------------------------------- /src/ui/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/ui/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/Tooltip/index.ts -------------------------------------------------------------------------------- /src/ui/TopBanner/TopBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/TopBanner/TopBanner.tsx -------------------------------------------------------------------------------- /src/ui/TopBanner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/TopBanner/index.ts -------------------------------------------------------------------------------- /src/ui/TotalsNumber/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TotalsNumber' 2 | -------------------------------------------------------------------------------- /src/ui/TruncatedMessage/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useTruncation' 2 | -------------------------------------------------------------------------------- /src/ui/TruncatedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TruncatedMessage' 2 | -------------------------------------------------------------------------------- /src/ui/VirtualRenderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/VirtualRenderers/index.ts -------------------------------------------------------------------------------- /src/ui/VirtualRenderers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/ui/VirtualRenderers/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /src/vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/src/vitest.setup.ts -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/vite.config.mjs -------------------------------------------------------------------------------- /vitest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/vitest.config.mjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/gazebo/HEAD/yarn.lock --------------------------------------------------------------------------------