packages: regenerate all API reports with prettier

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-12 11:20:25 +02:00
parent e87aa59df3
commit 602b5b59bb
78 changed files with 8153 additions and 4661 deletions
+47 -29
View File
@@ -3,7 +3,6 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="react" />
import { ApiRef } from '@backstage/core-plugin-api';
@@ -19,20 +18,31 @@ import { SearchResult as SearchResult_2 } from '@backstage/search-common';
import { SearchResultSet } from '@backstage/search-common';
// @public (undocumented)
export const DefaultResultListItem: ({ result }: {
result: IndexableDocument;
export const DefaultResultListItem: ({
result,
}: {
result: IndexableDocument;
}) => JSX.Element;
// @public (undocumented)
export const Filters: ({ filters, filterOptions, resetFilters, updateSelected, updateChecked, }: FiltersProps) => JSX.Element;
export const Filters: ({
filters,
filterOptions,
resetFilters,
updateSelected,
updateChecked,
}: FiltersProps) => JSX.Element;
// @public (undocumented)
export const FiltersButton: ({ numberOfSelectedFilters, handleToggleFilters, }: FiltersButtonProps) => JSX.Element;
export const FiltersButton: ({
numberOfSelectedFilters,
handleToggleFilters,
}: FiltersButtonProps) => JSX.Element;
// @public (undocumented)
export type FiltersState = {
selected: string;
checked: Array<string>;
selected: string;
checked: Array<string>;
};
// @public (undocumented)
@@ -45,28 +55,34 @@ export const searchApiRef: ApiRef<SearchApi>;
export const SearchBar: ({ className, debounceTime }: Props) => JSX.Element;
// @public @deprecated (undocumented)
export const SearchBarNext: ({ className, debounceTime }: {
className?: string | undefined;
debounceTime?: number | undefined;
export const SearchBarNext: ({
className,
debounceTime,
}: {
className?: string | undefined;
debounceTime?: number | undefined;
}) => JSX.Element;
// @public (undocumented)
export const SearchContextProvider: ({ initialState, children, }: React_2.PropsWithChildren<{
initialState?: SettableSearchContext | undefined;
export const SearchContextProvider: ({
initialState,
children,
}: React_2.PropsWithChildren<{
initialState?: SettableSearchContext | undefined;
}>) => JSX.Element;
// @public (undocumented)
export const SearchFilter: {
({ component: Element, ...props }: Props_2): JSX.Element;
Checkbox(props: Omit<Props_2, 'component'> & Component): JSX.Element;
Select(props: Omit<Props_2, 'component'> & Component): JSX.Element;
({ component: Element, ...props }: Props_2): JSX.Element;
Checkbox(props: Omit<Props_2, 'component'> & Component): JSX.Element;
Select(props: Omit<Props_2, 'component'> & Component): JSX.Element;
};
// @public @deprecated (undocumented)
export const SearchFilterNext: {
({ component: Element, ...props }: Props_2): JSX.Element;
Checkbox(props: Omit<Props_2, 'component'> & Component): JSX.Element;
Select(props: Omit<Props_2, 'component'> & Component): JSX.Element;
({ component: Element, ...props }: Props_2): JSX.Element;
Checkbox(props: Omit<Props_2, 'component'> & Component): JSX.Element;
Select(props: Omit<Props_2, 'component'> & Component): JSX.Element;
};
// @public (undocumented)
@@ -76,18 +92,21 @@ export const SearchPage: () => JSX.Element;
export const SearchPageNext: () => JSX.Element;
// @public (undocumented)
const searchPlugin: BackstagePlugin< {
root: RouteRef<undefined>;
nextRoot: RouteRef<undefined>;
}, {}>;
export { searchPlugin as plugin }
export { searchPlugin }
const searchPlugin: BackstagePlugin<
{
root: RouteRef<undefined>;
nextRoot: RouteRef<undefined>;
},
{}
>;
export { searchPlugin as plugin };
export { searchPlugin };
// @public (undocumented)
export const SearchResult: ({ children }: {
children: (results: {
results: SearchResult_2[];
}) => JSX.Element;
export const SearchResult: ({
children,
}: {
children: (results: { results: SearchResult_2[] }) => JSX.Element;
}) => JSX.Element;
// @public (undocumented)
@@ -97,5 +116,4 @@ export const SidebarSearch: () => JSX.Element;
export const useSearch: () => SearchContextValue;
// (No @packageDocumentation comment for this package)
```