c2-clinical 1.0.190 → 1.0.193
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/models/enum.d.ts
CHANGED
package/dist/models/enum.js
CHANGED
|
@@ -98,6 +98,7 @@ var TypeAnswerEnum;
|
|
|
98
98
|
})(TypeAnswerEnum || (exports.TypeAnswerEnum = TypeAnswerEnum = {}));
|
|
99
99
|
var VariantViewEnum;
|
|
100
100
|
(function (VariantViewEnum) {
|
|
101
|
+
VariantViewEnum["RESULT"] = "RESULT";
|
|
101
102
|
VariantViewEnum["CHECKBOX"] = "CHECKBOX";
|
|
102
103
|
VariantViewEnum["RADIO_BUTTON"] = "RADIO_BUTTON";
|
|
103
104
|
VariantViewEnum["SELECT"] = "SELECT";
|
|
@@ -19,6 +19,7 @@ export interface IGroupConfig {
|
|
|
19
19
|
description: string;
|
|
20
20
|
};
|
|
21
21
|
collapsible: boolean;
|
|
22
|
+
backgroundColor: string;
|
|
22
23
|
readOnly: boolean;
|
|
23
24
|
}
|
|
24
25
|
export interface ITip {
|
|
@@ -354,6 +355,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
354
355
|
description: string;
|
|
355
356
|
show: boolean;
|
|
356
357
|
} | null | undefined;
|
|
358
|
+
backgroundColor?: string | null | undefined;
|
|
357
359
|
} | null | undefined;
|
|
358
360
|
tableConfig?: {
|
|
359
361
|
headerData: Types.DocumentArray<{
|
|
@@ -500,6 +502,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
500
502
|
description: string;
|
|
501
503
|
show: boolean;
|
|
502
504
|
} | null | undefined;
|
|
505
|
+
backgroundColor?: string | null | undefined;
|
|
503
506
|
} | null | undefined;
|
|
504
507
|
tableConfig?: {
|
|
505
508
|
headerData: Types.DocumentArray<{
|
|
@@ -646,6 +649,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
646
649
|
description: string;
|
|
647
650
|
show: boolean;
|
|
648
651
|
} | null | undefined;
|
|
652
|
+
backgroundColor?: string | null | undefined;
|
|
649
653
|
} | null | undefined;
|
|
650
654
|
tableConfig?: {
|
|
651
655
|
headerData: Types.DocumentArray<{
|