@connectif/ui-components 1.0.8 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1,5 @@
1
- export declare const theme: import("@mui/material/styles").Theme;
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const theme: Theme;
3
+ export type PropsWithTheme<Props extends Record<string, unknown>> = {
4
+ theme: Theme;
5
+ } & Props;
@@ -1,4 +1,4 @@
1
- import { TypographyOptions } from '@mui/material/styles/createTypography';
1
+ import { TypographyVariantsOptions } from '@mui/material/styles';
2
2
  import * as React from 'react';
3
3
  export declare const sizes: {
4
4
  readonly xs: "10px";
@@ -94,4 +94,4 @@ declare module '@mui/material/Typography' {
94
94
  overline: true;
95
95
  }
96
96
  }
97
- export declare const typography: TypographyOptions;
97
+ export declare const typography: TypographyVariantsOptions;