ngx-material-entity 16.1.4 → 16.1.5

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.
@@ -126,6 +126,11 @@ export declare class NgxMatEntityInputComponent<EntityType extends BaseEntityTyp
126
126
  * Whether or not the current object dropdown value should be shown in the dropdown.
127
127
  */
128
128
  get shouldDisplayCurrentObjectDropdownValue(): boolean;
129
+ /**
130
+ * A compareWith method for the select.
131
+ * Uses bind.
132
+ */
133
+ compareObjectsBound: (value1?: EntityType, value2?: EntityType) => boolean;
129
134
  private readonly addArrayItemDialog;
130
135
  private addArrayItemDialogRef;
131
136
  private readonly editArrayItemDialog;
@@ -369,7 +374,7 @@ export declare class NgxMatEntityInputComponent<EntityType extends BaseEntityTyp
369
374
  * @param value2 - The second object to compare.
370
375
  * @returns Whether or not the objects are the same.
371
376
  */
372
- compareObjects(value1?: EntityType, value2?: EntityType): boolean;
377
+ private compareObjects;
373
378
  /**
374
379
  * Filters the dropdown values.
375
380
  * @param searchInput - The search input to filter for.