c2-clinical 1.0.128 → 1.0.130
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.
|
@@ -15,7 +15,8 @@ export interface IUploadFileConfig {
|
|
|
15
15
|
}
|
|
16
16
|
export interface IGroupConfig {
|
|
17
17
|
tips: {
|
|
18
|
-
|
|
18
|
+
show: boolean;
|
|
19
|
+
description: string;
|
|
19
20
|
};
|
|
20
21
|
}
|
|
21
22
|
export interface ITip {
|
|
@@ -98,7 +99,7 @@ export interface IFormUnit extends IDefault {
|
|
|
98
99
|
_id: Types.ObjectId;
|
|
99
100
|
}[];
|
|
100
101
|
};
|
|
101
|
-
|
|
102
|
+
screenPosition: number;
|
|
102
103
|
lineId?: string;
|
|
103
104
|
}
|
|
104
105
|
export interface IQuestionOption {
|
|
@@ -319,7 +320,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
319
320
|
formulaToReferenceValue?: string | null | undefined;
|
|
320
321
|
formulaToClassificationLabel?: string | null | undefined;
|
|
321
322
|
formulaToClassificationColor?: string | null | undefined;
|
|
322
|
-
|
|
323
|
+
screenPosition?: string | null | undefined;
|
|
323
324
|
codeEnableFreeText?: string | null | undefined;
|
|
324
325
|
labelFreeText?: string | null | undefined;
|
|
325
326
|
graphicData?: any;
|
|
@@ -473,7 +474,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
473
474
|
formulaToReferenceValue?: string | null | undefined;
|
|
474
475
|
formulaToClassificationLabel?: string | null | undefined;
|
|
475
476
|
formulaToClassificationColor?: string | null | undefined;
|
|
476
|
-
|
|
477
|
+
screenPosition?: string | null | undefined;
|
|
477
478
|
codeEnableFreeText?: string | null | undefined;
|
|
478
479
|
labelFreeText?: string | null | undefined;
|
|
479
480
|
graphicData?: any;
|
|
@@ -627,7 +628,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
627
628
|
formulaToReferenceValue?: string | null | undefined;
|
|
628
629
|
formulaToClassificationLabel?: string | null | undefined;
|
|
629
630
|
formulaToClassificationColor?: string | null | undefined;
|
|
630
|
-
|
|
631
|
+
screenPosition?: string | null | undefined;
|
|
631
632
|
codeEnableFreeText?: string | null | undefined;
|
|
632
633
|
labelFreeText?: string | null | undefined;
|
|
633
634
|
graphicData?: any;
|
|
@@ -65,7 +65,7 @@ exports.FormUnitSchema = new mongoose_1.Schema({
|
|
|
65
65
|
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)
|
|
66
66
|
readOnly: { type: Boolean, default: false },
|
|
67
67
|
required: { type: Boolean, default: false },
|
|
68
|
-
|
|
68
|
+
screenPosition: { type: String },
|
|
69
69
|
ellegibleForComparison: { type: Boolean, default: false },
|
|
70
70
|
//DADOS PARA PERGUNTAS CHOICE_SINGLE E CHOICE_MULTIPLE
|
|
71
71
|
codeEnableFreeText: { type: String },
|
package/package.json
CHANGED