@decaf-ts/for-angular 0.1.50 → 0.1.52

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
@@ -2996,6 +2996,7 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
2996
2996
  * @public
2997
2997
  */
2998
2998
  handleModalChildChanges(event?: SelectCustomEvent, formControl?: AbstractControl): void;
2999
+ parseSelectLabel(): void;
2999
3000
  private validateControl;
3000
3001
  private getErrorMessage;
3001
3002
  /**
@@ -6081,13 +6082,13 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
6081
6082
  * @summary Filters out an item with the specified ID from the data array and
6082
6083
  * refreshes the list display. This is typically used after a delete operation.
6083
6084
  *
6084
- * @param {string} uid - The ID of the item to delete
6085
+ * @param {string} modelId - The ID of the item to delete
6085
6086
  * @param {string} pk - The primary key field name
6086
6087
  * @returns {Promise<void>}
6087
6088
  *
6088
6089
  * @memberOf ListComponent
6089
6090
  */
6090
- handleDelete(uid: string | number, pk?: string): void;
6091
+ handleDelete(modelId: string | number, pk?: string): void;
6091
6092
  /**
6092
6093
  * @description Handles click events from list items.
6093
6094
  * @summary Listens for global ListItemClickEvent events and passes them to the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-angular",
3
- "version": "0.1.50",
3
+ "version": "0.1.52",
4
4
  "author": "Tiago Venceslau and Contributors",
5
5
  "license": "MPL-2.0 OR AGPL-3.0",
6
6
  "repository": {