ngx-techlify-core 18.53.2 → 18.54.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.
@@ -91,11 +91,20 @@ export declare abstract class TechlifyListingControllerInterface {
91
91
  */
92
92
  resetFilter(field: string): void;
93
93
  /**
94
- * Updates a specific row in the table.
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.
95
98
  * @param model The model to be updated.
96
99
  * @param index The index of the model in the list.
97
100
  */
98
101
  modelUpdated(model: any, index: number): void;
102
+ /**
103
+ * Updates one or more models in the list by matching on their `id`.
104
+ * Accepts a single model or an array of models.
105
+ * @param models The updated model or array of models.
106
+ */
107
+ modelsUpdatedById(models: any | any[]): void;
99
108
  /**
100
109
  * Adds a new model at the first position in the table.
101
110
  * @param model The new model to be added.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-techlify-core",
3
- "version": "18.53.2",
3
+ "version": "18.54.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18",
6
6
  "@angular/core": ">=18",