@descope/web-components-ui 1.0.361 → 1.0.362

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 CHANGED
@@ -2634,7 +2634,8 @@ const customMixin$a = (superclass) =>
2634
2634
  init() {
2635
2635
  super.init?.();
2636
2636
 
2637
- this.setAttribute('pattern', defaultPattern);
2637
+ // we need to set the pattern on the base element because vaadin-email-field is overriding it
2638
+ this.baseElement.setAttribute('pattern', defaultPattern);
2638
2639
 
2639
2640
  if (!this.getAttribute('autocomplete')) {
2640
2641
  this.setAttribute('autocomplete', defaultAutocomplete);