Represents a private interface for an items field.

IItemsFieldPrivate

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

Type Parameters

  • Data = IAnything

    The type of data managed by the items field.

Hierarchy (View Summary)

Properties

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