ngx-techlify-core 18.58.2 → 18.60.0
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/esm2022/lib/audit-log/audit-log-list/audit-log-list.component.mjs +2 -5
- package/esm2022/lib/base-model/techlify-list-component.mjs +8 -24
- package/esm2022/lib/user/user.model.mjs +2 -2
- package/fesm2022/ngx-techlify-core.mjs +9 -28
- package/fesm2022/ngx-techlify-core.mjs.map +1 -1
- package/lib/base-model/techlify-list-component.d.ts +6 -16
- package/lib/user/user.model.d.ts +1 -1
- package/package.json +1 -1
|
@@ -90,15 +90,6 @@ export declare abstract class TechlifyListComponent {
|
|
|
90
90
|
* @param field Field name.
|
|
91
91
|
*/
|
|
92
92
|
resetFilter(field: string): void;
|
|
93
|
-
/**
|
|
94
|
-
* @deprecated will be removed in release/18.55.0
|
|
95
|
-
* Use `modelsUpdatedById` instead, which finds the model by id and does not require tracking the index.
|
|
96
|
-
*
|
|
97
|
-
* Updates a specific row in the table by index.
|
|
98
|
-
* @param model The model to be updated.
|
|
99
|
-
* @param index The index of the model in the list.
|
|
100
|
-
*/
|
|
101
|
-
modelUpdated(model: any, index: number): void;
|
|
102
93
|
/**
|
|
103
94
|
* Updates one or more models in the list by matching on their `id`.
|
|
104
95
|
* Accepts a single model or an array of models.
|
|
@@ -111,18 +102,17 @@ export declare abstract class TechlifyListComponent {
|
|
|
111
102
|
* @param models The updated model or array of models.
|
|
112
103
|
*/
|
|
113
104
|
modelsDeletedById(models: any | any[]): void;
|
|
105
|
+
/**
|
|
106
|
+
* Clears the list of selected models, this will also
|
|
107
|
+
* close the bulk update form that checks
|
|
108
|
+
* for selected models length
|
|
109
|
+
*/
|
|
110
|
+
clearSelectedModels(): void;
|
|
114
111
|
/**
|
|
115
112
|
* Adds a new model at the first position in the table.
|
|
116
113
|
* @param model The new model to be added.
|
|
117
114
|
*/
|
|
118
115
|
modelCreated(model: any): void;
|
|
119
|
-
/**
|
|
120
|
-
* @deprecated will be removed in release/18.57.0
|
|
121
|
-
*
|
|
122
|
-
* Remove a model from the list.
|
|
123
|
-
* @param index Index of the model in the list.
|
|
124
|
-
*/
|
|
125
|
-
modelDeleted(index: number): void;
|
|
126
116
|
/**
|
|
127
117
|
* Used for multi select
|
|
128
118
|
* Trigerred when select all is toggled
|
package/lib/user/user.model.d.ts
CHANGED