@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.
- package/dist/cjs/index.cjs.js +4 -4
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/9241.js +1 -1
- package/dist/umd/descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
- package/package.json +1 -1
- package/src/baseClasses/createBaseClass.js +4 -0
- package/src/components/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +3 -0
- package/src/mixins/proxyInputMixin.js +0 -4
package/dist/cjs/index.cjs.js
CHANGED
@@ -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
|
|