├── .eslintrc.js ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── check-versions.yml │ ├── master.yml │ ├── publish-gh-registry.yml │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── MIGRATION.md ├── README.md ├── app-config.yaml ├── backstage.json ├── config.d.ts ├── custom.d.ts ├── dev └── index.tsx ├── docs ├── homepage.png ├── screen1.png ├── screen2.png └── screen3.png ├── package.json ├── rollup.config.js ├── scripts ├── add_publish_to_github_config.sh ├── diff.patch ├── download_backstage.sh └── run_branch.sh ├── src ├── api │ ├── CortexApi.ts │ ├── CortexClient.test.ts │ ├── CortexClient.ts │ ├── ExtensionApi.ts │ ├── NoopExtensionClient.ts │ ├── index.ts │ ├── types.ts │ └── userInsightTypes.ts ├── assets │ └── cortex.icon.svg ├── components │ ├── Common │ │ ├── CopyButton.tsx │ │ ├── CortexInfoCard.tsx │ │ ├── HoverTimestamp.tsx │ │ ├── LinearProgressWithLabel.tsx │ │ ├── PollingLinearGauge.tsx │ │ ├── ScorecardLadderLevelBadge.tsx │ │ ├── SortDropdown.tsx │ │ ├── Stats.tsx │ │ ├── StatsItem.tsx │ │ ├── Truncated.tsx │ │ └── useLinearProgressWithLabelStyles.ts │ ├── CortexGroupActionItemsWidget │ │ ├── CortexGroupActionItemsWidget.test.tsx │ │ ├── CortexGroupActionItemsWidget.tsx │ │ ├── GroupComponentActionItemsRow.tsx │ │ ├── GroupComponentRuleInitiativeInfo.tsx │ │ ├── GroupComponentRuleInitiativesRow.tsx │ │ └── index.ts │ ├── CortexLayout │ │ ├── CortexLayout.test.tsx │ │ ├── CortexLayout.tsx │ │ └── index.ts │ ├── CortexPage │ │ ├── CortexPage.tsx │ │ └── index.ts │ ├── CortexScorecardWidget │ │ ├── CortexScorecardWidget.test.tsx │ │ ├── CortexScorecardWidget.tsx │ │ └── index.ts │ ├── DefaultEntityLink │ │ ├── DefaultEntityRefLink.tsx │ │ └── index.ts │ ├── Entitlements │ │ ├── ExpirationBanner.tsx │ │ ├── ExpirationUtils.test.ts │ │ └── ExpirationUtils.ts │ ├── EntityPage │ │ ├── EntityInitiativesCard.tsx │ │ ├── EntityPage.test.tsx │ │ ├── EntityPage.tsx │ │ ├── EntityScorecardDetails │ │ │ ├── EntityScorecardDetails.tsx │ │ │ └── index.tsx │ │ ├── EntityScorecardOverview │ │ │ ├── EntityScorecardOverview.test.tsx │ │ │ ├── EntityScorecardOverview.tsx │ │ │ └── index.ts │ │ ├── EntityScorecardRules │ │ │ ├── EntityScorecardRules.test.tsx │ │ │ ├── EntityScorecardRules.tsx │ │ │ └── index.ts │ │ ├── EntityScorecardsCard.tsx │ │ ├── EntityScorecardsCardRow.tsx │ │ └── index.ts │ ├── FilterCard │ │ ├── FilterCard.tsx │ │ ├── Filters.tsx │ │ ├── index.ts │ │ └── useFilter.tsx │ ├── Gauge │ │ ├── Gauge.tsx │ │ └── index.ts │ ├── HelpPage │ │ ├── HelpLinksContent.tsx │ │ ├── HelpPage.tsx │ │ └── index.ts │ ├── Homepage │ │ ├── Homepage.tsx │ │ ├── HomepageInsightCard.tsx │ │ ├── HomepageInsights.tsx │ │ ├── HomepageOncallCard.tsx │ │ ├── HomepageUtils.tsx │ │ ├── InsightCard.tsx │ │ └── index.ts │ ├── Initiatives │ │ ├── InitiativeCard │ │ │ ├── InitiativeCard.tsx │ │ │ └── index.ts │ │ ├── InitiativeDetailsPage │ │ │ ├── InitativeFilterDialog │ │ │ │ ├── InitiativeFilterDialog.tsx │ │ │ │ ├── InitiativeFilterDialogUtils.test.ts │ │ │ │ ├── InitiativeFilterDialogUtils.ts │ │ │ │ └── index.ts │ │ │ ├── InitiativeDetailsPage.test.tsx │ │ │ ├── InitiativeDetailsPage.tsx │ │ │ ├── InitiativeFailingTab │ │ │ │ ├── InitiativeFailingTab.tsx │ │ │ │ ├── InitiativeFailingTabConfig.ts │ │ │ │ ├── ServiceNameAndRulesColumn.tsx │ │ │ │ └── index.ts │ │ │ ├── InitiativeFilterForm │ │ │ │ └── InitiativeFilterForm.tsx │ │ │ ├── InitiativeLevelsTab │ │ │ │ ├── InitiativeLevelsTab.tsx │ │ │ │ └── index.ts │ │ │ ├── InitiativeMetadataCard │ │ │ │ ├── InitiativeMetadataCard.tsx │ │ │ │ ├── InitiativeMetadataCardUtils.ts │ │ │ │ ├── InitiativeMetadataFilter.tsx │ │ │ │ └── index.ts │ │ │ ├── InitiativePassingTab │ │ │ │ ├── InitiativePassingTab.tsx │ │ │ │ ├── InitiativePassingTabConfig.ts │ │ │ │ ├── ServiceNameColumn.tsx │ │ │ │ └── index.ts │ │ │ ├── InitiativeRulesTab │ │ │ │ ├── InitiativeRulesTab.tsx │ │ │ │ └── index.ts │ │ │ ├── InitiativeStatsCard │ │ │ │ ├── InitiativeStatsCard.test.tsx │ │ │ │ ├── InitiativeStatsCard.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── InitiativeStatsCard.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── InitiativesPage.test.tsx │ │ └── InitiativesPage │ │ │ ├── InitiativesList.tsx │ │ │ ├── InitiativesPage.tsx │ │ │ └── index.ts │ ├── ItemCardHeader │ │ ├── ItemCardHeader.tsx │ │ └── index.ts │ ├── ListCard │ │ ├── ListCard.tsx │ │ └── index.ts │ ├── MetadataItem │ │ ├── MetadataItem.tsx │ │ └── index.ts │ ├── ReportsPage │ │ ├── AllScorecardsPage │ │ │ ├── AllScorecardsHeatmap.tsx │ │ │ ├── AllScorecardsPage.tsx │ │ │ ├── HeatmapCell.tsx │ │ │ ├── HeatmapFilters.tsx │ │ │ ├── HeatmapFiltersModal.tsx │ │ │ ├── HeatmapFiltersSelect.tsx │ │ │ ├── HeatmapUtils.ts │ │ │ ├── LevelsInfoCell.tsx │ │ │ └── Tables │ │ │ │ ├── AllScorecardHeatmapTable.tsx │ │ │ │ ├── HeatmapTableByGroup.tsx │ │ │ │ ├── HeatmapTableByLevels.tsx │ │ │ │ ├── HeatmapTableByService.tsx │ │ │ │ ├── HeatmapTableHeader.tsx │ │ │ │ ├── HierarchyBreadcrumbs.tsx │ │ │ │ ├── LevelsDrivenTable.tsx │ │ │ │ ├── SingleScorecardHeatmapTable.tsx │ │ │ │ └── colorClasses.ts │ │ ├── Common │ │ │ ├── GroupByDropdown.tsx │ │ │ ├── HeaderTypeDropdown.tsx │ │ │ └── LookbackDropdown.tsx │ │ ├── HeatmapPage │ │ │ ├── HeatmapFiltersModal.tsx │ │ │ ├── HeatmapFiltersSelect.tsx │ │ │ ├── HeatmapPage.test.tsx │ │ │ ├── HeatmapPage.tsx │ │ │ ├── HeatmapSettings.tsx │ │ │ ├── HeatmapTable.tsx │ │ │ ├── HeatmapUtils.test.ts │ │ │ ├── HeatmapUtils.tsx │ │ │ ├── colorClasses.ts │ │ │ └── index.ts │ │ ├── ProgressPage │ │ │ ├── AggregatedScorecardProgress.tsx │ │ │ ├── ProgressPage.tsx │ │ │ ├── SerieFilter.tsx │ │ │ └── index.ts │ │ ├── ReportsPage.tsx │ │ ├── ScorecardSelector.tsx │ │ └── index.ts │ ├── ScorecardRefLink │ │ ├── ScorecardRefLink.tsx │ │ └── index.ts │ ├── ScorecardServiceRefLink │ │ ├── ScorecardServiceRefLink.tsx │ │ └── index.ts │ ├── Scorecards │ │ ├── ScorecardCard │ │ │ ├── ScorecardCard.tsx │ │ │ └── index.ts │ │ ├── ScorecardDetailsPage │ │ │ ├── CopyCsvButton.tsx │ │ │ ├── ScorecardDetails.tsx │ │ │ ├── ScorecardDetailsPage.test.tsx │ │ │ ├── ScorecardDetailsPage.tsx │ │ │ ├── ScorecardFilterDialog │ │ │ │ ├── ScorecardFilterDialog.tsx │ │ │ │ ├── ScorecardFilterDialogUtils.tsx │ │ │ │ └── index.ts │ │ │ ├── ScorecardMetadataCard │ │ │ │ ├── ScorecardMetadataCard.test.tsx │ │ │ │ ├── ScorecardMetadataCard.tsx │ │ │ │ ├── ScorecardMetadataFilter.tsx │ │ │ │ ├── ScorecardMetadataUtils.tsx │ │ │ │ └── index.ts │ │ │ ├── ScorecardReportsTab │ │ │ │ ├── ScorecardReportsTab.tsx │ │ │ │ └── index.ts │ │ │ ├── ScorecardRuleExemptionsTab │ │ │ │ ├── RuleExemptionStatus.tsx │ │ │ │ ├── ScorecardRuleExemptionTooltip.tsx │ │ │ │ ├── ScorecardRuleExemptionsTab.tsx │ │ │ │ ├── ScorecardRuleExemptionsTabUtils.ts │ │ │ │ └── index.ts │ │ │ ├── ScorecardRulesTab │ │ │ │ ├── ScorecardLadderRulesCard.tsx │ │ │ │ ├── ScorecardRuleRow.tsx │ │ │ │ ├── ScorecardScoresRulesCard.tsx │ │ │ │ └── index.ts │ │ │ ├── ScorecardStatsCard │ │ │ │ ├── ScorecardLadderStatsCard.tsx │ │ │ │ ├── ScorecardScoresStatsCard.tsx │ │ │ │ └── index.ts │ │ │ ├── ScorecardsScoresTab │ │ │ │ ├── ScorecardsScoresTable.tsx │ │ │ │ ├── ScorecardsScoresTableConfig.tsx │ │ │ │ └── index.ts │ │ │ ├── ScorecardsTableCard │ │ │ │ ├── RuleResultDetails.tsx │ │ │ │ ├── ScorecardResultDetails.test.tsx │ │ │ │ ├── ScorecardResultDetails.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ScorecardResultDetails.test.tsx.snap │ │ │ └── index.ts │ │ ├── ScorecardsPage │ │ │ ├── ScorecardList.tsx │ │ │ ├── ScorecardsPage.test.tsx │ │ │ ├── ScorecardsPage.tsx │ │ │ └── index.ts │ │ └── ScorecardsServicePage │ │ │ ├── ScorecardsServiceHeader.tsx │ │ │ ├── ScorecardsServiceNextRules.tsx │ │ │ ├── ScorecardsServiceOverallScoreProgress.tsx │ │ │ ├── ScorecardsServicePage.tsx │ │ │ ├── ScorecardsServiceProgress.tsx │ │ │ ├── ScorecardsServiceRuleProgress.tsx │ │ │ ├── ScorecardsServiceRuleProgressUtils.ts │ │ │ ├── ScorecardsServiceRuleRow.tsx │ │ │ ├── ScorecardsServiceRulesDetails.tsx │ │ │ ├── ScorecardsServiceRulesFilter.tsx │ │ │ ├── ScorecardsServiceStatistics.tsx │ │ │ ├── ScorecardsServiceTooltipRuleRow.tsx │ │ │ ├── index.ts │ │ │ └── useScorecardServiceRuleRowStyles.ts │ ├── SettingsPage │ │ ├── SettingsPage.test.tsx │ │ ├── SettingsPage.tsx │ │ ├── SyncCard.tsx │ │ ├── SyncJobsTable.test.tsx │ │ ├── SyncJobsTable.tsx │ │ └── index.ts │ ├── StatsCard │ │ ├── StatsCard.tsx │ │ └── index.ts │ ├── SystemPage │ │ ├── SystemPage.test.tsx │ │ ├── SystemPage.tsx │ │ ├── SystemPageRow.tsx │ │ └── SystemPageRowDetails.tsx │ └── Timeseries │ │ ├── Timeseries.tsx │ │ └── index.ts ├── extensions.tsx ├── filters.ts ├── index.ts ├── plugin.test.ts ├── plugin.ts ├── routes.ts ├── setupTests.ts ├── styles │ └── styles.ts └── utils │ ├── ComponentUtils.test.ts │ ├── ComponentUtils.ts │ ├── HookUtils.ts │ ├── MathUtils.ts │ ├── MomentUtils.ts │ ├── NumberUtils.test.ts │ ├── NumberUtils.ts │ ├── ScorecardFilterUtils.ts │ ├── ScorecardLadderUtils.ts │ ├── ScorecardRules.ts │ ├── SearchUtils.ts │ ├── TestUtils.tsx │ ├── URLUtils.test.ts │ ├── URLUtils.ts │ ├── WindowUtils.ts │ ├── collections.ts │ ├── dates.ts │ ├── hooks.ts │ ├── lookback.ts │ ├── pureHooks.ts │ ├── strings.ts │ ├── types.test.ts │ └── types.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.github/workflows/check-versions.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/publish-gh-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.github/workflows/publish-gh-registry.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.npmrc -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/README.md -------------------------------------------------------------------------------- /app-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/app-config.yaml -------------------------------------------------------------------------------- /backstage.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.27.7" 3 | } 4 | -------------------------------------------------------------------------------- /config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/config.d.ts -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/custom.d.ts -------------------------------------------------------------------------------- /dev/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/dev/index.tsx -------------------------------------------------------------------------------- /docs/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/docs/homepage.png -------------------------------------------------------------------------------- /docs/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/docs/screen1.png -------------------------------------------------------------------------------- /docs/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/docs/screen2.png -------------------------------------------------------------------------------- /docs/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/docs/screen3.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/add_publish_to_github_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/scripts/add_publish_to_github_config.sh -------------------------------------------------------------------------------- /scripts/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/scripts/diff.patch -------------------------------------------------------------------------------- /scripts/download_backstage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/scripts/download_backstage.sh -------------------------------------------------------------------------------- /scripts/run_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/scripts/run_branch.sh -------------------------------------------------------------------------------- /src/api/CortexApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/CortexApi.ts -------------------------------------------------------------------------------- /src/api/CortexClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/CortexClient.test.ts -------------------------------------------------------------------------------- /src/api/CortexClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/CortexClient.ts -------------------------------------------------------------------------------- /src/api/ExtensionApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/ExtensionApi.ts -------------------------------------------------------------------------------- /src/api/NoopExtensionClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/NoopExtensionClient.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/types.ts -------------------------------------------------------------------------------- /src/api/userInsightTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/api/userInsightTypes.ts -------------------------------------------------------------------------------- /src/assets/cortex.icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/assets/cortex.icon.svg -------------------------------------------------------------------------------- /src/components/Common/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/Common/CortexInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/CortexInfoCard.tsx -------------------------------------------------------------------------------- /src/components/Common/HoverTimestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/HoverTimestamp.tsx -------------------------------------------------------------------------------- /src/components/Common/LinearProgressWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/LinearProgressWithLabel.tsx -------------------------------------------------------------------------------- /src/components/Common/PollingLinearGauge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/PollingLinearGauge.tsx -------------------------------------------------------------------------------- /src/components/Common/ScorecardLadderLevelBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/ScorecardLadderLevelBadge.tsx -------------------------------------------------------------------------------- /src/components/Common/SortDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/SortDropdown.tsx -------------------------------------------------------------------------------- /src/components/Common/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/Stats.tsx -------------------------------------------------------------------------------- /src/components/Common/StatsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/StatsItem.tsx -------------------------------------------------------------------------------- /src/components/Common/Truncated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/Truncated.tsx -------------------------------------------------------------------------------- /src/components/Common/useLinearProgressWithLabelStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Common/useLinearProgressWithLabelStyles.ts -------------------------------------------------------------------------------- /src/components/CortexGroupActionItemsWidget/CortexGroupActionItemsWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexGroupActionItemsWidget/CortexGroupActionItemsWidget.test.tsx -------------------------------------------------------------------------------- /src/components/CortexGroupActionItemsWidget/CortexGroupActionItemsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexGroupActionItemsWidget/CortexGroupActionItemsWidget.tsx -------------------------------------------------------------------------------- /src/components/CortexGroupActionItemsWidget/GroupComponentActionItemsRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexGroupActionItemsWidget/GroupComponentActionItemsRow.tsx -------------------------------------------------------------------------------- /src/components/CortexGroupActionItemsWidget/GroupComponentRuleInitiativeInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexGroupActionItemsWidget/GroupComponentRuleInitiativeInfo.tsx -------------------------------------------------------------------------------- /src/components/CortexGroupActionItemsWidget/GroupComponentRuleInitiativesRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexGroupActionItemsWidget/GroupComponentRuleInitiativesRow.tsx -------------------------------------------------------------------------------- /src/components/CortexGroupActionItemsWidget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexGroupActionItemsWidget/index.ts -------------------------------------------------------------------------------- /src/components/CortexLayout/CortexLayout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexLayout/CortexLayout.test.tsx -------------------------------------------------------------------------------- /src/components/CortexLayout/CortexLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexLayout/CortexLayout.tsx -------------------------------------------------------------------------------- /src/components/CortexLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexLayout/index.ts -------------------------------------------------------------------------------- /src/components/CortexPage/CortexPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexPage/CortexPage.tsx -------------------------------------------------------------------------------- /src/components/CortexPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexPage/index.ts -------------------------------------------------------------------------------- /src/components/CortexScorecardWidget/CortexScorecardWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexScorecardWidget/CortexScorecardWidget.test.tsx -------------------------------------------------------------------------------- /src/components/CortexScorecardWidget/CortexScorecardWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexScorecardWidget/CortexScorecardWidget.tsx -------------------------------------------------------------------------------- /src/components/CortexScorecardWidget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/CortexScorecardWidget/index.ts -------------------------------------------------------------------------------- /src/components/DefaultEntityLink/DefaultEntityRefLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/DefaultEntityLink/DefaultEntityRefLink.tsx -------------------------------------------------------------------------------- /src/components/DefaultEntityLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/DefaultEntityLink/index.ts -------------------------------------------------------------------------------- /src/components/Entitlements/ExpirationBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Entitlements/ExpirationBanner.tsx -------------------------------------------------------------------------------- /src/components/Entitlements/ExpirationUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Entitlements/ExpirationUtils.test.ts -------------------------------------------------------------------------------- /src/components/Entitlements/ExpirationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Entitlements/ExpirationUtils.ts -------------------------------------------------------------------------------- /src/components/EntityPage/EntityInitiativesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityInitiativesCard.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityPage.test.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityPage.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardDetails/EntityScorecardDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardDetails/EntityScorecardDetails.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardDetails/index.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardOverview/EntityScorecardOverview.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardOverview/EntityScorecardOverview.test.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardOverview/EntityScorecardOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardOverview/EntityScorecardOverview.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardOverview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardOverview/index.ts -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardRules/EntityScorecardRules.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardRules/EntityScorecardRules.test.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardRules/EntityScorecardRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardRules/EntityScorecardRules.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardRules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardRules/index.ts -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardsCard.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/EntityScorecardsCardRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/EntityScorecardsCardRow.tsx -------------------------------------------------------------------------------- /src/components/EntityPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/EntityPage/index.ts -------------------------------------------------------------------------------- /src/components/FilterCard/FilterCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/FilterCard/FilterCard.tsx -------------------------------------------------------------------------------- /src/components/FilterCard/Filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/FilterCard/Filters.tsx -------------------------------------------------------------------------------- /src/components/FilterCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/FilterCard/index.ts -------------------------------------------------------------------------------- /src/components/FilterCard/useFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/FilterCard/useFilter.tsx -------------------------------------------------------------------------------- /src/components/Gauge/Gauge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Gauge/Gauge.tsx -------------------------------------------------------------------------------- /src/components/Gauge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Gauge/index.ts -------------------------------------------------------------------------------- /src/components/HelpPage/HelpLinksContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/HelpPage/HelpLinksContent.tsx -------------------------------------------------------------------------------- /src/components/HelpPage/HelpPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/HelpPage/HelpPage.tsx -------------------------------------------------------------------------------- /src/components/HelpPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/HelpPage/index.ts -------------------------------------------------------------------------------- /src/components/Homepage/Homepage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/Homepage.tsx -------------------------------------------------------------------------------- /src/components/Homepage/HomepageInsightCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/HomepageInsightCard.tsx -------------------------------------------------------------------------------- /src/components/Homepage/HomepageInsights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/HomepageInsights.tsx -------------------------------------------------------------------------------- /src/components/Homepage/HomepageOncallCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/HomepageOncallCard.tsx -------------------------------------------------------------------------------- /src/components/Homepage/HomepageUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/HomepageUtils.tsx -------------------------------------------------------------------------------- /src/components/Homepage/InsightCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/InsightCard.tsx -------------------------------------------------------------------------------- /src/components/Homepage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Homepage/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeCard/InitiativeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeCard/InitiativeCard.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeCard/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/InitiativeFilterDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/InitiativeFilterDialog.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/InitiativeFilterDialogUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/InitiativeFilterDialogUtils.test.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/InitiativeFilterDialogUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/InitiativeFilterDialogUtils.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitativeFilterDialog/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeDetailsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeDetailsPage.test.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeDetailsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeDetailsPage.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/InitiativeFailingTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/InitiativeFailingTab.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/InitiativeFailingTabConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/InitiativeFailingTabConfig.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/ServiceNameAndRulesColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/ServiceNameAndRulesColumn.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeFailingTab/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeFilterForm/InitiativeFilterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeFilterForm/InitiativeFilterForm.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeLevelsTab/InitiativeLevelsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeLevelsTab/InitiativeLevelsTab.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeLevelsTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeLevelsTab/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/InitiativeMetadataCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/InitiativeMetadataCard.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/InitiativeMetadataCardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/InitiativeMetadataCardUtils.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/InitiativeMetadataFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/InitiativeMetadataFilter.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeMetadataCard/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/InitiativePassingTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/InitiativePassingTab.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/InitiativePassingTabConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/InitiativePassingTabConfig.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/ServiceNameColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/ServiceNameColumn.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativePassingTab/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeRulesTab/InitiativeRulesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeRulesTab/InitiativeRulesTab.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeRulesTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeRulesTab/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/InitiativeStatsCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/InitiativeStatsCard.test.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/InitiativeStatsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/InitiativeStatsCard.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/__snapshots__/InitiativeStatsCard.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/__snapshots__/InitiativeStatsCard.test.tsx.snap -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/InitiativeStatsCard/index.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativeDetailsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativeDetailsPage/index.ts -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativesPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativesPage.test.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativesPage/InitiativesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativesPage/InitiativesList.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativesPage/InitiativesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativesPage/InitiativesPage.tsx -------------------------------------------------------------------------------- /src/components/Initiatives/InitiativesPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Initiatives/InitiativesPage/index.ts -------------------------------------------------------------------------------- /src/components/ItemCardHeader/ItemCardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ItemCardHeader/ItemCardHeader.tsx -------------------------------------------------------------------------------- /src/components/ItemCardHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ItemCardHeader/index.ts -------------------------------------------------------------------------------- /src/components/ListCard/ListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ListCard/ListCard.tsx -------------------------------------------------------------------------------- /src/components/ListCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ListCard/index.ts -------------------------------------------------------------------------------- /src/components/MetadataItem/MetadataItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/MetadataItem/MetadataItem.tsx -------------------------------------------------------------------------------- /src/components/MetadataItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/MetadataItem/index.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/AllScorecardsHeatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/AllScorecardsHeatmap.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/AllScorecardsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/AllScorecardsPage.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/HeatmapCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/HeatmapCell.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/HeatmapFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/HeatmapFilters.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/HeatmapFiltersModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/HeatmapFiltersModal.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/HeatmapFiltersSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/HeatmapFiltersSelect.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/HeatmapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/HeatmapUtils.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/LevelsInfoCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/LevelsInfoCell.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/AllScorecardHeatmapTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/AllScorecardHeatmapTable.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableByGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableByGroup.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableByLevels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableByLevels.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableByService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableByService.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/HeatmapTableHeader.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/HierarchyBreadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/HierarchyBreadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/LevelsDrivenTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/LevelsDrivenTable.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/SingleScorecardHeatmapTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/SingleScorecardHeatmapTable.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/AllScorecardsPage/Tables/colorClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/AllScorecardsPage/Tables/colorClasses.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/Common/GroupByDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/Common/GroupByDropdown.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/Common/HeaderTypeDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/Common/HeaderTypeDropdown.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/Common/LookbackDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/Common/LookbackDropdown.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapFiltersModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapFiltersModal.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapFiltersSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapFiltersSelect.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapPage.test.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapPage.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapSettings.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapTable.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapUtils.test.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/HeatmapUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/HeatmapUtils.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/colorClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/colorClasses.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/HeatmapPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/HeatmapPage/index.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/ProgressPage/AggregatedScorecardProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/ProgressPage/AggregatedScorecardProgress.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/ProgressPage/ProgressPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/ProgressPage/ProgressPage.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/ProgressPage/SerieFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/ProgressPage/SerieFilter.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/ProgressPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/ProgressPage/index.ts -------------------------------------------------------------------------------- /src/components/ReportsPage/ReportsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/ReportsPage.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/ScorecardSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/ScorecardSelector.tsx -------------------------------------------------------------------------------- /src/components/ReportsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ReportsPage/index.ts -------------------------------------------------------------------------------- /src/components/ScorecardRefLink/ScorecardRefLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ScorecardRefLink/ScorecardRefLink.tsx -------------------------------------------------------------------------------- /src/components/ScorecardRefLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ScorecardRefLink/index.ts -------------------------------------------------------------------------------- /src/components/ScorecardServiceRefLink/ScorecardServiceRefLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ScorecardServiceRefLink/ScorecardServiceRefLink.tsx -------------------------------------------------------------------------------- /src/components/ScorecardServiceRefLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/ScorecardServiceRefLink/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardCard/ScorecardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardCard/ScorecardCard.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardCard/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/CopyCsvButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/CopyCsvButton.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardDetails.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardDetailsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardDetailsPage.test.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardDetailsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardDetailsPage.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardFilterDialog/ScorecardFilterDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardFilterDialog/ScorecardFilterDialog.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardFilterDialog/ScorecardFilterDialogUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardFilterDialog/ScorecardFilterDialogUtils.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardFilterDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardFilterDialog/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataCard.test.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataCard.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataFilter.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/ScorecardMetadataUtils.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardMetadataCard/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardReportsTab/ScorecardReportsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardReportsTab/ScorecardReportsTab.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardReportsTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardReportsTab/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/RuleExemptionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/RuleExemptionStatus.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/ScorecardRuleExemptionTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/ScorecardRuleExemptionTooltip.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/ScorecardRuleExemptionsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/ScorecardRuleExemptionsTab.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/ScorecardRuleExemptionsTabUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/ScorecardRuleExemptionsTabUtils.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRuleExemptionsTab/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/ScorecardLadderRulesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/ScorecardLadderRulesCard.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/ScorecardRuleRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/ScorecardRuleRow.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/ScorecardScoresRulesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/ScorecardScoresRulesCard.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardRulesTab/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardStatsCard/ScorecardLadderStatsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardStatsCard/ScorecardLadderStatsCard.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardStatsCard/ScorecardScoresStatsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardStatsCard/ScorecardScoresStatsCard.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardStatsCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardStatsCard/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsScoresTab/ScorecardsScoresTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsScoresTab/ScorecardsScoresTable.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsScoresTab/ScorecardsScoresTableConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsScoresTab/ScorecardsScoresTableConfig.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsScoresTab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsScoresTab/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/RuleResultDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/RuleResultDetails.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/ScorecardResultDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/ScorecardResultDetails.test.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/ScorecardResultDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/ScorecardResultDetails.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/__snapshots__/ScorecardResultDetails.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/ScorecardsTableCard/__snapshots__/ScorecardResultDetails.test.tsx.snap -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardDetailsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardDetailsPage/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsPage/ScorecardList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsPage/ScorecardList.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsPage/ScorecardsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsPage/ScorecardsPage.test.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsPage/ScorecardsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsPage/ScorecardsPage.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsPage/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceHeader.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceNextRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceNextRules.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceOverallScoreProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceOverallScoreProgress.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServicePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServicePage.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceProgress.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRuleProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRuleProgress.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRuleProgressUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRuleProgressUtils.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRuleRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRuleRow.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRulesDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRulesDetails.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRulesFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceRulesFilter.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceStatistics.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceTooltipRuleRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/ScorecardsServiceTooltipRuleRow.tsx -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/index.ts -------------------------------------------------------------------------------- /src/components/Scorecards/ScorecardsServicePage/useScorecardServiceRuleRowStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Scorecards/ScorecardsServicePage/useScorecardServiceRuleRowStyles.ts -------------------------------------------------------------------------------- /src/components/SettingsPage/SettingsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SettingsPage/SettingsPage.test.tsx -------------------------------------------------------------------------------- /src/components/SettingsPage/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SettingsPage/SettingsPage.tsx -------------------------------------------------------------------------------- /src/components/SettingsPage/SyncCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SettingsPage/SyncCard.tsx -------------------------------------------------------------------------------- /src/components/SettingsPage/SyncJobsTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SettingsPage/SyncJobsTable.test.tsx -------------------------------------------------------------------------------- /src/components/SettingsPage/SyncJobsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SettingsPage/SyncJobsTable.tsx -------------------------------------------------------------------------------- /src/components/SettingsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SettingsPage/index.ts -------------------------------------------------------------------------------- /src/components/StatsCard/StatsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/StatsCard/StatsCard.tsx -------------------------------------------------------------------------------- /src/components/StatsCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/StatsCard/index.ts -------------------------------------------------------------------------------- /src/components/SystemPage/SystemPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SystemPage/SystemPage.test.tsx -------------------------------------------------------------------------------- /src/components/SystemPage/SystemPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SystemPage/SystemPage.tsx -------------------------------------------------------------------------------- /src/components/SystemPage/SystemPageRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SystemPage/SystemPageRow.tsx -------------------------------------------------------------------------------- /src/components/SystemPage/SystemPageRowDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/SystemPage/SystemPageRowDetails.tsx -------------------------------------------------------------------------------- /src/components/Timeseries/Timeseries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Timeseries/Timeseries.tsx -------------------------------------------------------------------------------- /src/components/Timeseries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/components/Timeseries/index.ts -------------------------------------------------------------------------------- /src/extensions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/extensions.tsx -------------------------------------------------------------------------------- /src/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/filters.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/plugin.test.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/styles/styles.ts -------------------------------------------------------------------------------- /src/utils/ComponentUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/ComponentUtils.test.ts -------------------------------------------------------------------------------- /src/utils/ComponentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/ComponentUtils.ts -------------------------------------------------------------------------------- /src/utils/HookUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/HookUtils.ts -------------------------------------------------------------------------------- /src/utils/MathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/MathUtils.ts -------------------------------------------------------------------------------- /src/utils/MomentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/MomentUtils.ts -------------------------------------------------------------------------------- /src/utils/NumberUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/NumberUtils.test.ts -------------------------------------------------------------------------------- /src/utils/NumberUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/NumberUtils.ts -------------------------------------------------------------------------------- /src/utils/ScorecardFilterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/ScorecardFilterUtils.ts -------------------------------------------------------------------------------- /src/utils/ScorecardLadderUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/ScorecardLadderUtils.ts -------------------------------------------------------------------------------- /src/utils/ScorecardRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/ScorecardRules.ts -------------------------------------------------------------------------------- /src/utils/SearchUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/SearchUtils.ts -------------------------------------------------------------------------------- /src/utils/TestUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/TestUtils.tsx -------------------------------------------------------------------------------- /src/utils/URLUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/URLUtils.test.ts -------------------------------------------------------------------------------- /src/utils/URLUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/URLUtils.ts -------------------------------------------------------------------------------- /src/utils/WindowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/WindowUtils.ts -------------------------------------------------------------------------------- /src/utils/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/collections.ts -------------------------------------------------------------------------------- /src/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/dates.ts -------------------------------------------------------------------------------- /src/utils/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/hooks.ts -------------------------------------------------------------------------------- /src/utils/lookback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/lookback.ts -------------------------------------------------------------------------------- /src/utils/pureHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/pureHooks.ts -------------------------------------------------------------------------------- /src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/strings.ts -------------------------------------------------------------------------------- /src/utils/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/types.test.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortexapps/backstage-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------