@sinco/react 1.0.15-rc.1 → 1.0.15-rc.10
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.d.ts +1 -0
- package/index.js +1223 -138
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/lib/Components/index.d.ts +2 -1
- package/src/lib/Components/toastNotification/ToastBase.d.ts +12 -0
- package/src/lib/Components/toastNotification/ToastNotification.d.ts +7 -0
- package/src/lib/Hooks/useProgress.d.ts +3 -0
- package/src/lib/Components/PageHeader.d.ts +0 -10
- package/src/lib/Utils/index.d.ts +0 -1
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from "react";
|
2
|
+
export type toastType = "success" | "error" | "warning" | "info";
|
3
|
+
export interface ToastBaseProperties {
|
4
|
+
type?: toastType;
|
5
|
+
subtitle?: string;
|
6
|
+
title: string;
|
7
|
+
time?: number | any;
|
8
|
+
dataOpt?: string[];
|
9
|
+
actions?: React.ReactNode;
|
10
|
+
seeMore?: boolean;
|
11
|
+
}
|
12
|
+
export declare const ToastNotification: (toast: ToastBaseProperties) => JSX.Element;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ToastBaseProperties } from "./ToastBase";
|
3
|
+
interface ToastNotificationProperties {
|
4
|
+
toast: ToastBaseProperties | ToastBaseProperties[];
|
5
|
+
}
|
6
|
+
export declare const ToastNotificationComponent: ({ toast, }: ToastNotificationProperties) => JSX.Element;
|
7
|
+
export {};
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from "react";
|
2
|
-
interface PageheaderProperties {
|
3
|
-
title: string | React.ReactNode;
|
4
|
-
subtitle?: string | React.ReactNode;
|
5
|
-
actions?: React.ReactNode;
|
6
|
-
buttonBack?: React.ReactNode;
|
7
|
-
fixed?: boolean;
|
8
|
-
}
|
9
|
-
export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => JSX.Element;
|
10
|
-
export {};
|
package/src/lib/Utils/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './dynamicColor';
|