@zealicsolutions/web-ui 0.3.49 → 0.3.50

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.
@@ -211,6 +211,7 @@ export interface ConsentFieldMolecule extends BaseMolecule {
211
211
  consent: Consent;
212
212
  required: BooleanAttributes;
213
213
  }>;
214
+ conditionConfig: ConditionConfigAttributes;
214
215
  }>;
215
216
  }
216
217
  export interface LinkMolecule extends BaseMolecule {
@@ -1,3 +1,9 @@
1
1
  /// <reference types="react" />
2
2
  import { ConsentFieldMolecule } from 'containers';
3
- export declare const ConsentMolecule: (attributes: ConsentFieldMolecule['attributes']) => JSX.Element | null;
3
+ import { AnyObject } from 'typescript';
4
+ declare type ConsentMoleculeProps = {
5
+ attributes: ConsentFieldMolecule['attributes'];
6
+ formData?: AnyObject;
7
+ };
8
+ export declare const ConsentMolecule: ({ attributes, formData }: ConsentMoleculeProps) => JSX.Element | null;
9
+ export {};