g-ui-web 1.3.47 → 1.3.49
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/g-ui-web.cjs +25 -25
- package/lib/g-ui-web.iife.js +25 -25
- package/lib/g-ui-web.iife.js.gz +0 -0
- package/lib/g-ui-web.js +521 -512
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +25 -25
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/utils/index.d.ts +1 -1
- package/package.json +99 -99
package/lib/style.css.gz
CHANGED
|
Binary file
|
package/lib/utils/index.d.ts
CHANGED
|
@@ -52,6 +52,6 @@ export declare const getAjaxConfig: (key?: string) => any;
|
|
|
52
52
|
export declare const typeofXAxis: (item: any) => "function" | "string" | "number" | "object" | "boolean" | "undefined" | "bigint" | "symbol" | "null";
|
|
53
53
|
export declare const typeIsEmpty: (item: any) => boolean;
|
|
54
54
|
export default class ExportTable {
|
|
55
|
-
constructor(exportConfig: any, searchParam: any[],
|
|
55
|
+
constructor(exportConfig: any, searchParam: any[], header: any);
|
|
56
56
|
}
|
|
57
57
|
export {};
|
package/package.json
CHANGED
|
@@ -1,101 +1,101 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
2
|
+
"name": "g-ui-web",
|
|
3
|
+
"private": false,
|
|
4
|
+
"description": "可视化组件库",
|
|
5
|
+
"version": "1.3.49",
|
|
6
|
+
"author": "wyu",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "lib/g-ui-web.umd.cjs",
|
|
10
|
+
"module": "lib/g-ui-web.umd.cjs",
|
|
11
|
+
"types": "lib/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"package.json",
|
|
14
|
+
"README.md",
|
|
15
|
+
"lib",
|
|
16
|
+
"global.d.ts"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "vite",
|
|
20
|
+
"type-check": "vue-tsc --noEmit",
|
|
21
|
+
"build": "vite build",
|
|
22
|
+
"build:browser": "vite -f iife build",
|
|
23
|
+
"lib:prettier": "prettier --write \"packages/**/*.{js,ts,json,css,less,scss,vue,html,md}\"",
|
|
24
|
+
"docs:prettier": "prettier --write \"docs/**/*.{js,ts,json,css,less,scss,vue,html,md}\"",
|
|
25
|
+
"docs": "vitepress dev docs",
|
|
26
|
+
"docs:build": "vitepress build docs"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@amap/amap-jsapi-loader": "^1.0.1",
|
|
30
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
31
|
+
"@rollup/plugin-replace": "^5.0.7",
|
|
32
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
33
|
+
"@types/lodash-es": "^4.17.12",
|
|
34
|
+
"@types/node": "^20.14.11",
|
|
35
|
+
"@types/path-browserify": "^1.0.2",
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
37
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
38
|
+
"@vitejs/plugin-vue": "^5.0.5",
|
|
39
|
+
"@vitejs/plugin-vue-jsx": "^4.0.1",
|
|
40
|
+
"@vue/shared": "^3.4.33",
|
|
41
|
+
"@vueuse/core": "^10.11.1",
|
|
42
|
+
"axios": "^1.7.5",
|
|
43
|
+
"chalk": "^5.3.0",
|
|
44
|
+
"consola": "^3.2.3",
|
|
45
|
+
"dayjs": "^1.11.13",
|
|
46
|
+
"echarts": "^5.6.0",
|
|
47
|
+
"element-plus": "^2.10.2",
|
|
48
|
+
"escape-html": "^1.0.3",
|
|
49
|
+
"eslint": "^9.32.0",
|
|
50
|
+
"eslint-config-alloy": "^5.1.2",
|
|
51
|
+
"eslint-plugin-vue": "^9.33.0",
|
|
52
|
+
"lodash-es": "^4.17.21",
|
|
53
|
+
"markdown-it": "^14.1.0",
|
|
54
|
+
"markdown-it-container": "^4.0.0",
|
|
55
|
+
"minimist": "^1.2.8",
|
|
56
|
+
"normalize.css": "^8.0.1",
|
|
57
|
+
"npm-run-all": "^4.1.5",
|
|
58
|
+
"path-browserify": "^1.0.1",
|
|
59
|
+
"prismjs": "^1.29.0",
|
|
60
|
+
"querystring": "^0.2.1",
|
|
61
|
+
"sass": "1.79.0",
|
|
62
|
+
"sass-loader": "^14.2.1",
|
|
63
|
+
"typescript": "^5.2.2",
|
|
64
|
+
"unplugin-vue-components": "^0.27.4",
|
|
65
|
+
"vite": "^5.3.4",
|
|
66
|
+
"vite-plugin-compression": "^0.5.1",
|
|
67
|
+
"vite-plugin-dts": "^4.0.2",
|
|
68
|
+
"vite-plugin-vue-setup-extend": "^0.4.0",
|
|
69
|
+
"vitepress": "^1.3.3",
|
|
70
|
+
"vue": "^3.5.17",
|
|
71
|
+
"vue-baidu-map-3x": "^1.0.39",
|
|
72
|
+
"vue-eslint-parser": "^10.2.0",
|
|
73
|
+
"vue-tsc": "^2.0.24",
|
|
74
|
+
"vuex": "^4.1.0",
|
|
75
|
+
"vxe-table": "^4.10.5",
|
|
76
|
+
"sortablejs": "^1.15.6"
|
|
77
|
+
},
|
|
78
|
+
"repository": {
|
|
79
|
+
"type": "git",
|
|
80
|
+
"url": "https://git.gtcloud.cn/tech-mgmt/ui/gt-ui"
|
|
81
|
+
},
|
|
82
|
+
"homepage": "https://viz-ui.gtcloud.cn/web-ui/",
|
|
83
|
+
"keywords": [
|
|
84
|
+
"element-ui",
|
|
85
|
+
"element-plus",
|
|
86
|
+
"vite",
|
|
87
|
+
"vite3",
|
|
88
|
+
"vitepress",
|
|
89
|
+
"vue",
|
|
90
|
+
"vue3",
|
|
91
|
+
"g-ui",
|
|
92
|
+
"g-ui-web",
|
|
93
|
+
"二次封装组件",
|
|
94
|
+
"封装组件",
|
|
95
|
+
"components"
|
|
96
|
+
],
|
|
97
|
+
"dependencies": {
|
|
98
|
+
"eslint-config-prettier": "^10.1.8",
|
|
99
|
+
"prettier": "^3.6.2"
|
|
100
|
+
}
|
|
101
101
|
}
|