Represents a private interface for a complete field.

interface ICompleteFieldPrivate<Data = IAnything> {
    dirty: boolean;
    disabled: boolean;
    fieldReadonly: boolean;
    incorrect: null | string;
    invalid: null | string;
    loading: boolean;
    name: string;
    onChange: (v: any, config?: { skipReadonly?: boolean }) => void;
    readonly: boolean;
    value: any;
    withContextMenu: undefined | true;
}

Type Parameters

  • Data = IAnything

    The type of the field's data.

Properties

dirty: boolean
disabled: boolean
fieldReadonly: boolean
incorrect: null | string
invalid: null | string
loading: boolean
name: string
onChange: (v: any, config?: { skipReadonly?: boolean }) => void
readonly: boolean
value: any
withContextMenu: undefined | true