@zealicsolutions/web-ui 0.4.59 → 0.4.62

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.
@@ -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;
@@ -6,5 +6,6 @@ export declare type StepperProps = {
6
6
  htmlElementId?: string;
7
7
  metadata: MetadataType;
8
8
  isMobile?: boolean;
9
+ isOnClickDisabled?: boolean;
9
10
  };
10
- export declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, }: StepperProps) => JSX.Element | null;
11
+ export declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, isOnClickDisabled, }: StepperProps) => JSX.Element | null;
@@ -2,7 +2,7 @@ import { StoryFn } from '@storybook/react';
2
2
  import { StepperProps } from './Stepper';
3
3
  declare const _default: {
4
4
  title: string;
5
- component: ({ steps, orientation, htmlElementId, metadata, isMobile, }: StepperProps) => JSX.Element | null;
5
+ component: ({ steps, orientation, htmlElementId, metadata, isMobile, isOnClickDisabled, }: StepperProps) => JSX.Element | null;
6
6
  };
7
7
  export default _default;
8
8
  export declare const Stepper: StoryFn<StepperProps>;