CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Variable WIDGET_ICONSConst

    WIDGET_ICONS: {
        AVAILABILITY_IMPACT: string;
        BUSINESS_IMPACT: string;
        CIA_IMPACT_SUMMARY: string;
        COMPLIANCE_STATUS: string;
        CONFIDENTIALITY_IMPACT: string;
        COST_ESTIMATION: string;
        INTEGRITY_IMPACT: string;
        SECURITY_LEVEL: string;
        SECURITY_RESOURCES: string;
        SECURITY_SUMMARY: string;
        SECURITY_VISUALIZATION: string;
        TECHNICAL_DETAILS: string;
        TECHNICAL_IMPLEMENTATION: string;
        VALUE_CREATION: string;
    } = ...

    Widget icon constants for consistent icon use across the application.

    Each widget has a unique emoji icon that visually represents its purpose in the dashboard. These icons improve user recognition and navigation.

    Type Declaration

    • AVAILABILITY_IMPACT: string
    • BUSINESS_IMPACT: string
    • CIA_IMPACT_SUMMARY: string
    • COMPLIANCE_STATUS: string
    • CONFIDENTIALITY_IMPACT: string
    • COST_ESTIMATION: string
    • INTEGRITY_IMPACT: string
    • SECURITY_LEVEL: string
    • SECURITY_RESOURCES: string
    • SECURITY_SUMMARY: string
    • SECURITY_VISUALIZATION: string
    • TECHNICAL_DETAILS: string
    • TECHNICAL_IMPLEMENTATION: string
    • VALUE_CREATION: string
    // In widget header
    <h2>
    {WIDGET_ICONS.SECURITY_SUMMARY} Security Summary
    </h2>

    // In navigation menu
    const menuItems = [
    { icon: WIDGET_ICONS.COMPLIANCE_STATUS, label: 'Compliance' },
    { icon: WIDGET_ICONS.COST_ESTIMATION, label: 'Cost Analysis' }
    ];