Iterar la definición de estructuras_plan #39

fix #39
This commit is contained in:
2026-01-27 10:21:13 -06:00
parent 01742a1a74
commit 2b5e9e14f9
2 changed files with 92 additions and 44 deletions

View File

@@ -65,12 +65,15 @@ export interface Plan {
estadoActual: PlanStatus
}
export interface DatosGeneralesField {
export type DatosGeneralesField = {
id: string
label: string
helperText?: string
holder?: string
value: string
tipo: 'texto' | 'lista' | 'parrafo'
requerido: boolean
tipo: 'texto' | 'parrafo' | 'lista' | 'number' | 'select'
opciones?: Array<string>
}
export interface CambioPlan {