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

    Interface BusinessImpactAnalysisWidgetProps

    Props for BusinessImpactAnalysisWidget component

    Analyzes and displays business impact of security levels across financial, operational, reputational, and regulatory dimensions.

    <BusinessImpactAnalysisWidget
    availabilityLevel="High"
    integrityLevel="Very High"
    confidentialityLevel="Moderate"
    organizationSize="large"
    />
    interface BusinessImpactAnalysisWidgetProps {
        availabilityLevel: SecurityLevel;
        children?: ReactNode;
        className?: string;
        confidentialityLevel: SecurityLevel;
        industrySector?: string;
        integrityLevel: SecurityLevel;
        onError?: (error: Error) => void;
        organizationSize?: "medium" | "small" | "large" | "enterprise";
        testId?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    availabilityLevel: SecurityLevel

    Security level for availability component

    children?: ReactNode

    Optional children elements

    className?: string

    Optional CSS class name for custom styling

    Allows consumers to apply custom styles via CSS classes. Use Tailwind CSS classes or custom CSS classes.

    "mt-4 border-2 rounded-lg"
    
    confidentialityLevel: SecurityLevel

    Security level for confidentiality component

    industrySector?: string

    Industry sector for impact analysis

    integrityLevel: SecurityLevel

    Security level for integrity component

    onError?: (error: Error) => void

    Optional callback when widget encounters an error

    Type Declaration

      • (error: Error): void
      • Parameters

        • error: Error

          Error that occurred

        Returns void

    organizationSize?: "medium" | "small" | "large" | "enterprise"

    Organization size for impact calculations

    'medium'
    
    testId?: string

    Optional test ID for automated testing

    Used by testing frameworks (Cypress, Vitest) to locate and interact with the component. Should follow the pattern defined in testIds constants.

    "security-widget-availability"