@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.
@@ -886,6 +886,7 @@ const booleanAttributesList = [
886
886
  'password-visible',
887
887
  'opening',
888
888
  'closing',
889
+ 'has-no-options',
889
890
  ];
890
891
 
891
892
  const isBooleanAttribute = (attr) => {
@@ -8192,6 +8193,8 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
8192
8193
  this.items.forEach((item) => {
8193
8194
  if (values.includes(item.value)) {
8194
8195
  item.setAttribute('selected', 'true');
8196
+ } else {
8197
+ item.removeAttribute('selected');
8195
8198
  }
8196
8199
  });
8197
8200
  }