@fattureincloud/fic-design-system 0.6.4 → 0.6.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  import { StepModalBodyProps } from '../types';
3
- declare const StepModalBody: ({ children, className, height, minHeight }: StepModalBodyProps) => JSX.Element;
3
+ declare const StepModalBody: ({ children, ...otherProps }: StepModalBodyProps) => JSX.Element;
4
4
  export default StepModalBody;
@@ -45,5 +45,7 @@ export declare type StepModalHeaderProps = Partial<StepModalCommonProps> & HasCh
45
45
  export declare type StepModalBodyProps = Partial<StepModalCommonProps> & HasChildren & {
46
46
  className?: string;
47
47
  isFullscreen?: boolean;
48
+ withoutFooter?: boolean;
49
+ withoutHeader?: boolean;
48
50
  };
49
51
  export {};