react_hsbc_teller 1.9.8 → 1.9.81

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.
Files changed (38) hide show
  1. package/.babelrc +39 -39
  2. package/README.en.md +36 -36
  3. package/README.md +52 -52
  4. package/config/webpack.config.js +119 -119
  5. package/config/webpack.dev.js +108 -108
  6. package/config/webpack.prod.js +104 -104
  7. package/lib/hsbc.js +1 -1
  8. package/package.json +108 -108
  9. package/packages/api/api.js +553 -553
  10. package/packages/api/server.js +50 -50
  11. package/packages/common/JKL.js +61 -61
  12. package/packages/common/XML.js +271 -271
  13. package/packages/common/index.esm.js +374 -374
  14. package/packages/common/websocket.js +267 -267
  15. package/packages/demo/demo.js +279 -279
  16. package/packages/demo/index.js +3 -3
  17. package/packages/demo/pdf.js +79 -79
  18. package/packages/envconfig/envconfig.js +12 -12
  19. package/packages/index.js +2 -2
  20. package/packages/pages/foot/foot.jsx +212 -212
  21. package/packages/pages/foot/foot.less +84 -84
  22. package/packages/pages/header/header.jsx +15 -15
  23. package/packages/pages/header/header.less +51 -51
  24. package/packages/pages/index.jsx +52 -52
  25. package/packages/pages/sign/signMy.jsx +221 -221
  26. package/packages/pages/sign/signMy.less +129 -129
  27. package/packages/pages/video/video.jsx +6768 -6756
  28. package/packages/pages/video/video.less +616 -616
  29. package/packages/style/index.less +1 -1
  30. package/packages/style/reset.less +345 -345
  31. package/packages/utils/asyncComponent.jsx +26 -26
  32. package/packages/utils/cell.js +64 -64
  33. package/packages/utils/mixin.js +27 -27
  34. package/packages/utils/setRem.js +10 -10
  35. package/public/index.html +77 -77
  36. package/src/index.js +11 -11
  37. package/src/index.less +5 -5
  38. package/tsconfig.json +11 -11
