Export the DomainCard to be able to customize the explorer page

Signed-off-by: Dominik Henneke <dominik.henneke@sda-se.com>
This commit is contained in:
Dominik Henneke
2021-09-22 12:26:39 +02:00
parent 705adf17bf
commit 5cd6c73ff5
4 changed files with 14 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-explore': patch
---
Export the `DomainCard` to be able to customize the explorer page.
+7
View File
@@ -7,6 +7,7 @@
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { default as default_2 } from 'react';
import { DomainEntity } from '@backstage/catalog-model';
import { ExternalRouteRef } from '@backstage/core-plugin-api';
import { RouteRef } from '@backstage/core-plugin-api';
import { TabProps } from '@material-ui/core';
@@ -23,6 +24,12 @@ export const catalogEntityRouteRef: ExternalRouteRef<
false
>;
// Warning: (ae-forgotten-export) The symbol "DomainCardProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "DomainCard" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const DomainCard: ({ entity }: DomainCardProps) => JSX.Element;
// Warning: (ae-missing-release-tag) "DomainExplorerContent" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
+1
View File
@@ -14,4 +14,5 @@
* limitations under the License.
*/
export { DomainCard } from './DomainCard';
export { ExploreLayout } from './ExploreLayout';
+1 -1
View File
@@ -20,7 +20,7 @@
* @packageDocumentation
*/
export { ExploreLayout } from './components';
export * from './components';
export * from './extensions';
export { explorePlugin, explorePlugin as plugin } from './plugin';
export * from './routes';