@decaf-ts/for-angular 0.1.51 → 0.1.53

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/index.d.ts CHANGED
@@ -6082,13 +6082,13 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
6082
6082
  * @summary Filters out an item with the specified ID from the data array and
6083
6083
  * refreshes the list display. This is typically used after a delete operation.
6084
6084
  *
6085
- * @param {string} uid - The ID of the item to delete
6085
+ * @param {string} modelId - The ID of the item to delete
6086
6086
  * @param {string} pk - The primary key field name
6087
6087
  * @returns {Promise<void>}
6088
6088
  *
6089
6089
  * @memberOf ListComponent
6090
6090
  */
6091
- handleDelete(uid: string | number, pk?: string): void;
6091
+ handleDelete(modelId: string | number, pk?: string): void;
6092
6092
  /**
6093
6093
  * @description Handles click events from list items.
6094
6094
  * @summary Listens for global ListItemClickEvent events and passes them to the
@@ -10572,7 +10572,7 @@ declare function filterString(original: string | string[], value: string, contai
10572
10572
  declare function getMenuIcon(label: string, menu: IMenuItem[]): string;
10573
10573
  declare function dateFromString(value: string | Date): Date;
10574
10574
  declare function isValidBase64(value: string): boolean;
10575
- declare function stripHTML(html: string): string;
10575
+ declare function stripHTML(content: string): unknown;
10576
10576
 
10577
10577
  declare class DecafFakerRepository<T extends Model> extends LoggedClass {
10578
10578
  protected model: string | Model;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-angular",
3
- "version": "0.1.51",
3
+ "version": "0.1.53",
4
4
  "author": "Tiago Venceslau and Contributors",
5
5
  "license": "MPL-2.0 OR AGPL-3.0",
6
6
  "repository": {