@bnsights/bbsf-controls 1.0.77 → 1.0.78
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 +4 -0
- package/bnsights-bbsf-controls-1.0.78.tgz +0 -0
- package/bundles/bnsights-bbsf-controls.umd.js +2 -2
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +3 -3
- package/fesm2015/bnsights-bbsf-controls.js +2 -2
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/package.json +1 -1
- package/bnsights-bbsf-controls-1.0.77.tgz +0 -0
package/README.md
CHANGED
|
@@ -5,6 +5,10 @@ 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.78 / 11-1-2022
|
|
9
|
+
===================
|
|
10
|
+
* Solve Image Control Bug
|
|
11
|
+
|
|
8
12
|
## 1.0.77 / 11-1-2022
|
|
9
13
|
===================
|
|
10
14
|
* Solve Image Control Bug
|
|
Binary file
|
|
@@ -3658,8 +3658,8 @@
|
|
|
3658
3658
|
}
|
|
3659
3659
|
this.group.addControl(this.options.Name, new forms.FormControl(''));
|
|
3660
3660
|
this.ImageUploadFormControl = this.group.controls[this.options.Name]; // new FormControl('',validationRules);
|
|
3661
|
-
|
|
3662
|
-
|
|
3661
|
+
if (this.options.Value != null)
|
|
3662
|
+
this.group.get(this.options.Name).setValue(this.options.Value);
|
|
3663
3663
|
if (this.options.LabelKey != null && this.options.LabelKey != '')
|
|
3664
3664
|
this.options.LabelValue = this.UtilityService.getResourceValue(this.options.LabelKey);
|
|
3665
3665
|
if (this.options.CustomValidation.length > 0) {
|