@eqproject/eqp-dynamic-module 2.4.10 → 2.4.11
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/private/field-templates/image-field-selector-template/image-field-selector-template.component.mjs +28 -4
- package/esm2020/lib/components/private/field-templates/image-field-template/image-field-template.component.mjs +2 -2
- package/esm2020/lib/components/private/field-templates/image-with-markers-field-template/image-with-markers-field-template.component.mjs +2 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +29 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +29 -5
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/field-templates/image-field-selector-template/image-field-selector-template.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3,7 +3,6 @@ import { MatDialog } from '@angular/material/dialog';
|
|
|
3
3
|
import { Record } from '../../../../models/record.model';
|
|
4
4
|
import { ImageSelectorField } from '../../../../models/fields/imageSelectorField.model';
|
|
5
5
|
import { UtilityHelperService } from '../../../../services/utilityHelper.services';
|
|
6
|
-
import { DynAttachment } from '../../../../models/dynAttachment';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class ImageFieldSelectorTemplateComponent {
|
|
9
8
|
private dialog;
|
|
@@ -13,6 +12,7 @@ export declare class ImageFieldSelectorTemplateComponent {
|
|
|
13
12
|
recordChange: EventEmitter<Record>;
|
|
14
13
|
FieldstyleObj: any;
|
|
15
14
|
LabelstyleObj: any;
|
|
15
|
+
transformedRecord: any;
|
|
16
16
|
constructor(dialog: MatDialog, utilityService: UtilityHelperService);
|
|
17
17
|
ngOnInit(): void;
|
|
18
18
|
initStyles(): void;
|
|
@@ -26,7 +26,7 @@ export declare class ImageFieldSelectorTemplateComponent {
|
|
|
26
26
|
/**
|
|
27
27
|
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
28
28
|
*/
|
|
29
|
-
onRecordValueChange(event:
|
|
29
|
+
onRecordValueChange(event: number): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageFieldSelectorTemplateComponent, never>;
|
|
31
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImageFieldSelectorTemplateComponent, "image-field-selector-template", never, { "record": "record"; "field": "field"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
32
32
|
}
|