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.
@@ -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
@@ -9,7 +9,7 @@ export declare class User {
9
9
  name: string;
10
10
  email: string;
11
11
  password: string;
12
- enabled: string;
12
+ status_id: string;
13
13
  user_type_id: number;
14
14
  is_temporary_password: boolean;
15
15
  client_id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-techlify-core",
3
- "version": "18.58.2",
3
+ "version": "18.60.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18",
6
6
  "@angular/core": ">=18",