@idmwx/idmui-gl4 0.1.6 → 0.1.7

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 (27) hide show
  1. package/dist/dark-map.png +0 -0
  2. package/dist/index.js +41576 -44309
  3. package/dist/index.umd.cjs +15 -26
  4. package/dist/mapbox/index.d.ts +2 -2
  5. package/dist/mapbox/src/components/map/index.vue.d.ts +6 -6
  6. package/dist/mapbox/src/components/{other/measure.vue.d.ts → measure/index.vue.d.ts} +3 -1
  7. package/dist/mapbox/src/components/{otherLayer.vue.d.ts → other/index.vue.d.ts} +3 -2
  8. package/dist/mapbox/src/components/other/latLng.vue.d.ts +16 -27
  9. package/dist/mapbox/src/components/{other/spot.vue.d.ts → spot/index.vue.d.ts} +0 -1
  10. package/dist/mapbox/src/components/{weather/tropical.vue.d.ts → tropical/index.vue.d.ts} +37 -11
  11. package/dist/mapbox/src/components/weather/currentParticle.vue.d.ts +5 -5
  12. package/dist/mapbox/src/components/weather/iceCover.vue.d.ts +4 -4
  13. package/dist/mapbox/src/components/weather/iceEdge.vue.d.ts +4 -4
  14. package/dist/mapbox/src/components/weather/iceThickness.vue.d.ts +4 -4
  15. package/dist/mapbox/src/components/{meteoLayer.vue.d.ts → weather/index.vue.d.ts} +12 -29
  16. package/dist/mapbox/src/components/weather/precip3h.vue.d.ts +4 -4
  17. package/dist/mapbox/src/components/weather/sigWave.vue.d.ts +4 -4
  18. package/dist/mapbox/src/components/weather/temp.vue.d.ts +4 -4
  19. package/dist/mapbox/src/components/weather/visibility.vue.d.ts +4 -4
  20. package/dist/mapbox/src/components/weather/waterTemp.vue.d.ts +4 -10
  21. package/dist/mapbox/src/components/weather/windBarbs.vue.d.ts +2 -2
  22. package/dist/mapbox/src/components/weather/windParticle.vue.d.ts +5 -5
  23. package/dist/mapbox/src/helper/mapbox.d.ts +9 -0
  24. package/dist/mapbox/src/{helper.d.ts → helper/viewport.d.ts} +0 -12
  25. package/dist/mapbox/src/index.vue.d.ts +1 -4
  26. package/dist/style.css +1 -1
  27. package/package.json +82 -75
