@helix-x/datagrid-ui - v0.1.2
    Preparing search index...

    Interface ColumnStateValue

    The user's column layout, as persisted.

    interface ColumnStateValue {
        hidden: string[];
        order: string[];
        pinned: Record<string, Pinned>;
        widths: Record<string, number>;
    }
    Index
    hidden: string[]

    Ids of hidden columns.

    order: string[]

    Column ids in display order.

    pinned: Record<string, Pinned>

    Pinned edge, by column id.

    widths: Record<string, number>

    Widths in pixels, by column id.