c2-clinical 1.0.127 → 1.0.129

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.
@@ -14,7 +14,10 @@ export interface IUploadFileConfig {
14
14
  thumbExample: string;
15
15
  }
16
16
  export interface IGroupConfig {
17
- showTips: boolean;
17
+ tips: {
18
+ show: boolean;
19
+ description: string;
20
+ };
18
21
  }
19
22
  export interface ITip {
20
23
  type: TypeTipEnum;
@@ -328,7 +331,10 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
328
331
  labelButtonConfirm?: string | null | undefined;
329
332
  } | null | undefined;
330
333
  groupConfig?: {
331
- showTips: boolean;
334
+ tips?: {
335
+ description: string;
336
+ show: boolean;
337
+ } | null | undefined;
332
338
  } | null | undefined;
333
339
  tableConfig?: {
334
340
  headerData: Types.DocumentArray<{
@@ -479,7 +485,10 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
479
485
  labelButtonConfirm?: string | null | undefined;
480
486
  } | null | undefined;
481
487
  groupConfig?: {
482
- showTips: boolean;
488
+ tips?: {
489
+ description: string;
490
+ show: boolean;
491
+ } | null | undefined;
483
492
  } | null | undefined;
484
493
  tableConfig?: {
485
494
  headerData: Types.DocumentArray<{
@@ -630,7 +639,10 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
630
639
  labelButtonConfirm?: string | null | undefined;
631
640
  } | null | undefined;
632
641
  groupConfig?: {
633
- showTips: boolean;
642
+ tips?: {
643
+ description: string;
644
+ show: boolean;
645
+ } | null | undefined;
634
646
  } | null | undefined;
635
647
  tableConfig?: {
636
648
  headerData: Types.DocumentArray<{
@@ -86,7 +86,12 @@ exports.FormUnitSchema = new mongoose_1.Schema({
86
86
  //DADOS PARA GRUPO
87
87
  groupConfig: {
88
88
  type: {
89
- showTips: { type: Boolean, default: true }
89
+ tips: {
90
+ type: {
91
+ show: { type: Boolean, default: true },
92
+ description: { type: String, default: "Habilitar dicas" }
93
+ }
94
+ }
90
95
  },
91
96
  _id: false
92
97
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.127",
3
+ "version": "1.0.129",
4
4
  "description": "Biblioteca Typescript para API NodeJS",
5
5
  "repository": "https://github.com/cabralsilva/c2-clinical.git",
6
6
  "author": "Daniel Cabral <cabralconsultoriaemsoftware@gmail.com>",