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.
Files changed (54) hide show
  1. package/.babelrc +39 -39
  2. package/README.en.md +36 -36
  3. package/README.md +329 -323
  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/lib/hsbc.js.LICENSE.txt +13 -16
  9. package/package.json +110 -110
  10. package/packages/api/api.js +818 -818
  11. package/packages/api/server.js +50 -50
  12. package/packages/common/index.esm.js +374 -374
  13. package/packages/demo/demo.js +306 -306
  14. package/packages/demo/index.js +3 -3
  15. package/packages/demo/pdf.js +94 -94
  16. package/packages/envconfig/envconfig.js +12 -12
  17. package/packages/index.js +2 -2
  18. package/packages/pages/components/step/step.jsx +32 -31
  19. package/packages/pages/foot/foot.jsx +235 -235
  20. package/packages/pages/foot/foot.less +85 -85
  21. package/packages/pages/header/header.jsx +15 -15
  22. package/packages/pages/header/header.less +51 -51
  23. package/packages/pages/index.jsx +52 -52
  24. package/packages/pages/multiModule/components/copy/agree.jsx +115 -115
  25. package/packages/pages/multiModule/components/copy/agree.less +105 -105
  26. package/packages/pages/multiModule/components/copy/copyTwo.jsx +682 -682
  27. package/packages/pages/multiModule/components/copy/copyTwo.less +180 -180
  28. package/packages/pages/multiModule/components/copy/copy_en.jsx +368 -368
  29. package/packages/pages/multiModule/components/copy/copy_en.less +145 -145
  30. package/packages/pages/multiModule/components/copy/copylist.jsx +291 -291
  31. package/packages/pages/multiModule/components/copy/copylist.less +83 -83
  32. package/packages/pages/multiModule/components/copy/risk.jsx +296 -296
  33. package/packages/pages/multiModule/components/copy/risk.less +123 -123
  34. package/packages/pages/multiModule/components/sign/signMy.jsx +308 -308
  35. package/packages/pages/multiModule/components/sign/signMy.less +127 -127
  36. package/packages/pages/multiModule/components/subscribe/subscribe.jsx +113 -113
  37. package/packages/pages/multiModule/components/subscribe/subscribe.less +82 -82
  38. package/packages/pages/multiModule/multiModule.jsx +26 -26
  39. package/packages/pages/multiModule/multiModule.less +19 -19
  40. package/packages/pages/sign/signMy.jsx +223 -223
  41. package/packages/pages/sign/signMy.less +129 -129
  42. package/packages/pages/video/video.jsx +7746 -7745
  43. package/packages/pages/video/video.less +715 -715
  44. package/packages/style/index.less +1 -1
  45. package/packages/style/reset.less +345 -345
  46. package/packages/utils/asrController.js +259 -259
  47. package/packages/utils/asyncComponent.jsx +26 -26
  48. package/packages/utils/mixin.js +27 -27
  49. package/packages/utils/setRem.js +10 -10
  50. package/packages/utils/utils.js +199 -199
  51. package/public/index.html +77 -77
  52. package/src/index.js +11 -11
  53. package/src/index.less +5 -5
  54. package/tsconfig.json +11 -11
