@descope/web-components-ui 1.0.87 → 1.0.88
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.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/988.js +1 -1
- package/package.json +1 -1
- package/src/mixins/proxyInputMixin.js +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -789,7 +789,7 @@ const proxyInputMixin = (superclass) =>
|
|
|
789
789
|
get inputElement() {
|
|
790
790
|
this.warnIfInputElementIsMissing();
|
|
791
791
|
|
|
792
|
-
const inputSlot = this.baseElement.shadowRoot?.querySelector('slot[name="
|
|
792
|
+
const inputSlot = this.baseElement.shadowRoot?.querySelector('slot[name="input"]');
|
|
793
793
|
const textAreaSlot = this.baseElement.shadowRoot?.querySelector('slot[name="textarea"]');
|
|
794
794
|
|
|
795
795
|
this.#inputElement ??= getNestedInput(inputSlot) || getNestedInput(textAreaSlot);
|