gd-bs 5.4.9 → 5.5.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.
@@ -288,6 +288,11 @@ var _Popover = /** @class */ (function (_super) {
288
288
  enumerable: false,
289
289
  configurable: true
290
290
  });
291
+ // Sets the tippy content
292
+ _Popover.prototype.setContent = function (content) {
293
+ // Set the tippy content
294
+ this.tippy.setContent(content);
295
+ };
291
296
  // Shows the popover
292
297
  _Popover.prototype.show = function () {
293
298
  // See if it's hidden
@@ -342,6 +342,11 @@ var _Tooltip = /** @class */ (function (_super) {
342
342
  enumerable: false,
343
343
  configurable: true
344
344
  });
345
+ // Sets the tippy content
346
+ _Tooltip.prototype.setContent = function (content) {
347
+ // Set the tippy content
348
+ this.tippy.setContent(content);
349
+ };
345
350
  // Shows the tooltip
346
351
  _Tooltip.prototype.show = function () {
347
352
  // See if it's hidden