@eqproject/eqp-dynamic-module 2.3.3 → 2.3.4

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.
@@ -31,6 +31,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
31
31
  onSaveBackToList: boolean;
32
32
  onBackTo: DynamicModuleViewModeEnum;
33
33
  internalListView: boolean;
34
+ additionalParams: any;
34
35
  context: Context;
35
36
  /**
36
37
  * Url del server da chiamare per recuperare, salvare o eliminare i record.
@@ -145,5 +146,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
145
146
  onAfterDeleteRecord(record: Record): void;
146
147
  onAfterFilter(ev: any): void;
147
148
  static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
148
- static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "externalButtons": "externalButtons"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "internalListView": "internalListView"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
149
+ static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "debugMode": "debugMode"; "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "externalButtons": "externalButtons"; "defaultListViewFunction": "defaultListViewFunction"; "defaultListActions": "defaultListActions"; "onSaveBackToList": "onSaveBackToList"; "onBackTo": "onBackTo"; "internalListView": "internalListView"; "additionalParams": "additionalParams"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
149
150
  }
@@ -33,6 +33,7 @@ export declare class AddFormRecordComponent implements OnInit {
33
33
  saveRecordEvent: EventEmitter<Record>;
34
34
  afterSaveRecordEvent: EventEmitter<Record>;
35
35
  fieldTemplate: QueryList<DynamicModuleFieldFixComponent>;
36
+ additionalParams: any;
36
37
  constructor(cdr: ChangeDetectorRef, utilityService: UtilityHelperService);
37
38
  ngOnInit(): void;
38
39
  /**
@@ -15,5 +15,9 @@ export declare class DynamicModuleCompileConfig {
15
15
  * Set id for save
16
16
  */
17
17
  userID: string;
18
- constructor(showTitle?: boolean, showSaveButton?: boolean, showBackButton?: boolean, userID?: string);
18
+ /**
19
+ * Additional Params for filtering
20
+ */
21
+ additionalParams: any;
22
+ constructor(showTitle?: boolean, showSaveButton?: boolean, showBackButton?: boolean, userID?: string, additionalParams?: any);
19
23
  }
@@ -18,6 +18,7 @@ export declare class DynRecord {
18
18
  SerializedValues: string;
19
19
  HTMLreadableValues: string;
20
20
  AnswerDate: string;
21
+ AdditionalParams: string;
21
22
  }
22
23
  export declare class RecordButton {
23
24
  icon: string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.3.3",
7
+ "version": "2.3.4",
8
8
  "peerDependencies": {
9
9
  "@angular/common": "^15.1.2",
10
10
  "@angular/core": "^15.1.2",