From ad270bad1363a51bb3085131fec851d2f8b8e22b Mon Sep 17 00:00:00 2001 From: Yousif Al-Raheem Date: Wed, 16 Mar 2022 11:55:00 +0100 Subject: [PATCH] revert back the api reports Signed-off-by: Yousif Al-Raheem --- plugins/user-settings/api-report.md | 15 +-------------- plugins/user-settings/src/components/index.ts | 1 - 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/plugins/user-settings/api-report.md b/plugins/user-settings/api-report.md index 6a37e2530f..0d8f132f37 100644 --- a/plugins/user-settings/api-report.md +++ b/plugins/user-settings/api-report.md @@ -9,7 +9,6 @@ import { ApiRef } from '@backstage/core-plugin-api'; import { BackstagePlugin } from '@backstage/core-plugin-api'; import { IconComponent } from '@backstage/core-plugin-api'; import { ProfileInfo } from '@backstage/core-plugin-api'; -import { default as React_2 } from 'react'; import { RouteRef } from '@backstage/core-plugin-api'; import { SessionApi } from '@backstage/core-plugin-api'; @@ -36,7 +35,7 @@ export const ProviderSettingsItem: ({ // Warning: (ae-missing-release-tag) "SettingsPage" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) -export const Router: ({ providerSettings, tabs }: Props) => JSX.Element; +export const Router: ({ providerSettings }: Props) => JSX.Element; // Warning: (ae-forgotten-export) The symbol "SettingsProps" needs to be exported by the entry point index.d.ts // Warning: (ae-missing-release-tag) "Settings" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) @@ -44,16 +43,6 @@ export const Router: ({ providerSettings, tabs }: Props) => JSX.Element; // @public (undocumented) export const Settings: (props: SettingsProps) => JSX.Element; -// Warning: (ae-missing-release-tag) "SettingsTab" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// -// @public (undocumented) -export interface SettingsTab { - // (undocumented) - content: React_2.ReactElement; - // (undocumented) - title: string; -} - // Warning: (ae-missing-release-tag) "UserSettingsAppearanceCard" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) @@ -87,10 +76,8 @@ export const UserSettingsMenu: () => JSX.Element; // @public (undocumented) export const UserSettingsPage: ({ providerSettings, - tabs, }: { providerSettings?: JSX.Element | undefined; - tabs?: SettingsTab[] | undefined; }) => JSX.Element; // Warning: (ae-missing-release-tag) "UserSettingsPinToggle" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) diff --git a/plugins/user-settings/src/components/index.ts b/plugins/user-settings/src/components/index.ts index a1dae855d8..cb058f9c5e 100644 --- a/plugins/user-settings/src/components/index.ts +++ b/plugins/user-settings/src/components/index.ts @@ -15,7 +15,6 @@ */ export { Settings } from './Settings'; export { SettingsPage as Router } from './SettingsPage'; -export type { SettingsTab } from './SettingsPage'; export * from './AuthProviders'; export * from './General'; export * from './FeatureFlags';