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.
- package/esm2020/lib/base-model/techlify-listing-component.class.mjs +20 -1
- package/fesm2015/ngx-techlify-core.mjs +19 -2
- package/fesm2015/ngx-techlify-core.mjs.map +1 -1
- package/fesm2020/ngx-techlify-core.mjs +19 -2
- package/fesm2020/ngx-techlify-core.mjs.map +1 -1
- package/lib/base-model/techlify-listing-component.class.d.ts +5 -10
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
*
|
|
37
|
+
* Reset the filter.
|
|
37
38
|
*
|
|
38
|
-
* @param
|
|
39
|
+
* @param field
|
|
39
40
|
*/
|
|
40
|
-
|
|
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
|
}
|