Sanity Library Reference Docs
    Preparing search index...

    Interface BooleanFieldProps

    interface BooleanFieldProps {
        actions?: DocumentFieldAction[];
        changed: boolean;
        children: ReactNode;
        description: string;
        index: number;
        inputId: string;
        inputProps: BooleanInputProps;
        level: number;
        name: string;
        path: Path;
        presence: FormNodePresence[];
        renderDefault: (props: FieldProps) => Element;
        schemaType: BooleanSchemaType;
        title: string;
        validation: FormNodeValidation[];
        value: boolean;
        version?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    changed: boolean
    children: ReactNode
    description: string
    index: number
    inputId: string
    inputProps: BooleanInputProps
    level: number
    name: string
    path: Path
    presence: FormNodePresence[]
    renderDefault: (props: FieldProps) => Element
    schemaType: BooleanSchemaType
    title: string
    validation: FormNodeValidation[]
    value: boolean
    version?: string