Dropdown selection menus
Interactive preview of the Select component with different variants.
Install the package via npm:
npm install apex-design-systemimport { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from 'apex-design-system';<Select>
<SelectTrigger>
<SelectValue placeholder="Select an option" />
</SelectTrigger>
<SelectContent>
<SelectItem value="option1">Option 1</SelectItem>
<SelectItem value="option2">Option 2</SelectItem>
<SelectItem value="option3">Option 3</SelectItem>
</SelectContent>
</Select>This component follows WAI-ARIA best practices and is WCAG 2.1 AA compliant. It includes proper keyboard navigation, focus management, and screen reader support.