@idmwx/idmui-gl3 3.4.8 → 3.4.9
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/index.js +2969 -1317
- package/dist/index.umd.cjs +13 -13
- package/dist/mapbox/src/helper.d.ts +1495 -0
- package/dist/mapbox/src/index.vue.d.ts +5 -4
- package/package.json +70 -70
|
@@ -44,6 +44,7 @@ declare namespace _sfc_main {
|
|
|
44
44
|
toggleVersion: number;
|
|
45
45
|
enc: string;
|
|
46
46
|
defaultMeteoToken: string;
|
|
47
|
+
helper: MapboxHelper;
|
|
47
48
|
};
|
|
48
49
|
const watch: {
|
|
49
50
|
ts: {
|
|
@@ -54,16 +55,15 @@ declare namespace _sfc_main {
|
|
|
54
55
|
handler(): void;
|
|
55
56
|
immediate: boolean;
|
|
56
57
|
};
|
|
58
|
+
enc: {
|
|
59
|
+
handler(newV: any, oldV: any): void;
|
|
60
|
+
};
|
|
57
61
|
activeWeatherLayers: {
|
|
58
62
|
handler(): false | undefined;
|
|
59
63
|
immediate: boolean;
|
|
60
64
|
};
|
|
61
65
|
'particleFactor.particle': {
|
|
62
66
|
handler(): void;
|
|
63
|
-
immediate: boolean;
|
|
64
|
-
};
|
|
65
|
-
enc: {
|
|
66
|
-
handler(newV: any, oldV: any): void;
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
namespace methods {
|
|
@@ -92,3 +92,4 @@ declare namespace _sfc_main {
|
|
|
92
92
|
function handleParticle(row: any): void;
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
+
import { MapboxHelper } from './helper.ts';
|
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@idmwx/idmui-gl3",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "3.4.
|
|
5
|
-
"description": "idm webgl3",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"idm",
|
|
9
|
-
"idmwx",
|
|
10
|
-
"webgl3"
|
|
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.0.4",
|
|
32
|
-
"@idmwx/idmwx-base": "^2.8.7",
|
|
33
|
-
"@mapbox/sphericalmercator": "^1.2.0",
|
|
34
|
-
"@turf/turf": "^6.5.0",
|
|
35
|
-
"axios": "^1.3.5",
|
|
36
|
-
"element-plus": "^2.3.5",
|
|
37
|
-
"js-md5": "^0.7.3",
|
|
38
|
-
"mapbox-gl": "3.0.0",
|
|
39
|
-
"moment": "^2.29.4",
|
|
40
|
-
"vue": "^3.2.36"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/mapbox-gl": "^3.1.0",
|
|
44
|
-
"@types/node": "^18.14.2",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
|
46
|
-
"@typescript-eslint/parser": "^5.53.0",
|
|
47
|
-
"@vitejs/plugin-vue": "^4.0.0",
|
|
48
|
-
"eslint": "^8.35.0",
|
|
49
|
-
"eslint-config-prettier": "^8.6.0",
|
|
50
|
-
"eslint-define-config": "^1.15.0",
|
|
51
|
-
"eslint-plugin-prettier": "^4.2.1",
|
|
52
|
-
"eslint-plugin-vue": "^9.9.0",
|
|
53
|
-
"lint-staged": "^13.1.2",
|
|
54
|
-
"prettier": "^2.8.4",
|
|
55
|
-
"sass": "^1.58.3",
|
|
56
|
-
"simple-git-hooks": "^2.8.1",
|
|
57
|
-
"stylelint": "^15.2.0",
|
|
58
|
-
"typescript": "^4.9.3",
|
|
59
|
-
"vite": "^4.1.0",
|
|
60
|
-
"vite-plugin-dts": "^2.0.2",
|
|
61
|
-
"vue-tsc": "^1.0.24"
|
|
62
|
-
},
|
|
63
|
-
"lint-staged": {
|
|
64
|
-
"*.{ts,tsx,js,vue}": "eslint --fix",
|
|
65
|
-
"*.{ts,tsx,js,vue,scss}": "prettier --write"
|
|
66
|
-
},
|
|
67
|
-
"simple-git-hooks": {
|
|
68
|
-
"pre-commit": "npx lint-staged"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@idmwx/idmui-gl3",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "3.4.9",
|
|
5
|
+
"description": "idm webgl3",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"idm",
|
|
9
|
+
"idmwx",
|
|
10
|
+
"webgl3"
|
|
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.0.4",
|
|
32
|
+
"@idmwx/idmwx-base": "^2.8.7",
|
|
33
|
+
"@mapbox/sphericalmercator": "^1.2.0",
|
|
34
|
+
"@turf/turf": "^6.5.0",
|
|
35
|
+
"axios": "^1.3.5",
|
|
36
|
+
"element-plus": "^2.3.5",
|
|
37
|
+
"js-md5": "^0.7.3",
|
|
38
|
+
"mapbox-gl": "3.0.0",
|
|
39
|
+
"moment": "^2.29.4",
|
|
40
|
+
"vue": "^3.2.36"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/mapbox-gl": "^3.1.0",
|
|
44
|
+
"@types/node": "^18.14.2",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
|
46
|
+
"@typescript-eslint/parser": "^5.53.0",
|
|
47
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
48
|
+
"eslint": "^8.35.0",
|
|
49
|
+
"eslint-config-prettier": "^8.6.0",
|
|
50
|
+
"eslint-define-config": "^1.15.0",
|
|
51
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
52
|
+
"eslint-plugin-vue": "^9.9.0",
|
|
53
|
+
"lint-staged": "^13.1.2",
|
|
54
|
+
"prettier": "^2.8.4",
|
|
55
|
+
"sass": "^1.58.3",
|
|
56
|
+
"simple-git-hooks": "^2.8.1",
|
|
57
|
+
"stylelint": "^15.2.0",
|
|
58
|
+
"typescript": "^4.9.3",
|
|
59
|
+
"vite": "^4.1.0",
|
|
60
|
+
"vite-plugin-dts": "^2.0.2",
|
|
61
|
+
"vue-tsc": "^1.0.24"
|
|
62
|
+
},
|
|
63
|
+
"lint-staged": {
|
|
64
|
+
"*.{ts,tsx,js,vue}": "eslint --fix",
|
|
65
|
+
"*.{ts,tsx,js,vue,scss}": "prettier --write"
|
|
66
|
+
},
|
|
67
|
+
"simple-git-hooks": {
|
|
68
|
+
"pre-commit": "npx lint-staged"
|
|
69
|
+
}
|
|
70
|
+
}
|