@sinco/react 1.1.2-rc.11 → 1.1.2-rc.13
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/index.js +2815 -2815
- package/package.json +1 -1
- package/src/lib/Theme/components.d.ts +1 -10
- package/src/lib/Theme/typography.d.ts +1 -9
package/package.json
CHANGED
@@ -1,12 +1,3 @@
|
|
1
1
|
import { Components } from "@mui/material";
|
2
|
-
|
3
|
-
interface RadioPropsSizeOverrides {
|
4
|
-
large: true;
|
5
|
-
}
|
6
|
-
}
|
7
|
-
declare module "@mui/material/Checkbox" {
|
8
|
-
interface CheckboxPropsSizeOverrides {
|
9
|
-
large: true;
|
10
|
-
}
|
11
|
-
}
|
2
|
+
import "../../module";
|
12
3
|
export declare const components: Components;
|
@@ -1,11 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
3
|
-
|
4
|
-
interface TypographyVariants {
|
5
|
-
body3: React.CSSProperties;
|
6
|
-
}
|
7
|
-
interface TypographyVariantsOptions {
|
8
|
-
body3?: React.CSSProperties;
|
9
|
-
}
|
10
|
-
}
|
2
|
+
import "../../module";
|
11
3
|
export declare const typography: TypographyOptions;
|