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

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
@@ -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,
@@ -10920,20 +10930,7 @@ const themeOptions = {
10920
10930
  breakpoints
10921
10931
  };
10922
10932
 
10923
- const SincoTheme = createTheme(Object.assign({}, themeOptions, {
10924
- 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
- }
10936
- }));
10933
+ const SincoTheme = createTheme(Object.assign({}, themeOptions));
10937
10934
 
10938
10935
  var wellKnownSymbol$d = wellKnownSymbol$f;
10939
10936
 
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.11",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,5 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  declare module "@mui/material/styles" {
3
+ interface TypographyVariants {
4
+ body3: React.CSSProperties;
5
+ }
3
6
  interface TypographyVariantsOptions {
4
7
  body3?: React.CSSProperties;
5
8
  }