@eqproject/eqp-dynamic-module 2.3.42 → 2.3.43
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/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +15 -3
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +218 -88
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +4 -3
- package/esm2020/lib/components/private/field-templates/image-field-selector-template/image-field-selector-template.component.mjs +71 -0
- package/esm2020/lib/components/private/field-templates/image-field-template/image-field-template.component.mjs +32 -18
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +6 -15
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +21 -1
- package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +21 -18
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +3 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +5 -11
- package/esm2020/lib/eqp-dynamic-module.module.mjs +6 -3
- package/esm2020/lib/models/baseField.model.mjs +2 -1
- package/esm2020/lib/models/fields/imageField.model.mjs +17 -4
- package/esm2020/lib/models/fields/imageSelectorField.model.mjs +21 -0
- package/esm2020/lib/models/fields/listValueField.model.mjs +1 -4
- package/esm2020/lib/models/form.model.mjs +1 -1
- package/esm2020/lib/services/utilityHelper.services.mjs +19 -10
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +437 -171
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +437 -171
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +4 -1
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +15 -7
- package/lib/components/private/field-templates/image-field-selector-template/image-field-selector-template.component.d.ts +31 -0
- package/lib/eqp-dynamic-module.module.d.ts +12 -11
- package/lib/models/baseField.model.d.ts +2 -1
- package/lib/models/fields/imageField.model.d.ts +4 -13
- package/lib/models/fields/imageSelectorField.model.d.ts +46 -0
- package/lib/models/fields/listValueField.model.d.ts +1 -19
- package/lib/models/form.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
19
19
|
debugMode: boolean;
|
|
20
20
|
configurations: DynamicModuleConfiguratorConfig;
|
|
21
21
|
formID: string;
|
|
22
|
+
ProjectName: string;
|
|
22
23
|
viewMode: string;
|
|
23
24
|
loader: boolean;
|
|
24
25
|
/**
|
|
@@ -46,6 +47,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
46
47
|
dialogImportRef: MatDialogRef<TemplateRef<any>>;
|
|
47
48
|
dialogImport: TemplateRef<any>;
|
|
48
49
|
form: Form;
|
|
50
|
+
backupForm: Form;
|
|
51
|
+
saved: boolean;
|
|
49
52
|
orgaID: string;
|
|
50
53
|
UserID: number;
|
|
51
54
|
innerFormManagment: boolean;
|
|
@@ -267,5 +270,5 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
267
270
|
*/
|
|
268
271
|
private reloadActionsOnRecordTable;
|
|
269
272
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleConfiguratorComponent, never>;
|
|
270
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleConfiguratorComponent, "eqp-dynamic-module-configurator", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "viewMode": "viewMode"; }, { "saveFormEvent": "saveFormEvent"; "afterSaveFormEvent": "afterSaveFormEvent"; }, never, never, false, never>;
|
|
273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleConfiguratorComponent, "eqp-dynamic-module-configurator", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "ProjectName": "ProjectName"; "viewMode": "viewMode"; }, { "saveFormEvent": "saveFormEvent"; "afterSaveFormEvent": "afterSaveFormEvent"; }, never, never, false, never>;
|
|
271
274
|
}
|
|
@@ -11,6 +11,7 @@ import { DateTimeTypeEnum } from "../../../models/fields/dateField.model";
|
|
|
11
11
|
import { ListPresentationEnum } from "../../../models/fields/listValueField.model";
|
|
12
12
|
import { TextMaskEnum } from "../../../models/fields/textField.model";
|
|
13
13
|
import { FormFieldGroup } from "../../../models/form.model";
|
|
14
|
+
import { DynAttachment } from "../../../models/fields/imageSelectorField.model";
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class AddFormFieldComponent implements OnInit {
|
|
16
17
|
private formBuilder;
|
|
@@ -23,6 +24,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
23
24
|
/** Elenco dei Field creati nella form, usati per popolare l'autocomplete della proprietà Formula. */
|
|
24
25
|
availableFields: Array<BaseField>;
|
|
25
26
|
fieldTypesToExclude: Array<FieldTypeEnum>;
|
|
27
|
+
resizedImagesHeightPx: number;
|
|
26
28
|
fieldFormGroup: UntypedFormGroup;
|
|
27
29
|
keyValueObject: {
|
|
28
30
|
key: string;
|
|
@@ -54,6 +56,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
54
56
|
numericFieldFormTemplate: TemplateRef<any>;
|
|
55
57
|
attachmentFieldFormTemplate: TemplateRef<any>;
|
|
56
58
|
imageFieldFormTemplate: TemplateRef<any>;
|
|
59
|
+
imageFieldSelectorFormTemplate: TemplateRef<any>;
|
|
57
60
|
listValueFieldFormTemplate: TemplateRef<any>;
|
|
58
61
|
lookupFieldFormTemplate: TemplateRef<any>;
|
|
59
62
|
metadataColumns: Array<ConfigColumn>;
|
|
@@ -70,6 +73,13 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
70
73
|
AttachmentType: typeof AttachmentType;
|
|
71
74
|
pickerModeEnum: typeof PickerModeEnum;
|
|
72
75
|
subscription: any;
|
|
76
|
+
configColumnListImages: Array<ConfigColumn>;
|
|
77
|
+
configColumnImage: Array<ConfigColumn>;
|
|
78
|
+
GenericListImagesImageTemplate: TemplateRef<any>;
|
|
79
|
+
GenericListImagesKeyTemplate: TemplateRef<any>;
|
|
80
|
+
GenericListImagesValueTemplate: TemplateRef<any>;
|
|
81
|
+
imageSelectorAttachments: EqpAttachmentsComponent;
|
|
82
|
+
imageAttachment: EqpAttachmentsComponent;
|
|
73
83
|
constructor(formBuilder: UntypedFormBuilder, enumHelper: EnumHelper, dialog: MatDialog, cdr: ChangeDetectorRef);
|
|
74
84
|
ngOnInit(): void;
|
|
75
85
|
/**
|
|
@@ -134,13 +144,6 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
134
144
|
* in precedenza, altrimenti svuota la lista delle immagini caricate.
|
|
135
145
|
*/
|
|
136
146
|
onPresentationModeChange(): void;
|
|
137
|
-
/**
|
|
138
|
-
* Metodo invocato quando viene caricato il componente eqp-attachments per caricare le immagini da usare
|
|
139
|
-
* nella visualizzazione ad immagini dei campi di tipo "Elenco generico". Aggiunge due colonne a quelle
|
|
140
|
-
* configurate nel componente in cui l'utente può indicare chiave e valore della scelta.
|
|
141
|
-
* @param component Istanza del componente eqp-attachments in cui effettuare la modifica.
|
|
142
|
-
*/
|
|
143
|
-
configureButtonImagesColumns(component: EqpAttachmentsComponent): void;
|
|
144
147
|
/**
|
|
145
148
|
* Metodo invocato al salvataggio degli allegati quando viene configurato un campo di tipo "Elenco generico"
|
|
146
149
|
* con il tipo di visualizzazione ad immagini. Intercetta l'elenco aggiornato delle immagini caricate e lo
|
|
@@ -148,6 +151,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
148
151
|
* @param attachments Array aggiornato degli allegati caricati.
|
|
149
152
|
*/
|
|
150
153
|
catchButtonImagesChange(attachments: Array<IAttachmentDTO>): void;
|
|
154
|
+
catchButtonImageChange(attachments: Array<IAttachmentDTO>): void;
|
|
151
155
|
/**
|
|
152
156
|
* Metodo chiamato al keyup degli input testuali che prevedono l'aggiunta del valore inserito in un array.
|
|
153
157
|
* Se l'utente preme il tasto invio, in base al tipo di campo che sta inserendo/modificando, questo metodo
|
|
@@ -214,6 +218,10 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
214
218
|
* dei campi di tipo Allegato o Immagine.
|
|
215
219
|
*/
|
|
216
220
|
countValuePairs(valuePairs: any): number;
|
|
221
|
+
configureColumns(): void;
|
|
222
|
+
setResizedImagesHeightPx(): void;
|
|
223
|
+
deleteListImage(el: DynAttachment, i: number, col: number): void;
|
|
224
|
+
deleteImage(el: DynAttachment): void;
|
|
217
225
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddFormFieldComponent, never>;
|
|
218
226
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddFormFieldComponent, "eqp-dynamic-module-add-form-field", never, { "field": "field"; "indexField": "indexField"; "formFieldsGroups": "formFieldsGroups"; "availableFields": "availableFields"; "fieldTypesToExclude": "fieldTypesToExclude"; }, { "saveFieldEvent": "saveFieldEvent"; }, never, never, false, never>;
|
|
219
227
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { EventEmitter, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { Record } from '../../../../models/record.model';
|
|
4
|
+
import { DynAttachment, ImageSelectorField } from '../../../../models/fields/imageSelectorField.model';
|
|
5
|
+
import { UtilityHelperService } from '../../../../services/utilityHelper.services';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ImageFieldSelectorTemplateComponent {
|
|
8
|
+
private dialog;
|
|
9
|
+
utilityService: UtilityHelperService;
|
|
10
|
+
record: Record;
|
|
11
|
+
field: ImageSelectorField;
|
|
12
|
+
recordChange: EventEmitter<Record>;
|
|
13
|
+
FieldstyleObj: any;
|
|
14
|
+
LabelstyleObj: any;
|
|
15
|
+
constructor(dialog: MatDialog, utilityService: UtilityHelperService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
initStyles(): void;
|
|
18
|
+
ToLowerCase(el: string): string;
|
|
19
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
20
|
+
/**
|
|
21
|
+
* Metodo per aggiornare il valore del campo quando questo è rappresentato da una formula.
|
|
22
|
+
*/
|
|
23
|
+
updateField(): void;
|
|
24
|
+
initializeAttachments(): void;
|
|
25
|
+
/**
|
|
26
|
+
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
27
|
+
*/
|
|
28
|
+
onRecordValueChange(event: DynAttachment): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageFieldSelectorTemplateComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageFieldSelectorTemplateComponent, "image-field-selector-template", never, { "record": "record"; "field": "field"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -34,16 +34,17 @@ import * as i31 from "./components/private/form-statistics/filter-templates/imag
|
|
|
34
34
|
import * as i32 from "./components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component";
|
|
35
35
|
import * as i33 from "./components/private/graphs/graphs.component";
|
|
36
36
|
import * as i34 from "./components/private/graphs/graph/graph.component";
|
|
37
|
-
import * as i35 from "./
|
|
38
|
-
import * as i36 from "
|
|
39
|
-
import * as i37 from "@angular/
|
|
40
|
-
import * as i38 from "@
|
|
41
|
-
import * as i39 from "@eqproject/eqp-
|
|
42
|
-
import * as i40 from "@eqproject/eqp-
|
|
43
|
-
import * as i41 from "@eqproject/eqp-
|
|
44
|
-
import * as i42 from "@eqproject/eqp-
|
|
45
|
-
import * as i43 from "@eqproject/eqp-
|
|
46
|
-
import * as i44 from "@
|
|
37
|
+
import * as i35 from "./components/private/field-templates/image-field-selector-template/image-field-selector-template.component";
|
|
38
|
+
import * as i36 from "./modules/material.module";
|
|
39
|
+
import * as i37 from "@angular/forms";
|
|
40
|
+
import * as i38 from "@angular/common";
|
|
41
|
+
import * as i39 from "@eqproject/eqp-table";
|
|
42
|
+
import * as i40 from "@eqproject/eqp-attachments";
|
|
43
|
+
import * as i41 from "@eqproject/eqp-select";
|
|
44
|
+
import * as i42 from "@eqproject/eqp-datetimepicker";
|
|
45
|
+
import * as i43 from "@eqproject/eqp-filters";
|
|
46
|
+
import * as i44 from "@eqproject/eqp-numeric";
|
|
47
|
+
import * as i45 from "@canvasjs/angular-stockcharts";
|
|
47
48
|
export declare const customNumericMaskConfig: {
|
|
48
49
|
align: string;
|
|
49
50
|
allowNegative: boolean;
|
|
@@ -60,6 +61,6 @@ export declare const customNumericMaskConfig: {
|
|
|
60
61
|
};
|
|
61
62
|
export declare class EqpDynamicModuleModule {
|
|
62
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleModule, never>;
|
|
63
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EqpDynamicModuleModule, [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i3.AddFormFieldComponent, typeof i4.TextFieldTemplateComponent, typeof i5.BooleanFieldTemplateComponent, typeof i6.DateFieldTemplateComponent, typeof i7.TextareaFieldTemplateComponent, typeof i8.NumericFieldTemplateComponent, typeof i9.ListValueFieldTemplateComponent, typeof i10.AttachmentFieldTemplateComponent, typeof i11.ImageFieldTemplateComponent, typeof i12.ListFormRecordComponent, typeof i13.ListViewFormRecordComponent, typeof i14.AddFormRecordComponent, typeof i15.ViewFormRecordComponent, typeof i16.DynamicModuleFieldComponent, typeof i17.DynamicModuleFieldFixComponent, typeof i18.SpinnerComponent, typeof i19.AddFormulaComponent, typeof i19.DialogDataExampleDialog, typeof i20.RepairFormFieldsComponent, typeof i21.SingleRecordComponent, typeof i22.FilterFormStatisticComponent, typeof i23.DynamicModuleFilterFixComponent, typeof i24.TextFilterTemplateComponent, typeof i25.NumericFilterTemplateComponent, typeof i26.BooleanFilterTemplateComponent, typeof i27.DateFilterTemplateComponent, typeof i28.ListValueFilterTemplateComponent, typeof i29.TextareaFilterTemplateComponent, typeof i30.AttachmentFilterTemplateComponent, typeof i31.ImageFilterTemplateComponent, typeof i32.ListFormRecordFilterTemplateComponent, typeof i33.GraphsComponent, typeof i34.GraphComponent], [typeof
|
|
64
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EqpDynamicModuleModule, [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i3.AddFormFieldComponent, typeof i4.TextFieldTemplateComponent, typeof i5.BooleanFieldTemplateComponent, typeof i6.DateFieldTemplateComponent, typeof i7.TextareaFieldTemplateComponent, typeof i8.NumericFieldTemplateComponent, typeof i9.ListValueFieldTemplateComponent, typeof i10.AttachmentFieldTemplateComponent, typeof i11.ImageFieldTemplateComponent, typeof i12.ListFormRecordComponent, typeof i13.ListViewFormRecordComponent, typeof i14.AddFormRecordComponent, typeof i15.ViewFormRecordComponent, typeof i16.DynamicModuleFieldComponent, typeof i17.DynamicModuleFieldFixComponent, typeof i18.SpinnerComponent, typeof i19.AddFormulaComponent, typeof i19.DialogDataExampleDialog, typeof i20.RepairFormFieldsComponent, typeof i21.SingleRecordComponent, typeof i22.FilterFormStatisticComponent, typeof i23.DynamicModuleFilterFixComponent, typeof i24.TextFilterTemplateComponent, typeof i25.NumericFilterTemplateComponent, typeof i26.BooleanFilterTemplateComponent, typeof i27.DateFilterTemplateComponent, typeof i28.ListValueFilterTemplateComponent, typeof i29.TextareaFilterTemplateComponent, typeof i30.AttachmentFilterTemplateComponent, typeof i31.ImageFilterTemplateComponent, typeof i32.ListFormRecordFilterTemplateComponent, typeof i33.GraphsComponent, typeof i34.GraphComponent, typeof i35.ImageFieldSelectorTemplateComponent], [typeof i36.MaterialModule, typeof i37.FormsModule, typeof i38.CommonModule, typeof i37.ReactiveFormsModule, typeof i39.EqpTableModule, typeof i40.EqpAttachmentsModule, typeof i41.EqpSelectModule, typeof i42.EqpDatetimepickerModule, typeof i43.EqpFiltersModule, typeof i44.EqpNumericModule, typeof i45.CanvasJSAngularStockChartsModule], [typeof i1.EqpDynamicModuleComponent, typeof i2.EqpDynamicModuleConfiguratorComponent, typeof i45.CanvasJSChart, typeof i45.CanvasJSStockChart]>;
|
|
64
65
|
static ɵinj: i0.ɵɵInjectorDeclaration<EqpDynamicModuleModule>;
|
|
65
66
|
}
|
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
import { IAttachmentDTO } from "@eqproject/eqp-attachments";
|
|
2
1
|
import { BaseField } from "../baseField.model";
|
|
3
|
-
import {
|
|
2
|
+
import { DynAttachment } from "./imageSelectorField.model";
|
|
4
3
|
export declare class ImageField extends BaseField {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
ImageIsContextualAttachment: boolean;
|
|
9
|
-
/**Contiene l'allegato caricato nel campo (se ImageIsContextualAttachment == true) */
|
|
10
|
-
ContextualAttachment: IAttachmentDTO;
|
|
11
|
-
/**Proprietà per recuperare l'allegato caricato come array per eqp-attachments (se ImageIsContextualAttachment == true) */
|
|
12
|
-
get _contextualAttachments(): IAttachmentDTO[];
|
|
13
|
-
/**Nome dell'immagine caricata (se ImageIsContextualAttachment == true) */
|
|
14
|
-
ImgName: string;
|
|
15
|
-
AttachDefinition: AttachmentField;
|
|
4
|
+
DynAttachment: DynAttachment;
|
|
5
|
+
DynAttachmentID: number;
|
|
6
|
+
ResizedImagesHeightPx: number;
|
|
16
7
|
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { AttachmentType, IAttachmentDTO } from "@eqproject/eqp-attachments";
|
|
2
|
+
import { BaseField } from "../baseField.model";
|
|
3
|
+
export declare class ImageSelectorField extends BaseField {
|
|
4
|
+
DynAttachments: Array<DynAttachment>;
|
|
5
|
+
DynAttachmentsIDs: Array<number>;
|
|
6
|
+
ResizedImagesHeightPx: number;
|
|
7
|
+
IsMultiChoiche: boolean;
|
|
8
|
+
AttachmentList: Array<DynAttachment>;
|
|
9
|
+
}
|
|
10
|
+
export declare class DynAttachment implements IAttachmentDTO {
|
|
11
|
+
ID: number | string;
|
|
12
|
+
FileName?: string;
|
|
13
|
+
FileContentType?: string;
|
|
14
|
+
FileExtension?: string;
|
|
15
|
+
FilePath?: string;
|
|
16
|
+
AttachmentType?: AttachmentType;
|
|
17
|
+
FileDataBase64?: string;
|
|
18
|
+
IsImage?: boolean;
|
|
19
|
+
FileThumbnailBase64?: string;
|
|
20
|
+
TrustedUrl?: any;
|
|
21
|
+
Path: string;
|
|
22
|
+
ThumbmailPath: string;
|
|
23
|
+
Title: string;
|
|
24
|
+
CreationDate: Date;
|
|
25
|
+
ProjectName: string;
|
|
26
|
+
OrgaID: string;
|
|
27
|
+
FormID: string;
|
|
28
|
+
FieldID: string;
|
|
29
|
+
AnswerID: string;
|
|
30
|
+
ImageWidthPx: number;
|
|
31
|
+
ImageHeightPx: number;
|
|
32
|
+
ResizedImageHeightPx: number;
|
|
33
|
+
ButtonValue: string;
|
|
34
|
+
ButtonKey: string;
|
|
35
|
+
objectToSelect?: DynAttachmentSelectObject;
|
|
36
|
+
originalIndex?: number;
|
|
37
|
+
}
|
|
38
|
+
export declare class DynAttachmentSelectObject {
|
|
39
|
+
ID: number | string;
|
|
40
|
+
ButtonValue: string;
|
|
41
|
+
ButtonKey: string;
|
|
42
|
+
}
|
|
43
|
+
export declare class attachmentTypeEnum {
|
|
44
|
+
SINGLE: number;
|
|
45
|
+
LIST: number;
|
|
46
|
+
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AttachmentType, IAttachmentDTO } from "@eqproject/eqp-attachments";
|
|
2
1
|
import { BaseField } from "../baseField.model";
|
|
3
2
|
/**Lista di valori */
|
|
4
3
|
export declare class ListValueField extends BaseField {
|
|
@@ -17,26 +16,9 @@ export declare class ListValueField extends BaseField {
|
|
|
17
16
|
IsMultiChoiche: boolean;
|
|
18
17
|
/**Modalità di presentazione */
|
|
19
18
|
PresentationMode: ListPresentationEnum;
|
|
20
|
-
/**Elenco delle immagini per la visualizzazione a immagini (ListPresentationEnum.Immagini) */
|
|
21
|
-
ButtonImageList: Array<ButtonImage>;
|
|
22
|
-
}
|
|
23
|
-
export declare class ButtonImage implements IAttachmentDTO {
|
|
24
|
-
ButtonKey: string;
|
|
25
|
-
ButtonValue: string;
|
|
26
|
-
ID: string | number;
|
|
27
|
-
FileName?: string;
|
|
28
|
-
FileContentType?: string;
|
|
29
|
-
FileExtension?: string;
|
|
30
|
-
FilePath?: string;
|
|
31
|
-
AttachmentType?: AttachmentType;
|
|
32
|
-
FileDataBase64?: string;
|
|
33
|
-
IsImage?: boolean;
|
|
34
|
-
FileThumbnailBase64?: string;
|
|
35
|
-
TrustedUrl?: any;
|
|
36
19
|
}
|
|
37
20
|
export declare enum ListPresentationEnum {
|
|
38
21
|
"Combo box" = 1,
|
|
39
22
|
"Radio button" = 2,
|
|
40
|
-
"Pulsante con testo" = 3
|
|
41
|
-
"Immagini" = 4
|
|
23
|
+
"Pulsante con testo" = 3
|
|
42
24
|
}
|