Documentation
    Preparing search index...

    Type Alias InteractiveComponentProps<ValueType>

    InteractiveComponentProps: Partial<
        {
            error: boolean
            | string;
            isDisabled: boolean;
            isLoading: boolean;
            isReadOnly: boolean;
            onChange: (value: ValueType | null) => void;
            onClick: () => void;
            onDisabledClick: () => void;
            onFocusChange: (isFocused: boolean, value: ValueType | null) => void;
            onHoverChange: (isHovered: boolean) => void;
            onValidChange: (isValid: boolean) => void;
            value: ValueType | null;
        },
    >

    Type Parameters

    • ValueType = string