@zealicsolutions/web-ui 0.3.49 → 0.3.50

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 {};