@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.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/MoleculeItem.d.ts +1 -1
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +1 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/MoleculeItem.d.ts +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +1 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -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;
|
@@ -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;
|
package/dist/index.d.ts
CHANGED
@@ -328,6 +328,7 @@ interface BaseMolecule {
|
|
328
328
|
instance: 'molecule';
|
329
329
|
metadata: MetadataType;
|
330
330
|
moleculeLibraryId: string;
|
331
|
+
organismLibraryMoleculeId: string;
|
331
332
|
}
|
332
333
|
interface ImageMolecule extends BaseMolecule {
|
333
334
|
type: 'image';
|
@@ -1506,6 +1507,7 @@ declare type ConfigurationItem = {
|
|
1506
1507
|
organismId: string;
|
1507
1508
|
entityType: MoleculeTypes$1 | ContainerType$1;
|
1508
1509
|
entityMetadata: MetadataType$1;
|
1510
|
+
organismLibraryMoleculeId?: string;
|
1509
1511
|
};
|
1510
1512
|
declare type OrganismContextProviderProps = PropsWithChildren<{
|
1511
1513
|
organismId: string;
|