@vtx/ol-map 1.0.145 → 1.0.147
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/fly-line-layer/FlyLineLayer.js +1 -0
- package/lib/fly-line-layer/FlyLineLayer.js.map +1 -1
- package/lib/fly-line-layer/index.js +1 -0
- package/lib/fly-line-layer/index.js.map +1 -1
- package/lib/group-layer/GroupLayer.js +1 -1
- package/lib/group-layer/GroupLayer.js.map +1 -1
- package/lib/legend/index.js +50 -18
- package/lib/legend/index.js.map +1 -1
- package/lib/legend/style/index.css +35 -0
- package/lib/legend/style/index.less +27 -0
- package/lib/map/Layers.js +1 -1
- package/lib/map/Layers.js.map +1 -1
- package/lib/path-play-back/PathPlayBack.js +33 -7
- package/lib/path-play-back/PathPlayBack.js.map +1 -1
- package/lib/path-play-back/index.js +9 -1
- package/lib/path-play-back/index.js.map +1 -1
- package/package.json +120 -120
package/package.json
CHANGED
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@vtx/ol-map",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "React components for Vortex",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"react",
|
|
7
|
-
"react-component"
|
|
8
|
-
],
|
|
9
|
-
"files": [
|
|
10
|
-
"lib"
|
|
11
|
-
],
|
|
12
|
-
"main": "lib/index.js",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"start": "dumi dev",
|
|
15
|
-
"build": "dumi build",
|
|
16
|
-
"compile": "gulp compile",
|
|
17
|
-
"lint": "npm run lint:script && npm run lint:style",
|
|
18
|
-
"lint:script": "eslint components --ext .js,.jsx",
|
|
19
|
-
"lint:style": "stylelint components/**/*.less --syntax less",
|
|
20
|
-
"fix": "eslint --fix --ext .js,.jsx components && npm run style:fix",
|
|
21
|
-
"style:fix": "stylelint components/**/*.less --syntax less --fix",
|
|
22
|
-
"prettier": "prettier -c --write **/*",
|
|
23
|
-
"pretty-quick": "pretty-quick",
|
|
24
|
-
"pub": "npm publish --access=public",
|
|
25
|
-
"bump": "gulp bump --prerelease",
|
|
26
|
-
"release": "release-it --no-npm.publish",
|
|
27
|
-
"version": "npm run changelog && git add CHANGELOG.md",
|
|
28
|
-
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0"
|
|
29
|
-
},
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "https://git.cloudhw.cn:3443/front-end/maps/ol-map.git"
|
|
33
|
-
},
|
|
34
|
-
"license": "ISC",
|
|
35
|
-
"bugs": {
|
|
36
|
-
"url": "https://git.cloudhw.cn:3443/front-end/maps/ol-map/-/issues"
|
|
37
|
-
},
|
|
38
|
-
"homepage": "https://git.cloudhw.cn:3443/front-end/maps/ol-map.git",
|
|
39
|
-
"husky": {
|
|
40
|
-
"hooks": {
|
|
41
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"release-it": {
|
|
45
|
-
"git": {
|
|
46
|
-
"commitMessage": "chore: release v${version}"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"changelog": {
|
|
50
|
-
"emojis": true,
|
|
51
|
-
"authorName": true
|
|
52
|
-
},
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@ant-design/icons": "4.7.0",
|
|
55
|
-
"@turf/turf": "^6.5.0",
|
|
56
|
-
"@vtx/map-icon": "latest",
|
|
57
|
-
"@vtx/utils": "^1.0.10",
|
|
58
|
-
"ahooks": "^3.1.5",
|
|
59
|
-
"antd": "4.20.5",
|
|
60
|
-
"axios": "^0.21.1",
|
|
61
|
-
"classnames": "^2.2.6",
|
|
62
|
-
"crypto-js": "^4.2.0",
|
|
63
|
-
"html2canvas": "^1.4.1",
|
|
64
|
-
"lodash": "^4.17.21",
|
|
65
|
-
"moment": "^2.29.1",
|
|
66
|
-
"ol": "6.15.1",
|
|
67
|
-
"print-js": "^1.6.0",
|
|
68
|
-
"prop-types": "^15.8.1",
|
|
69
|
-
"qs": "^6.14.0"
|
|
70
|
-
},
|
|
71
|
-
"peerDependencies": {
|
|
72
|
-
"react": ">=16.12.0",
|
|
73
|
-
"react-dom": ">=16.12.0"
|
|
74
|
-
},
|
|
75
|
-
"devDependencies": {
|
|
76
|
-
"@babel/cli": "^7.6.4",
|
|
77
|
-
"@babel/core": "^7.6.4",
|
|
78
|
-
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
79
|
-
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
80
|
-
"@babel/preset-env": "^7.6.3",
|
|
81
|
-
"@babel/preset-react": "^7.6.3",
|
|
82
|
-
"@babel/runtime": "^7.6.3",
|
|
83
|
-
"@commitlint/cli": "^8.3.4",
|
|
84
|
-
"@commitlint/config-conventional": "^8.3.4",
|
|
85
|
-
"@umijs/plugin-locale": "^0.10.8",
|
|
86
|
-
"babel-eslint": "^10.1.0",
|
|
87
|
-
"babel-plugin-import": "^1.13.3",
|
|
88
|
-
"conventional-changelog-cli": "^2.1.1",
|
|
89
|
-
"conventional-changelog-custom-config": "^0.3.1",
|
|
90
|
-
"dumi": "^1.0.10",
|
|
91
|
-
"echarts": "^5.5.1",
|
|
92
|
-
"echarts-for-react": "^3.0.2",
|
|
93
|
-
"eslint": "^6.6.0",
|
|
94
|
-
"eslint-plugin-react": "^7.21.5",
|
|
95
|
-
"eslint-plugin-react-hooks": "^4.2.0",
|
|
96
|
-
"gulp": "^4.0.2",
|
|
97
|
-
"gulp-babel": "^8.0.0",
|
|
98
|
-
"gulp-bump": "^3.1.3",
|
|
99
|
-
"gulp-clean": "^0.4.0",
|
|
100
|
-
"gulp-less": "5.0.0",
|
|
101
|
-
"gulp-sourcemaps": "^2.6.5",
|
|
102
|
-
"husky": "^4.0.7",
|
|
103
|
-
"jquery": "^3.6.0",
|
|
104
|
-
"less": "^3.10.3",
|
|
105
|
-
"less-plugin-autoprefix": "^2.0.0",
|
|
106
|
-
"less-plugin-npm-import": "^2.1.0",
|
|
107
|
-
"merge2": "^1.3.0",
|
|
108
|
-
"prettier": "^1.18.2",
|
|
109
|
-
"pretty-quick": "^2.0.0",
|
|
110
|
-
"release-it": "^14.6.1",
|
|
111
|
-
"rimraf": "^3.0.0",
|
|
112
|
-
"stylelint": "11.0.0",
|
|
113
|
-
"stylelint-config-prettier": "^6.0.0",
|
|
114
|
-
"stylelint-config-rational-order": "^0.1.2",
|
|
115
|
-
"stylelint-config-standard": "^19.0.0",
|
|
116
|
-
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
|
|
117
|
-
"stylelint-order": "^3.0.0",
|
|
118
|
-
"through2": "^3.0.1"
|
|
119
|
-
}
|
|
120
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@vtx/ol-map",
|
|
3
|
+
"version": "1.0.147",
|
|
4
|
+
"description": "React components for Vortex",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"react-component"
|
|
8
|
+
],
|
|
9
|
+
"files": [
|
|
10
|
+
"lib"
|
|
11
|
+
],
|
|
12
|
+
"main": "lib/index.js",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "dumi dev",
|
|
15
|
+
"build": "dumi build",
|
|
16
|
+
"compile": "gulp compile",
|
|
17
|
+
"lint": "npm run lint:script && npm run lint:style",
|
|
18
|
+
"lint:script": "eslint components --ext .js,.jsx",
|
|
19
|
+
"lint:style": "stylelint components/**/*.less --syntax less",
|
|
20
|
+
"fix": "eslint --fix --ext .js,.jsx components && npm run style:fix",
|
|
21
|
+
"style:fix": "stylelint components/**/*.less --syntax less --fix",
|
|
22
|
+
"prettier": "prettier -c --write **/*",
|
|
23
|
+
"pretty-quick": "pretty-quick",
|
|
24
|
+
"pub": "npm publish --access=public",
|
|
25
|
+
"bump": "gulp bump --prerelease",
|
|
26
|
+
"release": "release-it --no-npm.publish",
|
|
27
|
+
"version": "npm run changelog && git add CHANGELOG.md",
|
|
28
|
+
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://git.cloudhw.cn:3443/front-end/maps/ol-map.git"
|
|
33
|
+
},
|
|
34
|
+
"license": "ISC",
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://git.cloudhw.cn:3443/front-end/maps/ol-map/-/issues"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://git.cloudhw.cn:3443/front-end/maps/ol-map.git",
|
|
39
|
+
"husky": {
|
|
40
|
+
"hooks": {
|
|
41
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"release-it": {
|
|
45
|
+
"git": {
|
|
46
|
+
"commitMessage": "chore: release v${version}"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"changelog": {
|
|
50
|
+
"emojis": true,
|
|
51
|
+
"authorName": true
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@ant-design/icons": "4.7.0",
|
|
55
|
+
"@turf/turf": "^6.5.0",
|
|
56
|
+
"@vtx/map-icon": "latest",
|
|
57
|
+
"@vtx/utils": "^1.0.10",
|
|
58
|
+
"ahooks": "^3.1.5",
|
|
59
|
+
"antd": "4.20.5",
|
|
60
|
+
"axios": "^0.21.1",
|
|
61
|
+
"classnames": "^2.2.6",
|
|
62
|
+
"crypto-js": "^4.2.0",
|
|
63
|
+
"html2canvas": "^1.4.1",
|
|
64
|
+
"lodash": "^4.17.21",
|
|
65
|
+
"moment": "^2.29.1",
|
|
66
|
+
"ol": "6.15.1",
|
|
67
|
+
"print-js": "^1.6.0",
|
|
68
|
+
"prop-types": "^15.8.1",
|
|
69
|
+
"qs": "^6.14.0"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"react": ">=16.12.0",
|
|
73
|
+
"react-dom": ">=16.12.0"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@babel/cli": "^7.6.4",
|
|
77
|
+
"@babel/core": "^7.6.4",
|
|
78
|
+
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
79
|
+
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
80
|
+
"@babel/preset-env": "^7.6.3",
|
|
81
|
+
"@babel/preset-react": "^7.6.3",
|
|
82
|
+
"@babel/runtime": "^7.6.3",
|
|
83
|
+
"@commitlint/cli": "^8.3.4",
|
|
84
|
+
"@commitlint/config-conventional": "^8.3.4",
|
|
85
|
+
"@umijs/plugin-locale": "^0.10.8",
|
|
86
|
+
"babel-eslint": "^10.1.0",
|
|
87
|
+
"babel-plugin-import": "^1.13.3",
|
|
88
|
+
"conventional-changelog-cli": "^2.1.1",
|
|
89
|
+
"conventional-changelog-custom-config": "^0.3.1",
|
|
90
|
+
"dumi": "^1.0.10",
|
|
91
|
+
"echarts": "^5.5.1",
|
|
92
|
+
"echarts-for-react": "^3.0.2",
|
|
93
|
+
"eslint": "^6.6.0",
|
|
94
|
+
"eslint-plugin-react": "^7.21.5",
|
|
95
|
+
"eslint-plugin-react-hooks": "^4.2.0",
|
|
96
|
+
"gulp": "^4.0.2",
|
|
97
|
+
"gulp-babel": "^8.0.0",
|
|
98
|
+
"gulp-bump": "^3.1.3",
|
|
99
|
+
"gulp-clean": "^0.4.0",
|
|
100
|
+
"gulp-less": "5.0.0",
|
|
101
|
+
"gulp-sourcemaps": "^2.6.5",
|
|
102
|
+
"husky": "^4.0.7",
|
|
103
|
+
"jquery": "^3.6.0",
|
|
104
|
+
"less": "^3.10.3",
|
|
105
|
+
"less-plugin-autoprefix": "^2.0.0",
|
|
106
|
+
"less-plugin-npm-import": "^2.1.0",
|
|
107
|
+
"merge2": "^1.3.0",
|
|
108
|
+
"prettier": "^1.18.2",
|
|
109
|
+
"pretty-quick": "^2.0.0",
|
|
110
|
+
"release-it": "^14.6.1",
|
|
111
|
+
"rimraf": "^3.0.0",
|
|
112
|
+
"stylelint": "11.0.0",
|
|
113
|
+
"stylelint-config-prettier": "^6.0.0",
|
|
114
|
+
"stylelint-config-rational-order": "^0.1.2",
|
|
115
|
+
"stylelint-config-standard": "^19.0.0",
|
|
116
|
+
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
|
|
117
|
+
"stylelint-order": "^3.0.0",
|
|
118
|
+
"through2": "^3.0.1"
|
|
119
|
+
}
|
|
120
|
+
}
|