@descope/web-components-ui 1.0.248 → 1.0.250

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
@@ -567,6 +567,7 @@ const booleanAttributesList = [
567
567
  'password-visible',
568
568
  'opening',
569
569
  'closing',
570
+ 'has-no-options',
570
571
  ];
571
572
 
572
573
  const isBooleanAttribute = (attr) => {
@@ -6922,6 +6923,8 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
6922
6923
  this.items.forEach((item) => {
6923
6924
  if (values.includes(item.value)) {
6924
6925
  item.setAttribute('selected', 'true');
6926
+ } else {
6927
+ item.removeAttribute('selected');
6925
6928
  }
6926
6929
  });
6927
6930
  }