@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.
- package/dist/cjs/index.js +11 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/Alert/Alert.d.ts +2 -1
- package/dist/cjs/src/molecules/Alert/Alert.stories.d.ts +1 -1
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/Alert/Alert.d.ts +2 -1
- package/dist/esm/src/molecules/Alert/Alert.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -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>;
|
package/dist/index.d.ts
CHANGED
@@ -579,8 +579,9 @@ declare type AlertProps = {
|
|
579
579
|
fontColor?: ThemeColors$2;
|
580
580
|
destinationLink?: string;
|
581
581
|
onDestinationHandler?: Callback;
|
582
|
+
containerStyles?: CSSProperties;
|
582
583
|
};
|
583
|
-
declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, ...props }: AlertProps) => JSX.Element;
|
584
|
+
declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, containerStyles, ...props }: AlertProps) => JSX.Element;
|
584
585
|
|
585
586
|
declare type OrientationType = 'horizontal' | 'vertical';
|
586
587
|
declare type StepperProps = {
|