package/package.json CHANGED
@@ -1,75 +1,82 @@
1
- {
2
- "name": "@idmwx/idmui-gl4",
3
- "private": false,
4
- "version": "0.1.6",
5
- "description": "idm webgl4",
6
- "type": "module",
7
- "keywords": [
8
- "idm",
9
- "idmwx",
10
- "webgl4"
11
- ],
12
- "author": "idm",
13
- "contributors": [
14
- "ChenHeng"
15
- ],
16
- "license": "GPL",
17
- "files": [
18
- "dist"
19
- ],
20
- "main": "./dist/index.umd.cjs",
21
- "module": "./dist/index.js",
22
- "types": "index.d.ts",
23
- "scripts": {
24
- "dev": "vite --host 0.0.0.0 --config ./build/base.config.ts",
25
- "build": "vue-tsc --noEmit && vite build --config ./build/lib.config.ts",
26
- "lint:fix": "eslint --fix --ext .js,.ts,.vue .",
27
- "prettier": "yarn lint:fix && prettier --write '**/*.{js,ts,vue}'",
28
- "release": "yarn build && yarn publish --access public"
29
- },
30
- "dependencies": {
31
- "@idm-plugin/geo": "^1.8.6",
32
- "@idm-plugin/meteo": "^0.5.2",
33
- "@idm-plugin/tag": "^0.2.6",
34
- "@idm-plugin/tag-nop": "^0.0.7",
35
- "@idmui/style": "^0.1.7",
36
- "@mapbox/sphericalmercator": "^1.2.0",
37
- "@turf/turf": "^6.5.0",
38
- "axios": "^1.3.5",
39
- "echarts": "^5.6.0",
40
- "element-plus": "^2.3.5",
41
- "js-md5": "^0.7.3",
42
- "mapbox-gl": "2.11.1",
43
- "moment": "^2.29.4",
44
- "moment-timezone": "^0.5.47",
45
- "vue": "^3.2.36"
46
- },
47
- "devDependencies": {
48
- "@types/mapbox-gl": "^3.1.0",
49
- "@types/node": "^18.14.2",
50
- "@typescript-eslint/eslint-plugin": "^5.53.0",
51
- "@typescript-eslint/parser": "^5.53.0",
52
- "@vitejs/plugin-vue": "^4.0.0",
53
- "eslint": "^8.35.0",
54
- "eslint-config-prettier": "^8.6.0",
55
- "eslint-define-config": "^1.15.0",
56
- "eslint-plugin-prettier": "^4.2.1",
57
- "eslint-plugin-vue": "^9.9.0",
58
- "lint-staged": "^13.1.2",
59
- "prettier": "^2.8.4",
60
- "sass": "^1.58.3",
61
- "simple-git-hooks": "^2.8.1",
62
- "stylelint": "^15.2.0",
63
- "typescript": "^4.9.3",
64
- "vite": "^4.1.0",
65
- "vite-plugin-dts": "^2.0.2",
66
- "vue-tsc": "^1.0.24"
67
- },
68
- "lint-staged": {
69
- "*.{ts,tsx,js,vue}": "eslint --fix",
70
- "*.{ts,tsx,js,vue,scss}": "prettier --write"
71
- },
72
- "simple-git-hooks": {
73
- "pre-commit": "npx lint-staged"
74
- }
75
- }
1
+ {
2
+ "name": "@idmwx/idmui-gl4",
3
+ "private": false,
4
+ "version": "0.1.7",
5
+ "description": "idm webgl4",
6
+ "type": "module",
7
+ "keywords": [
8
+ "idm",
9
+ "idmwx",
10
+ "webgl4"
11
+ ],
12
+ "author": "idm",
13
+ "contributors": [
14
+ "ChenHeng"
15
+ ],
16
+ "license": "GPL",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "main": "./dist/index.umd.cjs",
21
+ "module": "./dist/index.js",
22
+ "types": "index.d.ts",
23
+ "scripts": {
24
+ "dev": "vite --host 0.0.0.0 --config ./build/base.config.ts",
25
+ "build": "vue-tsc --noEmit && vite build --config ./build/lib.config.ts",
26
+ "lint:fix": "eslint --fix --ext .js,.ts,.vue .",
27
+ "prettier": "yarn lint:fix && prettier --write '**/*.{js,ts,vue}'",
28
+ "release": "yarn build && yarn publish --access public"
29
+ },
30
+ "dependencies": {
31
+ "@mapbox/sphericalmercator": "^1.2.0",
32
+ "@turf/turf": "^6.5.0",
33
+ "axios": "^1.3.5",
34
+ "js-md5": "^0.7.3",
35
+ "mapbox-gl": "2.11.1",
36
+ "moment": "^2.29.4",
37
+ "moment-timezone": "^0.5.47",
38
+ "vue": "^3.2.36"
39
+ },
40
+ "peerDependencies": {
41
+ "@idm-plugin/geo": "^1.8.6",
42
+ "@idm-plugin/meteo": "^0.5.2",
43
+ "@idm-plugin/tag": "^0.2.6",
44
+ "@idm-plugin/tag-nop": "^0.0.7",
45
+ "@mdi/font": "^7.4.47",
46
+ "vuetify": "^3.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@idm-plugin/geo": "^1.8.6",
50
+ "@idm-plugin/meteo": "^0.5.2",
51
+ "@idm-plugin/tag": "^0.2.6",
52
+ "@idm-plugin/tag-nop": "^0.0.7",
53
+ "@mdi/font": "^7.4.47",
54
+ "@types/mapbox-gl": "^3.1.0",
55
+ "@types/node": "^18.14.2",
56
+ "@typescript-eslint/eslint-plugin": "^5.53.0",
57
+ "@typescript-eslint/parser": "^5.53.0",
58
+ "@vitejs/plugin-vue": "^4.0.0",
59
+ "eslint": "^8.35.0",
60
+ "eslint-config-prettier": "^8.6.0",
61
+ "eslint-define-config": "^1.15.0",
62
+ "eslint-plugin-prettier": "^4.2.1",
63
+ "eslint-plugin-vue": "^9.9.0",
64
+ "lint-staged": "^13.1.2",
65
+ "prettier": "^2.8.4",
66
+ "sass": "^1.58.3",
67
+ "simple-git-hooks": "^2.8.1",
68
+ "stylelint": "^15.2.0",
69
+ "typescript": "^4.9.3",
70
+ "vite": "^4.1.0",
71
+ "vite-plugin-dts": "^2.0.2",
72
+ "vue-tsc": "^1.0.24",
73
+ "vuetify": "^3.0.0"
74
+ },
75
+ "lint-staged": {
76
+ "*.{ts,tsx,js,vue}": "eslint --fix",
77
+ "*.{ts,tsx,js,vue,scss}": "prettier --write"
78
+ },
79
+ "simple-git-hooks": {
80
+ "pre-commit": "npx lint-staged"
81
+ }
82
+ }