@brightspace-ui/core 3.79.1 → 3.79.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.
@@ -16,21 +16,21 @@ export class SelectionInfo {
16
16
  if (!allEnabledSelected) allEnabledSelected = false;
17
17
  if (!keys) keys = [];
18
18
  if (!state) state = SelectionInfo.states.none;
19
- this._allEnabledSelected = allEnabledSelected;
20
- this._keys = keys;
21
- this._state = state;
19
+ this.#allEnabledSelected = allEnabledSelected;
20
+ this.#keys = keys;
21
+ this.#state = state;
22
22
  }
23
23
 
24
24
  get allEnabledSelected() {
25
- return this._allEnabledSelected;
25
+ return this.#allEnabledSelected;
26
26
  }
27
27
 
28
28
  get keys() {
29
- return this._keys;
29
+ return this.#keys;
30
30
  }
31
31
 
32
32
  get state() {
33
- return this._state;
33
+ return this.#state;
34
34
  }
35
35
 
36
36
  static get states() {
@@ -42,6 +42,10 @@ export class SelectionInfo {
42
42
  };
43
43
  }
44
44
 
45
+ #allEnabledSelected;
46
+ #keys;
47
+ #state;
48
+
45
49
  }
46
50
 
47
51
  export const SelectionMixin = superclass => class extends RtlMixin(CollectionMixin(superclass)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.79.1",
3
+ "version": "3.79.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",