@sinco/react 1.1.2-rc.35 → 1.1.2-rc.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.35",
3
+ "version": "1.1.2-rc.36",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -16,7 +16,7 @@
16
16
  "@mui/x-data-grid": "^6.6.0"
17
17
  },
18
18
  "sideEffects": false,
19
- "module": "./index.esm.js",
19
+ "module": "./index.js",
20
20
  "type": "module",
21
- "main": "./index.esm.js"
21
+ "main": "./index.js"
22
22
  }
@@ -1,3 +1,2 @@
1
1
  import { Components } from "@mui/material";
2
- import "../../module";
3
2
  export declare const components: Components;
@@ -1,3 +1,2 @@
1
1
  import { TypographyOptions } from '@mui/material/styles/createTypography';
2
- import "../../module";
3
2
  export declare const typography: TypographyOptions;
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" {