Security upgrades
This commit is contained in:
36
node_modules/@material-ui/styles/withTheme/withTheme.d.ts
generated
vendored
Normal file
36
node_modules/@material-ui/styles/withTheme/withTheme.d.ts
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import * as React from 'react';
|
||||
import { ConsistentWith, Omit, PropInjector } from '@material-ui/types';
|
||||
import { DefaultTheme } from '../defaultTheme';
|
||||
|
||||
export interface WithThemeCreatorOption<Theme = DefaultTheme> {
|
||||
defaultTheme?: Theme;
|
||||
}
|
||||
|
||||
export interface WithTheme<Theme = DefaultTheme> {
|
||||
theme: Theme;
|
||||
/**
|
||||
* Deprecated. Will be removed in v5. Refs are now automatically forwarded to
|
||||
* the inner component.
|
||||
* @deprecated since version 4.0
|
||||
*/
|
||||
innerRef?: React.Ref<any>;
|
||||
}
|
||||
|
||||
export interface ThemedComponentProps extends Partial<WithTheme> {
|
||||
ref?: React.Ref<unknown>;
|
||||
}
|
||||
|
||||
export function withThemeCreator<Theme = DefaultTheme>(
|
||||
option?: WithThemeCreatorOption<Theme>
|
||||
): PropInjector<WithTheme<Theme>, ThemedComponentProps>;
|
||||
|
||||
export default function withTheme<
|
||||
Theme,
|
||||
C extends React.ComponentType<ConsistentWith<React.ComponentProps<C>, WithTheme<Theme>>>
|
||||
>(
|
||||
component: C
|
||||
): React.ComponentType<
|
||||
Omit<JSX.LibraryManagedAttributes<C, React.ComponentProps<C>>, keyof WithTheme<Theme>> &
|
||||
Partial<WithTheme<Theme>> &
|
||||
ThemedComponentProps
|
||||
>;
|
||||
Reference in New Issue
Block a user