Files
egutierrez 47fac22230 chore: auto-commit (799 archivos)
- .claude/CLAUDE.md
- .claude/commands/subagentes.md
- .claude/rules/INDEX.md
- .mcp.json
- bash/functions/cybersecurity/analyze_dns.md
- bash/functions/cybersecurity/audit_http_headers.md
- bash/functions/cybersecurity/audit_ssh_config.md
- bash/functions/cybersecurity/check_firewall.md
- bash/functions/cybersecurity/detect_suspicious_users.md
- bash/functions/cybersecurity/encrypt_file.md
- ...

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 00:28:20 +02:00

1.6 KiB

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, output, tested, tests, test_file_path, file_path, props, emits, has_state, framework, variant
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports output tested tests test_file_path file_path props emits has_state framework variant
radio_group component ts ui 1.0.0 impure RadioGroup(props: RadioGroupProps): JSX.Element Grupo de opciones exclusivas accesible. Mantine Radio.Group + Radio.
radio
radio-group
component
ui
interactive
form
mantine
pendiente-usar
false
@mantine/core
Componente RadioGroup que renderiza grupo de opciones exclusivas accesible false
frontend/functions/ui/radio_group.tsx
name type required description
value string false Valor seleccionado (controlado)
name type required description
defaultValue string false Valor inicial (no controlado)
name type required description
onValueChange (value: string) => void false Callback al cambiar seleccion
name type required description
disabled boolean false Deshabilita todo el grupo
name type required description
orientation 'horizontal' | 'vertical' false Orientacion del grupo
onValueChange
false react

Ejemplo

<RadioGroup defaultValue="option-a">
  <RadioGroupItem value="option-a" label="Opcion A" />
  <RadioGroupItem value="option-b" label="Opcion B" />
  <RadioGroupItem value="option-c" label="Opcion C" disabled />
</RadioGroup>

Notas

RadioGroup es el contenedor (Mantine Radio.Group). RadioGroupItem es cada opcion individual (Mantine Radio). Soporta orientacion horizontal y vertical.