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
+23 -24
View File
@@ -3,7 +3,6 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { Overrides } from '@material-ui/core/styles/overrides';
import { Palette } from '@material-ui/core/styles/createPalette';
import { PaletteOptions } from '@material-ui/core/styles/createPalette';
@@ -18,22 +17,22 @@ export type BackstagePaletteOptions = PaletteOptions & PaletteAdditions;
// @public (undocumented)
export interface BackstageTheme extends Theme {
// (undocumented)
getPageTheme: ({ themeId }: PageThemeSelector) => PageTheme;
// (undocumented)
page: PageTheme;
// (undocumented)
palette: BackstagePalette;
// (undocumented)
getPageTheme: ({ themeId }: PageThemeSelector) => PageTheme;
// (undocumented)
page: PageTheme;
// (undocumented)
palette: BackstagePalette;
}
// @public (undocumented)
export interface BackstageThemeOptions extends ThemeOptions {
// (undocumented)
getPageTheme: ({ themeId }: PageThemeSelector) => PageTheme;
// (undocumented)
page: PageTheme;
// (undocumented)
palette: BackstagePaletteOptions;
// (undocumented)
getPageTheme: ({ themeId }: PageThemeSelector) => PageTheme;
// (undocumented)
page: PageTheme;
// (undocumented)
palette: BackstagePaletteOptions;
}
// @public (undocumented)
@@ -43,7 +42,9 @@ export const colorVariants: Record<string, string[]>;
export function createTheme(options: SimpleThemeOptions): BackstageTheme;
// @public (undocumented)
export function createThemeOptions(options: SimpleThemeOptions): BackstageThemeOptions;
export function createThemeOptions(
options: SimpleThemeOptions,
): BackstageThemeOptions;
// @public (undocumented)
export function createThemeOverrides(theme: BackstageTheme): Overrides;
@@ -59,9 +60,9 @@ export const lightTheme: BackstageTheme;
// @public (undocumented)
export type PageTheme = {
colors: string[];
shape: string;
backgroundImage: string;
colors: string[];
shape: string;
backgroundImage: string;
};
// @public (undocumented)
@@ -69,7 +70,7 @@ export const pageTheme: Record<string, PageTheme>;
// @public (undocumented)
export type PageThemeSelector = {
themeId: string;
themeId: string;
};
// @public (undocumented)
@@ -77,13 +78,11 @@ export const shapes: Record<string, string>;
// @public
export type SimpleThemeOptions = {
palette: BackstagePaletteOptions;
defaultPageTheme: string;
pageTheme?: Record<string, PageTheme>;
fontFamily?: string;
palette: BackstagePaletteOptions;
defaultPageTheme: string;
pageTheme?: Record<string, PageTheme>;
fontFamily?: string;
};
// (No @packageDocumentation comment for this package)
```