@zealicsolutions/web-ui 0.2.38 → 0.2.40

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,5 +1,5 @@
1
1
  export declare const AppLogo: string;
2
- export declare const HomeHeroImageImage: string;
2
+ export declare const HomeHeroImage: string;
3
3
  export declare const ProfileGraphic: string;
4
4
  export declare const PulseEmblem: string;
5
5
  export declare const Logo: string;
@@ -3,6 +3,7 @@ import { AlertProps } from 'molecules';
3
3
  import { ProcessTrackerProps } from 'organisms';
4
4
  import { FeedContentProps } from 'organisms/FeedContent/types';
5
5
  import { CSSProperties } from 'styled-components';
6
+ import { SizesTypes } from 'theme';
6
7
  export declare type DynamicElementProps = (AlertProps & {
7
8
  elementType: 'alert';
8
9
  }) | (ProcessTrackerProps & {
@@ -10,12 +11,14 @@ export declare type DynamicElementProps = (AlertProps & {
10
11
  }) | (FeedContentProps & {
11
12
  elementType: 'feed_content';
12
13
  });
14
+ declare type SizeProps = SizesTypes | number;
13
15
  export declare type DynamicContentZoneProps = {
14
16
  elements: {
15
17
  data: DynamicElementProps[];
16
- spacer?: number;
18
+ spacer?: SizeProps;
17
19
  };
18
- horizontalPaddings?: number;
20
+ horizontalPaddings?: SizeProps;
19
21
  containerStyles?: CSSProperties;
20
22
  };
21
23
  export declare const DynamicContentZone: ({ elements, horizontalPaddings, containerStyles, }: DynamicContentZoneProps) => JSX.Element;
24
+ export {};