@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.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/organisms/DynamicContentZone/DynamicContentZone.d.ts +5 -2
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/organisms/DynamicContentZone/DynamicContentZone.d.ts +5 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
@@ -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?:
|
18
|
+
spacer?: SizeProps;
|
17
19
|
};
|
18
|
-
horizontalPaddings?:
|
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?:
|
939
|
+
spacer?: SizeProps;
|
939
940
|
};
|
940
|
-
horizontalPaddings?:
|
941
|
+
horizontalPaddings?: SizeProps;
|
941
942
|
containerStyles?: CSSProperties;
|
942
943
|
};
|
943
944
|
declare const DynamicContentZone: ({ elements, horizontalPaddings, containerStyles, }: DynamicContentZoneProps) => JSX.Element;
|