liyu-pc-base 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/README.md +1 -0
- package/dist/SearchRender-4500beb0.js +39100 -0
- package/dist/api/api-model.js +32 -0
- package/dist/components/FormRender/utils.js +19 -0
- package/dist/components/index.js +2480 -0
- package/dist/components/remotePages/index.js +6851 -0
- package/dist/components/remotePages/utils.js +111 -0
- package/dist/index.js +28 -0
- package/dist/init-plugin-3dcd1452.js +144 -0
- package/dist/lodash-14d7cb6d.js +3679 -0
- package/dist/modal-tools-05a597e4.js +4271 -0
- package/dist/style.css +1 -0
- package/dist/utils/excel.js +93 -0
- package/dist/utils/function.js +251 -0
- package/dist/utils/hooks/useFetchData.js +89 -0
- package/dist/utils/hooks/useTableColumn.js +148 -0
- package/package.json +231 -0
package/package.json
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "liyu-pc-base",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"version": "1.0.2",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "vite build",
|
|
9
|
+
"preview": "vite preview",
|
|
10
|
+
"gen_version": "node scripts/version.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"types": "./dist/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./components": {
|
|
21
|
+
"import": "./dist/components/index.js",
|
|
22
|
+
"types": "./dist/components/index.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./components/FormRender/utils": {
|
|
25
|
+
"import": "./dist/components/FormRender/utils.js",
|
|
26
|
+
"types": "./dist/components/FormRender/utils.d.ts"
|
|
27
|
+
},
|
|
28
|
+
"./utils/function": {
|
|
29
|
+
"import": "./dist/utils/function.js",
|
|
30
|
+
"types": "./dist/utils/function.d.ts"
|
|
31
|
+
},
|
|
32
|
+
"./utils/excel": {
|
|
33
|
+
"import": "./dist/utils/excel.js",
|
|
34
|
+
"types": "./dist/utils/excel.d.ts"
|
|
35
|
+
},
|
|
36
|
+
"./utils/hooks/useFetchData": {
|
|
37
|
+
"import": "./dist/utils/hooks/useFetchData.js",
|
|
38
|
+
"types": "./dist/utils/hooks/useFetchData.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"./utils/hooks/useTableColumn": {
|
|
41
|
+
"import": "./dist/utils/hooks/useTableColumn.js",
|
|
42
|
+
"types": "./dist/utils/hooks/useTableColumn.d.ts"
|
|
43
|
+
},
|
|
44
|
+
"./api/api-model": {
|
|
45
|
+
"import": "./dist/api/api-model.js",
|
|
46
|
+
"types": "./dist/api/api-model.d.ts"
|
|
47
|
+
},
|
|
48
|
+
"./style": {
|
|
49
|
+
"import": "./dist/style.css",
|
|
50
|
+
"types": "./dist/style.d.ts"
|
|
51
|
+
},
|
|
52
|
+
"./components/remotePages": {
|
|
53
|
+
"import": "./dist/components/remotePages/index.js",
|
|
54
|
+
"types": "./dist/components/remotePages/index.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./components/remotePages/utils": {
|
|
57
|
+
"import": "./dist/components/remotePages/utils.js",
|
|
58
|
+
"types": "./dist/components/remotePages/utils.d.ts"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"@ant-design/icons-vue": "^7.0.0",
|
|
63
|
+
"@surely-vue/table": "^5.0.3",
|
|
64
|
+
"@types/lodash-es": "^4.17.6",
|
|
65
|
+
"@umijs/ssr-darkreader": "^4.9.45",
|
|
66
|
+
"@vueuse/core": "^10.1.2",
|
|
67
|
+
"ant-design-vue": "^4.2.6",
|
|
68
|
+
"axios": "^0.28.1",
|
|
69
|
+
"bmap-draw": "^1.0.28",
|
|
70
|
+
"classnames": "^2.3.1",
|
|
71
|
+
"codemirror": "^5.60.0",
|
|
72
|
+
"core-js": "^3.21.1",
|
|
73
|
+
"dayjs": "^1.11.5",
|
|
74
|
+
"echarts": "^5.5.0",
|
|
75
|
+
"element-resize-detector": "^1.2.4",
|
|
76
|
+
"emmet": "^2.4.6",
|
|
77
|
+
"face-api.js": "^0.22.2",
|
|
78
|
+
"file-saver": "^2.0.5",
|
|
79
|
+
"handlebars": "^4.7.8",
|
|
80
|
+
"interactjs": "^1.10.26",
|
|
81
|
+
"jsoneditor": "^9.10.5",
|
|
82
|
+
"konva": "^9.2.1",
|
|
83
|
+
"lodash-es": "^4.17.21",
|
|
84
|
+
"marked": "^1.1.1",
|
|
85
|
+
"mitt": "^3.0.1",
|
|
86
|
+
"moment": "^2.29.4",
|
|
87
|
+
"mqtt": "4.2.8",
|
|
88
|
+
"nprogress": "^0.2.0",
|
|
89
|
+
"numeral": "^2.0.6",
|
|
90
|
+
"pinia": "^2.0.14",
|
|
91
|
+
"pinia-plugin-persistedstate": "^1.6.1",
|
|
92
|
+
"qr.js": "^0.0.0",
|
|
93
|
+
"resize-detector": "^0.3.0",
|
|
94
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
95
|
+
"screenfull": "^6.0.1",
|
|
96
|
+
"scroll-into-view-if-needed": "^2.2.29",
|
|
97
|
+
"smooth-dnd": "^0.12.1",
|
|
98
|
+
"store": "^2.0.12",
|
|
99
|
+
"v-code-diff": "^1.13.1",
|
|
100
|
+
"vite-plugin-ejs": "^1.7.0",
|
|
101
|
+
"vue": "^3.3.4",
|
|
102
|
+
"vue-i18n": "~9.2.0-0",
|
|
103
|
+
"vue-router": "^4.0.14",
|
|
104
|
+
"vue3-baidu-map-gl": "^2.3.2",
|
|
105
|
+
"vue3-json-viewer": "2.2.2",
|
|
106
|
+
"vue3-ts-jsoneditor": "^2.11.2",
|
|
107
|
+
"xlsx": "^0.18.5"
|
|
108
|
+
},
|
|
109
|
+
"dependencies": {
|
|
110
|
+
"@wangeditor-next/editor": "5.6.5",
|
|
111
|
+
"@wangeditor-next/editor-for-vue": "^5.1.14",
|
|
112
|
+
"@wangeditor/editor": "^5.1.23",
|
|
113
|
+
"@wangeditor/editor-for-vue": "^5.1.12"
|
|
114
|
+
},
|
|
115
|
+
"devDependencies": {
|
|
116
|
+
"@ant-design/icons-vue": "^7.0.0",
|
|
117
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
118
|
+
"@babel/plugin-transform-spread": "^7.16.7",
|
|
119
|
+
"@babel/plugin-transform-typescript": "^7.16.8",
|
|
120
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
121
|
+
"@babel/register": "^7.18.6",
|
|
122
|
+
"@surely-vue/table": "^5.0.3",
|
|
123
|
+
"@types/codemirror": "^0.0.98",
|
|
124
|
+
"@types/echarts": "^4.9.13",
|
|
125
|
+
"@types/file-saver": "^2.0.7",
|
|
126
|
+
"@types/jsoneditor": "^9.9.5",
|
|
127
|
+
"@types/lodash": "^4.14.181",
|
|
128
|
+
"@types/lodash-es": "^4.17.6",
|
|
129
|
+
"@types/node": "^17.0.23",
|
|
130
|
+
"@types/nprogress": "^0.2.0",
|
|
131
|
+
"@types/numeral": "2.0.2",
|
|
132
|
+
"@types/store": "^2.0.2",
|
|
133
|
+
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
134
|
+
"@typescript-eslint/parser": "^6.7.0",
|
|
135
|
+
"@umijs/ssr-darkreader": "^4.9.45",
|
|
136
|
+
"@unocss/eslint-config": "^0.55.0",
|
|
137
|
+
"@unocss/webpack": "^0.55.0",
|
|
138
|
+
"@vitejs/plugin-legacy": "^4.0.1",
|
|
139
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
140
|
+
"@vitejs/plugin-vue-jsx": "^3.0.0",
|
|
141
|
+
"@vue/cli-plugin-babel": "~5.0.4",
|
|
142
|
+
"@vue/cli-plugin-eslint": "~5.0.4",
|
|
143
|
+
"@vue/cli-plugin-router": "~5.0.4",
|
|
144
|
+
"@vue/cli-plugin-typescript": "~5.0.4",
|
|
145
|
+
"@vue/cli-service": "~5.0.4",
|
|
146
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
147
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
148
|
+
"@vueuse/core": "^10.1.2",
|
|
149
|
+
"add": "^2.0.6",
|
|
150
|
+
"ant-design-vue": "^4.2.6",
|
|
151
|
+
"axios": "^0.28.1",
|
|
152
|
+
"babel-eslint": "^10.1.0",
|
|
153
|
+
"babel-plugin-import": "^1.13.3",
|
|
154
|
+
"babel-plugin-module-resolver": "^4.1.0",
|
|
155
|
+
"bmap-draw": "^1.0.28",
|
|
156
|
+
"classnames": "^2.3.1",
|
|
157
|
+
"codemirror": "^5.60.0",
|
|
158
|
+
"core-js": "^3.21.1",
|
|
159
|
+
"cross-env": "^7.0.3",
|
|
160
|
+
"dayjs": "^1.11.5",
|
|
161
|
+
"echarts": "^5.5.0",
|
|
162
|
+
"echarts-wordcloud": "^1.1.3",
|
|
163
|
+
"element-resize-detector": "^1.2.4",
|
|
164
|
+
"emmet": "^2.4.6",
|
|
165
|
+
"eslint": "^8.12.0",
|
|
166
|
+
"eslint-plugin-import": "^2.26.0",
|
|
167
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
168
|
+
"eslint-plugin-vue": "^9.17.0",
|
|
169
|
+
"face-api.js": "^0.22.2",
|
|
170
|
+
"file-saver": "^2.0.5",
|
|
171
|
+
"handlebars": "^4.7.8",
|
|
172
|
+
"husky": "^7.0.4",
|
|
173
|
+
"interactjs": "^1.10.26",
|
|
174
|
+
"jsoneditor": "^9.10.5",
|
|
175
|
+
"kill-port-process": "^3.0.1",
|
|
176
|
+
"konva": "^9.2.1",
|
|
177
|
+
"less": "^4.1.2",
|
|
178
|
+
"less-loader": "^10.2.0",
|
|
179
|
+
"lint-staged": "^12.3.7",
|
|
180
|
+
"lodash-es": "^4.17.21",
|
|
181
|
+
"marked": "^1.1.1",
|
|
182
|
+
"mitt": "^3.0.1",
|
|
183
|
+
"moment": "^2.29.4",
|
|
184
|
+
"mqtt": "4.2.8",
|
|
185
|
+
"nprogress": "^0.2.0",
|
|
186
|
+
"numeral": "^2.0.6",
|
|
187
|
+
"path-to-regexp": "^3.2.0",
|
|
188
|
+
"pinia": "^2.0.14",
|
|
189
|
+
"pinia-plugin-persistedstate": "^1.6.1",
|
|
190
|
+
"prettier": "^2.8.8",
|
|
191
|
+
"pretty-quick": "^3.1.3",
|
|
192
|
+
"qr.js": "^0.0.0",
|
|
193
|
+
"raw-loader": "^4.0.2",
|
|
194
|
+
"resize-detector": "^0.3.0",
|
|
195
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
196
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
197
|
+
"screenfull": "^6.0.1",
|
|
198
|
+
"scroll-into-view-if-needed": "^2.2.29",
|
|
199
|
+
"signale": "^1.4.0",
|
|
200
|
+
"slash2": "^2.0.0",
|
|
201
|
+
"smooth-dnd": "^0.12.1",
|
|
202
|
+
"store": "^2.0.12",
|
|
203
|
+
"stylelint": "^14.6.1",
|
|
204
|
+
"stylelint-config-css-modules": "^4.1.0",
|
|
205
|
+
"stylelint-config-prettier": "^9.0.3",
|
|
206
|
+
"stylelint-config-rational-order": "^0.1.2",
|
|
207
|
+
"stylelint-config-standard": "^25.0.0",
|
|
208
|
+
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
|
|
209
|
+
"stylelint-no-unsupported-browser-features": "^5.0.3",
|
|
210
|
+
"stylelint-order": "^5.0.0",
|
|
211
|
+
"stylelint-webpack-plugin": "^3.2.0",
|
|
212
|
+
"typescript": "^5.2.2",
|
|
213
|
+
"umi-mock-middleware": "^1.0.0",
|
|
214
|
+
"unocss": "^0.55.0",
|
|
215
|
+
"v-code-diff": "^1.13.1",
|
|
216
|
+
"vite": "^4.1.1",
|
|
217
|
+
"vite-plugin-dts": "^4.5.4",
|
|
218
|
+
"vite-plugin-ejs": "^1.7.0",
|
|
219
|
+
"vite-plugin-style-import": "^2.0.0",
|
|
220
|
+
"vue": "^3.3.4",
|
|
221
|
+
"vue-eslint-parser": "^9.1.0",
|
|
222
|
+
"vue-i18n": "~9.2.0-0",
|
|
223
|
+
"vue-router": "^4.0.14",
|
|
224
|
+
"vue-tsc": "^2.2.10",
|
|
225
|
+
"vue3-baidu-map-gl": "^2.3.2",
|
|
226
|
+
"vue3-json-viewer": "2.2.2",
|
|
227
|
+
"vue3-ts-jsoneditor": "^2.11.2",
|
|
228
|
+
"xlsx": "^0.18.5",
|
|
229
|
+
"yarn": "^1.22.19"
|
|
230
|
+
}
|
|
231
|
+
}
|