@@ -1,180 +1,180 @@
1
- .copyTwo{
2
- font-size: 16px;
3
- // padding: 14px 24px;
4
- background-color:#F2F2F2 ;
5
- display: flex;
6
- flex-direction: column;
7
- min-height: 100%;
8
- height: 100%;
9
- overflow: hidden;
10
- .thehead{
11
- background-color: white;
12
- display: flex;
13
- justify-content: space-between;
14
- padding: 14px 24px;
15
- .title{
16
- display: flex;
17
- .title-color{
18
- width: 2px;
19
- height: 1.5rem;
20
- background: #00847F;
21
- margin-top: 0.25rem;
22
- }
23
- .title-text{
24
- font-size: 1.5rem;
25
- color: #323232;
26
- margin-left: 8px;
27
- }
28
-
29
- }
30
- .btns{
31
- width: 320px;
32
- display: flex;
33
- justify-content: flex-end;
34
- }
35
- .button{
36
- width: 96px;
37
- height: 2rem;
38
- background: #F9F2F3;
39
- border-radius: 2px;
40
- border: 1px solid #E5B2B5;
41
- font-size: 14px;
42
- color: #DB0011;
43
- line-height: 2rem;
44
- text-align: center;
45
- margin-left: 10px;
46
- display: block;
47
- cursor: pointer;
48
- &.gray{
49
- color: #646464;
50
- border: 1px solid #DCDCDC;
51
- background-color: white;
52
- }
53
- }
54
- }
55
-
56
- .contents{
57
- font-size: 20px;
58
- height: 250px;
59
- background-color: white;
60
- padding: 14px 24px;
61
- flex: 1;
62
- }
63
-
64
- .copy-area{
65
- display: flex;
66
- flex-direction: row;
67
- flex-wrap: nowrap;
68
- margin-top: 20px;
69
-
70
- .left{
71
- flex: 1;
72
- background-color: white;
73
- width: 34vmin;
74
- height: 34vmin;
75
- overflow-y: hidden;
76
- .pic{
77
- // width: 50px;
78
- // height: 50px;
79
- object-fit: contain;
80
- }
81
- .imgLeft{
82
- height: 28vmin;
83
- overflow-y: overlay;
84
- }
85
- .imgLeft::-webkit-scrollbar {
86
- width: 5px;
87
- height: 5px;
88
- -webkit-border-radius: 5px;
89
- -moz-border-radius: 5px;
90
- border-radius: 5px;
91
- }
92
- .imgLeft::-webkit-scrollbar-thumb {
93
- background-color: rgba(191, 191, 191, 191);
94
- background-clip: padding-box;
95
- -webkit-border-radius: 5px;
96
- -moz-border-radius: 5px;
97
- border-radius: 5px;
98
- min-height: 28px;
99
- }
100
- .imgLeft::-webkit-scrollbar-thumb:hover {
101
- background-color: rgba(0, 0, 0, 0.5);
102
- -webkit-border-radius: 5px;
103
- -moz-border-radius: 5px;
104
- border-radius: 5px;
105
- }
106
- .footTwo{
107
- height: 2.9vmin;
108
- text-align: -webkit-center;
109
- }
110
- }
111
- .right{
112
- margin-left: 20px;
113
- background-color: white;
114
- background-blend-mode: multiply;
115
- width: 34vmin;
116
- height: 34vmin;
117
- position: relative;
118
- .current-text{
119
- z-index: -1;
120
- font-size: 300px;
121
- position: absolute;
122
- top: 50%;
123
- left: 50%;
124
- transform: translate(-50%, -50%);
125
- color: #F5F5F5;
126
- -webkit-touch-callout: none; /* iOS Safari */
127
- -webkit-user-select: none; /* Chrome/Safari/Opera */
128
- -khtml-user-select: none; /* Konqueror */
129
- -moz-user-select: none; /* Firefox */
130
- -ms-user-select: none; /* Internet Explorer/Edge */
131
- user-select: none;
132
- }
133
- #canvasF{
134
- z-index: 10;
135
- }
136
- }
137
- }
138
-
139
- .mask{
140
- position: absolute;
141
- z-index: 11;
142
- background: #383838;
143
- opacity: 0.3;
144
- width: 100%;
145
- height: 100%;
146
- }
147
- }
148
- .modalEndTitle{
149
- font-size: 20px;
150
- }
151
- .modalEnd{
152
- font-size: 15px;
153
- margin-left: 20px;
154
- margin-top: 15px;
155
- }
156
-
157
- .footTwo{
158
- .footThree{
159
- display: inline-flex;
160
- }
161
- .button{
162
- width: 96px;
163
- height: 40px;
164
- background: #F9F2F3;
165
- border-radius: 2px;
166
- border: 1px solid #E5B2B5;
167
- font-size: 14px;
168
- color: #DB0011;
169
- line-height: 40px;
170
- text-align: center;
171
- margin-left: 10px;
172
- display: block;
173
- cursor: pointer;
174
- &.gray{
175
- color: #646464;
176
- border: 1px solid #DCDCDC;
177
- background-color: white;
178
- }
179
- }
180
- }
1
+ .copyTwo{
2
+ font-size: 16px;
3
+ // padding: 14px 24px;
4
+ background-color:#F2F2F2 ;
5
+ display: flex;
6
+ flex-direction: column;
7
+ min-height: 100%;
8
+ height: 100%;
9
+ overflow: hidden;
10
+ .thehead{
11
+ background-color: white;
12
+ display: flex;
13
+ justify-content: space-between;
14
+ padding: 14px 24px;
15
+ .title{
16
+ display: flex;
17
+ .title-color{
18
+ width: 2px;
19
+ height: 1.5rem;
20
+ background: #00847F;
21
+ margin-top: 0.25rem;
22
+ }
23
+ .title-text{
24
+ font-size: 1.5rem;
25
+ color: #323232;
26
+ margin-left: 8px;
27
+ }
28
+
29
+ }
30
+ .btns{
31
+ width: 320px;
32
+ display: flex;
33
+ justify-content: flex-end;
34
+ }
35
+ .button{
36
+ width: 96px;
37
+ height: 2rem;
38
+ background: #F9F2F3;
39
+ border-radius: 2px;
40
+ border: 1px solid #E5B2B5;
41
+ font-size: 14px;
42
+ color: #DB0011;
43
+ line-height: 2rem;
44
+ text-align: center;
45
+ margin-left: 10px;
46
+ display: block;
47
+ cursor: pointer;
48
+ &.gray{
49
+ color: #646464;
50
+ border: 1px solid #DCDCDC;
51
+ background-color: white;
52
+ }
53
+ }
54
+ }
55
+
56
+ .contents{
57
+ font-size: 20px;
58
+ height: 250px;
59
+ background-color: white;
60
+ padding: 14px 24px;
61
+ flex: 1;
62
+ }
63
+
64
+ .copy-area{
65
+ display: flex;
66
+ flex-direction: row;
67
+ flex-wrap: nowrap;
68
+ margin-top: 20px;
69
+
70
+ .left{
71
+ flex: 1;
72
+ background-color: white;
73
+ width: 34vmin;
74
+ height: 34vmin;
75
+ overflow-y: hidden;
76
+ .pic{
77
+ // width: 50px;
78
+ // height: 50px;
79
+ object-fit: contain;
80
+ }
81
+ .imgLeft{
82
+ height: 28vmin;
83
+ overflow-y: overlay;
84
+ }
85
+ .imgLeft::-webkit-scrollbar {
86
+ width: 5px;
87
+ height: 5px;
88
+ -webkit-border-radius: 5px;
89
+ -moz-border-radius: 5px;
90
+ border-radius: 5px;
91
+ }
92
+ .imgLeft::-webkit-scrollbar-thumb {
93
+ background-color: rgba(191, 191, 191, 191);
94
+ background-clip: padding-box;
95
+ -webkit-border-radius: 5px;
96
+ -moz-border-radius: 5px;
97
+ border-radius: 5px;
98
+ min-height: 28px;
99
+ }
100
+ .imgLeft::-webkit-scrollbar-thumb:hover {
101
+ background-color: rgba(0, 0, 0, 0.5);
102
+ -webkit-border-radius: 5px;
103
+ -moz-border-radius: 5px;
104
+ border-radius: 5px;
105
+ }
106
+ .footTwo{
107
+ height: 2.9vmin;
108
+ text-align: -webkit-center;
109
+ }
110
+ }
111
+ .right{
112
+ margin-left: 20px;
113
+ background-color: white;
114
+ background-blend-mode: multiply;
115
+ width: 34vmin;
116
+ height: 34vmin;
117
+ position: relative;
118
+ .current-text{
119
+ z-index: -1;
120
+ font-size: 300px;
121
+ position: absolute;
122
+ top: 50%;
123
+ left: 50%;
124
+ transform: translate(-50%, -50%);
125
+ color: #F5F5F5;
126
+ -webkit-touch-callout: none; /* iOS Safari */
127
+ -webkit-user-select: none; /* Chrome/Safari/Opera */
128
+ -khtml-user-select: none; /* Konqueror */
129
+ -moz-user-select: none; /* Firefox */
130
+ -ms-user-select: none; /* Internet Explorer/Edge */
131
+ user-select: none;
132
+ }
133
+ #canvasF{
134
+ z-index: 10;
135
+ }
136
+ }
137
+ }
138
+
139
+ .mask{
140
+ position: absolute;
141
+ z-index: 11;
142
+ background: #383838;
143
+ opacity: 0.3;
144
+ width: 100%;
145
+ height: 100%;
146
+ }
147
+ }
148
+ .modalEndTitle{
149
+ font-size: 20px;
150
+ }
151
+ .modalEnd{
152
+ font-size: 15px;
153
+ margin-left: 20px;
154
+ margin-top: 15px;
155
+ }
156
+
157
+ .footTwo{
158
+ .footThree{
159
+ display: inline-flex;
160
+ }
161
+ .button{
162
+ width: 96px;
163
+ height: 40px;
164
+ background: #F9F2F3;
165
+ border-radius: 2px;
166
+ border: 1px solid #E5B2B5;
167
+ font-size: 14px;
168
+ color: #DB0011;
169
+ line-height: 40px;
170
+ text-align: center;
171
+ margin-left: 10px;
172
+ display: block;
173
+ cursor: pointer;
174
+ &.gray{
175
+ color: #646464;
176
+ border: 1px solid #DCDCDC;
177
+ background-color: white;
178
+ }
179
+ }
180
+ }