@zealicsolutions/web-ui 0.4.59 → 0.4.60

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import { Molecule } from 'containers';
2
2
  import { TabGroupProps } from 'molecules';
3
3
  import { ThemeColors } from 'theme';
4
- export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, }: Molecule & {
4
+ export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, organismLibraryMoleculeId, }: Molecule & {
5
5
  tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
6
6
  isMobile?: boolean | undefined;
7
7
  }) => JSX.Element | null;
@@ -133,6 +133,7 @@ export interface BaseMolecule {
133
133
  instance: 'molecule';
134
134
  metadata: MetadataType;
135
135
  moleculeLibraryId: string;
136
+ organismLibraryMoleculeId: string;
136
137
  }
137
138
  export interface ImageMolecule extends BaseMolecule {
138
139
  type: 'image';
@@ -8,6 +8,7 @@ export declare type ConfigurationItem = {
8
8
  organismId: string;
9
9
  entityType: MoleculeTypes | ContainerType;
10
10
  entityMetadata: MetadataType;
11
+ organismLibraryMoleculeId?: string;
11
12
  };
12
13
  export declare type OrganismContextProviderProps = PropsWithChildren<{
13
14
  organismId: string;