@sinco/react 1.0.10-rc.7 → 1.0.10-rc.9
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 +1 -14
- package/package.json +1 -1
- package/src/lib/Theme/index.d.ts +0 -9
package/index.js
CHANGED
|
@@ -10920,20 +10920,7 @@ const themeOptions = {
|
|
|
10920
10920
|
breakpoints
|
|
10921
10921
|
};
|
|
10922
10922
|
|
|
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
|
-
}));
|
|
10923
|
+
const SincoTheme = createTheme(Object.assign({}, themeOptions));
|
|
10937
10924
|
|
|
10938
10925
|
var wellKnownSymbol$d = wellKnownSymbol$f;
|
|
10939
10926
|
|
package/package.json
CHANGED
package/src/lib/Theme/index.d.ts
CHANGED
|
@@ -1,10 +1 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare module "@mui/material/styles" {
|
|
3
|
-
interface TypographyVariants {
|
|
4
|
-
body3: React.CSSProperties;
|
|
5
|
-
}
|
|
6
|
-
interface TypographyVariantsOptions {
|
|
7
|
-
body3?: React.CSSProperties;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
1
|
export declare const SincoTheme: import("@mui/material/styles").Theme;
|