@frigade/react 1.32.43 → 1.32.45

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.
package/lib/index.d.ts CHANGED
@@ -380,6 +380,7 @@ interface FormValidationError {
380
380
  id: string;
381
381
  }
382
382
  interface CustomFormTypeProps {
383
+ flowId: string;
383
384
  stepData: StepData;
384
385
  canContinue: boolean;
385
386
  setCanContinue: (canContinue: boolean) => void;
@@ -541,7 +542,7 @@ declare function useOrganization(): {
541
542
  declare function Label({ title, required, appearance, }: {
542
543
  title: string;
543
544
  required: boolean;
544
- appearance: Appearance;
545
+ appearance?: Appearance;
545
546
  }): JSX.Element;
546
547
 
547
548
  declare function TextField({ formInput, customFormTypeProps, onSaveInputData, setFormValidationErrors, inputData, }: FormInputProps): JSX.Element;