@vtx/cs-map-layer 1.0.0 → 1.0.2
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/dist/_util/interface.js
CHANGED
|
@@ -18,6 +18,7 @@ export var DEVICE_CODE = /*#__PURE__*/function (DEVICE_CODE) {
|
|
|
18
18
|
DEVICE_CODE["FLOW_STATION"] = "FLOW_STATION";
|
|
19
19
|
DEVICE_CODE["WATER_METER"] = "WATER_METER";
|
|
20
20
|
DEVICE_CODE["LEVEL_SENSOR"] = "LEVEL_SENSOR";
|
|
21
|
+
DEVICE_CODE["MANOMETER"] = "MANOMETER";
|
|
21
22
|
DEVICE_CODE["WATER_QUALITY_DETECTOR"] = "WATER_QUALITY_DETECTOR";
|
|
22
23
|
DEVICE_CODE["WATER_JWQTCGQ"] = "WATER_JWQTCGQ";
|
|
23
24
|
DEVICE_CODE["INCLINOMETER"] = "INCLINOMETER";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtx/cs-map-layer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "React components for Vortex",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -11,14 +11,13 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "father build",
|
|
13
13
|
"build:watch": "father dev",
|
|
14
|
-
"dev": "dumi dev",
|
|
15
|
-
"docs:build": "dumi build",
|
|
14
|
+
"dev": "npm run cesium:fix && dumi dev",
|
|
15
|
+
"docs:build": "npm run cesium:fix && dumi build",
|
|
16
16
|
"doctor": "father doctor",
|
|
17
|
-
"
|
|
17
|
+
"cesium:fix": "node ./scripts/cesium-fix.js",
|
|
18
18
|
"lint": "npm run lint:es && npm run lint:css",
|
|
19
19
|
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
|
20
20
|
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
|
21
|
-
"prepare": "husky install && dumi setup",
|
|
22
21
|
"prepublishOnly": "father doctor && npm run build",
|
|
23
22
|
"start": "npm run dev"
|
|
24
23
|
},
|
|
@@ -51,16 +50,11 @@
|
|
|
51
50
|
]
|
|
52
51
|
},
|
|
53
52
|
"dependencies": {
|
|
54
|
-
"@ant-design/icons": "4.7.0",
|
|
55
|
-
"@vtx/cs-map": "^1.0.43",
|
|
56
|
-
"@vtx/map-icon": "2.0.2",
|
|
57
53
|
"@vtx/utils": "latest",
|
|
58
|
-
"ahooks": "^3.1.5",
|
|
59
|
-
"axios": "^0.21.1",
|
|
60
54
|
"cesium": "1.90.0",
|
|
61
55
|
"lodash": "^4.17.21",
|
|
62
56
|
"moment": "^2.29.1",
|
|
63
|
-
"qs": "^6.
|
|
57
|
+
"qs": "^6.0.0"
|
|
64
58
|
},
|
|
65
59
|
"devDependencies": {
|
|
66
60
|
"@babel/runtime": "^7.6.3",
|
|
@@ -82,10 +76,20 @@
|
|
|
82
76
|
"prettier-plugin-packagejson": "^2.2.18",
|
|
83
77
|
"react": "^18.0.0",
|
|
84
78
|
"react-dom": "^18.0.0",
|
|
79
|
+
"@ant-design/icons": "4.7.0",
|
|
80
|
+
"@vtx/cs-map": "^1.0.43",
|
|
81
|
+
"@vtx/map-icon": "2.0.2",
|
|
82
|
+
"ahooks": "^3.1.5",
|
|
83
|
+
"axios": "^0.21.1",
|
|
84
|
+
"antd": "4.20.5",
|
|
85
85
|
"stylelint": "^14.9.1"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"antd": ">4.0.0",
|
|
89
|
+
"@vtx/map-icon": ">=2.0.0",
|
|
90
|
+
"@vtx/cs-map": ">=1.0.40",
|
|
91
|
+
"axios": ">=0.21.1",
|
|
92
|
+
"@ant-design/icons": ">=4.0.0",
|
|
89
93
|
"react": ">=16.9.0",
|
|
90
94
|
"react-dom": ">=16.9.0"
|
|
91
95
|
},
|