@ambuj.bhaskar/react-component-library 0.25.1-alpha → 0.25.2-alpha
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/dist/index.cjs +109 -109
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8179 -8178
- package/dist/index.umd.js +119 -119
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1259,6 +1259,14 @@ export declare type SelectProps = {
|
|
|
1259
1259
|
|
|
1260
1260
|
export declare type ShowAnnotationStatus = "approved" | "rejected" | "pending" | "corrected" | "all";
|
|
1261
1261
|
|
|
1262
|
+
export declare const showToast: ({ type, title, body, }: ShowToastType) => void;
|
|
1263
|
+
|
|
1264
|
+
declare type ShowToastType = {
|
|
1265
|
+
type: ToastType;
|
|
1266
|
+
title?: string;
|
|
1267
|
+
body?: string;
|
|
1268
|
+
};
|
|
1269
|
+
|
|
1262
1270
|
export declare const Sidebar: React.FC<SidebarProps>;
|
|
1263
1271
|
|
|
1264
1272
|
export declare type SidebarConfig = {
|