UNPKG

tinacms

Version:

[![GitHub license](https://img.shields.io/github/license/tinacms/tinacms?color=blue)](https://github.com/tinacms/tinacms/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/tinacms.svg?style=flat)](https://www.npmjs.com/package/tinacms) [![Bui

16 lines (15 loc) 609 B
import * as React from 'react'; import { InputProps } from '../components'; interface ExtraProps { placeholder: string; confirmPlaceholder: string; disabled?: boolean; } export declare const PasswordFieldComponent: (props: import("./field-props").FieldProps<InputProps & ExtraProps>) => React.JSX.Element; export declare const PasswordFieldPlugin: { name: string; Component: (props: import("./field-props").FieldProps<InputProps & ExtraProps>) => React.JSX.Element; validate(value: any, values: any, meta: any, field: any): string; parse: (value?: string) => string; }; export {};