@zealicsolutions/web-ui 0.3.36 → 0.3.37

Sign up to get free protection for your applications and to get access to all the features.
@@ -41,4 +41,4 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
41
41
  } & {
42
42
  id: string;
43
43
  }) => JSX.Element;
44
- export declare const ContainerComponent: (props: ContainerComponentProps) => JSX.Element | null;
44
+ export declare const ContainerComponent: ({ config, tabsProps, id, type, items, }: ContainerComponentProps) => JSX.Element | null;
@@ -4,6 +4,5 @@ import { TabGroupProps } from 'molecules';
4
4
  export declare type OrganismItemProps = {
5
5
  item: ContainerComponentProps | Molecule;
6
6
  tabsProps?: Pick<TabGroupProps, 'tabs' | 'activeTabKey' | 'onTabChange'>;
7
- dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
8
7
  };
9
- export declare const OrganismItem: ({ item, tabsProps, dynamicOrganisms }: OrganismItemProps) => JSX.Element | null;
8
+ export declare const OrganismItem: ({ item, tabsProps }: OrganismItemProps) => JSX.Element | null;
@@ -3,4 +3,3 @@ export * from './types/types';
3
3
  export * from './types/moleculeTypes';
4
4
  export * from './styles';
5
5
  export * from './OrganismItem';
6
- export * from './DynamicContentContainer';
@@ -51,7 +51,6 @@ export declare type ContainerComponentProps = {
51
51
  metadata?: AnyObject;
52
52
  attributes?: AnyObject;
53
53
  containerLibraryId?: string;
54
- dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
55
54
  };
56
55
  export declare type CriteriaType = 'operator' | 'condition';
57
56
  export declare type ConditionCriteria = {