@ambuj.bhaskar/react-component-library 0.18.21-alpha → 0.18.22-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/assets/index.css +1 -1
- package/dist/index.cjs +163 -163
- package/dist/index.d.ts +15 -0
- package/dist/index.js +16481 -16417
- package/dist/index.umd.js +164 -164
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ declare type AnnotationComponentLibraryProps = {
|
|
|
121
121
|
fallbackImageUrl?: string;
|
|
122
122
|
activeColor?: any;
|
|
123
123
|
Carousel?: any;
|
|
124
|
+
showTool?: boolean;
|
|
124
125
|
};
|
|
125
126
|
|
|
126
127
|
export declare type AnnotationLibraryComponentProps = {
|
|
@@ -299,6 +300,18 @@ export declare type AwiCanvasContainerProps = {
|
|
|
299
300
|
handleTouchCancel: any;
|
|
300
301
|
};
|
|
301
302
|
|
|
303
|
+
export declare const AwiCustomConfirmation: default_2.FC<AwiCustomConfirmationProps>;
|
|
304
|
+
|
|
305
|
+
export declare interface AwiCustomConfirmationProps {
|
|
306
|
+
callback: (e: any) => void | Promise<void>;
|
|
307
|
+
children: React.ReactNode;
|
|
308
|
+
trigger?: any;
|
|
309
|
+
cancelCallBack?: () => void | Promise<void>;
|
|
310
|
+
fireOnMount?: boolean;
|
|
311
|
+
title?: string;
|
|
312
|
+
text?: string;
|
|
313
|
+
}
|
|
314
|
+
|
|
302
315
|
export declare const AwiEmptyState: React.FC<AwiEmptyStateProps>;
|
|
303
316
|
|
|
304
317
|
export declare type AwiEmptyStateProps = {
|
|
@@ -837,6 +850,8 @@ export declare type HeatmapProps = {
|
|
|
837
850
|
borderColor?: Color;
|
|
838
851
|
cellTextColor?: Color;
|
|
839
852
|
labelTextColor?: Color;
|
|
853
|
+
className?: string;
|
|
854
|
+
cellClassName?: string;
|
|
840
855
|
};
|
|
841
856
|
|
|
842
857
|
declare type HTMLButtonProps = ComponentProps<"button">;
|