@zealicsolutions/web-ui 0.4.35 → 0.4.36

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.
@@ -6,6 +6,7 @@ export declare type PopupPropsType = {
6
6
  config: {
7
7
  styles?: AnyObject;
8
8
  size?: 'large' | 'medium';
9
+ withCloseIcon?: boolean;
9
10
  };
10
11
  content: {
11
12
  embedded?: (ContainerComponentProps | Molecule)[];
@@ -10,8 +10,9 @@ export declare type ZealUIModalProps = PropsWithChildren<Pick<MUIModalProps, 'op
10
10
  size?: string;
11
11
  popupId: string;
12
12
  onClose: (popupId: string) => void;
13
+ withCloseIcon?: boolean;
13
14
  };
14
- export declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, ...rest }: ZealUIModalProps) => JSX.Element;
15
+ export declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, withCloseIcon, ...rest }: ZealUIModalProps) => JSX.Element;
15
16
  export declare const ModalWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, OverrideStyles, never>;
16
17
  export declare const IconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
17
18
  activeOpacity?: number | undefined;
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
2
2
  import { ZealUIModal as ZealUIModalComponent } from './ZealUIModal';
3
3
  declare const _default: {
4
4
  title: string;
5
- component: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, ...rest }: import("./ZealUIModal").ZealUIModalProps) => JSX.Element;
5
+ component: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, withCloseIcon, ...rest }: import("./ZealUIModal").ZealUIModalProps) => JSX.Element;
6
6
  };
7
7
  export default _default;
8
8
  export declare const ZealUIModal: StoryFn<typeof ZealUIModalComponent>;