@samatawy/diagrams
    Preparing search index...

    Interface NumberInputAdapterConfig

    interface NumberInputAdapterConfig {
        min?: number;
        max?: number;
        precision?: number;
        defaultWhenUnset?: number;
    }
    Index

    Properties

    min?: number

    Optional minimum allowed numeric value.

    max?: number

    Optional maximum allowed numeric value.

    precision?: number

    Optional decimal precision used for normalization and formatting.

    defaultWhenUnset?: number

    Value to pre-fill the input with when it is empty and the user focuses it. No change event is emitted until the user actually edits the value.