@descope/web-components-ui 1.0.392 → 1.0.393-1

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
@@ -9068,9 +9068,9 @@ class RawPolicyValidation extends createBaseClass({ componentName: componentName
9068
9068
  updateLabel(val) {
9069
9069
  if (!val) {
9070
9070
  this.classList.add('hide-label');
9071
- this.label.innerHTML = '';
9071
+ this.label.textContent = '';
9072
9072
  } else {
9073
- this.label.innerHTML = val;
9073
+ this.label.textContent = val;
9074
9074
  this.classList.remove('hide-label');
9075
9075
  }
9076
9076
  }
@@ -9918,15 +9918,15 @@ class RawUploadFile extends BaseInputClass$3 {
9918
9918
  }
9919
9919
 
9920
9920
  updateTitle(val) {
9921
- this.title.innerHTML = val;
9921
+ this.title.textContent = val;
9922
9922
  }
9923
9923
 
9924
9924
  updateDescription(val) {
9925
- this.description.innerHTML = val;
9925
+ this.description.textContent = val;
9926
9926
  }
9927
9927
 
9928
9928
  updateButtonLabel(val) {
9929
- this.button.innerHTML = val;
9929
+ this.button.textContent = val;
9930
9930
  }
9931
9931
 
9932
9932
  updateButtonSize(val) {
@@ -11103,7 +11103,7 @@ const renderCodeSnippet = (value, lang) =>
11103
11103
 
11104
11104
  const renderText = (text) =>
11105
11105
  `<div class="row-details__value text" title="${text}">${text}</div>`;
11106
- const renderJson = (value) => renderCodeSnippet(JSON.stringify(value, null, 2), 'json');
11106
+ const renderJson = (value) => renderCodeSnippet(escapeXML(JSON.stringify(value, null, 2)), 'json');
11107
11107
  const renderXml = (value) => renderCodeSnippet(escapeXML(value), 'xml');
11108
11108
 
11109
11109
  const defaultRowDetailsValueRenderer = (value) => {
@@ -14675,6 +14675,7 @@ class RawThirdPartyAppLogoClass extends createBaseClass({
14675
14675
  display: flex;
14676
14676
  justify-content: center;
14677
14677
  align-items: center;
14678
+ min-width: max-content;
14678
14679
  }
14679
14680
 
14680
14681
  .third-party-app-logo {