gd-bs 5.9.9 → 6.0.1

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.
@@ -231,9 +231,11 @@ var _Popover = /** @class */ (function (_super) {
231
231
  // Create the popover content element
232
232
  this._elContent = document.createElement("div");
233
233
  this._elContent.classList.add("popover-content");
234
- this._elContent.innerHTML = '<h5 class="popover-header m-0"></h5><div class="popover-body"></div>';
234
+ this._elContent.innerHTML = '<div class="popover-header"></div><div class="popover-body"></div>';
235
235
  (0, common_1.appendContent)(this._elContent.querySelector(".popover-header"), this.props.title);
236
+ (0, common_1.setClassNames)(this._elContent.querySelector(".popover-header"), this.props.classNameHeader);
236
237
  (0, common_1.appendContent)(this._elContent.querySelector(".popover-body"), options.content);
238
+ (0, common_1.setClassNames)(this._elContent.querySelector(".popover-body"), this.props.classNameBody);
237
239
  options.content = this._elContent;
238
240
  // Set the on create event
239
241
  options["onCreate"] = function (tippyObj) {
@@ -1792,7 +1792,7 @@ var IconTypes;
1792
1792
  IconTypes[IconTypes["WindowSplit"] = 1786] = "WindowSplit";
1793
1793
  IconTypes[IconTypes["WindowStack"] = 1787] = "WindowStack";
1794
1794
  IconTypes[IconTypes["WindowX"] = 1788] = "WindowX";
1795
- IconTypes[IconTypes["AppWindow"] = 1789] = "AppWindow";
1795
+ IconTypes[IconTypes["Window_"] = 1789] = "Window_";
1796
1796
  IconTypes[IconTypes["Windows"] = 1790] = "Windows";
1797
1797
  IconTypes[IconTypes["Wordpress"] = 1791] = "Wordpress";
1798
1798
  IconTypes[IconTypes["WrenchAdjustableCircleFill"] = 1792] = "WrenchAdjustableCircleFill";
@@ -5388,7 +5388,7 @@ var Icons = function (iconType, height, width, className) {
5388
5388
  return SVGIcons.windowX(height, width, className);
5389
5389
  // window.svg
5390
5390
  case 1789:
5391
- return SVGIcons.appWindow(height, width, className);
5391
+ return SVGIcons.window_(height, width, className);
5392
5392
  // windows.svg
5393
5393
  case 1790:
5394
5394
  return SVGIcons.windows(height, width, className);
@@ -3575,7 +3575,7 @@ export const windowStack: (height?:number, width?:number, className?:string) =>
3575
3575
  // window-x.svg
3576
3576
  export const windowX: (height?:number, width?:number, className?:string) => HTMLElement;
3577
3577
  // window.svg
3578
- export const appWindow: (height?:number, width?:number, className?:string) => HTMLElement;
3578
+ export const window_: (height?:number, width?:number, className?:string) => HTMLElement;
3579
3579
  // windows.svg
3580
3580
  export const windows: (height?:number, width?:number, className?:string) => HTMLElement;
3581
3581
  // wordpress.svg
@@ -1802,7 +1802,7 @@ __exportStar(require("./windowSidebar"), exports);
1802
1802
  __exportStar(require("./windowSplit"), exports);
1803
1803
  __exportStar(require("./windowStack"), exports);
1804
1804
  __exportStar(require("./windowX"), exports);
1805
- __exportStar(require("./appWindow"), exports);
1805
+ __exportStar(require("./window_"), exports);
1806
1806
  __exportStar(require("./windows"), exports);
1807
1807
  __exportStar(require("./wordpress"), exports);
1808
1808
  __exportStar(require("./wrenchAdjustableCircleFill"), exports);
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.appWindow = void 0;
3
+ exports.window_ = void 0;
4
4
  var generate_1 = require("../generate");
5
- function appWindow(height, width, className) {
5
+ function window_(height, width, className) {
6
6
  return (0, generate_1.generateIcon)("<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-window' viewBox='0 0 16 16'> <path d='M2.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm2-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm1 .5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1z'/> <path d='M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2zm13 2v2H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zM2 14a1 1 0 0 1-1-1V6h14v7a1 1 0 0 1-1 1H2z'/> </svg>", height, width, className);
7
7
  }
8
- exports.appWindow = appWindow;
8
+ exports.window_ = window_;