@sinco/react 1.0.2-rc.9 → 1.0.2

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.0.2-rc.9",
3
+ "version": "1.0.2",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -0,0 +1,3 @@
1
+ import { Breakpoints } from '@mui/material';
2
+ declare const breakpoints: Breakpoints;
3
+ export default breakpoints;
@@ -1,2 +1,3 @@
1
1
  import { Components } from '@mui/material';
2
- export declare const components: Components<unknown>;
2
+ declare const components: Components;
3
+ export default components;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare module '@mui/material/styles' {
2
+ declare module "@mui/material/styles" {
3
3
  interface TypographyVariants {
4
4
  body3: React.CSSProperties;
5
5
  }
@@ -7,7 +7,7 @@ declare module '@mui/material/styles' {
7
7
  body3?: React.CSSProperties;
8
8
  }
9
9
  }
10
- declare module '@mui/material/Typography' {
10
+ declare module "@mui/material/Typography" {
11
11
  interface TypographyPropsVariantOverrides {
12
12
  body3: true;
13
13
  }
@@ -0,0 +1,3 @@
1
+ import { Mixins } from '@mui/material';
2
+ declare const mixins: Mixins;
3
+ export default mixins;
@@ -1,2 +1,3 @@
1
1
  import { PaletteOptions } from '@mui/material';
2
- export declare const palette: PaletteOptions;
2
+ declare const palette: PaletteOptions;
3
+ export default palette;
@@ -1,2 +1,3 @@
1
1
  import { Shadows } from '@mui/material/styles/shadows';
2
- export declare const shadows: Shadows;
2
+ declare const shadows: Shadows;
3
+ export default shadows;
@@ -1,2 +1,3 @@
1
1
  import { TypographyOptions } from '@mui/material/styles/createTypography';
2
- export declare const typography: TypographyOptions;
2
+ declare const typography: TypographyOptions;
3
+ export default typography;