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

    Variable WIDGET_TITLESConst

    WIDGET_TITLES: {
        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_PROFILE: string;
        SECURITY_RESOURCES: string;
        SECURITY_SUMMARY: string;
        SECURITY_VISUALIZATION: string;
        TECHNICAL_DETAILS: string;
        TECHNICAL_IMPLEMENTATION: string;
        VALUE_CREATION: string;
    } = ...

    Widget title constants for consistent naming.

    Standard titles for all dashboard widgets. Using these constants ensures consistent naming across the application and simplifies localization efforts if needed in the future.

    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_PROFILE: string
    • SECURITY_RESOURCES: string
    • SECURITY_SUMMARY: string
    • SECURITY_VISUALIZATION: string
    • TECHNICAL_DETAILS: string
    • TECHNICAL_IMPLEMENTATION: string
    • VALUE_CREATION: string
    // In widget header
    <WidgetHeader title={WIDGET_TITLES.COMPLIANCE_STATUS} />

    // In navigation
    const widgets = [
    { id: 'compliance', title: WIDGET_TITLES.COMPLIANCE_STATUS },
    { id: 'cost', title: WIDGET_TITLES.COST_ESTIMATION }
    ];