import * as Icons from 'lucide-react' import type { UploadedFile } from '@/components/planes/wizard/PasoDetallesPanel/FileDropZone' import type { NewSubjectWizardState } from '@/features/asignaturas/nueva/types' import ReferenciasParaIA from '@/components/planes/wizard/PasoDetallesPanel/ReferenciasParaIA' import { Card, CardDescription, CardHeader, CardTitle, } from '@/components/ui/card' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from '@/components/ui/select' import { Textarea } from '@/components/ui/textarea' import { FACULTADES, MATERIAS_MOCK, PLANES_MOCK, } from '@/features/asignaturas/nueva/catalogs' export function PasoDetallesPanel({ wizard, onChange, onGenerarIA: _onGenerarIA, }: { wizard: NewSubjectWizardState onChange: React.Dispatch> onGenerarIA: () => void }) { if (wizard.tipoOrigen === 'MANUAL') { return ( Configuración Manual La asignatura se creará vacía. Podrás editar el contenido detallado en la siguiente pantalla. ) } if (wizard.tipoOrigen === 'IA') { return (