@brightspace-ui/core 3.79.1 → 3.79.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
20
|
-
this
|
21
|
-
this
|
19
|
+
this.#allEnabledSelected = allEnabledSelected;
|
20
|
+
this.#keys = keys;
|
21
|
+
this.#state = state;
|
22
22
|
}
|
23
23
|
|
24
24
|
get allEnabledSelected() {
|
25
|
-
return this
|
25
|
+
return this.#allEnabledSelected;
|
26
26
|
}
|
27
27
|
|
28
28
|
get keys() {
|
29
|
-
return this
|
29
|
+
return this.#keys;
|
30
30
|
}
|
31
31
|
|
32
32
|
get state() {
|
33
|
-
return this
|
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.
|
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",
|