@mint-ui/map 0.9.1-beta → 0.9.2-beta

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.
@@ -65,6 +65,6 @@ export declare abstract class MintMapController {
65
65
  getBaseToMapZoom(zoomBase: number): number;
66
66
  getMapToBaseZoom(mapZoom: number): number;
67
67
  focusPositionsToFitViewport(positions: Position[]): void;
68
- morph(position: Position, zoom: number, option?: Record<string, string>): void;
68
+ morph(position: Position, zoom: number, option?: Record<string, unknown>): void;
69
69
  printStatus(): void;
70
70
  }
@@ -25,7 +25,7 @@ export interface MintMapProps extends MintMapEvents {
25
25
  * Map Script 로드시에 파라미터를 추가
26
26
  * @description 내부적으로 key=value 의 형태로 처리된다.
27
27
  */
28
- scriptParams?: Record<string, unknown>;
28
+ scriptParams?: Record<string, string>;
29
29
  /**
30
30
  * Map 종류에 따른 추가 맵 ID
31
31
  * @description 특정 지도에서는 맵ID 가 추가로 요구된다 (ex: Google Maps)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mint-ui/map",
3
- "version": "0.9.1-beta",
3
+ "version": "0.9.2-beta",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "browser": "./dist/index.umd.js",