@ambuj.bhaskar/react-component-library 0.18.24-alpha → 0.18.26-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 +130 -128
- package/dist/index.d.ts +4 -1
- package/dist/index.js +19010 -18023
- package/dist/index.umd.js +139 -137
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -414,7 +414,7 @@ export declare interface AwiMessageProps {
|
|
|
414
414
|
|
|
415
415
|
export declare const AwiMessageScreen: React.FC<AwiMessageProps>;
|
|
416
416
|
|
|
417
|
-
export declare const AwiModal:
|
|
417
|
+
export declare const AwiModal: default_2.FC<AwiModalProps>;
|
|
418
418
|
|
|
419
419
|
export declare const AwiModalBody: default_2.FC<AwiModalBodyProps>;
|
|
420
420
|
|
|
@@ -455,6 +455,7 @@ export declare interface AwiModalProps {
|
|
|
455
455
|
className?: string;
|
|
456
456
|
type?: string;
|
|
457
457
|
popupPosition?: string;
|
|
458
|
+
draggable?: boolean;
|
|
458
459
|
}
|
|
459
460
|
|
|
460
461
|
export declare const AwiModalRow: default_2.FC<AwiModalRowProps>;
|
|
@@ -831,8 +832,10 @@ export declare type EventPreviewProps = {
|
|
|
831
832
|
width?: CSSstring;
|
|
832
833
|
height?: CSSstring;
|
|
833
834
|
data: EventType[];
|
|
835
|
+
secondaryPanel?: React.ReactNode;
|
|
834
836
|
focusedIndex?: number;
|
|
835
837
|
setFocusedIndex?: (index: number) => void;
|
|
838
|
+
emptyData?: React.ReactNode;
|
|
836
839
|
};
|
|
837
840
|
|
|
838
841
|
declare type EventType = {
|