@fox-js/foxui-pc 3.0.15 → 3.0.16
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 +1 -1
- package/dist/index.js.LICENSE.txt +8 -0
- package/package.json +81 -81
|
@@ -76,6 +76,14 @@
|
|
|
76
76
|
!*** ./src/api/index.ts ***!
|
|
77
77
|
\**************************/
|
|
78
78
|
|
|
79
|
+
/*!**************************!*\
|
|
80
|
+
!*** ./src/utils/dom.js ***!
|
|
81
|
+
\**************************/
|
|
82
|
+
|
|
83
|
+
/*!**************************!*\
|
|
84
|
+
!*** ./src/utils/env.js ***!
|
|
85
|
+
\**************************/
|
|
86
|
+
|
|
79
87
|
/*!**************************!*\
|
|
80
88
|
!*** ./src/utils/tip.js ***!
|
|
81
89
|
\**************************/
|
package/package.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fox-js/foxui-pc",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "Fox PC端UI框架",
|
|
5
|
-
"author": "jiangcheng",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"fox"
|
|
8
|
-
],
|
|
9
|
-
"main": "dist/index.js",
|
|
10
|
-
"typings": "",
|
|
11
|
-
"license": "",
|
|
12
|
-
"publishConfig": {
|
|
13
|
-
"access": "public"
|
|
14
|
-
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"prod": "cross-env NODE_ENV=production webpack --config scripts/webpack.js",
|
|
17
|
-
"dev": "cross-env NODE_ENV=development webpack --config scripts/webpack.js",
|
|
18
|
-
"publish:beta": "npm version prerelease
|
|
19
|
-
"publish:legacy": "npm version patch
|
|
20
|
-
"publish:latest": "npm version patch
|
|
21
|
-
},
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"@babel/runtime-corejs3": "^7.18.3",
|
|
24
|
-
"@fox-js/big-decimal": "^3.0.1-0",
|
|
25
|
-
"core-js": "^3.22.8",
|
|
26
|
-
"element-ui": "^2.15.6",
|
|
27
|
-
"vue": "^2.6.11",
|
|
28
|
-
"vue-i18n": "^8.17.5"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@babel/core": "^7.15.5",
|
|
32
|
-
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
33
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
34
|
-
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
|
|
35
|
-
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
36
|
-
"@babel/preset-env": "^7.15.6",
|
|
37
|
-
"@babel/preset-typescript": "^7.15.0",
|
|
38
|
-
"@vue/cli-plugin-eslint": "^4.5.13",
|
|
39
|
-
"autoprefixer": "^10.2.6",
|
|
40
|
-
"babel-eslint": "^10.1.0",
|
|
41
|
-
"babel-loader": "^8.2.2",
|
|
42
|
-
"clean-webpack-plugin": "^4.0.0-alpha.0",
|
|
43
|
-
"compression-webpack-plugin": "^8.0.1",
|
|
44
|
-
"copy-webpack-plugin": "^9.0.1",
|
|
45
|
-
"cross-env": "^7.0.3",
|
|
46
|
-
"css-loader": "^5.2.6",
|
|
47
|
-
"eslint": "^7.32.0",
|
|
48
|
-
"eslint-config-airbnb": "^18.2.1",
|
|
49
|
-
"eslint-config-prettier": "^8.3.0",
|
|
50
|
-
"eslint-plugin-import": "^2.24.2",
|
|
51
|
-
"eslint-plugin-prettier": "^3.4.1",
|
|
52
|
-
"eslint-plugin-vue": "^7.16.0",
|
|
53
|
-
"html-loader": "^2.1.2",
|
|
54
|
-
"html-webpack-plugin": "5.3.2",
|
|
55
|
-
"less": "^4.1.1",
|
|
56
|
-
"less-loader": "^10.0.1",
|
|
57
|
-
"lint-staged": "^11.0.0",
|
|
58
|
-
"mini-css-extract-plugin": "^2.1.0",
|
|
59
|
-
"mockjs": "^1.1.0",
|
|
60
|
-
"postcss": "^8.3.5",
|
|
61
|
-
"postcss-loader": "^6.1.1",
|
|
62
|
-
"postcss-preset-env": "^7.7.1",
|
|
63
|
-
"prettier": "^2.3.2",
|
|
64
|
-
"prettier-eslint-cli": "^5.0.1",
|
|
65
|
-
"sass": "^1.35.2",
|
|
66
|
-
"sass-loader": "^12.1.0",
|
|
67
|
-
"ts-loader": "^9.2.3",
|
|
68
|
-
"ts-node": "^10.0.0",
|
|
69
|
-
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
70
|
-
"typescript": "^4.3.5",
|
|
71
|
-
"vconsole-webpack-plugin": "^1.7.1",
|
|
72
|
-
"vue-loader": "^15.9.6",
|
|
73
|
-
"vue-style-loader": "^4.1.3",
|
|
74
|
-
"vue-template-compiler": "^2.6.14",
|
|
75
|
-
"webpack": "^5.43.0",
|
|
76
|
-
"webpack-cli": "^4.7.2",
|
|
77
|
-
"webpack-dev-server": "^3.11.2",
|
|
78
|
-
"webpack-merge": "^5.7.3",
|
|
79
|
-
"webpackbar": "^5.0.0-3"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fox-js/foxui-pc",
|
|
3
|
+
"version": "3.0.16",
|
|
4
|
+
"description": "Fox PC端UI框架",
|
|
5
|
+
"author": "jiangcheng",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"fox"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"typings": "",
|
|
11
|
+
"license": "",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"prod": "cross-env NODE_ENV=production webpack --config scripts/webpack.js",
|
|
17
|
+
"dev": "cross-env NODE_ENV=development webpack --config scripts/webpack.js",
|
|
18
|
+
"publish:beta": "npm version prerelease && npm publish --tag beta",
|
|
19
|
+
"publish:legacy": "npm version patch && npm publish --tag legacy",
|
|
20
|
+
"publish:latest": "npm version patch && npm publish"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@babel/runtime-corejs3": "^7.18.3",
|
|
24
|
+
"@fox-js/big-decimal": "^3.0.1-0",
|
|
25
|
+
"core-js": "^3.22.8",
|
|
26
|
+
"element-ui": "^2.15.6",
|
|
27
|
+
"vue": "^2.6.11",
|
|
28
|
+
"vue-i18n": "^8.17.5"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@babel/core": "^7.15.5",
|
|
32
|
+
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
33
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
34
|
+
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
|
|
35
|
+
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
36
|
+
"@babel/preset-env": "^7.15.6",
|
|
37
|
+
"@babel/preset-typescript": "^7.15.0",
|
|
38
|
+
"@vue/cli-plugin-eslint": "^4.5.13",
|
|
39
|
+
"autoprefixer": "^10.2.6",
|
|
40
|
+
"babel-eslint": "^10.1.0",
|
|
41
|
+
"babel-loader": "^8.2.2",
|
|
42
|
+
"clean-webpack-plugin": "^4.0.0-alpha.0",
|
|
43
|
+
"compression-webpack-plugin": "^8.0.1",
|
|
44
|
+
"copy-webpack-plugin": "^9.0.1",
|
|
45
|
+
"cross-env": "^7.0.3",
|
|
46
|
+
"css-loader": "^5.2.6",
|
|
47
|
+
"eslint": "^7.32.0",
|
|
48
|
+
"eslint-config-airbnb": "^18.2.1",
|
|
49
|
+
"eslint-config-prettier": "^8.3.0",
|
|
50
|
+
"eslint-plugin-import": "^2.24.2",
|
|
51
|
+
"eslint-plugin-prettier": "^3.4.1",
|
|
52
|
+
"eslint-plugin-vue": "^7.16.0",
|
|
53
|
+
"html-loader": "^2.1.2",
|
|
54
|
+
"html-webpack-plugin": "5.3.2",
|
|
55
|
+
"less": "^4.1.1",
|
|
56
|
+
"less-loader": "^10.0.1",
|
|
57
|
+
"lint-staged": "^11.0.0",
|
|
58
|
+
"mini-css-extract-plugin": "^2.1.0",
|
|
59
|
+
"mockjs": "^1.1.0",
|
|
60
|
+
"postcss": "^8.3.5",
|
|
61
|
+
"postcss-loader": "^6.1.1",
|
|
62
|
+
"postcss-preset-env": "^7.7.1",
|
|
63
|
+
"prettier": "^2.3.2",
|
|
64
|
+
"prettier-eslint-cli": "^5.0.1",
|
|
65
|
+
"sass": "^1.35.2",
|
|
66
|
+
"sass-loader": "^12.1.0",
|
|
67
|
+
"ts-loader": "^9.2.3",
|
|
68
|
+
"ts-node": "^10.0.0",
|
|
69
|
+
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
70
|
+
"typescript": "^4.3.5",
|
|
71
|
+
"vconsole-webpack-plugin": "^1.7.1",
|
|
72
|
+
"vue-loader": "^15.9.6",
|
|
73
|
+
"vue-style-loader": "^4.1.3",
|
|
74
|
+
"vue-template-compiler": "^2.6.14",
|
|
75
|
+
"webpack": "^5.43.0",
|
|
76
|
+
"webpack-cli": "^4.7.2",
|
|
77
|
+
"webpack-dev-server": "^3.11.2",
|
|
78
|
+
"webpack-merge": "^5.7.3",
|
|
79
|
+
"webpackbar": "^5.0.0-3"
|
|
80
|
+
}
|
|
81
|
+
}
|