@bnsights/bbsf-controls 1.0.93 → 1.0.94
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.94.tgz +0 -0
- package/bundles/bnsights-bbsf-controls.umd.js +2 -0
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/controls/FileUplaod/FileUplaod.component.js +3 -1
- package/fesm2015/bnsights-bbsf-controls.js +2 -0
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/package.json +1 -1
- package/bnsights-bbsf-controls-1.0.93.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.94 / 21-5-2023
|
|
9
|
+
===================
|
|
10
|
+
* Fix File-Upload Control Bug
|
|
11
|
+
|
|
8
12
|
## 1.0.93 / 02-5-2023
|
|
9
13
|
===================
|
|
10
14
|
* Fix Phone Control Bug
|
|
Binary file
|
|
@@ -1348,6 +1348,7 @@
|
|
|
1348
1348
|
_this.multipleFileUploadModel.RemovedFiles = [];
|
|
1349
1349
|
}
|
|
1350
1350
|
}
|
|
1351
|
+
_this.multipleFileUploadModel.CorrelationID_GUID = _this.options.Value.CorrelationID_GUID;
|
|
1351
1352
|
_this.fileUploadFormControl.setValue(_this.multipleFileUploadModel);
|
|
1352
1353
|
_this.group
|
|
1353
1354
|
.get(_this.options.Name)
|
|
@@ -1422,6 +1423,7 @@
|
|
|
1422
1423
|
this.fileUploadFormControl.markAsTouched();
|
|
1423
1424
|
this.fileUploadFormControl.invalid;
|
|
1424
1425
|
}
|
|
1426
|
+
this.multipleFileUploadModel.CorrelationID_GUID = this.options.Value.CorrelationID_GUID;
|
|
1425
1427
|
this.fileUploadFormControl.setValue(this.multipleFileUploadModel);
|
|
1426
1428
|
this.group.get(this.options.Name).setValue(this.multipleFileUploadModel);
|
|
1427
1429
|
//Use this line to enable two way binding.
|