@descope/web-components-ui 1.0.89 → 1.0.90
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
|
@@ -782,7 +782,7 @@ const proxyInputMixin = (superclass) =>
|
|
|
782
782
|
clearTimeout(this.inputElementTimerId);
|
|
783
783
|
|
|
784
784
|
this.inputElementTimerId = setTimeout(() => {
|
|
785
|
-
!this.#inputElement && console.warn('no input was found');
|
|
785
|
+
!this.#inputElement && console.warn(this.localName, 'no input was found');
|
|
786
786
|
}, 0);
|
|
787
787
|
}
|
|
788
788
|
|