@fattureincloud/fic-design-system 0.6.4 → 0.6.6

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,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 {};