@descope/web-components-ui 1.0.153 → 1.0.155

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.
@@ -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