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

Sign up to get free protection for your applications and to get access to all the features.
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "./src";
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.38",
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",
20
19
  "type": "module",
21
- "main": "./index.esm.js"
20
+ "module": "./index.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" {
package/index.esm.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./src\\index";
File without changes