Sanity Library Reference Docs
    Preparing search index...

    Interface ArrayOfPrimitivesFieldProps

    interface ArrayOfPrimitivesFieldProps {
        actions?: DocumentFieldAction[];
        changed: boolean;
        children: ReactNode;
        collapsed?: boolean;
        collapsible?: boolean;
        description: string;
        index: number;
        inputId: string;
        inputProps: ArrayOfPrimitivesInputProps;
        level: number;
        name: string;
        onCollapse: () => void;
        onExpand: () => void;
        path: Path;
        presence: FormNodePresence[];
        renderDefault: (props: FieldProps) => Element;
        schemaType: ArraySchemaType;
        title: string;
        validation: FormNodeValidation[];
        value: unknown[];
        version?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    changed: boolean
    children: ReactNode
    collapsed?: boolean
    collapsible?: boolean
    description: string
    index: number
    inputId: string
    level: number
    name: string
    onCollapse: () => void
    onExpand: () => void
    path: Path
    presence: FormNodePresence[]
    renderDefault: (props: FieldProps) => Element
    schemaType: ArraySchemaType
    title: string
    validation: FormNodeValidation[]
    value: unknown[]
    version?: string