c2-clinical 1.0.202 → 1.0.203
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.
|
@@ -299,6 +299,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
299
299
|
}>;
|
|
300
300
|
show: boolean;
|
|
301
301
|
readOnly: boolean;
|
|
302
|
+
screenPlacement: number;
|
|
302
303
|
ellegibleForComparison: boolean;
|
|
303
304
|
tips: Types.DocumentArray<{
|
|
304
305
|
type: string;
|
|
@@ -340,7 +341,6 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
340
341
|
formulaToReferenceValue?: string | null | undefined;
|
|
341
342
|
formulaToClassificationLabel?: string | null | undefined;
|
|
342
343
|
formulaToClassificationColor?: string | null | undefined;
|
|
343
|
-
screenPlacement?: number | null | undefined;
|
|
344
344
|
codeEnableFreeText?: string | null | undefined;
|
|
345
345
|
labelFreeText?: string | null | undefined;
|
|
346
346
|
graphicData?: any;
|
|
@@ -447,6 +447,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
447
447
|
}>;
|
|
448
448
|
show: boolean;
|
|
449
449
|
readOnly: boolean;
|
|
450
|
+
screenPlacement: number;
|
|
450
451
|
ellegibleForComparison: boolean;
|
|
451
452
|
tips: Types.DocumentArray<{
|
|
452
453
|
type: string;
|
|
@@ -488,7 +489,6 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
488
489
|
formulaToReferenceValue?: string | null | undefined;
|
|
489
490
|
formulaToClassificationLabel?: string | null | undefined;
|
|
490
491
|
formulaToClassificationColor?: string | null | undefined;
|
|
491
|
-
screenPlacement?: number | null | undefined;
|
|
492
492
|
codeEnableFreeText?: string | null | undefined;
|
|
493
493
|
labelFreeText?: string | null | undefined;
|
|
494
494
|
graphicData?: any;
|
|
@@ -595,6 +595,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
595
595
|
}>;
|
|
596
596
|
show: boolean;
|
|
597
597
|
readOnly: boolean;
|
|
598
|
+
screenPlacement: number;
|
|
598
599
|
ellegibleForComparison: boolean;
|
|
599
600
|
tips: Types.DocumentArray<{
|
|
600
601
|
type: string;
|
|
@@ -636,7 +637,6 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
636
637
|
formulaToReferenceValue?: string | null | undefined;
|
|
637
638
|
formulaToClassificationLabel?: string | null | undefined;
|
|
638
639
|
formulaToClassificationColor?: string | null | undefined;
|
|
639
|
-
screenPlacement?: number | null | undefined;
|
|
640
640
|
codeEnableFreeText?: string | null | undefined;
|
|
641
641
|
labelFreeText?: string | null | undefined;
|
|
642
642
|
graphicData?: any;
|
|
@@ -71,7 +71,7 @@ exports.FormUnitSchema = new mongoose_1.Schema({
|
|
|
71
71
|
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)
|
|
72
72
|
readOnly: { type: Boolean, default: false },
|
|
73
73
|
required: { type: Boolean, default: false },
|
|
74
|
-
screenPlacement: { type: Number },
|
|
74
|
+
screenPlacement: { type: Number, default: 1 },
|
|
75
75
|
ellegibleForComparison: { type: Boolean, default: false },
|
|
76
76
|
//DADOS PARA PERGUNTAS CHOICE_SINGLE E CHOICE_MULTIPLE
|
|
77
77
|
codeEnableFreeText: { type: String },
|