@descope/web-components-ui 1.0.248 → 1.0.249

Sign up to get free protection for your applications and to get access to all the features.
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
  }