@fattureincloud/fic-design-system 0.7.16 → 0.7.18

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,6 +19,7 @@ export interface ToastProps {
19
19
  onActionClick?: () => void;
20
20
  autoClose?: boolean | number;
21
21
  isDisabledAction?: boolean;
22
+ disableActionAfterClick?: boolean;
22
23
  }
23
24
  export interface ToastContentProps {
24
25
  title: ReactNode;
@@ -27,7 +28,7 @@ export interface ToastContentProps {
27
28
  actionLabel?: string;
28
29
  onActionClick?: () => void;
29
30
  type?: ToastType;
30
- isDisabledAction?: boolean;
31
+ disableActionAfterClick?: boolean;
31
32
  }
32
33
  export interface ToastInterface {
33
34
  Container: React.FC<ToastContainerProps>;