From 2466406b15977e5d7b883c1e0bdaaa4af04f275e Mon Sep 17 00:00:00 2001 From: Philipp Hugenroth Date: Fri, 24 Feb 2023 10:37:12 +0100 Subject: [PATCH] Generate API Report Signed-off-by: Philipp Hugenroth --- packages/core-components/api-report.md | 24 ------------------- .../src/overridableComponents.ts | 8 ------- 2 files changed, 32 deletions(-) diff --git a/packages/core-components/api-report.md b/packages/core-components/api-report.md index 6439be23a7..1e5fa77ed3 100644 --- a/packages/core-components/api-report.md +++ b/packages/core-components/api-report.md @@ -1318,11 +1318,6 @@ export type Tab = { >; }; -// Warning: (ae-missing-release-tag) "TabBarClassKey" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// -// @public (undocumented) -export type TabBarClassKey = 'indicator' | 'flexContainer' | 'root'; - // Warning: (ae-forgotten-export) The symbol "Props_18" needs to be exported by the entry point index.d.ts // Warning: (ae-missing-release-tag) "TabbedCard" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) // @@ -1348,14 +1343,6 @@ export namespace TabbedLayout { Route: (props: SubRoute) => null; } -// @public (undocumented) -export type TabClassKey = 'root' | 'selected'; - -// Warning: (ae-missing-release-tag) "TabIconClassKey" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// -// @public (undocumented) -export type TabIconClassKey = 'root'; - // Warning: (ae-missing-release-tag) "Table" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) @@ -1438,17 +1425,6 @@ export type TableState = { // @public (undocumented) export type TableToolbarClassKey = 'root' | 'title' | 'searchField'; -// Warning: (ae-forgotten-export) The symbol "TabsProps" needs to be exported by the entry point index.d.ts -// Warning: (ae-missing-release-tag) "Tabs" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// -// @public (undocumented) -export function Tabs(props: TabsProps): JSX.Element; - -// Warning: (ae-missing-release-tag) "TabsClassKey" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// -// @public (undocumented) -export type TabsClassKey = 'root' | 'styledTabs' | 'appbar'; - // Warning: (ae-missing-release-tag) "TrendLine" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) diff --git a/packages/core-components/src/overridableComponents.ts b/packages/core-components/src/overridableComponents.ts index 49bc162951..c872317049 100644 --- a/packages/core-components/src/overridableComponents.ts +++ b/packages/core-components/src/overridableComponents.ts @@ -60,10 +60,6 @@ import { TableToolbarClassKey, FiltersContainerClassKey, TableClassKey, - TabBarClassKey, - TabIconClassKey, - TabsClassKey, - TabClassKey, WarningPanelClassKey, } from './components'; @@ -141,10 +137,6 @@ type BackstageComponentsNameToClassKey = { BackstageTableToolbar: TableToolbarClassKey; BackstageTableFiltersContainer: FiltersContainerClassKey; BackstageTable: TableClassKey; - BackstageTabBar: TabBarClassKey; - BackstageTabIcon: TabIconClassKey; - BackstageTabs: TabsClassKey; - BackstageTab: TabClassKey; BackstageWarningPanel: WarningPanelClassKey; BackstageBottomLink: BottomLinkClassKey; BackstageBreadcrumbsClickableText: BreadcrumbsClickableTextClassKey;