@sinco/react 1.0.10-rc.11 → 1.0.10-rc.12

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.
package/index.js CHANGED
@@ -10930,7 +10930,11 @@ const themeOptions = {
10930
10930
  breakpoints
10931
10931
  };
10932
10932
 
10933
- const SincoTheme = createTheme(Object.assign({}, themeOptions));
10933
+ const SincoTheme = createTheme(Object.assign({}, themeOptions, {
10934
+ typography: {
10935
+ body3: {}
10936
+ }
10937
+ }));
10934
10938
 
10935
10939
  var wellKnownSymbol$d = wellKnownSymbol$f;
10936
10940
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.10-rc.11",
3
+ "version": "1.0.10-rc.12",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,15 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  declare module "@mui/material/styles" {
3
- interface TypographyVariants {
4
- body3: React.CSSProperties;
5
- }
6
3
  interface TypographyVariantsOptions {
7
4
  body3?: React.CSSProperties;
8
5
  }
9
6
  }
10
- declare module "@mui/material/Typography" {
11
- interface TypographyPropsVariantOverrides {
12
- body3: true;
13
- }
14
- }
15
7
  export declare const SincoTheme: import("@mui/material/styles").Theme;