Merge pull request #7277 from SDA-SE/feat/export-domain-card
Export the `DomainCard` to be able to customize the explorer page
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-explore': patch
|
||||
---
|
||||
|
||||
Export the `DomainCard` to be able to customize the explorer page.
|
||||
@@ -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)
|
||||
|
||||
@@ -14,4 +14,5 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export { DomainCard } from './DomainCard';
|
||||
export { ExploreLayout } from './ExploreLayout';
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user