@brightspace-ui/core 2.24.1 → 2.24.2

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.
@@ -111,7 +111,7 @@ export const SelectionMixin = superclass => class extends RtlMixin(superclass) {
111
111
  this._selectAllPages = (selected && selectAllPages);
112
112
 
113
113
  this._selectionSelectables.forEach(selectable => {
114
- if (!!selectable.selected !== selected) {
114
+ if (!selectable.disabled && !!selectable.selected !== selected) {
115
115
  selectable.selected = selected;
116
116
  }
117
117
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.24.1",
3
+ "version": "2.24.2",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",