Interface ArrayLayoutProps

Props of an array control.

interface ArrayLayoutProps {
    cells?: JsonFormsCellRendererRegistryEntry[];
    config?: any;
    data: number;
    description?: string;
    enabled: boolean;
    errors: string;
    i18nKeyPrefix?: string;
    id: string;
    label: string;
    minItems?: number;
    path: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    required?: boolean;
    rootSchema: JsonSchema;
    schema: JsonSchema;
    translations: ArrayTranslations;
    uischema: ControlElement;
    uischemas?: JsonFormsUISchemaRegistryEntry[];
    visible: boolean;
    addItem(path, value): (() => void);
    moveDown?(path, toMove): (() => void);
    moveUp?(path, toMove): (() => void);
    removeItems?(path, toDelete): (() => void);
}

Hierarchy (view full)

Properties

All available cell renderers.

config?: any

Any configuration options for the element.

data: number

The data to be rendered.

description?: string

Description of input cell

enabled: boolean

Whether the rendered element should be enabled.

errors: string

Any validation errors that are caused by the data to be rendered.

i18nKeyPrefix?: string
id: string

A unique ID that should be used for rendering the scoped UI schema element.

label: string

The label for the rendered element.

minItems?: number
path: string

Instance path the data is written to, in case of a control.

All available renderers.

required?: boolean

Whether the rendered data is required.

rootSchema: JsonSchema

The root schema as returned by the store.

schema: JsonSchema

The JSON schema that describes the data.

translations: ArrayTranslations
uischema: ControlElement

The UI schema to be rendered.

visible: boolean

Whether the rendered element should be visible.

Methods

Generated using TypeDoc