@eqproject/eqp-dynamic-module 2.2.11 → 2.2.13
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 +33 -11
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +13 -12
- package/esm2020/lib/components/private/add-formula-field/add-formula-field.component.mjs +2 -2
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +3 -3
- package/esm2020/lib/eqp-dynamic-module.module.mjs +1 -1
- package/esm2020/lib/interfaces/iRootObject.interface.mjs +1 -1
- package/esm2020/lib/models/entity.model.mjs +1 -1
- package/esm2020/lib/models/form.model.mjs +1 -1
- package/esm2020/lib/services/utilityHelper.services.mjs +2 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +34 -13
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +34 -13
- 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 +3 -1
- package/lib/interfaces/iRootObject.interface.d.ts +1 -0
- package/lib/models/entity.model.d.ts +1 -0
- package/lib/models/form.model.d.ts +1 -0
- package/lib/services/utilityHelper.services.d.ts +1 -1
- package/package.json +1 -1
|
@@ -98,7 +98,9 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
98
98
|
* non viene eseguita nessuna chiamata http per recuperare/salvare i dati.
|
|
99
99
|
*/
|
|
100
100
|
configureDefaultEndPoints(): void;
|
|
101
|
-
stringSanitizer(value: any):
|
|
101
|
+
stringSanitizer(value: any): boolean;
|
|
102
|
+
setName(Name: string): void;
|
|
103
|
+
setCode(Code: string): void;
|
|
102
104
|
omit_special_char(event: any): boolean;
|
|
103
105
|
onImport(event: any): void;
|
|
104
106
|
importModule(): void;
|
|
@@ -6,6 +6,7 @@ import { BaseField } from "./baseField.model";
|
|
|
6
6
|
* Si tratta dell'oggetto che viene rappresentato a video e con cui l'utente interagisce.
|
|
7
7
|
*/
|
|
8
8
|
export declare class Form extends BaseObj implements IRootObject {
|
|
9
|
+
Code: string;
|
|
9
10
|
Name: string;
|
|
10
11
|
Description: string;
|
|
11
12
|
Version: number;
|
|
@@ -71,7 +71,7 @@ export declare class UtilityHelperService {
|
|
|
71
71
|
* @param expression prende una stringa in input e verifica che ogni parentesi aperta venga anche chiusa
|
|
72
72
|
* @returns true se le parentesi sono pari e ogni parentesi chiude se stessa, false se mancano parentesi o non vengono chiuse
|
|
73
73
|
*/
|
|
74
|
-
static
|
|
74
|
+
static stringCheckParentesis(expression: any, required?: boolean): boolean;
|
|
75
75
|
/**
|
|
76
76
|
* Metodo che data la configurazione di un endpoint costruisce l'url da chiamare, gli eventuali parametri
|
|
77
77
|
* da passare (nel body o nella rotta) ed effettua la chiamata. Al termine della chiamata esegue le eventuali
|