@waggylabs/yumekit 0.4.0-beta.40 → 0.4.0-beta.41

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.
@@ -585,7 +585,7 @@ class YumeSelect extends HTMLElement {
585
585
  const showClearButton = (isSearchable || isClearable) && !isMulti;
586
586
  const valueSet = isMulti ? this.selectedValues : new Set([this.value]);
587
587
  const placeholder = this.getAttribute("placeholder") || "Select...";
588
- const clearButtonHTML = `<button class="clear-button" style="display:none" tabindex="-1" type="button"><y-icon name="close" size="small"></y-icon></button>`;
588
+ const clearButtonHTML = `<button class="clear-button" style="display:none" tabindex="-1" type="button"><y-icon name="close" size="medium"></y-icon></button>`;
589
589
 
590
590
  let containerInner;
591
591
  if (isSearchable && !isMulti) {
@@ -613,7 +613,7 @@ class YumeSelect extends HTMLElement {
613
613
  containerInner = `
614
614
  <div class="value-display">${this._getDisplayText()}</div>
615
615
  <button class="clear-button" style="display:none" tabindex="-1" type="button">
616
- <y-icon name="close" size="small"></y-icon>
616
+ <y-icon name="close" size="medium"></y-icon>
617
617
  </button>
618
618
  `;
619
619
  } else {
@@ -150,6 +150,9 @@ class YumeTag extends HTMLElement {
150
150
  }
151
151
  .remove svg {
152
152
  pointer-events: none;
153
+ width: 1.1em;
154
+ height: 1.1em;
155
+ stroke-width: 2.5;
153
156
  }
154
157
  `;
155
158
 
package/dist/index.js CHANGED
@@ -6014,7 +6014,7 @@ class YumeSelect extends HTMLElement {
6014
6014
  const showClearButton = (isSearchable || isClearable) && !isMulti;
6015
6015
  const valueSet = isMulti ? this.selectedValues : new Set([this.value]);
6016
6016
  const placeholder = this.getAttribute("placeholder") || "Select...";
6017
- const clearButtonHTML = `<button class="clear-button" style="display:none" tabindex="-1" type="button"><y-icon name="close" size="small"></y-icon></button>`;
6017
+ const clearButtonHTML = `<button class="clear-button" style="display:none" tabindex="-1" type="button"><y-icon name="close" size="medium"></y-icon></button>`;
6018
6018
 
6019
6019
  let containerInner;
6020
6020
  if (isSearchable && !isMulti) {
@@ -6042,7 +6042,7 @@ class YumeSelect extends HTMLElement {
6042
6042
  containerInner = `
6043
6043
  <div class="value-display">${this._getDisplayText()}</div>
6044
6044
  <button class="clear-button" style="display:none" tabindex="-1" type="button">
6045
- <y-icon name="close" size="small"></y-icon>
6045
+ <y-icon name="close" size="medium"></y-icon>
6046
6046
  </button>
6047
6047
  `;
6048
6048
  } else {
@@ -7423,6 +7423,9 @@ class YumeTag extends HTMLElement {
7423
7423
  }
7424
7424
  .remove svg {
7425
7425
  pointer-events: none;
7426
+ width: 1.1em;
7427
+ height: 1.1em;
7428
+ stroke-width: 2.5;
7426
7429
  }
7427
7430
  `;
7428
7431