@eqproject/eqp-dynamic-module 1.1.5 → 1.1.6
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/eqp-dynamic-module.component.mjs +5 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +4 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +4 -2
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { Context } from '../../../models/context.model';
|
|
3
3
|
import { EndPointConfiguration } from '../../../models/endPointConfiguration.model';
|
|
4
4
|
import { Form, FormTypeEnum } from '../../../models/form.model';
|
|
5
5
|
import { Record } from '../../../models/record.model';
|
|
6
6
|
import { UtilityHelperService } from '../../../services/utilityHelper.services';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class EqpDynamicModuleComponent implements OnInit {
|
|
8
|
+
export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit {
|
|
9
9
|
private utilityHelperService;
|
|
10
10
|
context: Context;
|
|
11
11
|
previewMode: boolean;
|
|
@@ -55,6 +55,7 @@ export declare class EqpDynamicModuleComponent implements OnInit {
|
|
|
55
55
|
onlyView: boolean;
|
|
56
56
|
constructor(utilityHelperService: UtilityHelperService);
|
|
57
57
|
ngOnInit(): void;
|
|
58
|
+
ngAfterViewInit(): void;
|
|
58
59
|
getFormByID(): void;
|
|
59
60
|
/**
|
|
60
61
|
* Metodo per configurare gli endpoint da usare di default a partire dall'url base del server
|