@descope/web-components-ui 1.0.153 → 1.0.155

Sign up to get free protection for your applications and to get access to all the features.
@@ -923,6 +923,10 @@ const createBaseClass = ({ componentName, baseSelector = '' }) => {
923
923
  return this.shadowRoot || this;
924
924
  }
925
925
 
926
+ get name () {
927
+ return this.getAttribute('name');
928
+ }
929
+
926
930
  connectedCallback() {
927
931
  super.connectedCallback?.();
928
932
 
@@ -1220,10 +1224,6 @@ const proxyInputMixin = (superclass) =>
1220
1224
  }, 0);
1221
1225
  }
1222
1226
 
1223
- get name() {
1224
- return this.getAttribute('name');
1225
- }
1226
-
1227
1227
  get inputElement() {
1228
1228
  this.warnIfInputElementIsMissing();
1229
1229