@amad3v/solid-echarts - v1.0.2
    Preparing search index...

    Type Alias OptionSignature

    Structural signature of an ECharts option object. Only top-level keys are inspected, deep diffing is intentionally avoided for performance and to keep the diff semantics predictable.

    type OptionSignature = {
        arrays: Record<string, ArraySignature>;
        mediaLength: number;
        objects: string[];
        optionsLength: number;
        scalars: string[];
    }
    Index

    Properties

    arrays: Record<string, ArraySignature>

    Map of array-valued top-level keys to their item signature. Tracks both id-bearing items and anonymous (no-id) items separately because ECharts resolves them differently during merge.

    mediaLength: number

    Length of option.media array (responsive).

    objects: string[]

    Sorted list of object-valued top-level keys (e.g. 'grid', 'legend').

    optionsLength: number

    Length of option.options array (timeline).

    scalars: string[]

    Sorted list of scalar-valued top-level keys (e.g. 'backgroundColor').