Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cortexapps/backstage-plugin",
"version": "2.13.5",
"version": "2.13.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Cortex Applications, Inc.
* Copyright 2025 Cortex Applications, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -26,6 +26,7 @@ export {
SystemCortexContent,
extendableCortexPlugin,
CortexHomepage,
CortexInsightsCard,
} from './plugin';
export { extensionApiRef } from './api/ExtensionApi';
export type { CortexScorecardWidgetProps } from './components/CortexScorecardWidget/CortexScorecardWidget';
Expand Down
14 changes: 13 additions & 1 deletion src/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Cortex Applications, Inc.
* Copyright 2025 Cortex Applications, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -202,3 +202,15 @@ export const CortexHomepage = cortexPlugin.provide(
},
}),
);

export const CortexInsightsCard = cortexPlugin.provide(
createComponentExtension({
name: 'CortexInsightsCard',
component: {
lazy: () =>
import('./components/Homepage/HomepageInsights').then(
m => m.HomepageInsights,
),
},
}),
);
Loading