@sinco/react 1.1.2-rc.4 → 1.1.2-rc.6

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 +30 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.4",
3
+ "version": "1.1.2-rc.6",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -0,0 +1,30 @@
1
+ import "@mui/material/Typography";
2
+ import "@mui/material/Radio";
3
+ import "@mui/material/Checkbox";
4
+ import "@mui/material/styles";
5
+ declare module '@mui/material/Typography' {
6
+ interface TypographyPropsVariantOverrides {
7
+ body3: true;
8
+ }
9
+ }
10
+ declare module "@mui/material/Radio" {
11
+ interface RadioPropsSizeOverrides {
12
+ large: true;
13
+ }
14
+ }
15
+ declare module "@mui/material/Checkbox" {
16
+ interface CheckboxPropsSizeOverrides {
17
+ large: true;
18
+ }
19
+ }
20
+ declare module "@mui/material/styles" {
21
+ interface PaletteColor {
22
+ 50?: string;
23
+ 100?: string;
24
+ 200?: string;
25
+ 300?: string;
26
+ 600?: string;
27
+ 700?: string;
28
+ 800?: string;
29
+ }
30
+ }