monobill-mintui 0.3.44 → 0.3.46

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.
package/dist/index.js CHANGED
@@ -1477,7 +1477,10 @@ class at extends HTMLElement {
1477
1477
  }), this._updateBackgroundColor();
1478
1478
  }
1479
1479
  _applyContainerClasses() {
1480
- this._pageContainer && (this._pageContainer.classList.add("min-h-screen", "p-8", "transition-colors", "duration-200"), this.hasAttribute("containered") ? this._pageContainer.classList.add("max-w-6xl", "mx-auto", "w-full") : this._pageContainer.classList.remove("max-w-6xl", "mx-auto"));
1480
+ if (!this._pageContainer) return;
1481
+ this._pageContainer.classList.add("min-h-screen", "p-8", "transition-colors", "duration-200");
1482
+ const t = this.getAttribute("containered");
1483
+ t !== null && t !== "false" ? this._pageContainer.classList.add("max-w-6xl", "mx-auto", "w-full") : this._pageContainer.classList.remove("max-w-6xl", "mx-auto", "w-full");
1481
1484
  }
1482
1485
  _updateBackgroundColor() {
1483
1486
  if (!this._pageContainer) return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monobill-mintui",
3
- "version": "0.3.44",
3
+ "version": "0.3.46",
4
4
  "description": "A modern framework-agnostic UI kit built as Web Components. Requires Tailwind CSS.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",