@fattureincloud/fic-design-system 1.0.3 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,13 @@
1
1
  /// <reference types="react" />
2
+ import 'react-toastify/dist/ReactToastify.css';
2
3
  import { ToastContainerProps } from './types';
3
4
  export declare const ToastContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react-toastify").ToastContainerProps & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {
4
- hideProgressBar: true;
5
- newestOnTop: true;
5
+ closeButton: false;
6
6
  closeOnClick: false;
7
7
  draggable: false;
8
- rtl: false;
8
+ hideProgressBar: true;
9
9
  icon: false;
10
- } & ToastContainerProps, "draggable" | "icon" | "rtl" | "closeOnClick" | "newestOnTop" | "hideProgressBar">;
10
+ newestOnTop: true;
11
+ rtl: false;
12
+ transition: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("react-toastify").ToastTransitionProps) => JSX.Element;
13
+ } & ToastContainerProps, "draggable" | "icon" | "rtl" | "transition" | "closeOnClick" | "newestOnTop" | "closeButton" | "hideProgressBar">;