@sinco/react 1.0.4-rc.6 → 1.0.4-rc.8
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 +1307 -128
- package/package.json +1 -1
- package/src/lib/Components/EmptyState.d.ts +1 -2
- package/src/lib/Theme/index.d.ts +0 -14
- package/src/lib/Theme/typography.d.ts +14 -0
package/package.json
CHANGED
@@ -12,5 +12,4 @@ export declare enum UrlImage {
|
|
12
12
|
noresult = "src/assets/images/noresult.svg",
|
13
13
|
create = "src/assets/images/create.svg"
|
14
14
|
}
|
15
|
-
declare const EmptyState: ({ state, title, content, actions, }: EmptyStateProperties) => JSX.Element;
|
16
|
-
export default EmptyState;
|
15
|
+
export declare const EmptyState: ({ state, title, content, actions, }: EmptyStateProperties) => JSX.Element;
|
package/src/lib/Theme/index.d.ts
CHANGED
@@ -1,15 +1 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
declare module "@mui/material/styles" {
|
3
|
-
interface TypographyVariants {
|
4
|
-
body3: React.CSSProperties;
|
5
|
-
}
|
6
|
-
interface TypographyVariantsOptions {
|
7
|
-
body3?: React.CSSProperties;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
declare module "@mui/material/Typography" {
|
11
|
-
interface TypographyPropsVariantOverrides {
|
12
|
-
body3: true;
|
13
|
-
}
|
14
|
-
}
|
15
1
|
export declare const SincoTheme: import("@mui/material/styles").Theme;
|
@@ -1,3 +1,17 @@
|
|
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
|
+
}
|
11
|
+
declare module '@mui/material/Typography' {
|
12
|
+
interface TypographyPropsVariantOverrides {
|
13
|
+
body3: true;
|
14
|
+
}
|
15
|
+
}
|
2
16
|
declare const typography: TypographyOptions;
|
3
17
|
export default typography;
|