@aibee/crc-bmap 0.0.56 → 0.0.58

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/lib/src/bmap.d.ts CHANGED
@@ -37,6 +37,7 @@ export declare class BMap extends EventDispatcher<BmapEventMap> {
37
37
  floorDataMap: Map<string, GraphicInfo[]>;
38
38
  buildingGroundMap: Map<string, GraphicInfo | null>;
39
39
  currentBuildGround: GraphicInfo | null;
40
+ private observe;
40
41
  constructor(container: HTMLElement, config?: Partial<Config>);
41
42
  private loadGraphics;
42
43
  getBuildingKey({ brand, project, phase, building }: Omit<LoadQuery, "floor" | "ts" | "resource_type_list">): string;
@@ -130,7 +131,7 @@ export declare class BMap extends EventDispatcher<BmapEventMap> {
130
131
  getPois(): import("./elements").Poi[];
131
132
  clearPoi(): void;
132
133
  removeSelectGraphic(graphic: Graphic): void;
133
- resize(): void;
134
+ resize: () => void;
134
135
  dispose(): void;
135
136
  }
136
137
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aibee/crc-bmap",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "description": "",
5
5
  "main": "lib/bmap.min.js",
6
6
  "module": "lib/bmap.esm.min.js",
@@ -26,7 +26,6 @@
26
26
  "devDependencies": {
27
27
  "@types/lodash": "^4.14.199",
28
28
  "@types/node": "^20.8.3",
29
- "@types/three": "^0.156.0",
30
29
  "@types/tween.js": "^18.6.1",
31
30
  "esbuild": "^0.19.4",
32
31
  "eslint": "^8.51.0",
@@ -37,6 +36,7 @@
37
36
  "vite": "^4.4.11"
38
37
  },
39
38
  "dependencies": {
39
+ "@types/three": "^0.156.0",
40
40
  "@mars3d/heatmap.js": "^2.0.7",
41
41
  "@turf/turf": "^6.5.0",
42
42
  "@tweenjs/tween.js": "^21.0.0",