@bnsights/bbsf-controls 1.0.101 → 1.0.103
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 +11 -0
- package/bnsights-bbsf-controls-1.0.103.tgz +0 -0
- package/bundles/bnsights-bbsf-controls.umd.js +4 -3
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/controls/AutocompleteTextBox/AutocompleteTextBox.component.js +5 -4
- package/fesm2015/bnsights-bbsf-controls.js +4 -3
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/package.json +1 -1
- package/bnsights-bbsf-controls-1.0.101.tgz +0 -0
package/README.md
CHANGED
|
@@ -5,6 +5,17 @@ BBSF Controls package is part of BBSF 3 packages. It has all the form controls t
|
|
|
5
5
|
For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsights.com/controls) or [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
|
|
6
6
|
|
|
7
7
|
# Change Log
|
|
8
|
+
## 1.0.103 / 15-10-2023
|
|
9
|
+
===================
|
|
10
|
+
* Update AutocompleteTextBox Control
|
|
11
|
+
|
|
12
|
+
## 1.0.102 / 12-10-2023
|
|
13
|
+
===================
|
|
14
|
+
* Update AutocompleteTextBox Control
|
|
15
|
+
|
|
16
|
+
## 1.0.101 / 14-9-2023
|
|
17
|
+
===================
|
|
18
|
+
* Add Custom Template to AutocompleteTextBox options
|
|
8
19
|
|
|
9
20
|
## 1.0.100 / 15-8-2023
|
|
10
21
|
===================
|
|
Binary file
|
|
@@ -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 () {
|