@aibee/crc-bmap 0.0.24 → 0.0.26
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/example/src/main.ts +27 -24
- package/lib/bmap.cjs.min.js +2 -2
- package/lib/bmap.cjs.min.js.map +3 -3
- package/lib/bmap.esm.js +18 -3
- package/lib/bmap.esm.js.map +2 -2
- package/lib/bmap.esm.min.js +2 -2
- package/lib/bmap.esm.min.js.map +3 -3
- package/lib/bmap.min.js +2 -2
- package/lib/bmap.min.js.map +3 -3
- package/lib/src/operations/selection/selection.d.ts +1 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export declare class Selection extends EventDispatcher<SelectionEventMap> {
|
|
|
11
11
|
private _list;
|
|
12
12
|
private boxSelection;
|
|
13
13
|
private prevPanStatus?;
|
|
14
|
+
private prevRotateStatus?;
|
|
14
15
|
constructor(context: Context);
|
|
15
16
|
get list(): Set<Graphic>;
|
|
16
17
|
onPointerDown: (e: PointerEvent) => void;
|