gd-bs 6.5.9 → 6.6.0

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.
@@ -295,20 +295,20 @@ var _Navbar = /** @class */ (function (_super) {
295
295
  this.el.classList.add("bg-dark");
296
296
  this._btnSearch.classList.add("btn-outline-info");
297
297
  break;
298
- // Primary
299
- case NavbarTypes.Primary:
300
- // Add the class
301
- this.el.classList.add("navbar-dark");
302
- this.el.classList.add("bg-primary");
303
- this._btnSearch.classList.add("btn-outline-light");
304
- break;
305
298
  // Default - Light
306
- default:
299
+ case NavbarTypes.Light:
307
300
  // Add the class
308
301
  this.el.classList.add("navbar-light");
309
302
  this.el.classList.add("bg-light");
310
303
  this._btnSearch.classList.add("btn-outline-primary");
311
304
  break;
305
+ // Default - Primary
306
+ default:
307
+ // Add the class
308
+ this.el.classList.add("navbar-dark");
309
+ this.el.classList.add("bg-primary");
310
+ this._btnSearch.classList.add("btn-outline-light");
311
+ break;
312
312
  }
313
313
  };
314
314
  return _Navbar;