Skip to content

CaveatList

CaveatList presents limitations with optional mitigation notes. It is intended for scoped claims, defense questions, and result slides where boundaries need to be explicit.

CaveatList example

Basic Usage

markdown
<CaveatList title="Boundary Conditions" :items="[
  { title: 'Labeled tasks required', description: 'The method assumes labeled target examples are available.', mitigation: 'Report few-shot sensitivity separately.' },
  { title: 'Severe shift remains hard', description: 'Large distribution shift still needs calibration.', mitigation: 'Use shifted-domain evaluation as a separate claim.' }
]" />

Props

PropTypeDefaultDescription
titlestring-Section title
labelstring'Caveats'Small label above the title
itemsCaveatItem[][]Caveat items
mitigationLabelstring'Mitigation'Label before mitigation text
variantstring'warning'primary, success, warning, danger, or info
compactbooleanfalseReduce spacing

CaveatItem supports title, description, and mitigation.