gd-bs 6.0.0 → 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) {