react_hsbc_teller 2.0.54 → 2.0.56
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/.babelrc +39 -39
- package/README.en.md +36 -36
- package/README.md +329 -323
- package/config/webpack.config.js +119 -119
- package/config/webpack.dev.js +108 -108
- package/config/webpack.prod.js +104 -104
- package/lib/hsbc.js +1 -1
- package/lib/hsbc.js.LICENSE.txt +13 -16
- package/package.json +110 -110
- package/packages/api/api.js +818 -818
- package/packages/api/server.js +50 -50
- package/packages/common/index.esm.js +374 -374
- package/packages/demo/demo.js +306 -306
- package/packages/demo/index.js +3 -3
- package/packages/demo/pdf.js +94 -94
- package/packages/envconfig/envconfig.js +12 -12
- package/packages/index.js +2 -2
- package/packages/pages/components/step/step.jsx +32 -31
- package/packages/pages/foot/foot.jsx +235 -235
- package/packages/pages/foot/foot.less +85 -85
- package/packages/pages/header/header.jsx +15 -15
- package/packages/pages/header/header.less +51 -51
- package/packages/pages/index.jsx +52 -52
- package/packages/pages/multiModule/components/copy/agree.jsx +115 -115
- package/packages/pages/multiModule/components/copy/agree.less +105 -105
- package/packages/pages/multiModule/components/copy/copyTwo.jsx +682 -682
- package/packages/pages/multiModule/components/copy/copyTwo.less +180 -180
- package/packages/pages/multiModule/components/copy/copy_en.jsx +368 -368
- package/packages/pages/multiModule/components/copy/copy_en.less +145 -145
- package/packages/pages/multiModule/components/copy/copylist.jsx +291 -291
- package/packages/pages/multiModule/components/copy/copylist.less +83 -83
- package/packages/pages/multiModule/components/copy/risk.jsx +296 -296
- package/packages/pages/multiModule/components/copy/risk.less +123 -123
- package/packages/pages/multiModule/components/sign/signMy.jsx +308 -308
- package/packages/pages/multiModule/components/sign/signMy.less +127 -127
- package/packages/pages/multiModule/components/subscribe/subscribe.jsx +113 -113
- package/packages/pages/multiModule/components/subscribe/subscribe.less +82 -82
- package/packages/pages/multiModule/multiModule.jsx +26 -26
- package/packages/pages/multiModule/multiModule.less +19 -19
- package/packages/pages/sign/signMy.jsx +223 -223
- package/packages/pages/sign/signMy.less +129 -129
- package/packages/pages/video/video.jsx +7746 -7745
- package/packages/pages/video/video.less +715 -715
- package/packages/style/index.less +1 -1
- package/packages/style/reset.less +345 -345
- package/packages/utils/asrController.js +259 -259
- package/packages/utils/asyncComponent.jsx +26 -26
- package/packages/utils/mixin.js +27 -27
- package/packages/utils/setRem.js +10 -10
- package/packages/utils/utils.js +199 -199
- package/public/index.html +77 -77
- package/src/index.js +11 -11
- package/src/index.less +5 -5
- package/tsconfig.json +11 -11
package/lib/hsbc.js.LICENSE.txt
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
Copyright (c) 2018 Jed Watson.
|
|
3
|
+
Licensed under the MIT License (MIT), see
|
|
4
|
+
http://jedwatson.github.io/classnames
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/*!
|
|
@@ -22,20 +22,17 @@
|
|
|
22
22
|
* @license MIT
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
/*!
|
|
26
|
-
Copyright (c) Microsoft Corporation.
|
|
25
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
27
26
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
38
|
-
***************************************************************************** */
|
|
27
|
+
/**
|
|
28
|
+
* @license React
|
|
29
|
+
* react-is.production.min.js
|
|
30
|
+
*
|
|
31
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
32
|
+
*
|
|
33
|
+
* This source code is licensed under the MIT license found in the
|
|
34
|
+
* LICENSE file in the root directory of this source tree.
|
|
35
|
+
*/
|
|
39
36
|
|
|
40
37
|
/**
|
|
41
38
|
* @license qrcode.react
|
package/package.json
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react_hsbc_teller",
|
|
3
|
-
"version": "2.0.
|
|
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
|
-
"js-audio-recorder": "^0.5.7",
|
|
93
|
-
"qrcode.react": "^3.1.0",
|
|
94
|
-
"react": "^17.0.1",
|
|
95
|
-
"react-canvas-draw": "^1.1.1",
|
|
96
|
-
"react-dom": "^17.0.1",
|
|
97
|
-
"react-intl": "^5.21.2",
|
|
98
|
-
"react-signature-canvas": "^1.0.5",
|
|
99
|
-
"styled-components": "^5.3.5",
|
|
100
|
-
"url-loader": "^4.1.1"
|
|
101
|
-
},
|
|
102
|
-
"peerDependencies": {
|
|
103
|
-
"react": "^17.0.1",
|
|
104
|
-
"react-dom": "^17.0.1"
|
|
105
|
-
},
|
|
106
|
-
"sideEffects": [
|
|
107
|
-
"*.css",
|
|
108
|
-
"*.less"
|
|
109
|
-
]
|
|
110
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "react_hsbc_teller",
|
|
3
|
+
"version": "2.0.56",
|
|
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
|
+
"js-audio-recorder": "^0.5.7",
|
|
93
|
+
"qrcode.react": "^3.1.0",
|
|
94
|
+
"react": "^17.0.1",
|
|
95
|
+
"react-canvas-draw": "^1.1.1",
|
|
96
|
+
"react-dom": "^17.0.1",
|
|
97
|
+
"react-intl": "^5.21.2",
|
|
98
|
+
"react-signature-canvas": "^1.0.5",
|
|
99
|
+
"styled-components": "^5.3.5",
|
|
100
|
+
"url-loader": "^4.1.1"
|
|
101
|
+
},
|
|
102
|
+
"peerDependencies": {
|
|
103
|
+
"react": "^17.0.1",
|
|
104
|
+
"react-dom": "^17.0.1"
|
|
105
|
+
},
|
|
106
|
+
"sideEffects": [
|
|
107
|
+
"*.css",
|
|
108
|
+
"*.less"
|
|
109
|
+
]
|
|
110
|
+
}
|