@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.
@@ -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): void;
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;
@@ -7,4 +7,5 @@
7
7
  export interface IRootObject {
8
8
  ID: string;
9
9
  Name: string;
10
+ OrgaID: string;
10
11
  }
@@ -7,4 +7,5 @@ import { BaseObj } from "./baseObj.model";
7
7
  export declare class Entity extends BaseObj implements IRootObject {
8
8
  Name: string;
9
9
  Fields: Array<BaseField>;
10
+ OrgaID: string;
10
11
  }
@@ -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 stringSanitizer(expression: any, required?: boolean): boolean;
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
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.2.11",
7
+ "version": "2.2.13",
8
8
  "peerDependencies": {
9
9
  "@angular/common": "^15.1.2",
10
10
  "@angular/core": "^15.1.2",