dmencu 0.7.26 → 0.7.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/unlogged/bypass-formulario.d.ts +2 -2
- package/dist/client/unlogged/bypass-formulario.js +15 -6
- package/dist/client/unlogged/render-formulario.tsx +18 -7
- package/dist/client/unlogged/tipos.d.ts +10 -0
- package/dist/client/unlogged/tipos.js +1 -1
- package/dist/server/server/app-dmencu.js +5 -1
- package/dist/server/server/procedures-dmencu.js +9 -4
- package/dist/server/unlogged/tipos.d.ts +10 -0
- package/dist/server/unlogged/tipos.js +1 -1
- package/dist/unlogged/unlogged/bypass-formulario.d.ts +2 -2
- package/dist/unlogged/unlogged/bypass-formulario.js +15 -6
- package/dist/unlogged/unlogged/render-formulario.js +15 -6
- package/dist/unlogged/unlogged/render-formulario.tsx +18 -7
- package/dist/unlogged/unlogged/tipos.d.ts +10 -0
- package/dist/unlogged/unlogged/tipos.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FormStructureState, OpcionesRowValidator } from "row-validator";
|
|
2
|
-
import { Estructura, ForPk, ForPkRaiz, IdFin, IdFormulario, IdPregunta, IdTarea, IdVariable, IdUnidadAnalisis, InfoFormulario, PlainForPk, Respuestas, RespuestasRaiz, ResumenEstado, Valor, Visita, UnidadAnalisis, ConfiguracionSorteoFormulario, DatosByPassPersistibles, DefOperativo } from "./tipos";
|
|
2
|
+
import { Estructura, ForPk, ForPkRaiz, IdFin, IdFormulario, IdPregunta, IdTarea, IdVariable, IdUnidadAnalisis, InfoFormulario, PlainForPk, Respuestas, RespuestasRaiz, ResumenEstado, Valor, Visita, UnidadAnalisis, ConfiguracionSorteoFormulario, DatosByPassPersistibles, DefOperativo, ConfiguracionHabilitarBotonFormulario } from "./tipos";
|
|
3
3
|
export declare function setCalcularVariables(calcularVariables: (respuestasRaiz: RespuestasRaiz, forPk: ForPk) => void): void;
|
|
4
4
|
export declare function setCalcularVariablesEspecificasOperativo(calcularVariablesEspecificasOperativo: (respuestasRaiz: RespuestasRaiz, forPk: ForPk) => void): void;
|
|
5
5
|
type DatosByPass = DatosByPassPersistibles & {
|
|
@@ -185,7 +185,7 @@ export declare function calcularFeedbackEncuesta(feedbackRowValidator: {
|
|
|
185
185
|
export declare var buscarFormulariosHijos: (idFormulario: IdFormulario | undefined, formsFeedback?: IdFormulario[]) => IdFormulario[];
|
|
186
186
|
export declare var getFormulariosForIdVivienda: (idVivienda: number) => IdFormulario[];
|
|
187
187
|
export declare var calcularActualBF: (configSorteoFormulario: ConfiguracionSorteoFormulario | null, numElementoUA: number, numActual: number | null, formulario: IdFormulario, r: Respuestas) => boolean;
|
|
188
|
-
export declare var calcularDisabledBF: (configSorteoFormulario: ConfiguracionSorteoFormulario | null, numElementoUA: number, formulario: IdFormulario, r: Respuestas) => boolean;
|
|
188
|
+
export declare var calcularDisabledBF: (configSorteoFormulario: ConfiguracionSorteoFormulario | null, habilitacionBotonFormulario: ConfiguracionHabilitarBotonFormulario | null, numElementoUA: number, formulario: IdFormulario, r: Respuestas) => boolean;
|
|
189
189
|
export declare var calcularPermiteBorrarBF: (configSorteoFormulario: ConfiguracionSorteoFormulario | null, formulario: IdFormulario) => boolean;
|
|
190
190
|
type ResultadoResumen = {
|
|
191
191
|
resumenEstado: ResumenEstado;
|