@descope/web-components-ui 1.54.0 → 1.55.0

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.
@@ -12870,7 +12870,12 @@ const multiSelectComboBoxMixin = (superclass) =>
12870
12870
 
12871
12871
  // eslint-disable-next-line class-methods-use-this
12872
12872
  #renderItem = ({ displayName, value, label }) => {
12873
- return `<span data-name="${label}" data-id="${value}">${displayName || label}</span>`;
12873
+ const ele = document.createElement('span');
12874
+ ele.setAttribute('data-name', label);
12875
+ ele.setAttribute('data-id', value);
12876
+ ele.textContent = displayName || label;
12877
+
12878
+ return ele.outerHTML;
12874
12879
  };
12875
12880
 
12876
12881
  #data;