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

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -10817,6 +10817,16 @@ const typography = {
10817
10817
  fontSize: 14
10818
10818
  }
10819
10819
  },
10820
+ body3: {
10821
+ fontFamily: "Roboto",
10822
+ fontWeight: 310,
10823
+ fontSize: 12,
10824
+ letterSpacing: 0.17,
10825
+ lineHeight: 1.2,
10826
+ [breakpoints.down("md")]: {
10827
+ fontSize: 11
10828
+ }
10829
+ },
10820
10830
  subtitle1: {
10821
10831
  fontFamily: "Roboto",
10822
10832
  fontSize: 14,
@@ -10922,16 +10932,7 @@ const themeOptions = {
10922
10932
 
10923
10933
  const SincoTheme = createTheme(Object.assign({}, themeOptions, {
10924
10934
  typography: {
10925
- body3: {
10926
- fontFamily: "Roboto",
10927
- fontWeight: 310,
10928
- fontSize: 12,
10929
- letterSpacing: 0.17,
10930
- lineHeight: 1.2,
10931
- [breakpoints.down("md")]: {
10932
- fontSize: 11
10933
- }
10934
- }
10935
+ body3: {}
10935
10936
  }
10936
10937
  }));
10937
10938
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.10-rc.10",
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",
@@ -4,9 +4,4 @@ declare module "@mui/material/styles" {
4
4
  body3?: React.CSSProperties;
5
5
  }
6
6
  }
7
- declare module "@mui/material/Typography" {
8
- interface TypographyPropsVariantOverrides {
9
- body3: true;
10
- }
11
- }
12
7
  export declare const SincoTheme: import("@mui/material/styles").Theme;