chrv-components 1.10.20 → 1.10.21

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.
Binary file
@@ -1363,8 +1363,12 @@ class ChrTagSelectComponent extends ChrBaseInputComponent {
1363
1363
  });
1364
1364
  this.editSubject.subscribe((entry) => {
1365
1365
  const index = this.value?.indexOf(entry);
1366
+ console.log(`[TagSelect] HasFoundIndex:`, index);
1367
+ console.log(`[TagSelect] Of:`, entry);
1368
+ console.log(`[TagSelect] In:`, this.value);
1366
1369
  this.value[index] = entry;
1367
1370
  this.value = [...(this.value ?? [])];
1371
+ console.log(`[TagSelect] New Value:`, this.value);
1368
1372
  return this.onValueChange(this.value);
1369
1373
  });
1370
1374
  }