Arc.React
    Preparing search index...

    Interface InjectedCommandFormFieldProps

    Props that will be injected by CommandFormFields into your wrapped component

    interface InjectedCommandFormFieldProps {
        currentValue?: unknown;
        fieldName?: string;
        onBlur?: () => void;
        onValueChange?: (value: unknown) => void;
        propertyDescriptor?: any;
    }
    Index

    Properties

    currentValue?: unknown
    fieldName?: string
    onBlur?: () => void
    onValueChange?: (value: unknown) => void
    propertyDescriptor?: any