c2-clinical 1.0.68 → 1.0.69
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.
|
@@ -55,6 +55,7 @@ export interface IFormUnit extends IDefault {
|
|
|
55
55
|
show: boolean;
|
|
56
56
|
readOnly: boolean;
|
|
57
57
|
required: boolean;
|
|
58
|
+
codeEnableFreeText: boolean;
|
|
58
59
|
graphicData: any;
|
|
59
60
|
requestGraphicData: IRequestGraphicData[];
|
|
60
61
|
children?: IFormUnit[];
|
|
@@ -269,6 +270,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
269
270
|
typeButtonAction?: string | null | undefined;
|
|
270
271
|
measurementUnit?: string | null | undefined;
|
|
271
272
|
formulaToAnswer?: string | null | undefined;
|
|
273
|
+
codeEnableFreeText?: any;
|
|
272
274
|
graphicData?: any;
|
|
273
275
|
modalConfig?: any;
|
|
274
276
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
@@ -378,6 +380,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
378
380
|
typeButtonAction?: string | null | undefined;
|
|
379
381
|
measurementUnit?: string | null | undefined;
|
|
380
382
|
formulaToAnswer?: string | null | undefined;
|
|
383
|
+
codeEnableFreeText?: any;
|
|
381
384
|
graphicData?: any;
|
|
382
385
|
modalConfig?: any;
|
|
383
386
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
@@ -487,6 +490,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
487
490
|
typeButtonAction?: string | null | undefined;
|
|
488
491
|
measurementUnit?: string | null | undefined;
|
|
489
492
|
formulaToAnswer?: string | null | undefined;
|
|
493
|
+
codeEnableFreeText?: any;
|
|
490
494
|
graphicData?: any;
|
|
491
495
|
modalConfig?: any;
|
|
492
496
|
}> & {
|
|
@@ -60,6 +60,8 @@ exports.FormUnitSchema = new mongoose_1.Schema({
|
|
|
60
60
|
show: { type: Boolean, required: true, default: true }, //determina se a pergunta é exibida nos formulario (IDADE EM DIAS POR EXEMPLO, perguntas necessárias para alguns calculos mas q nao fazem sentido exibi-las)
|
|
61
61
|
readOnly: { type: Boolean, default: false },
|
|
62
62
|
required: { type: Boolean, default: false },
|
|
63
|
+
//DADOS PARA PERGUNTAS CHOICE_SINGLE E CHOICE_MULTIPLE
|
|
64
|
+
codeEnableFreeText: { type: Boolean },
|
|
63
65
|
//DADOS PARA GRAFICOS
|
|
64
66
|
graphicData: { type: mongoose_1.Schema.Types.Mixed },
|
|
65
67
|
requestGraphicData: { type: [exports.RequestGraphicDataSchema] },
|
package/package.json
CHANGED