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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "5.8.8",
3
+ "version": "5.8.9",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -501,6 +501,12 @@ export class FormControl implements IFormControl {
501
501
 
502
502
  // See if this is a textbox
503
503
  if (this._tb) {
504
+ // See if this is a file
505
+ if (this._props.type == FormControlTypes.File) {
506
+ // Return the file information
507
+ return this._tb.getFileInfo();
508
+ }
509
+
504
510
  // Return the value
505
511
  return this._tb.getValue();
506
512
  }