@messaia/cdk 13.0.2 → 13.0.3
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/components/generic-list.component.mjs +30 -25
- package/fesm2015/messaia-cdk.mjs +29 -24
- package/fesm2015/messaia-cdk.mjs.map +1 -1
- package/fesm2020/messaia-cdk.mjs +29 -24
- package/fesm2020/messaia-cdk.mjs.map +1 -1
- package/lib/base/components/generic-list.component.d.ts +5 -3
- package/package.json +1 -1
|
@@ -175,13 +175,11 @@ export declare abstract class GenericListComponent<TEntity extends IEntity | any
|
|
|
175
175
|
deleteItem(item: TEntity): void;
|
|
176
176
|
/**
|
|
177
177
|
* Deletes an item from the database.
|
|
178
|
-
* @param ids the IDs of the items to delete
|
|
179
178
|
*/
|
|
180
179
|
deleteItems(): void;
|
|
181
180
|
/**
|
|
182
181
|
* Toggles a property
|
|
183
|
-
* @param
|
|
184
|
-
* @param enabled
|
|
182
|
+
* @param item
|
|
185
183
|
* @param property
|
|
186
184
|
*/
|
|
187
185
|
toggle(item: TEntity, property?: string): void;
|
|
@@ -213,6 +211,10 @@ export declare abstract class GenericListComponent<TEntity extends IEntity | any
|
|
|
213
211
|
* @param inc
|
|
214
212
|
*/
|
|
215
213
|
protected include(...inc: string[]): void;
|
|
214
|
+
/**
|
|
215
|
+
* Add row menu items
|
|
216
|
+
*/
|
|
217
|
+
protected addRowMenuItems(): void;
|
|
216
218
|
/**
|
|
217
219
|
* Check if the item is deleteable
|
|
218
220
|
*/
|