g-ui-web 1.3.46 → 1.3.48

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/style.css.gz CHANGED
Binary file
@@ -51,5 +51,7 @@ export declare const setAjaxConfig: (config?: configProps) => void;
51
51
  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
- export declare const exportTable: (columns: any[], tableColumns: any[], token: string) => void;
54
+ export default class ExportTable {
55
+ constructor(exportConfig: any, searchParam: any[], token: string);
56
+ }
55
57
  export {};
package/package.json CHANGED
@@ -1,101 +1,101 @@
1
1
  {
2
- "name": "g-ui-web",
3
- "private": false,
4
- "description": "可视化组件库",
5
- "version": "1.3.46",
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
- }
2
+ "name": "g-ui-web",
3
+ "private": false,
4
+ "description": "可视化组件库",
5
+ "version": "1.3.48",
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
  }