@orangelogic/design-system 2.186.0 → 2.188.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.
@@ -3516,7 +3516,7 @@ const sn = {
3516
3516
  async _buildColumnHeader() {
3517
3517
  const e = this.definition;
3518
3518
  if (!(!this.element || !this.titleElement)) {
3519
- if (this.dispatch("column-layout", this), e.hidden !== void 0 && e.hidden !== null && (e.hidden ? this.hide(!0) : await this.show(!0)), e.cssClass && this.element) {
3519
+ if (this.dispatch("column-layout", this), this.hozAlign = e.hozAlign || "", this.vertAlign = e.vertAlign || "", e.hidden !== void 0 && e.hidden !== null && (e.hidden ? this.hide(!0) : await this.show(!0)), e.cssClass && this.element) {
3520
3520
  const t = e.cssClass.split(" "), i = this.element;
3521
3521
  t.forEach((s) => {
3522
3522
  i.classList.add(s);
@@ -3538,7 +3538,7 @@ const sn = {
3538
3538
  const t = Number.parseInt(e.maxWidth);
3539
3539
  isNaN(t) || this.setMaxWidth(t);
3540
3540
  }
3541
- await this.reinitializeWidth(), this.hozAlign = this.definition.hozAlign || "", this.vertAlign = this.definition.vertAlign || "", this.titleElement.style.textAlign = this.definition.headerHozAlign || "";
3541
+ await this.reinitializeWidth(), this.titleElement.style.textAlign = this.definition.headerHozAlign || "";
3542
3542
  }
3543
3543
  }
3544
3544
  _buildColumnHeaderContent() {