ngx-techlify-core 14.8.1 → 14.8.2

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.
@@ -15,10 +15,11 @@ export declare abstract class TechlifyListingControllerInterface {
15
15
  perPage: number;
16
16
  lastPage: number;
17
17
  isWorking: boolean;
18
+ filterForm: any;
18
19
  /**
19
20
  * Function that listens for any changes in the form group to apply the filters
20
21
  */
21
- abstract listenForChanges(): void;
22
+ listenForChanges(): void;
22
23
  /**
23
24
  * Function that loads the main models of the application
24
25
  */
@@ -33,15 +34,9 @@ export declare abstract class TechlifyListingControllerInterface {
33
34
  */
34
35
  onScroll(): void;
35
36
  /**
36
- * Function used to pop up the edit form for the model
37
+ * Reset the filter.
37
38
  *
38
- * @param model
39
+ * @param field
39
40
  */
40
- abstract editForm(model: any): void;
41
- /**
42
- * Function used to pop up the delete form for the model
43
- *
44
- * @param model
45
- */
46
- abstract deleteForm(model: any): void;
41
+ resetFilter(field: string): void;
47
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-techlify-core",
3
- "version": "14.8.1",
3
+ "version": "14.8.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=11",
6
6
  "@angular/core": ">=11",