Member Junction
    Preparing search index...

    Configuration for external libraries used in React components

    interface ExternalLibraryConfig {
        aiInstructions?: string;
        category: "core" | "runtime" | "ui" | "charting" | "utility";
        cdnCssUrl?: string;
        cdnUrl: string;
        description: string;
        displayName: string;
        exampleUsage?: string;
        fallbackCdnUrls?: string[];
        globalVariable: string;
        id: string;
        isCore: boolean;
        isEnabled: boolean;
        isRuntimeOnly?: boolean;
        name: string;
        version: string;
    }
    Index

    Properties

    aiInstructions?: string

    Instructions for AI when using this library

    category: "core" | "runtime" | "ui" | "charting" | "utility"

    Library category

    cdnCssUrl?: string

    Optional CDN URL for library CSS

    cdnUrl: string

    CDN URL for the library JavaScript

    description: string

    Library description

    displayName: string

    Display name for UI (e.g., 'Lodash')

    exampleUsage?: string

    Example usage code

    fallbackCdnUrls?: string[]

    Fallback CDN URLs to try if the primary cdnUrl fails (tried in order)

    globalVariable: string

    Global variable name when loaded (e.g., '_' for lodash)

    id: string

    Unique identifier for the library

    isCore: boolean

    Whether this is a core library (always loaded)

    isEnabled: boolean

    Whether the library is enabled

    isRuntimeOnly?: boolean

    Whether this is runtime-only (not exposed to generated components)

    name: string

    Library name (e.g., 'lodash')

    version: string

    Library version