diff --git a/plugins/cost-insights/src/components/index.ts b/plugins/cost-insights/src/components/index.ts index c390666419..4388250d31 100644 --- a/plugins/cost-insights/src/components/index.ts +++ b/plugins/cost-insights/src/components/index.ts @@ -14,6 +14,28 @@ * limitations under the License. */ +export * from './ActionItems'; +export * from './AlertInsights'; +export * from './AlertInstructionsLayout'; export * from './BarChart'; +export * from './CopyUrlToClipboard'; export * from './CostGrowth'; +export * from './CostInsightsHeader'; +export * from './CostInsightsLayout'; +export * from './CostInsightsNavigation'; +export * from './CostInsightsPage'; +export * from './CostInsightsSupportButton'; +export * from './CostInsightsTabs'; +export * from './CostOverviewCard'; +export * from './CurrencySelect'; +export * from './LabelDataflowInstructionsPage'; export * from './LegendItem'; +export * from './MetricSelect'; +export * from './PeriodSelect'; +export * from './ProductInsights'; +export * from './ProductInsightsCard'; +export * from './ProjectGrowthAlertCard'; +export * from './ProjectGrowthInstructionsPage'; +export * from './ProjectSelect'; +export * from './UnlabeledDataflowAlertCard'; +export * from './WhyCostsMatter'; diff --git a/plugins/cost-insights/src/index.ts b/plugins/cost-insights/src/index.ts index db4ddab9d3..427e6f062d 100644 --- a/plugins/cost-insights/src/index.ts +++ b/plugins/cost-insights/src/index.ts @@ -23,7 +23,7 @@ export { } from './plugin'; export { ProjectGrowthAlert, UnlabeledDataflowAlert } from './alerts'; export { ExampleCostInsightsClient } from './example'; +export { BarChart, LegendItem, CostGrowth } from './components'; export * from './api'; -export * from './components'; export * from './types'; export * from './testUtils';