@sinco/react 1.0.3-rc.0 → 1.0.3-rc.2
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 +813 -5358
- package/package.json +1 -1
- package/src/index.d.ts +0 -3
- package/src/lib/Theme/breakpoints.d.ts +3 -0
- package/src/lib/Theme/index.d.ts +14 -0
- package/src/component/toastNotification/ToastNofitication.d.ts +0 -4
- package/src/component/toastNotification/interfaces.d.ts +0 -22
- package/src/lib/Theme/breackpoints.d.ts +0 -2
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
package/src/lib/Theme/index.d.ts
CHANGED
@@ -1 +1,15 @@
|
|
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
|
+
}
|
1
15
|
export declare const SincoTheme: import("@mui/material/styles").Theme;
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import { ReactElement } from "react";
|
2
|
-
export interface Option {
|
3
|
-
}
|
4
|
-
export interface Toast {
|
5
|
-
type?: string;
|
6
|
-
subtitle?: string;
|
7
|
-
time?: number | any;
|
8
|
-
title?: string;
|
9
|
-
dataOpt?: Option[];
|
10
|
-
actions?: React.ReactNode;
|
11
|
-
seeMore?: boolean;
|
12
|
-
position?: string;
|
13
|
-
}
|
14
|
-
export interface IconMap {
|
15
|
-
[key: string]: ReactElement;
|
16
|
-
}
|
17
|
-
export interface Position {
|
18
|
-
[key: string]: "center" | "left" | 'right';
|
19
|
-
}
|
20
|
-
export interface ColorMap {
|
21
|
-
[key: string]: "success" | "error" | "warning" | "info";
|
22
|
-
}
|