@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.
- package/dist/components/toast/types.d.ts +2 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -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
|
-
|
31
|
+
disableActionAfterClick?: boolean;
|
31
32
|
}
|
32
33
|
export interface ToastInterface {
|
33
34
|
Container: React.FC<ToastContainerProps>;
|