Sanity Library Reference Docs
    Preparing search index...

    Interface StringFieldProps

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

    Hierarchy (View Summary)

    Index

    Properties

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