@eqproject/eqp-dynamic-module 2.10.65 → 2.10.67

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.
Files changed (75) hide show
  1. package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +33 -16
  2. package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +656 -32
  3. package/esm2020/lib/components/private/action-button-creator/action-button-creator.component.mjs +2 -2
  4. package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +809 -15
  5. package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
  6. package/esm2020/lib/components/private/field-templates/action-button-field-template/action-button-field-template.component.mjs +98 -20
  7. package/esm2020/lib/components/private/field-templates/attachment-field-template/attachment-field-template.component.mjs +132 -69
  8. package/esm2020/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.mjs +159 -24
  9. package/esm2020/lib/components/private/field-templates/date-field-template/date-field-template.component.mjs +152 -7
  10. package/esm2020/lib/components/private/field-templates/image-field-selector-template/image-field-selector-template.component.mjs +180 -39
  11. package/esm2020/lib/components/private/field-templates/image-field-template/image-field-template.component.mjs +100 -78
  12. package/esm2020/lib/components/private/field-templates/image-with-markers-field-template/image-with-markers-field-template.component.mjs +103 -88
  13. package/esm2020/lib/components/private/field-templates/label-field-template/label-field-template.component.mjs +90 -17
  14. package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +217 -54
  15. package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +220 -37
  16. package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +263 -29
  17. package/esm2020/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.mjs +210 -18
  18. package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +33 -13
  19. package/esm2020/lib/components/private/form-records/hlist-form-record/hlist-form-record.component.mjs +1 -1
  20. package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +1 -1
  21. package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +1 -1
  22. package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +1 -1
  23. package/esm2020/lib/components/private/graphs/graphs.component.mjs +1 -1
  24. package/esm2020/lib/components/private/tmw-image-marker/tmw-image-marker.component.mjs +4 -3
  25. package/esm2020/lib/components/private/trigger-creator/trigger-creator.component.mjs +2 -2
  26. package/esm2020/lib/components/private/trigger-creator/trigger-templates/date-trigger-template/date-trigger-template.component.mjs +1 -1
  27. package/esm2020/lib/models/endPointConfiguration.model.mjs +7 -2
  28. package/esm2020/lib/models/fields/actionButton.model.mjs +3 -1
  29. package/esm2020/lib/models/fields/attachmentField.model.mjs +3 -1
  30. package/esm2020/lib/models/fields/booleanField.model.mjs +3 -1
  31. package/esm2020/lib/models/fields/dateField.model.mjs +6 -4
  32. package/esm2020/lib/models/fields/imageField.model.mjs +3 -1
  33. package/esm2020/lib/models/fields/imageSelectorField.model.mjs +3 -1
  34. package/esm2020/lib/models/fields/imageWithMarkersField.model.mjs +3 -1
  35. package/esm2020/lib/models/fields/labelField.model.mjs +3 -1
  36. package/esm2020/lib/models/fields/listValueField.model.mjs +3 -1
  37. package/esm2020/lib/models/fields/numericField.model.mjs +8 -1
  38. package/esm2020/lib/models/fields/textField.model.mjs +3 -1
  39. package/esm2020/lib/models/fields/textareaField.model.mjs +8 -1
  40. package/esm2020/lib/models/form.model.mjs +1 -1
  41. package/fesm2015/eqproject-eqp-dynamic-module.mjs +3540 -535
  42. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  43. package/fesm2020/eqproject-eqp-dynamic-module.mjs +3459 -547
  44. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  45. package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +5 -1
  46. package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +74 -6
  47. package/lib/components/private/add-form-field/add-form-field.component.d.ts +208 -1
  48. package/lib/components/private/field-templates/action-button-field-template/action-button-field-template.component.d.ts +16 -10
  49. package/lib/components/private/field-templates/attachment-field-template/attachment-field-template.component.d.ts +17 -33
  50. package/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.d.ts +24 -11
  51. package/lib/components/private/field-templates/date-field-template/date-field-template.component.d.ts +21 -4
  52. package/lib/components/private/field-templates/image-field-selector-template/image-field-selector-template.component.d.ts +20 -16
  53. package/lib/components/private/field-templates/image-field-template/image-field-template.component.d.ts +15 -36
  54. package/lib/components/private/field-templates/image-with-markers-field-template/image-with-markers-field-template.component.d.ts +16 -37
  55. package/lib/components/private/field-templates/label-field-template/label-field-template.component.d.ts +16 -12
  56. package/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.d.ts +21 -28
  57. package/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.d.ts +25 -18
  58. package/lib/components/private/field-templates/text-field-template/text-field-template.component.d.ts +38 -10
  59. package/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.d.ts +26 -12
  60. package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +12 -2
  61. package/lib/models/endPointConfiguration.model.d.ts +1 -0
  62. package/lib/models/fields/actionButton.model.d.ts +12 -0
  63. package/lib/models/fields/attachmentField.model.d.ts +31 -3
  64. package/lib/models/fields/booleanField.model.d.ts +15 -0
  65. package/lib/models/fields/dateField.model.d.ts +49 -3
  66. package/lib/models/fields/imageField.model.d.ts +9 -0
  67. package/lib/models/fields/imageSelectorField.model.d.ts +23 -0
  68. package/lib/models/fields/imageWithMarkersField.model.d.ts +9 -0
  69. package/lib/models/fields/labelField.model.d.ts +5 -0
  70. package/lib/models/fields/listValueField.model.d.ts +38 -0
  71. package/lib/models/fields/numericField.model.d.ts +34 -0
  72. package/lib/models/fields/textField.model.d.ts +33 -0
  73. package/lib/models/fields/textareaField.model.d.ts +39 -0
  74. package/lib/models/form.model.d.ts +6 -0
  75. package/package.json +3 -3
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, EventEmitter, OnInit, QueryList } from '@angular/core';
2
2
  import { UntypedFormGroup } from '@angular/forms';
