@bnsights/bbsf-controls 1.0.100 → 1.0.102

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/README.md CHANGED
@@ -6,6 +6,10 @@ For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsigh
6
6
 
7
7
  # Change Log
8
8
 
9
+ ## 1.0.102 / 12-10-2023
10
+ ===================
11
+ * Update AutocompleteTextBox Control
12
+
9
13
  ## 1.0.100 / 15-8-2023
10
14
  ===================
11
15
  * Update Utilities Library
@@ -4596,11 +4596,12 @@
4596
4596
  if (this.options.PatchFunction && this.options.PatchPath && this.group.get(this.options.Name).valid) {
4597
4597
  this.controlUtility.patchControlValue(originalValue, this.options.PatchFunction, this.options.PatchPath);
4598
4598
  }
4599
- this.OnChange.emit(this.AutocompleteTextBoxControl.value);
4600
- //Use this line to enable two way binding.
4601
- this.options.Value = this.AutocompleteTextBoxControl.value;
4602
4599
  }
4603
4600
  }
4601
+ // move this line here to emit value no matter is from database or not
4602
+ this.OnChange.emit(this.AutocompleteTextBoxControl.value);
4603
+ //Use this line to enable two way binding.
4604
+ this.options.Value = this.AutocompleteTextBoxControl.value;
4604
4605
  };
4605
4606
  AutocompleteTextBoxComponent.prototype.onChangeSearch = function (search) {
4606
4607
  return __awaiter(this, void 0, void 0, function () {