@mint-ui/map 0.1.1-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.
- package/.eslintrc.js +110 -0
- package/LICENSE +21 -0
- package/README.md +15 -0
- package/dist/components/mint-map/MintMap.d.ts +81 -0
- package/dist/components/mint-map/MintMap.js +206 -0
- package/dist/components/mint-map/MintMap.module.scss.js +13 -0
- package/dist/components/mint-map/core/MintMapController.d.ts +32 -0
- package/dist/components/mint-map/core/MintMapController.js +56 -0
- package/dist/components/mint-map/core/MintMapCore.d.ts +3 -0
- package/dist/components/mint-map/core/MintMapCore.js +69 -0
- package/dist/components/mint-map/core/MintMapCore.module.scss.js +13 -0
- package/dist/components/mint-map/core/advanced/MapBuildingProjection.d.ts +15 -0
- package/dist/components/mint-map/core/advanced/MapBuildingProjection.js +173 -0
- package/dist/components/mint-map/core/hooks/MarkerMovingHook.d.ts +6 -0
- package/dist/components/mint-map/core/hooks/MarkerMovingHook.js +145 -0
- package/dist/components/mint-map/core/index.d.ts +7 -0
- package/dist/components/mint-map/core/provider/MintMapProvider.d.ts +8 -0
- package/dist/components/mint-map/core/provider/MintMapProvider.js +30 -0
- package/dist/components/mint-map/core/util/animation.d.ts +16 -0
- package/dist/components/mint-map/core/util/animation.js +70 -0
- package/dist/components/mint-map/core/util/calculate.d.ts +29 -0
- package/dist/components/mint-map/core/util/calculate.js +167 -0
- package/dist/components/mint-map/core/util/waiting.d.ts +1 -0
- package/dist/components/mint-map/core/wrapper/MapControlWrapper.d.ts +11 -0
- package/dist/components/mint-map/core/wrapper/MapControlWrapper.js +77 -0
- package/dist/components/mint-map/core/wrapper/MapMarkerWrapper.d.ts +23 -0
- package/dist/components/mint-map/core/wrapper/MapMarkerWrapper.js +163 -0
- package/dist/components/mint-map/core/wrapper/MapPolygonWrapper.d.ts +5 -0
- package/dist/components/mint-map/core/wrapper/MapPolygonWrapper.js +39 -0
- package/dist/components/mint-map/core/wrapper/MapPolylineWrapper.d.ts +5 -0
- package/dist/components/mint-map/core/wrapper/MapPolylineWrapper.js +39 -0
- package/dist/components/mint-map/core/wrapper/MintMapWrapper.module.scss.js +13 -0
- package/dist/components/mint-map/google/GoogleMintMapController.d.ts +34 -0
- package/dist/components/mint-map/index.d.ts +2 -0
- package/dist/components/mint-map/naver/NaverMintMapController.d.ts +33 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +1096 -0
- package/dist/index.js +23 -0
- package/dist/index.umd.js +1113 -0
- package/package.json +74 -0
- package/test.ts +7 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mint-ui/map",
|
|
3
|
+
"version": "0.1.1-beta",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"module": "./dist/index.es.js",
|
|
6
|
+
"browser": "./dist/index.umd.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"repository": "https://github.com/dev-rsquare/mint-ui-map",
|
|
9
|
+
"author": "RSQUARE",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"private": false,
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"@babel/core": "^7.18.2",
|
|
14
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
15
|
+
"@rollup/plugin-commonjs": "^22.0.0",
|
|
16
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
17
|
+
"@rollup/plugin-typescript": "^8.3.2",
|
|
18
|
+
"@storybook/addon-actions": "^6.5.7",
|
|
19
|
+
"@storybook/addon-essentials": "^6.5.7",
|
|
20
|
+
"@storybook/addon-interactions": "^6.5.7",
|
|
21
|
+
"@storybook/addon-links": "^6.5.7",
|
|
22
|
+
"@storybook/builder-webpack5": "^6.5.7",
|
|
23
|
+
"@storybook/manager-webpack5": "^6.5.7",
|
|
24
|
+
"@storybook/preset-scss": "^1.0.3",
|
|
25
|
+
"@storybook/react": "^6.5.7",
|
|
26
|
+
"@storybook/testing-library": "^0.0.11",
|
|
27
|
+
"@types/classnames": "^2.3.1",
|
|
28
|
+
"@types/react": "^18.0.12",
|
|
29
|
+
"@types/react-dom": "^18.0.9",
|
|
30
|
+
"@types/uuid": "^9.0.0",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
32
|
+
"@typescript-eslint/parser": "^5.27.0",
|
|
33
|
+
"babel-loader": "^8.2.5",
|
|
34
|
+
"babel-plugin-react-icons": "^0.1.1",
|
|
35
|
+
"css-loader": "^6.7.1",
|
|
36
|
+
"eslint": "^8.17.0",
|
|
37
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
38
|
+
"eslint-config-prettier": "^8.5.0",
|
|
39
|
+
"eslint-plugin-import": "^2.26.0",
|
|
40
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
41
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
42
|
+
"eslint-plugin-react": "^7.30.0",
|
|
43
|
+
"eslint-plugin-react-hooks": "^4.5.0",
|
|
44
|
+
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
45
|
+
"eslint-plugin-storybook": "^0.5.12",
|
|
46
|
+
"postcss": "^8.4.14",
|
|
47
|
+
"react": "^18.1.0",
|
|
48
|
+
"react-dom": "^18.1.0",
|
|
49
|
+
"rollup": "^2.75.5",
|
|
50
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
51
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
52
|
+
"sass": "^1.52.2",
|
|
53
|
+
"sass-loader": "^13.0.0",
|
|
54
|
+
"shx": "^0.3.4",
|
|
55
|
+
"style-loader": "^3.3.1",
|
|
56
|
+
"typescript": "^4.7.3"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@types/google.maps": "^3.50.5",
|
|
60
|
+
"@types/navermaps": "^3.6.1",
|
|
61
|
+
"axios": "^1.2.0",
|
|
62
|
+
"classnames": "^2.3.1",
|
|
63
|
+
"style-inject": "^0.3.0",
|
|
64
|
+
"uuid": "^9.0.0",
|
|
65
|
+
"xml-js": "^1.6.11"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"storybook": "start-storybook -p 3000",
|
|
69
|
+
"build-storybook": "build-storybook",
|
|
70
|
+
"prebuild": "shx rm -rf ./dist",
|
|
71
|
+
"build": "rollup -c",
|
|
72
|
+
"postbuild": "shx rm -rf ./dist/dist"
|
|
73
|
+
}
|
|
74
|
+
}
|