3
+ import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
3
4
  import { DynamicModuleCompileConfig } from '../../../../models/dynamicModuleCompileConfig.model';
4
5
  import { BaseField, FieldTypeEnum } from '../../../../models/baseField.model';
5
6
  import { Form, FormScalarTypeEnum } from '../../../../models/form.model';
@@ -15,6 +16,7 @@ export declare class AddFormRecordComponent implements OnInit {
15
16
  private cdr;
16
17
  utilityService: UtilityHelperService;
17
18
  private datepipe;
19
+ private sanitizer;
18
20
  configurations: DynamicModuleCompileConfig;
19
21
  endPointConfiguration: EndPointConfiguration;
20
22
  userID: string;
@@ -30,10 +32,17 @@ export declare class AddFormRecordComponent implements OnInit {
30
32
  showTitle: boolean;
31
33
  actionButtons: Array<ActionButton>;
32
34
  QueryEditorComponent: DynamicLoaderDirectiveData;
35
+ visualEditorMode: boolean;
36
+ veSwapFieldCode: string | null;
33
37
  saveRecordEvent: EventEmitter<Record>;
34
38
  afterSaveRecordEvent: EventEmitter<Record>;
35
39
  out: EventEmitter<eventOut>;
36
40
  fireTrigger: EventEmitter<FireTrigger>;
41
+ veFieldClick: EventEmitter<{
42
+ field: BaseField;
43
+ event: MouseEvent;
44
+ }>;
45
+ onVeFieldClick(field: BaseField, event: MouseEvent): void;
37
46
  showSaveButton: boolean;
38
47
  showBackButton: boolean;
39
48
  loader: boolean;
@@ -47,7 +56,8 @@ export declare class AddFormRecordComponent implements OnInit {
47
56
  FieldTypeEnum: typeof FieldTypeEnum;
48
57
  fieldTemplate: QueryList<DynamicModuleFieldFixComponent>;
49
58
  visibleActionButtons: Array<ActionButton>;
50
- constructor(cdr: ChangeDetectorRef, utilityService: UtilityHelperService, datepipe: DatePipe);
59
+ get titleCssStyle(): SafeStyle | null;
60
+ constructor(cdr: ChangeDetectorRef, utilityService: UtilityHelperService, datepipe: DatePipe, sanitizer: DomSanitizer);
51
61
  ngOnInit(): void;
52
62
  onStepChange(event: any): void;
53
63
  /**
@@ -105,5 +115,5 @@ export declare class AddFormRecordComponent implements OnInit {
105
115
  onFireTrigger(ev: FireTrigger): void;
106
116
  generateAction(actionButton: ActionButton): void;
107
117
  static ɵfac: i0.ɵɵFactoryDeclaration<AddFormRecordComponent, never>;
108
- static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "orgaID": "orgaID"; "formID": "formID"; "form": "form"; "record": "record"; "formulaObject": "formulaObject"; "onlyView": "onlyView"; "isDuplicate": "isDuplicate"; "inConfig": "inConfig"; "showAllFields": "showAllFields"; "showTitle": "showTitle"; "actionButtons": "actionButtons"; "QueryEditorComponent": "QueryEditorComponent"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "out": "out"; "fireTrigger": "fireTrigger"; }, never, never, false, never>;
118
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddFormRecordComponent, "add-form-record", never, { "configurations": "configurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "orgaID": "orgaID"; "formID": "formID"; "form": "form"; "record": "record"; "formulaObject": "formulaObject"; "onlyView": "onlyView"; "isDuplicate": "isDuplicate"; "inConfig": "inConfig"; "showAllFields": "showAllFields"; "showTitle": "showTitle"; "actionButtons": "actionButtons"; "QueryEditorComponent": "QueryEditorComponent"; "visualEditorMode": "visualEditorMode"; "veSwapFieldCode": "veSwapFieldCode"; }, { "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; "out": "out"; "fireTrigger": "fireTrigger"; "veFieldClick": "veFieldClick"; }, never, never, false, never>;
109
119
  }
@@ -21,6 +21,7 @@ export declare class EndPointConfiguration {
21
21
  SaveAttachmentEndPoint: EndPointData;
22
22
  ExportByIDEndPoint: EndPointData;
23
23
  SpeechToFormEditEndPoint: EndPointData;
24
+ SpeechToGraphicsEndPoint?: EndPointData;
24
25
  };
25
26
  constructor(baseUrl?: string, userToken?: string);
26
27
  }
@@ -1,5 +1,16 @@
1
1
  import { BaseField } from "../baseField.model";
2
2
  import { KeyValue } from "../trigger.model";
3
+ export declare class ActionButtonFieldStyleCSS {
4
+ ContainerNormale?: string;
5
+ ContainerMouseover?: string;
6
+ ContainerSelezionato?: string;
7
+ IconaNormale?: string;
8
+ IconaMouseover?: string;
9
+ IconaSelezionato?: string;
10
+ DescrizioneNormale?: string;
11
+ DescrizioneMouseover?: string;
12
+ DescrizioneSelezionato?: string;
13
+ }
3
14
  export declare class ActionButtonField extends BaseField {
4
15
  ButtonUniqueId: string;
5
16
  ButtonCode: string;
@@ -10,6 +21,7 @@ export declare class ActionButtonField extends BaseField {
10
21
  formulasTemp?: any;
11
22
  userPatient: string;
12
23
  userMedicalExamination: number;
24
+ ActionButtonFieldStyleCSS?: ActionButtonFieldStyleCSS;
13
25
  }
14
26
  export declare class KeyTypeValue {
15
27
  key: string;
@@ -1,11 +1,39 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class AttachmentFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerNotValid?: string;
6
+ ContainerReadonly?: string;
7
+ LabelNormale?: string;
8
+ LabelMouseover?: string;
9
+ LabelNotValid?: string;
10
+ LabelReadonly?: string;
11
+ BottoneAggiungiNormale?: string;
12
+ BottoneAggiungiMouseover?: string;
13
+ BottoneAggiungiNotValid?: string;
14
+ BottoneAggiungiReadonly?: string;
15
+ BottoneDownloadNormale?: string;
16
+ BottoneDownloadMouseover?: string;
17
+ BottoneDownloadNotValid?: string;
18
+ BottoneDownloadReadonly?: string;
19
+ BottoneEliminaNormale?: string;
20
+ BottoneEliminaMouseover?: string;
21
+ BottoneEliminaNotValid?: string;
22
+ BottoneEliminaReadonly?: string;
23
+ BottoneAnteprimaNormale?: string;
24
+ BottoneAnteprimaMouseover?: string;
25
+ BottoneAnteprimaNotValid?: string;
26
+ BottoneAnteprimaReadonly?: string;
27
+ CampoNomeFileNormale?: string;
28
+ CampoNomeFileMouseover?: string;
29
+ CampoNomeFileNotValid?: string;
30
+ CampoNomeFileReadonly?: string;
31
+ }
2
32
  export declare class AttachmentField extends BaseField {
3
- /**Elenco delle estensioni consentite. Se vuoto usa il default (pdf) */
4
33
  AllowedMimeTypes: Array<string>;
5
- /**Se true permette l'inserimento di più allegati. In questo caso i metadati vengono rappresentati come una detail */
6
34
  isMultiAttach: boolean;
7
- /**Elenco campi che possono rappresentare i metadati dell'allegato, ad esempio nome, ecc... */
8
35
  MetadataFields: Array<BaseField>;
36
+ AttachmentFieldStyleCSS?: AttachmentFieldStyleCSS;
9
37
  }
10
38
  export declare const AvailableFileExtensions: Array<{
11
39
  key: string;
@@ -1,8 +1,23 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class BooleanFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerFocused?: string;
6
+ ContainerReadonly?: string;
7
+ SceltaNormale?: string;
8
+ SceltaMouseover?: string;
9
+ SceltaFocused?: string;
10
+ SceltaReadonly?: string;
11
+ DescrizioneNormale?: string;
12
+ DescrizioneMouseover?: string;
13
+ DescrizioneFocused?: string;
14
+ DescrizioneReadonly?: string;
15
+ }
2
16
  export declare class BooleanField extends BaseField {
3
17
  /**Se true il boolean accetta anche il valore N/A (non assegnato) */
4
18
  IsTristate: boolean;
5
19
  PresetationType: BoolPresentantioEnum;
20
+ BooleanFieldStyleCSS?: BooleanFieldStyleCSS;
6
21
  }
7
22
  export declare enum BoolPresentantioEnum {
8
23
  "Checkbox" = 1,
@@ -1,13 +1,59 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class DateFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerFocused?: string;
6
+ ContainerNotValid?: string;
7
+ ContainerReadonly?: string;
8
+ DescrizioneNormale?: string;
9
+ DescrizioneMouseover?: string;
10
+ DescrizioneFocused?: string;
11
+ DescrizioneNotValid?: string;
12
+ DescrizioneReadonly?: string;
13
+ ContenitoreInternoNormale?: string;
14
+ ContenitoreInternoMouseover?: string;
15
+ ContenitoreInternoFocused?: string;
16
+ ContenitoreInternoNotValid?: string;
17
+ ContenitoreInternoReadonly?: string;
18
+ CampoDataNormale?: string;
19
+ CampoDataMouseover?: string;
20
+ CampoDataFocused?: string;
21
+ CampoDataNotValid?: string;
22
+ CampoDataReadonly?: string;
23
+ IconaCalendarioNormale?: string;
24
+ IconaCalendarioMouseover?: string;
25
+ IconaCalendarioFocused?: string;
26
+ IconaCalendarioNotValid?: string;
27
+ IconaCalendarioReadonly?: string;
28
+ IconaOrologioNormale?: string;
29
+ IconaOrologioMouseover?: string;
30
+ IconaOrologioFocused?: string;
31
+ IconaOrologioNotValid?: string;
32
+ IconaOrologioReadonly?: string;
33
+ IconaCancellazioneNormale?: string;
34
+ IconaCancellazioneMouseover?: string;
35
+ IconaCancellazioneFocused?: string;
36
+ IconaCancellazioneNotValid?: string;
37
+ IconaCancellazioneReadonly?: string;
38
+ TooltipNormale?: string;
39
+ TooltipMouseover?: string;
40
+ TooltipFocused?: string;
41
+ TooltipNotValid?: string;
42
+ TooltipReadonly?: string;
43
+ }
2
44
  /**Rappresenta la configurazione di un campo Data o Data e ora, o solo ora */
3
45
  export declare class DateField extends BaseField {
4
46
  IsOnlyDate: DateTimeTypeEnum;
5
47
  MinDate: Date;
6
48
  MaxDate: Date;
7
49
  DateFormat: string;
50
+ IconsPosition?: 'left' | 'right';
51
+ CloseIconPosition?: 'left' | 'right';
52
+ UseTooltip?: boolean;
53
+ DateFieldStyleCSS?: DateFieldStyleCSS;
8
54
  }
9
55
  export declare enum DateTimeTypeEnum {
10
- "Solo data" = 0,
11
- "Solo orario" = 1,
12
- "Data e ora" = 2
56
+ "Solo data" = 1,
57
+ "Solo orario" = 2,
58
+ "Data e ora" = 3
13
59
  }
@@ -1,10 +1,19 @@
1
1
  import { BaseField } from "../baseField.model";
2
2
  import { DynAttachment } from "../dynAttachment";
3
+ export declare class ImageFieldStyleCSS {
4
+ ContainerNormale?: string;
5
+ ContainerMouseover?: string;
6
+ DescrizioneNormale?: string;
7
+ DescrizioneMouseover?: string;
8
+ BottoneDisegnaNormale?: string;
9
+ BottoneDisegnaMouseover?: string;
10
+ }
3
11
  export declare class ImageField extends BaseField {
4
12
  DynAttachment: DynAttachment;
5
13
  DynAttachmentID: number;
6
14
  ResizedImagesHeightPx: number;
7
15
  EnableDrawing: boolean;
16
+ ImageFieldStyleCSS?: ImageFieldStyleCSS;
8
17
  }
9
18
  export declare enum ImageFolderEnum {
10
19
  "Regular" = 1,
@@ -9,4 +9,27 @@ export declare class ImageSelectorField extends BaseField {
9
9
  ResizedImagesHeightPx: number;
10
10
  IsMultiChoiche: boolean;
11
11
  AttachmentList: Array<DynAttachment>;
12
+ ImageSelectorFieldStyleCSS?: ImageSelectorFieldStyleCSS;
13
+ }
14
+ export declare class ImageSelectorFieldStyleCSS {
15
+ ContainerNormale?: string;
16
+ ContainerMouseover?: string;
17
+ ContainerSelezionato?: string;
18
+ ContainerNotValid?: string;
19
+ ContainerReadonly?: string;
20
+ CasellaSelezioneNormale?: string;
21
+ CasellaSelezioneMouseover?: string;
22
+ CasellaSelezioneSelezionato?: string;
23
+ CasellaSelezioneNotValid?: string;
24
+ CasellaSelezioneReadonly?: string;
25
+ DescrizioneNormale?: string;
26
+ DescrizioneMouseover?: string;
27
+ DescrizioneSelezionato?: string;
28
+ DescrizioneNotValid?: string;
29
+ DescrizioneReadonly?: string;
30
+ SelezioniNormale?: string;
31
+ SelezioniMouseover?: string;
32
+ SelezioniSelezionato?: string;
33
+ SelezioniNotValid?: string;
34
+ SelezioniReadonly?: string;
12
35
  }
@@ -1,7 +1,16 @@
1
1
  import { BaseField } from "../baseField.model";
2
2
  import { DynAttachment } from "../dynAttachment";
3
+ export declare class ImageWithMarkersFieldStyleCSS {
4
+ ContainerNormale?: string;
5
+ ContainerMouseover?: string;
6
+ DescrizioneNormale?: string;
7
+ DescrizioneMouseover?: string;
8
+ BottoneMarcaNormale?: string;
9
+ BottoneMarcaMouseover?: string;
10
+ }
3
11
  export declare class ImageWithMarkersField extends BaseField {
4
12
  DynAttachment: DynAttachment;
5
13
  DynAttachmentID: number;
6
14
  ResizedImagesHeightPx: number;
15
+ ImageWithMarkersFieldStyleCSS?: ImageWithMarkersFieldStyleCSS;
7
16
  }
@@ -1,4 +1,9 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class LabelFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ }
2
6
  export declare class LabelField extends BaseField {
3
7
  Etichetta: string;
8
+ LabelFieldStyleCSS?: LabelFieldStyleCSS;
4
9
  }
@@ -1,4 +1,41 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class ListValueFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerSelezionato?: string;
6
+ ContainerNotValid?: string;
7
+ ContainerReadonly?: string;
8
+ LabelNormale?: string;
9
+ LabelMouseover?: string;
10
+ LabelSelezionato?: string;
11
+ LabelNotValid?: string;
12
+ LabelReadonly?: string;
13
+ CasellaTriggerNormale?: string;
14
+ CasellaTriggerMouseover?: string;
15
+ CasellaTriggerSelezionato?: string;
16
+ CasellaTriggerNotValid?: string;
17
+ CasellaTriggerReadonly?: string;
18
+ OpzioneNormale?: string;
19
+ OpzioneMouseover?: string;
20
+ OpzioneSelezionato?: string;
21
+ OpzioneNotValid?: string;
22
+ OpzioneReadonly?: string;
23
+ SelezioneNormale?: string;
24
+ SelezioneMouseover?: string;
25
+ SelezioneSelezionato?: string;
26
+ SelezioneNotValid?: string;
27
+ SelezioneReadonly?: string;
28
+ BottoneNormale?: string;
29
+ BottoneMouseover?: string;
30
+ BottoneSelezionato?: string;
31
+ BottoneNotValid?: string;
32
+ BottoneReadonly?: string;
33
+ BottoneCancellaNormale?: string;
34
+ BottoneCancellaMouseover?: string;
35
+ BottoneCancellaSelezionato?: string;
36
+ BottoneCancellaNotValid?: string;
37
+ BottoneCancellaReadonly?: string;
38
+ }
2
39
  /**Lista di valori */
3
40
  export declare class ListValueField extends BaseField {
4
41
  /**
@@ -16,6 +53,7 @@ export declare class ListValueField extends BaseField {
16
53
  IsMultiChoiche: boolean;
17
54
  /**Modalità di presentazione */
18
55
  PresentationMode: ListPresentationEnum;
56
+ ListValueFieldStyleCSS?: ListValueFieldStyleCSS;
19
57
  }
20
58
  export declare enum ListPresentationEnum {
21
59
  "Combo box" = 1,
@@ -1,4 +1,31 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class NumericFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerFocused?: string;
6
+ ContainerNotValid?: string;
7
+ ContainerReadonly?: string;
8
+ InputNormale?: string;
9
+ InputMouseover?: string;
10
+ InputFocused?: string;
11
+ InputNotValid?: string;
12
+ InputReadonly?: string;
13
+ DescrizioneNormale?: string;
14
+ DescrizioneMouseover?: string;
15
+ DescrizioneFocused?: string;
16
+ DescrizioneNotValid?: string;
17
+ DescrizioneReadonly?: string;
18
+ IconaNormale?: string;
19
+ IconaMouseover?: string;
20
+ IconaFocused?: string;
21
+ IconaNotValid?: string;
22
+ IconaReadonly?: string;
23
+ ErroreNormale?: string;
24
+ ErroreMouseover?: string;
25
+ ErroreFocused?: string;
26
+ ErroreNotValid?: string;
27
+ ErroreReadonly?: string;
28
+ }
2
29
  /**Classe contiene la configurazione dei campi numerici */
3
30
  export declare class NumericField extends BaseField {
4
31
  IsInteger: boolean;
@@ -9,4 +36,11 @@ export declare class NumericField extends BaseField {
9
36
  ThousandsSeparator: string;
10
37
  CurrencySymbol: string;
11
38
  MeasureUnit: string;
39
+ IconName?: string;
40
+ IconPosition?: NumericFieldIconPositionEnum;
41
+ NumericFieldStyleCSS?: NumericFieldStyleCSS;
42
+ }
43
+ export declare enum NumericFieldIconPositionEnum {
44
+ 'Sinistra' = 1,
45
+ 'Destra' = 2
12
46
  }
@@ -1,4 +1,36 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class TextFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerFocused?: string;
6
+ ContainerNotValid?: string;
7
+ ContainerReadonly?: string;
8
+ InputNormale?: string;
9
+ InputMouseover?: string;
10
+ InputFocused?: string;
11
+ InputNotValid?: string;
12
+ InputReadonly?: string;
13
+ DescrizioneNormale?: string;
14
+ DescrizioneMouseover?: string;
15
+ DescrizioneFocused?: string;
16
+ DescrizioneNotValid?: string;
17
+ DescrizioneReadonly?: string;
18
+ IconaNormale?: string;
19
+ IconaMouseover?: string;
20
+ IconaFocused?: string;
21
+ IconaNotValid?: string;
22
+ IconaReadonly?: string;
23
+ MicrofonoNormale?: string;
24
+ MicrofonoMouseover?: string;
25
+ MicrofonoFocused?: string;
26
+ MicrofonoNotValid?: string;
27
+ MicrofonoReadonly?: string;
28
+ ErroreNormale?: string;
29
+ ErroreMouseover?: string;
30
+ ErroreFocused?: string;
31
+ ErroreNotValid?: string;
32
+ ErroreReadonly?: string;
33
+ }
2
34
  /**Campo di testo */
3
35
  export declare class TextField extends BaseField {
4
36
  TextMask: TextMaskEnum;
@@ -7,6 +39,7 @@ export declare class TextField extends BaseField {
7
39
  Microphone: boolean;
8
40
  IconName: string;
9
41
  IconPosition: TextFieldIconPositionEnum;
42
+ TextFieldStyleCSS?: TextFieldStyleCSS;
10
43
  }
11
44
  export declare enum TextMaskEnum {
12
45
  'Password' = 1,
@@ -1,8 +1,47 @@
1
1
  import { BaseField } from "../baseField.model";
2
+ export declare class TextareaFieldStyleCSS {
3
+ ContainerNormale?: string;
4
+ ContainerMouseover?: string;
5
+ ContainerFocused?: string;
6
+ ContainerNotValid?: string;
7
+ ContainerReadonly?: string;
8
+ InputNormale?: string;
9
+ InputMouseover?: string;
10
+ InputFocused?: string;
11
+ InputNotValid?: string;
12
+ InputReadonly?: string;
13
+ DescrizioneNormale?: string;
14
+ DescrizioneMouseover?: string;
15
+ DescrizioneFocused?: string;
16
+ DescrizioneNotValid?: string;
17
+ DescrizioneReadonly?: string;
18
+ IconaNormale?: string;
19
+ IconaMouseover?: string;
20
+ IconaFocused?: string;
21
+ IconaNotValid?: string;
22
+ IconaReadonly?: string;
23
+ MicrofonoNormale?: string;
24
+ MicrofonoMouseover?: string;
25
+ MicrofonoFocused?: string;
26
+ MicrofonoNotValid?: string;
27
+ MicrofonoReadonly?: string;
28
+ ErroreNormale?: string;
29
+ ErroreMouseover?: string;
30
+ ErroreFocused?: string;
31
+ ErroreNotValid?: string;
32
+ ErroreReadonly?: string;
33
+ }
34
+ export declare enum TextareaFieldIconPositionEnum {
35
+ 'Sinistra' = 1,
36
+ 'Destra' = 2
37
+ }
2
38
  export declare class TextareaField extends BaseField {
3
39
  /**Numero di righe in altezza con cui viene rappresentata la text area */
4
40
  Rows: number;
5
41
  MaxLenght: number;
6
42
  MinLenght: number;
7
43
  Microphone: boolean;
44
+ IconName?: string;
45
+ IconPosition?: TextareaFieldIconPositionEnum;
46
+ TextareaFieldStyleCSS?: TextareaFieldStyleCSS;
8
47
  }
@@ -38,6 +38,12 @@ export declare class Form extends BaseObj implements IRootObject {
38
38
  ModifyDate: Date;
39
39
  ModifyUser: number;
40
40
  RootEntityID: string;
41
+ ThemeCSS?: string;
42
+ AIPrompts?: string;
43
+ TitleCSS?: string;
44
+ DynaFormsThemeID?: string;
45
+ BgImageBase64?: string;
46
+ BgImageUrl?: string;
41
47
  OldName?: string;
42
48
  ObjectFields: any[];
43
49
  ObjectFldExtraConfigValues: any[];
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.10.65",
7
+ "version": "2.10.67",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",
@@ -25,13 +25,13 @@
25
25
  "@eqproject/eqp-select": "2.0.2",
26
26
  "@eqproject/eqp-table": "2.5.9",
27
27
  "acorn": "^8.15.0",
28
- "luxon": "^3.7.2",
29
28
  "browser-image-compression": "^1.0.15",
30
29
  "fabric": "^5.5.2",
30
+ "luxon": "^3.7.2",
31
31
  "ngx-image-cropper": "^6.3.2",
32
32
  "ngx-mat-select-search": "^7.0.1",
33
33
  "simple-statistics": "^7.8.3",
34
- "tmw-picker": "1.1.0",
34
+ "tmw-picker": "^1.2.3",
35
35
  "tslib": "^2.4.0"
36
36
  },
37
37
  "sideEffects": true,