feat(HomePlugin): fix StarredEntitieProps export for report api

Signed-off-by: Antonio Bergas <anthonyprincedom@hotmail.com>
This commit is contained in:
Antonio Bergas
2023-11-11 12:45:25 +01:00
parent e0e10b272b
commit 3181be9f21
4 changed files with 26 additions and 2 deletions
+7 -1
View File
@@ -133,7 +133,7 @@ export const HomePageRecentlyVisited: (
// @public
export const HomePageStarredEntities: (
props: CardExtensionProps_2<unknown>,
props: CardExtensionProps_2<Partial<StarredEntitiesProps>>,
) => JSX_2.Element;
// @public
@@ -177,6 +177,12 @@ export const SettingsModal: (props: {
children: JSX.Element;
}) => JSX_2.Element;
// @public
export type StarredEntitiesProps = {
noStarredEntitiesMessage?: React_2.ReactNode | undefined;
groupByKind?: boolean;
};
// @public (undocumented)
export const TemplateBackstageLogo: (props: {
classes: {
@@ -0,0 +1,17 @@
/*
* Copyright 2023 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { StarredEntityListItem } from './StarredEntityListItem';
@@ -13,5 +13,5 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { Content } from './Content';
export type { StarredEntitiesProps } from './Content';
@@ -18,3 +18,4 @@ export type { ToolkitContentProps, Tool } from './Toolkit';
export type { ClockConfig } from './HeaderWorldClock';
export type { WelcomeTitleLanguageProps } from './WelcomeTitle';
export type { VisitedByTypeProps, VisitedByTypeKind } from './VisitedByType';
export type { StarredEntitiesProps } from './StarredEntities';