@eqproject/eqp-dynamic-module 2.3.15 → 2.3.16

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.
@@ -36,6 +36,7 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
36
36
  prefilterParams: any;
37
37
  showNewSearchButton: boolean;
38
38
  answerToDuplicateId: any;
39
+ highlightFilter: any;
39
40
  context: Context;
40
41
  /**
41
42
  * Url del server da chiamare per recuperare, salvare o eliminare i record.
@@ -151,5 +152,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
151
152
  onAfterDeleteRecord(record: Record): void;
152
153
  onAfterFilter(ev: any): void;
153
154
  static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
154
- 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"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
155
+ 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"; "filterResultViewMode": "filterResultViewMode"; "additionalParams": "additionalParams"; "prefilterParams": "prefilterParams"; "showNewSearchButton": "showNewSearchButton"; "answerToDuplicateId": "answerToDuplicateId"; "highlightFilter": "highlightFilter"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterFilter": "afterFilter"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false, never>;
155
156
  }
@@ -13,6 +13,7 @@ type Panel = {
13
13
  record: Record;
14
14
  isOpen: boolean;
15
15
  pageState: string;
16
+ highlighted: boolean;
16
17
  };
17
18
  export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
18
19
  private utilityHelperService;
@@ -31,6 +32,7 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
31
32
  externalButtons: Array<RecordButton>;
32
33
  onlyView: boolean;
33
34
  records: Array<DynRecord>;
35
+ highlightFilter: any;
34
36
  defaultListActions: DynamicModuleListFormRecordActionsDefault;
35
37
  showTitle: boolean;
36
38
  test: boolean;
@@ -136,6 +138,6 @@ export declare class ListViewFormRecordComponent implements OnInit, OnChanges {
136
138
  onAddSaveRecord(record: Record): void;
137
139
  onAddAfterSaveRecord(record: Record): void;
138
140
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewFormRecordComponent, never>;
139
- static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onDuplicateRecord": "onDuplicateRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
141
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewFormRecordComponent, "list-view-form-record", never, { "debugMode": "debugMode"; "configurations": "configurations"; "compileConfigurations": "compileConfigurations"; "endPointConfiguration": "endPointConfiguration"; "userID": "userID"; "formID": "formID"; "form": "form"; "defaultListViewFunction": "defaultListViewFunction"; "externalButtons": "externalButtons"; "onlyView": "onlyView"; "records": "records"; "highlightFilter": "highlightFilter"; }, { "onAddViewEditRecord": "onAddViewEditRecord"; "onDeleteRecord": "onDeleteRecord"; "onDuplicateRecord": "onDuplicateRecord"; "saveRecordEvent": "saveRecordEvent"; "afterSaveRecordEvent": "afterSaveRecordEvent"; }, never, never, false, never>;
140
142
  }
141
143
  export {};
@@ -5,6 +5,7 @@ export declare class Record {
5
5
  userID: string;
6
6
  AnswerDate: string;
7
7
  HTMLreadableValues: string;
8
+ AdditionalParams: any;
8
9
  [key: string]: any;
9
10
  }
10
11
  export declare class DynRecord {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.3.15",
7
+ "version": "2.3.16",
8
8
  "peerDependencies": {
9
9
  "@angular/common": "^15.1.2",
10
10
  "@angular/core": "^15.1.2",