rc-lib-ui 1.4.4 → 1.4.5
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.
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { TransitionProps } from 'notistack';
|
|
2
|
+
/**
|
|
3
|
+
* Credit to MUI team @ https://mui.com
|
|
4
|
+
*/
|
|
2
5
|
import * as React from 'react';
|
|
3
|
-
|
|
6
|
+
declare const GrowAnimation: React.ForwardRefExoticComponent<TransitionProps & React.RefAttributes<unknown>>;
|
|
7
|
+
export { GrowAnimation };
|
|
@@ -11,8 +11,7 @@ export interface InteractiveMessageItemCommon {
|
|
|
11
11
|
type DefaultShowAlertsVariant = Exclude<VariantType, 'deleteCountdown'>;
|
|
12
12
|
export type InteractiveMessageAlertProps = InteractiveMessageItemCommon & OptionsObject<DefaultShowAlertsVariant> & {
|
|
13
13
|
animation?: 'Fade' | 'Grow' | 'Zoom' | 'Slide';
|
|
14
|
-
variant?:
|
|
15
|
-
severity?: DefaultShowAlertsVariant;
|
|
14
|
+
variant?: DefaultShowAlertsVariant;
|
|
16
15
|
};
|
|
17
16
|
interface ViewModal extends InteractiveMessageItemCommon {
|
|
18
17
|
title?: string;
|