@zealicsolutions/web-ui 0.4.59 → 0.4.60

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,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;