package/package.json CHANGED
@@ -1,108 +1,108 @@
1
- {
2
- "name": "react_hsbc_teller",
3
- "version": "1.9.8",
4
- "description": "React",
5
- "private": false,
6
- "main": "lib/hsbc.js",
7
- "scripts": {
8
- "start": "webpack serve --config ./config/webpack.dev.js",
9
- "build": "webpack --config ./config/webpack.prod.js",
10
- "lib": "webpack --config ./config/webpack.config.js",
11
- "deploy": "npm run build && gh-pages -d dist"
12
- },
13
- "directories": {
14
- "lib": "lib"
15
- },
16
- "repository": {
17
- "type": "git",
18
- "url": "git+"
19
- },
20
- "keywords": [
21
- "React",
22
- "UI",
23
- "NPM"
24
- ],
25
- "author": "grantITman 2811744265@qq.com",
26
- "license": "MIT",
27
- "bugs": {
28
- "url": ""
29
- },
30
- "homepage": "#readme",
31
- "devDependencies": {
32
- "@babel/core": "^7.12.3",
33
- "@babel/plugin-proposal-class-properties": "^7.12.1",
34
- "@babel/plugin-syntax-jsx": "^7.12.1",
35
- "@babel/plugin-transform-runtime": "^7.16.0",
36
- "@babel/polyfill": "^7.12.1",
37
- "@babel/preset-env": "^7.1.0",
38
- "@babel/preset-react": "^7.12.1",
39
- "autoprefixer": "7.1.6",
40
- "babel-core": "6.26.0",
41
- "babel-eslint": "7.2.3",
42
- "babel-jest": "20.0.3",
43
- "babel-loader": "^8.1.0",
44
- "babel-plugin-import": "^1.13.3",
45
- "babel-plugin-syntax-dynamic-import": "^6.18.0",
46
- "babel-plugin-transform-decorators-legacy": "^1.3.4",
47
- "babel-polyfill": "^6.26.0",
48
- "babel-preset-env": "^1.6.1",
49
- "babel-preset-es2015": "^6.24.1",
50
- "babel-preset-react": "^6.24.1",
51
- "babel-preset-react-app": "^3.1.0",
52
- "babel-preset-stage-0": "^6.24.1",
53
- "babel-runtime": "6.26.0",
54
- "classnames": "^2.2.6",
55
- "clean-webpack-plugin": "^3.0.0",
56
- "css-loader": "^5.0.0",
57
- "eslint": "4.10.0",
58
- "eslint-config-react-app": "^2.0.1",
59
- "eslint-loader": "1.9.0",
60
- "eslint-plugin-flowtype": "2.39.1",
61
- "eslint-plugin-import": "2.8.0",
62
- "eslint-plugin-jsx-a11y": "5.1.1",
63
- "eslint-plugin-react": "7.4.0",
64
- "extract-text-webpack-plugin": "^4.0.0-beta.0",
65
- "file-loader": "^6.2.0",
66
- "gh-pages": "^3.1.0",
67
- "html-webpack-plugin": "^5.0.0-alpha.7",
68
- "less": "^2.7.2",
69
- "less-loader": "4.1.0",
70
- "lib-flexible": "^0.3.2",
71
- "mini-css-extract-plugin": "^1.2.1",
72
- "postcss-flexbugs-fixes": "3.2.0",
73
- "postcss-loader": "2.0.8",
74
- "postcss-px2rem": "^0.3.0",
75
- "prop-types": "^15.7.2",
76
- "react-hot-loader": "^4.3.12",
77
- "style-loader": "^2.0.0",
78
- "ts-loader": "^8.0.7",
79
- "typescript": "^4.0.5",
80
- "web-vitals": "^0.2.4",
81
- "webpack": "^5.3.2",
82
- "webpack-cli": "^4.1.0",
83
- "webpack-dev-server": "^3.11.0",
84
- "webpackbar": "^4.0.0"
85
- },
86
- "dependencies": {
87
- "@babel/plugin-proposal-decorators": "^7.16.4",
88
- "antd": "^4.16.13",
89
- "axios": "0.19.0",
90
- "crypto-js": "^4.1.1",
91
- "html2canvas": "^1.4.0",
92
- "react": "^17.0.1",
93
- "react-canvas-draw": "^1.1.1",
94
- "react-dom": "^17.0.1",
95
- "react-intl": "^5.21.2",
96
- "react-signature-canvas": "^1.0.5",
97
- "styled-components": "^5.3.5",
98
- "url-loader": "^4.1.1"
99
- },
100
- "peerDependencies": {
101
- "react": "^17.0.1",
102
- "react-dom": "^17.0.1"
103
- },
104
- "sideEffects": [
105
- "*.css",
106
- "*.less"
107
- ]
108
- }
1
+ {
2
+ "name": "react_hsbc_teller",
3
+ "version": "1.9.81",
4
+ "description": "React",
5
+ "private": false,
6
+ "main": "lib/hsbc.js",
7
+ "scripts": {
8
+ "start": "webpack serve --config ./config/webpack.dev.js",
9
+ "build": "webpack --config ./config/webpack.prod.js",
10
+ "lib": "webpack --config ./config/webpack.config.js",
11
+ "deploy": "npm run build && gh-pages -d dist"
12
+ },
13
+ "directories": {
14
+ "lib": "lib"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+"
19
+ },
20
+ "keywords": [
21
+ "React",
22
+ "UI",
23
+ "NPM"
24
+ ],
25
+ "author": "grantITman 2811744265@qq.com",
26
+ "license": "MIT",
27
+ "bugs": {
28
+ "url": ""
29
+ },
30
+ "homepage": "#readme",
31
+ "devDependencies": {
32
+ "@babel/core": "^7.12.3",
33
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
34
+ "@babel/plugin-syntax-jsx": "^7.12.1",
35
+ "@babel/plugin-transform-runtime": "^7.16.0",
36
+ "@babel/polyfill": "^7.12.1",
37
+ "@babel/preset-env": "^7.1.0",
38
+ "@babel/preset-react": "^7.12.1",
39
+ "autoprefixer": "7.1.6",
40
+ "babel-core": "6.26.0",
41
+ "babel-eslint": "7.2.3",
42
+ "babel-jest": "20.0.3",
43
+ "babel-loader": "^8.1.0",
44
+ "babel-plugin-import": "^1.13.3",
45
+ "babel-plugin-syntax-dynamic-import": "^6.18.0",
46
+ "babel-plugin-transform-decorators-legacy": "^1.3.4",
47
+ "babel-polyfill": "^6.26.0",
48
+ "babel-preset-env": "^1.6.1",
49
+ "babel-preset-es2015": "^6.24.1",
50
+ "babel-preset-react": "^6.24.1",
51
+ "babel-preset-react-app": "^3.1.0",
52
+ "babel-preset-stage-0": "^6.24.1",
53
+ "babel-runtime": "6.26.0",
54
+ "classnames": "^2.2.6",
55
+ "clean-webpack-plugin": "^3.0.0",
56
+ "css-loader": "^5.0.0",
57
+ "eslint": "4.10.0",
58
+ "eslint-config-react-app": "^2.0.1",
59
+ "eslint-loader": "1.9.0",
60
+ "eslint-plugin-flowtype": "2.39.1",
61
+ "eslint-plugin-import": "2.8.0",
62
+ "eslint-plugin-jsx-a11y": "5.1.1",
63
+ "eslint-plugin-react": "7.4.0",
64
+ "extract-text-webpack-plugin": "^4.0.0-beta.0",
65
+ "file-loader": "^6.2.0",
66
+ "gh-pages": "^3.1.0",
67
+ "html-webpack-plugin": "^5.0.0-alpha.7",
68
+ "less": "^2.7.2",
69
+ "less-loader": "4.1.0",
70
+ "lib-flexible": "^0.3.2",
71
+ "mini-css-extract-plugin": "^1.2.1",
72
+ "postcss-flexbugs-fixes": "3.2.0",
73
+ "postcss-loader": "2.0.8",
74
+ "postcss-px2rem": "^0.3.0",
75
+ "prop-types": "^15.7.2",
76
+ "react-hot-loader": "^4.3.12",
77
+ "style-loader": "^2.0.0",
78
+ "ts-loader": "^8.0.7",
79
+ "typescript": "^4.0.5",
80
+ "web-vitals": "^0.2.4",
81
+ "webpack": "^5.3.2",
82
+ "webpack-cli": "^4.1.0",
83
+ "webpack-dev-server": "^3.11.0",
84
+ "webpackbar": "^4.0.0"
85
+ },
86
+ "dependencies": {
87
+ "@babel/plugin-proposal-decorators": "^7.16.4",
88
+ "antd": "^4.16.13",
89
+ "axios": "0.19.0",
90
+ "crypto-js": "^4.1.1",
91
+ "html2canvas": "^1.4.0",
92
+ "react": "^17.0.1",
93
+ "react-canvas-draw": "^1.1.1",
94
+ "react-dom": "^17.0.1",
95
+ "react-intl": "^5.21.2",
96
+ "react-signature-canvas": "^1.0.5",
97
+ "styled-components": "^5.3.5",
98
+ "url-loader": "^4.1.1"
99
+ },
100
+ "peerDependencies": {
101
+ "react": "^17.0.1",
102
+ "react-dom": "^17.0.1"
103
+ },
104
+ "sideEffects": [
105
+ "*.css",
106
+ "*.less"
107
+ ]
108
+ }