pivotick - v1.5.0
    Preparing search index...

    Interface PropertyEntry

    Represents a single property entry to display in the properties panel.

    • name is the label or key of the property.
    • value is the value associated to the key for the node or edge.

    A string (for either field) renders as plain text; to render HTML, pass an HTMLElement (or a function returning one). Since 1.4.0 string values are no longer parsed as markup — wrap HTML in an element instead.

    interface PropertyEntry {
        name:
            | string
            | HTMLElement
            | ((element: Node | Edge | null) => string | HTMLElement);
        value:
            | string
            | HTMLElement
            | ((element: Node | Edge | null) => string | HTMLElement);
    }
    Index

    Properties

    Properties

    name:
        | string
        | HTMLElement
        | ((element: Node | Edge | null) => string | HTMLElement)
    value:
        | string
        | HTMLElement
        | ((element: Node | Edge | null) => string | HTMLElement)