@zealicsolutions/web-ui 0.1.86 → 0.1.88

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.
@@ -17,5 +17,6 @@ export declare type AlertProps = {
17
17
  fontColor?: ThemeColors;
18
18
  destinationLink?: string;
19
19
  onDestinationHandler?: Callback;
20
+ containerStyles?: CSSProperties;
20
21
  };
21
- export declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, ...props }: AlertProps) => JSX.Element;
22
+ export declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, containerStyles, ...props }: AlertProps) => JSX.Element;
@@ -3,7 +3,7 @@ import type { ComponentStory } from '@storybook/react';
3
3
  import { Alert as AlertComponent, AlertProps } from './Alert';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: ({ logo, title, withCloseIcon, description, style, fontColor, ...props }: AlertProps) => JSX.Element;
6
+ component: ({ logo, title, withCloseIcon, description, style, fontColor, containerStyles, ...props }: AlertProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const Alert: ComponentStory<typeof AlertComponent>;