Merge remote-tracking branch 'origin/feat/wizard-plan-vista'

This commit is contained in:
2026-01-09 11:19:21 -06:00
35 changed files with 2566 additions and 377 deletions

View File

@@ -1,7 +1,7 @@
import type {
NewSubjectWizardState,
TipoAsignatura,
} from '@/features/asignaturas/new/types'
} from '@/features/asignaturas/nueva/types'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
@@ -15,7 +15,7 @@ import {
import {
ESTRUCTURAS_SEP,
TIPOS_MATERIA,
} from '@/features/asignaturas/new/catalogs'
} from '@/features/asignaturas/nueva/catalogs'
export function PasoBasicosForm({
wizard,

View File

@@ -1,6 +1,6 @@
import * as Icons from 'lucide-react'
import type { NewSubjectWizardState } from '@/features/asignaturas/new/types'
import type { NewSubjectWizardState } from '@/features/asignaturas/nueva/types'
import { Button } from '@/components/ui/button'
import {
@@ -25,7 +25,7 @@ import {
FACULTADES,
MATERIAS_MOCK,
PLANES_MOCK,
} from '@/features/asignaturas/new/catalogs'
} from '@/features/asignaturas/nueva/catalogs'
export function PasoConfiguracionPanel({
wizard,

View File

@@ -4,7 +4,7 @@ import type {
ModoCreacion,
NewSubjectWizardState,
SubModoClonado,
} from '@/features/asignaturas/new/types'
} from '@/features/asignaturas/nueva/types'
import {
Card,

View File

@@ -1,6 +1,6 @@
import * as Icons from 'lucide-react'
import type { NewSubjectWizardState } from '@/features/asignaturas/new/types'
import type { NewSubjectWizardState } from '@/features/asignaturas/nueva/types'
import {
Card,
@@ -9,7 +9,7 @@ import {
CardHeader,
CardTitle,
} from '@/components/ui/card'
import { ESTRUCTURAS_SEP } from '@/features/asignaturas/new/catalogs'
import { ESTRUCTURAS_SEP } from '@/features/asignaturas/nueva/catalogs'
export function PasoResumenCard({ wizard }: { wizard: NewSubjectWizardState }) {
return (

View File

@@ -1,4 +1,4 @@
import type { NewSubjectWizardState } from '@/features/asignaturas/new/types'
import type { NewSubjectWizardState } from '@/features/asignaturas/nueva/types'
import { Button } from '@/components/ui/button'