bg2e-js 2.3.11 → 2.3.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bg2e-js",
3
- "version": "2.3.11",
3
+ "version": "2.3.12",
4
4
  "description": "a graphics engine for productivity applications",
5
5
  "main": "./dist/bg2e-js.js",
6
6
  "types": "./src/index.ts",
@@ -116,6 +116,14 @@ export default class SelectionManager {
116
116
  return this._selectionMode;
117
117
  }
118
118
 
119
+ setSelectionMode(mode: SelectionMode) {
120
+ this.selectionMode = mode;
121
+ }
122
+
123
+ setMultiSelectMode(mode: boolean) {
124
+ this.multiSelectMode = mode;
125
+ }
126
+
119
127
  set multiSelectMode(mode) {
120
128
  this._multiSelect = mode;
121
129
  this.clearSelection();