UNPKG

@adyen/kyc-components

Version:

`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar

11 lines (10 loc) 692 B
import './FieldWrapper.scss'; import type { FieldContainerProps } from './types'; import type { JSX } from 'preact'; /** * USAGE: Specifically defined as a util to provide a wrapper for fields created within the Address component * * NOT TO BE USED: if you just want to add a Country or State dropdown outside of an Address component * - then you should implement <CountryField> or <StateField> directly */ export declare function FieldContainer({ legalEntityId, classNameModifiers, schema, data, valid, errors, fieldProblems, fieldName, trimOnBlur, hideField, maxlength, readOnly, optional, handleChangeFor, handleAddressSearch, handleFindAddress, }: FieldContainerProps): JSX.Element;