@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 +11 -14
- package/package.json +1 -1
- package/src/lib/Theme/index.d.ts +3 -0
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