Represents a phony field interface with additional properties.

  • Phony fields are not serializable, so they will not affect form data
  • Phony fields are reflectable, getAvailableFields() and <VisibilityView /> will detect them.
interface IPhonyField {
    description?: string;
    placeholder?: string;
    title?: string;
}

Properties

description?: string
placeholder?: string
title?: string