@muibook/components 1.0.11 → 1.0.12

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.
@@ -56,7 +56,6 @@ class f extends HTMLElement {
56
56
  :host {
57
57
  display: inline-block;
58
58
  width: 100%;
59
- position: relative;
60
59
  }
61
60
  label {
62
61
  font-size: var(--text-font-size);
@@ -183,10 +182,13 @@ class f extends HTMLElement {
183
182
  /*html*/
184
183
  `<label for="${o}" class="${s ? "vh" : ""}">${r}</label>`
185
184
  ) : ""}
186
- <select class="${h}" part="${this.partMap || ""}" name="${e}" id="${o}" ${u} ${c ? "disabled" : ""} >
187
- ${v}
188
- </select>
189
- <mui-icon-down-chevron class="chevron" size="x-small"></mui-icon-down-chevron>
185
+ <div style="position: relative;">
186
+ <select class="${h}" part="${this.partMap || ""}" name="${e}" id="${o}" ${u}
187
+ ${c ? "disabled" : ""}>
188
+ ${v}
189
+ </select>
190
+ <mui-icon-down-chevron class="chevron" size="x-small"></mui-icon-down-chevron>
191
+ </div>
190
192
  `
191
193
  );
192
194
  this.shadowRoot.innerHTML = p;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muibook/components",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "A library of MUI-based design system components.",
5
5
  "author": "Michael Trilford",
6
6
  "homepage": "https://muibook.com",