Update report

Signed-off-by: gaelgoth <gothuey.gael@gmail.com>
This commit is contained in:
gaelgoth
2025-10-21 11:22:30 +02:00
parent fa06f6bd61
commit 0d43a8efab
4 changed files with 11 additions and 3 deletions
+4
View File
@@ -4,6 +4,7 @@
```ts
import type { ComponentsProps } from '@material-ui/core/styles/props';
import { Context } from 'react';
import { Overrides } from '@material-ui/core/styles/overrides';
import type { Palette } from '@material-ui/core/styles/createPalette';
import type { PaletteOptions } from '@material-ui/core/styles/createPalette';
@@ -18,6 +19,9 @@ import { ThemeOptions as ThemeOptions_2 } from '@material-ui/core/styles';
import type { ThemeOptions as ThemeOptions_3 } from '@material-ui/core/styles/createTheme';
import { UnifiedTheme as UnifiedTheme_2 } from '@backstage/theme';
// @public
export const AppThemeIdContext: Context<string | undefined>;
// @public @deprecated
export type BackstagePalette = Palette & BackstagePaletteAdditions;
@@ -29,6 +29,10 @@ import {
import { UnifiedTheme } from './types';
import { unstable_ClassNameGenerator as ClassNameGenerator } from '@mui/material/className';
/**
* React context for the current application theme ID.
* @public
*/
export const AppThemeIdContext = createContext<string | undefined>(undefined);
/**