gd-bs 5.8.6 → 5.8.7

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/index.html CHANGED
@@ -978,10 +978,11 @@
978
978
  id: "offcanvas-demo",
979
979
  title: "Offcanvas Demo",
980
980
  body: "<h5>Hello Canvas</h5><input />",
981
- size: 5,
982
- type: 3,
981
+ size: 7,
982
+ type: 2,
983
983
  options: {
984
- backdrop: true
984
+ autoClose: false,
985
+ backdrop: false
985
986
  }
986
987
  });
987
988
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "5.8.6",
3
+ "version": "5.8.7",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -242,9 +242,6 @@ class _InputGroup extends Base<IInputGroupProps> implements IInputGroup {
242
242
 
243
243
  // File
244
244
  case InputGroupTypes.File:
245
- this.el.classList.add("form-file");
246
- input.classList.remove("form-control");
247
- input.classList.add("form-file-input");
248
245
  input.type = "file";
249
246
  break;
250
247