@sinco/react 1.1.2-rc.10 → 1.1.2-rc.11

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.10",
3
+ "version": "1.1.2-rc.11",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,2 +1,12 @@
1
1
  import { Components } from "@mui/material";
2
+ declare module "@mui/material/Radio" {
3
+ interface RadioPropsSizeOverrides {
4
+ large: true;
5
+ }
6
+ }
7
+ declare module "@mui/material/Checkbox" {
8
+ interface CheckboxPropsSizeOverrides {
9
+ large: true;
10
+ }
11
+ }
2
12
  export declare const components: Components;
@@ -1,2 +1,11 @@
1
+ /// <reference types="react" />
1
2
  import { TypographyOptions } from '@mui/material/styles/createTypography';
3
+ declare module '@mui/material/styles' {
4
+ interface TypographyVariants {
5
+ body3: React.CSSProperties;
6
+ }
7
+ interface TypographyVariantsOptions {
8
+ body3?: React.CSSProperties;
9
+ }
10
+ }
2
11
  export declare const typography: TypographyOptions;