@zealicsolutions/web-ui 0.2.37 → 0.2.39

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.
@@ -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 {};
package/dist/index.d.ts CHANGED
@@ -932,12 +932,13 @@ declare type DynamicElementProps = (AlertProps$1 & {
932
932
  }) | (FeedContentProps$1 & {
933
933
  elementType: 'feed_content';
934
934
  });
935
+ declare type SizeProps = SizesTypes$1 | number;
935
936
  declare type DynamicContentZoneProps = {
936
937
  elements: {
937
938
  data: DynamicElementProps[];
938
- spacer?: number;
939
+ spacer?: SizeProps;
939
940
  };
940
- horizontalPaddings?: number;
941
+ horizontalPaddings?: SizeProps;
941
942
  containerStyles?: CSSProperties;
942
943
  };
943
944
  declare const DynamicContentZone: ({ elements, horizontalPaddings, containerStyles, }: DynamicContentZoneProps) => JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.2.37",
3
+ "version": "0.2.39",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"