gd-bs 5.8.8 → 5.8.9
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.
|
@@ -502,6 +502,11 @@ var FormControl = /** @class */ (function () {
|
|
|
502
502
|
}
|
|
503
503
|
// See if this is a textbox
|
|
504
504
|
if (this._tb) {
|
|
505
|
+
// See if this is a file
|
|
506
|
+
if (this._props.type == _1.FormControlTypes.File) {
|
|
507
|
+
// Return the file information
|
|
508
|
+
return this._tb.getFileInfo();
|
|
509
|
+
}
|
|
505
510
|
// Return the value
|
|
506
511
|
return this._tb.getValue();
|
|
507
512
|
}
|