@momentum-design/components 0.47.0 → 0.48.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.
package/dist/browser/index.js
CHANGED
@@ -3439,7 +3439,11 @@
|
|
3439
3439
|
<div class="${Ht({"input-container":!0,"mdc-focus-ring":this.isInputFocused})}" part="input-container">
|
3440
3440
|
${this.renderLeadingIcon()}
|
3441
3441
|
<div part='scrollable-container'>
|
3442
|
-
<div part="filters-container"
|
3442
|
+
<div part="filters-container"
|
3443
|
+
@click=${()=>this.inputElement.focus()}
|
3444
|
+
@keydown=${e=>e.key==="Enter"?this.inputElement.focus():null}
|
3445
|
+
@keyup=${e=>e.key===" "?this.inputElement.focus():null}>
|
3446
|
+
<slot name="filters" @slotchange=${this.renderInputChips}></slot></div>
|
3443
3447
|
${this.renderInputElement(Vo.TYPE)}
|
3444
3448
|
</div>
|
3445
3449
|
${this.renderTrailingButton()}
|