gd-bs 6.6.0 → 6.6.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.
@@ -66,7 +66,9 @@ var AccordionItem = /** @class */ (function () {
66
66
  _this._props.onClick ? _this._props.onClick(_this._elHeader, _this._props) : null;
67
67
  });
68
68
  // Execute the render event
69
- this._props.onRender ? this._props.onRender(this._el.querySelector(".accordion-body"), this._props) : null;
69
+ this._props.onRender ? this._props.onRender(this._el, this._props) : null;
70
+ this._props.onRenderBody ? this._props.onRenderBody(this._el.querySelector(".accordion-body"), this._props) : null;
71
+ this._props.onRenderHeader ? this._props.onRenderHeader(this._el.querySelector(".accordion-header"), this._props) : null;
70
72
  };
71
73
  // Renders the header
72
74
  AccordionItem.prototype.renderHeader = function () {