Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 7x 15x | import React from "react";
import type { ConfidentialityImpactWidgetProps } from "../../../types/widget-props";
import { CONFIDENTIALITY_IMPACT_TEST_IDS } from "../../../constants/testIds";
import ImpactWidget from "./ImpactWidget";
/**
* Displays confidentiality impact details for the selected security level
*
* ## Business Perspective
*
* This widget helps stakeholders understand how confidentiality security levels
* affect business operations through metrics like data classification, access controls,
* and encryption methods. The visualization of these metrics supports better decision-making
* about data protection requirements and privacy investments. 🔒
*/
const ConfidentialityImpactWidget: React.FC<
ConfidentialityImpactWidgetProps
> = ({
availabilityLevel: _availabilityLevel,
integrityLevel: _integrityLevel,
confidentialityLevel,
className = "",
testId = `widget-${CONFIDENTIALITY_IMPACT_TEST_IDS.CONFIDENTIALITY_IMPACT_PREFIX}`,
showExtendedDetails = false,
onError,
}) => {
return (
<ImpactWidget
component="confidentiality"
level={confidentialityLevel}
className={className}
testId={testId}
showExtendedDetails={showExtendedDetails}
onError={onError}
/>
);
};
export default ConfidentialityImpactWidget;
|