UNPKG

rjsf-native-fs

Version:

React Native theme, fields and widgets for react-jsonschema-form

11 lines (10 loc) 533 B
/// <reference types="react" /> import { TextInputIOSProps } from 'react-native'; import { WidgetProps } from '@rjsf/core'; declare type TextWidgetProps = WidgetProps & { multiline?: boolean; secureEntry?: boolean; textContentType?: TextInputIOSProps['textContentType']; }; declare const TextWidget: ({ id, readonly, disabled, label, value, onChange, onBlur, onFocus, autofocus, options, multiline, secureEntry, schema, textContentType, rawErrors, }: TextWidgetProps) => JSX.Element; export default TextWidget;