Member Junction
    Preparing search index...

    Library dependency information for a component

    interface ComponentLibraryDependency {
        globalVariable: string;
        name: string;
        version?: string;
    }
    Index

    Properties

    globalVariable: string

    The global variable name used by the component to access the library in code. When the component is bootstrapped, the library is loaded into a variable in a Factory/wrapper function around it by the host.

    name: string

    Unique name of the library from our registry. Typically reuses npm style package names such as "recharts", "lodash", "dayjs", "antd" or "@memberjunction/lib-name"

    version?: string

    SemVer string describing minimum version requirement Example: "2.5.0" for fixed version, "^1.0.0" for minimum version