@mateosuarezdev/react-ui 1.0.31 → 1.0.33
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 +4 -4
- package/dist/index.d.ts +7 -1
- package/dist/index.js +285 -269
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -680,11 +680,17 @@ declare type SpinnerProps = {
|
|
|
680
680
|
spinnerClassName?: string;
|
|
681
681
|
};
|
|
682
682
|
|
|
683
|
-
export declare const SuperModal: ({ id, prevPath, title, description, showHeader, mode, onReplace, className, contentClassName, children, }: SuperModalProps) => JSX.Element;
|
|
683
|
+
export declare const SuperModal: ({ id, prevPath, withDelay, title, description, showHeader, mode, onReplace, className, contentClassName, children, }: SuperModalProps) => JSX.Element;
|
|
684
684
|
|
|
685
685
|
declare type SuperModalProps = {
|
|
686
686
|
id: string;
|
|
687
687
|
prevPath: string;
|
|
688
|
+
/**
|
|
689
|
+
* Helps with performance by
|
|
690
|
+
* adding a small delay between
|
|
691
|
+
* rendering and entering animation
|
|
692
|
+
*/
|
|
693
|
+
withDelay?: boolean;
|
|
688
694
|
title?: string;
|
|
689
695
|
description?: string;
|
|
690
696
|
showHeader?: boolean;
|