@sinco/react 1.0.10-rc.10 → 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 +11 -10
- package/package.json +1 -1
- package/src/lib/Theme/index.d.ts +0 -5
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
package/src/lib/Theme/index.d.ts
CHANGED
|
@@ -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;
|