gd-bs 6.6.49 → 6.6.50

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.
@@ -27,7 +27,8 @@ var CardBody = /** @class */ (function () {
27
27
  CardBody.prototype.configure = function () {
28
28
  // Set the class names
29
29
  if (this._props.className) {
30
- this._el.classList.add(this._props.className);
30
+ // Set the class names
31
+ (0, common_1.setClassNames)(this._el, this._props.className);
31
32
  }
32
33
  // Update the title
33
34
  var elTitle = this._el.querySelector(".card-title");