ObjectUIObjectUI

Input

Basic text input field for user data entry

Examples

Basic Input

With Label

Input Types

Schema

interface InputSchema {
  type: 'input';
  name?: string;
  label?: string;
  inputType?: 'text' | 'password' | 'email' | 'number' | 'tel' | 'url';
  placeholder?: string;
  defaultValue?: string | number;
  required?: boolean;
  disabled?: boolean;
  readonly?: boolean;
}

On this page