@descope/web-components-ui 1.0.302 → 1.0.304
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 +2 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-enriched-text-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-enriched-text/EnrichedTextClass.js +2 -2
- package/src/components/phone-fields/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +1 -1
package/dist/cjs/index.cjs.js
CHANGED
@@ -4770,9 +4770,9 @@ let EnrichedText$2 = class EnrichedText extends createBaseClass({ componentName:
|
|
4770
4770
|
|
4771
4771
|
onReadOnlyChange(isReadOnly) {
|
4772
4772
|
if (isReadOnly) {
|
4773
|
-
this.setAttribute('inert', isReadOnly);
|
4773
|
+
this.contentNode.setAttribute('inert', isReadOnly);
|
4774
4774
|
} else {
|
4775
|
-
this.removeAttribute('inert');
|
4775
|
+
this.contentNode.removeAttribute('inert');
|
4776
4776
|
}
|
4777
4777
|
}
|
4778
4778
|
};
|