@soonspacejs/plugin-heat-map 2.13.4 → 2.13.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -98,9 +98,9 @@ export default class HeatMapPlugin {
98
98
  createDrawing(param: DrawingParam): CreateDrawing;
99
99
  setData(id: CreateParam['id'], data: CreateParam['data']): PluginObject | void;
100
100
  setDataPolygon(id: CreateParam['id'], data: Exclude<CreatePolygonParam['data'], undefined>): PluginObject | void;
101
- getById(id: PluginObject['id']): PluginObject | null;
101
+ getById(id: PluginObject['sid']): PluginObject | null;
102
102
  getByName(name: string): PluginObject[];
103
- removeById(id: PluginObject['id'] | string): boolean;
103
+ removeById(id: PluginObject['sid']): boolean;
104
104
  private createInitData;
105
105
  private _formatCanvasSize;
106
106
  private _formatData;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-heat-map",
3
3
  "pluginName": "HeatMapPlugin",
4
- "version": "2.13.4",
4
+ "version": "2.13.6",
5
5
  "description": "Haet-map plugin for SoonSpace.js",
6
6
  "main": "dist/index.esm.js",
7
7
  "module": "dist/index.esm.js",
@@ -16,8 +16,8 @@
16
16
  "dependencies": {
17
17
  "heatmap-ts": "^0.0.4"
18
18
  },
19
- "gitHead": "83e90d5d0264f95d32df7d367617b7300c5fe582",
19
+ "gitHead": "6c1113b3e61e448be7ce9463ed22a75f507d9f67",
20
20
  "peerDependencies": {
21
- "soonspacejs": "2.13.4"
21
+ "soonspacejs": "2.13.6"
22
22
  }
23
23
  }