@sinco/react 1.1.2-rc.28 → 1.1.2-rc.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/module.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.28",
3
+ "version": "1.1.2-rc.29",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
package/src/module.d.ts CHANGED
@@ -5,7 +5,7 @@ import "@mui/material/Checkbox";
5
5
  import "@mui/material/styles";
6
6
  declare module '@mui/material/styles' {
7
7
  interface TypographyVariants {
8
- body3: React.CSSProperties;
8
+ body3?: React.CSSProperties;
9
9
  }
10
10
  interface TypographyVariantsOptions {
11
11
  body3?: React.CSSProperties;
@@ -18,12 +18,12 @@ declare module '@mui/material/Typography' {
18
18
  }
19
19
  declare module "@mui/material/Radio" {
20
20
  interface RadioPropsSizeOverrides {
21
- large: true;
21
+ large?: true;
22
22
  }
23
23
  }
24
24
  declare module "@mui/material/Checkbox" {
25
25
  interface CheckboxPropsSizeOverrides {
26
- large: true;
26
+ large?: true;
27
27
  }
28
28
  }
29
29
  declare module "@mui/material/styles" {