interface FieldBase<PARAMS> {
    __i18n?: PARAMS["i18n"];
    currentLocale?: string | number;
    fieldModifiers?: FieldModifiers;
    handleLocalize?: MargaritaFormHandleLocalize<MFGF>;
    htmlTemplate?: string;
    i18n?: I18NField<PARAMS["i18n"]>;
    isLocaleField?: boolean;
    locales?: Locales;
    localize?: boolean;
    storage?: boolean;
    wasLocalized?: boolean;
}

Type Parameters

Hierarchy

  • FieldBase

    Properties

    __i18n?: PARAMS["i18n"]
    currentLocale?: string | number
    fieldModifiers?: FieldModifiers
    handleLocalize?: MargaritaFormHandleLocalize<MFGF>
    htmlTemplate?: string
    i18n?: I18NField<PARAMS["i18n"]>
    isLocaleField?: boolean
    locales?: Locales
    localize?: boolean
    storage?: boolean
    wasLocalized?: boolean