@descope/web-components-ui 1.54.0 → 1.56.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.
@@ -9503,11 +9503,6 @@ var CountryCodes = [
9503
9503
  dialCode: '+351',
9504
9504
  code: 'PT',
9505
9505
  },
9506
- {
9507
- name: 'Puerto Rico',
9508
- dialCode: '+1939',
9509
- code: 'PR',
9510
- },
9511
9506
  {
9512
9507
  name: 'Qatar',
9513
9508
  dialCode: '+974',
@@ -12870,7 +12865,12 @@ const multiSelectComboBoxMixin = (superclass) =>
12870
12865
 
12871
12866
  // eslint-disable-next-line class-methods-use-this
12872
12867
  #renderItem = ({ displayName, value, label }) => {
12873
- return `<span data-name="${label}" data-id="${value}">${displayName || label}</span>`;
12868
+ const ele = document.createElement('span');
12869
+ ele.setAttribute('data-name', label);
12870
+ ele.setAttribute('data-id', value);
12871
+ ele.textContent = displayName || label;
12872
+
12873
+ return ele.outerHTML;
12874
12874
  };
12875
12875
 
12876
12876
  #data;