zebpay-ui 0.0.41 → 0.0.43
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/.vscode/settings.json +3 -0
- package/coverage/clover.xml +424 -0
- package/coverage/coverage-final.json +23 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/components/Accordion/index.html +131 -0
- package/coverage/lcov-report/components/Accordion/index.tsx.html +202 -0
- package/coverage/lcov-report/components/Accordion/style.ts.html +166 -0
- package/coverage/lcov-report/components/Button/index.html +131 -0
- package/coverage/lcov-report/components/Button/index.tsx.html +277 -0
- package/coverage/lcov-report/components/Button/styles.ts.html +532 -0
- package/coverage/lcov-report/components/CircularLoader/index.html +131 -0
- package/coverage/lcov-report/components/CircularLoader/index.tsx.html +286 -0
- package/coverage/lcov-report/components/CircularLoader/style.ts.html +148 -0
- package/coverage/lcov-report/components/Input/index.html +131 -0
- package/coverage/lcov-report/components/Input/index.tsx.html +409 -0
- package/coverage/lcov-report/components/Input/styles.ts.html +433 -0
- package/coverage/lcov-report/components/PinInput/PinInputField.tsx.html +517 -0
- package/coverage/lcov-report/components/PinInput/index.html +146 -0
- package/coverage/lcov-report/components/PinInput/index.tsx.html +268 -0
- package/coverage/lcov-report/components/PinInput/style.ts.html +247 -0
- package/coverage/lcov-report/components/Popper/index.html +131 -0
- package/coverage/lcov-report/components/Popper/index.tsx.html +346 -0
- package/coverage/lcov-report/components/Popper/styles.ts.html +205 -0
- package/coverage/lcov-report/components/SidePanel/index.html +131 -0
- package/coverage/lcov-report/components/SidePanel/index.tsx.html +343 -0
- package/coverage/lcov-report/components/SidePanel/style.ts.html +307 -0
- package/coverage/lcov-report/components/Tooltip/index.html +131 -0
- package/coverage/lcov-report/components/Tooltip/index.tsx.html +307 -0
- package/coverage/lcov-report/components/Tooltip/styles.ts.html +157 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +236 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov-report/styles/colors.ts.html +235 -0
- package/coverage/lcov-report/styles/index.html +176 -0
- package/coverage/lcov-report/styles/index.ts.html +103 -0
- package/coverage/lcov-report/styles/mixins.ts.html +355 -0
- package/coverage/lcov-report/styles/typography.ts.html +1105 -0
- package/coverage/lcov-report/styles/utils.ts.html +202 -0
- package/coverage/lcov.info +780 -0
- package/dist/cjs/components/Avatar/index.d.ts +5 -0
- package/dist/cjs/components/Avatar/styles.d.ts +4 -0
- package/dist/cjs/components/Avatar/typings.d.ts +19 -0
- package/dist/cjs/components/AvatarGroup/index.d.ts +5 -0
- package/dist/cjs/components/AvatarGroup/styles.d.ts +1 -0
- package/dist/cjs/components/AvatarGroup/typings.d.ts +19 -0
- package/dist/cjs/components/RewardOMeter/index.d.ts +5 -0
- package/dist/cjs/components/RewardOMeter/styles.d.ts +3 -0
- package/dist/cjs/components/RewardOMeter/typings.d.ts +22 -0
- package/dist/cjs/components/index.d.ts +4 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/colors.d.ts +5 -0
- package/dist/esm/components/Avatar/index.d.ts +5 -0
- package/dist/esm/components/Avatar/styles.d.ts +4 -0
- package/dist/esm/components/Avatar/typings.d.ts +19 -0
- package/dist/esm/components/AvatarGroup/index.d.ts +5 -0
- package/dist/esm/components/AvatarGroup/styles.d.ts +1 -0
- package/dist/esm/components/AvatarGroup/typings.d.ts +19 -0
- package/dist/esm/components/RewardOMeter/index.d.ts +5 -0
- package/dist/esm/components/RewardOMeter/styles.d.ts +3 -0
- package/dist/esm/components/RewardOMeter/typings.d.ts +22 -0
- package/dist/esm/components/index.d.ts +4 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles/colors.d.ts +5 -0
- package/dist/icons/icons.css +191 -185
- package/dist/icons/icons.eot +0 -0
- package/dist/icons/icons.html +18 -0
- package/dist/icons/icons.json +184 -182
- package/dist/icons/icons.ts +190 -182
- package/dist/icons/icons.woff +0 -0
- package/dist/icons/icons.woff2 +0 -0
- package/jest.config.js +15 -0
- package/package.json +21 -6
- package/tests/Accordion.test.tsx +40 -0
- package/tests/Avatar.test.tsx +76 -0
- package/tests/Button.test.tsx +35 -0
- package/tests/Input.test.tsx +39 -0
- package/tests/PinInput.test.tsx +89 -0
- package/tests/Popper.test.tsx +50 -0
- package/tests/RewardOMeter.test.tsx +73 -0
- package/tests/SearchInput.test.tsx +34 -0
- package/tests/Select.test.tsx +74 -0
- package/tests/SidePanel.test.tsx +74 -0
- package/tests/Tooltip.test.tsx +36 -0
- package/tests/__snapshots__/Accordion.test.tsx.snap +11 -0
- package/tests/__snapshots__/Button.test.tsx.snap +10 -0
- package/tests/__snapshots__/PinInput.test.tsx.snap +18 -0
- package/tests/__snapshots__/Popper.test.tsx.snap +15 -0
- package/tests/__snapshots__/SidePanel.test.tsx.snap +10 -0
package/dist/icons/icons.eot
CHANGED
|
Binary file
|
package/dist/icons/icons.html
CHANGED
|
@@ -218,6 +218,15 @@
|
|
|
218
218
|
</div>
|
|
219
219
|
|
|
220
220
|
|
|
221
|
+
<div class="preview">
|
|
222
|
+
<span class="inner">
|
|
223
|
+
<i class="icon icon-basket"></i>
|
|
224
|
+
</span>
|
|
225
|
+
<br>
|
|
226
|
+
<span class='label'>basket</span>
|
|
227
|
+
</div>
|
|
228
|
+
|
|
229
|
+
|
|
221
230
|
<div class="preview">
|
|
222
231
|
<span class="inner">
|
|
223
232
|
<i class="icon icon-blog"></i>
|
|
@@ -1028,6 +1037,15 @@
|
|
|
1028
1037
|
</div>
|
|
1029
1038
|
|
|
1030
1039
|
|
|
1040
|
+
<div class="preview">
|
|
1041
|
+
<span class="inner">
|
|
1042
|
+
<i class="icon icon-needle"></i>
|
|
1043
|
+
</span>
|
|
1044
|
+
<br>
|
|
1045
|
+
<span class='label'>needle</span>
|
|
1046
|
+
</div>
|
|
1047
|
+
|
|
1048
|
+
|
|
1031
1049
|
<div class="preview">
|
|
1032
1050
|
<span class="inner">
|
|
1033
1051
|
<i class="icon icon-negative"></i>
|
package/dist/icons/icons.json
CHANGED
|
@@ -17,186 +17,188 @@
|
|
|
17
17
|
"asterik": 61712,
|
|
18
18
|
"balance-ltv": 61713,
|
|
19
19
|
"bank": 61714,
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"chart": 61722,
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"deposit": 61739,
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"emi-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"fiat-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"interest-
|
|
84
|
-
"
|
|
85
|
-
"kyc": 61780,
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"liquidation-
|
|
93
|
-
"liquidation-
|
|
94
|
-
"liquidation": 61789,
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"loan-
|
|
98
|
-
"loan-
|
|
99
|
-
"loan-
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"pay-
|
|
129
|
-
"pay-
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"send": 61853,
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
20
|
+
"basket": 61715,
|
|
21
|
+
"blog": 61716,
|
|
22
|
+
"bonus": 61717,
|
|
23
|
+
"buy-crypto": 61718,
|
|
24
|
+
"calendar": 61719,
|
|
25
|
+
"camera": 61720,
|
|
26
|
+
"cancelled": 61721,
|
|
27
|
+
"candle-chart": 61722,
|
|
28
|
+
"chart": 61723,
|
|
29
|
+
"checkbox-all": 61724,
|
|
30
|
+
"cheque": 61725,
|
|
31
|
+
"circle-cross": 61726,
|
|
32
|
+
"circulation-supply": 61727,
|
|
33
|
+
"city": 61728,
|
|
34
|
+
"coin-stack": 61729,
|
|
35
|
+
"coins": 61730,
|
|
36
|
+
"compare": 61731,
|
|
37
|
+
"completed": 61732,
|
|
38
|
+
"contract": 61733,
|
|
39
|
+
"copy": 61734,
|
|
40
|
+
"coupon": 61735,
|
|
41
|
+
"cross": 61736,
|
|
42
|
+
"crypto-wallet": 61737,
|
|
43
|
+
"deactivate": 61738,
|
|
44
|
+
"deposit-simple": 61739,
|
|
45
|
+
"deposit": 61740,
|
|
46
|
+
"depth-chart": 61741,
|
|
47
|
+
"district": 61742,
|
|
48
|
+
"dob": 61743,
|
|
49
|
+
"download": 61744,
|
|
50
|
+
"downwards": 61745,
|
|
51
|
+
"driving-licence": 61746,
|
|
52
|
+
"earned": 61747,
|
|
53
|
+
"edit": 61748,
|
|
54
|
+
"email": 61749,
|
|
55
|
+
"emi-amount": 61750,
|
|
56
|
+
"emi-duedate": 61751,
|
|
57
|
+
"error": 61752,
|
|
58
|
+
"exclamation": 61753,
|
|
59
|
+
"expand": 61754,
|
|
60
|
+
"expiry": 61755,
|
|
61
|
+
"external-link": 61756,
|
|
62
|
+
"facelock": 61757,
|
|
63
|
+
"fees": 61758,
|
|
64
|
+
"fiat-deposit": 61759,
|
|
65
|
+
"fiat-withdraw": 61760,
|
|
66
|
+
"filter": 61761,
|
|
67
|
+
"fingerprint": 61762,
|
|
68
|
+
"form": 61763,
|
|
69
|
+
"gallery": 61764,
|
|
70
|
+
"globe": 61765,
|
|
71
|
+
"greater-than-equal-to": 61766,
|
|
72
|
+
"hamburger": 61767,
|
|
73
|
+
"help": 61768,
|
|
74
|
+
"hide": 61769,
|
|
75
|
+
"history": 61770,
|
|
76
|
+
"home": 61771,
|
|
77
|
+
"ifsc": 61772,
|
|
78
|
+
"income-source": 61773,
|
|
79
|
+
"indicators": 61774,
|
|
80
|
+
"info": 61775,
|
|
81
|
+
"initial-ltv": 61776,
|
|
82
|
+
"instant-buy-sell": 61777,
|
|
83
|
+
"interest-amount": 61778,
|
|
84
|
+
"interest-rate": 61779,
|
|
85
|
+
"kyc-2": 61780,
|
|
86
|
+
"kyc": 61781,
|
|
87
|
+
"landscape": 61782,
|
|
88
|
+
"lend": 61783,
|
|
89
|
+
"lightning": 61784,
|
|
90
|
+
"lightning2": 61785,
|
|
91
|
+
"link": 61786,
|
|
92
|
+
"liquidation-cost": 61787,
|
|
93
|
+
"liquidation-id": 61788,
|
|
94
|
+
"liquidation-price": 61789,
|
|
95
|
+
"liquidation": 61790,
|
|
96
|
+
"list": 61791,
|
|
97
|
+
"loan-amount": 61792,
|
|
98
|
+
"loan-details": 61793,
|
|
99
|
+
"loan-repayment": 61794,
|
|
100
|
+
"loan-term": 61795,
|
|
101
|
+
"location": 61796,
|
|
102
|
+
"lock": 61797,
|
|
103
|
+
"logout": 61798,
|
|
104
|
+
"ltv-ratio": 61799,
|
|
105
|
+
"mail": 61800,
|
|
106
|
+
"map": 61801,
|
|
107
|
+
"margin-call": 61802,
|
|
108
|
+
"max-supply": 61803,
|
|
109
|
+
"menu": 61804,
|
|
110
|
+
"more-options": 61805,
|
|
111
|
+
"needle": 61806,
|
|
112
|
+
"negative": 61807,
|
|
113
|
+
"network": 61808,
|
|
114
|
+
"next": 61809,
|
|
115
|
+
"nominee": 61810,
|
|
116
|
+
"note": 61811,
|
|
117
|
+
"notification": 61812,
|
|
118
|
+
"occupation": 61813,
|
|
119
|
+
"ongoing": 61814,
|
|
120
|
+
"order-2": 61815,
|
|
121
|
+
"order": 61816,
|
|
122
|
+
"orders-complete": 61817,
|
|
123
|
+
"pair-selector": 61818,
|
|
124
|
+
"pair": 61819,
|
|
125
|
+
"pan": 61820,
|
|
126
|
+
"passbook": 61821,
|
|
127
|
+
"passport": 61822,
|
|
128
|
+
"pay-emi": 61823,
|
|
129
|
+
"pay-lumpsum": 61824,
|
|
130
|
+
"pay-off-loan-2": 61825,
|
|
131
|
+
"pay-off-loan": 61826,
|
|
132
|
+
"penalty-charges": 61827,
|
|
133
|
+
"pending": 61828,
|
|
134
|
+
"percentage": 61829,
|
|
135
|
+
"phone": 61830,
|
|
136
|
+
"portrait": 61831,
|
|
137
|
+
"positive": 61832,
|
|
138
|
+
"prepay-principal": 61833,
|
|
139
|
+
"previous": 61834,
|
|
140
|
+
"profile-border": 61835,
|
|
141
|
+
"profile": 61836,
|
|
142
|
+
"qr-code": 61837,
|
|
143
|
+
"quicktrade": 61838,
|
|
144
|
+
"rank": 61839,
|
|
145
|
+
"ream": 61840,
|
|
146
|
+
"receive-lightning": 61841,
|
|
147
|
+
"receive": 61842,
|
|
148
|
+
"redo": 61843,
|
|
149
|
+
"repayment-schedule": 61844,
|
|
150
|
+
"reports": 61845,
|
|
151
|
+
"reset": 61846,
|
|
152
|
+
"save": 61847,
|
|
153
|
+
"scan": 61848,
|
|
154
|
+
"search": 61849,
|
|
155
|
+
"security": 61850,
|
|
156
|
+
"selfie": 61851,
|
|
157
|
+
"sell-crypto": 61852,
|
|
158
|
+
"send-email": 61853,
|
|
159
|
+
"send-lightning": 61854,
|
|
160
|
+
"send": 61855,
|
|
161
|
+
"separator": 61856,
|
|
162
|
+
"settings": 61857,
|
|
163
|
+
"share": 61858,
|
|
164
|
+
"shield": 61859,
|
|
165
|
+
"show": 61860,
|
|
166
|
+
"side-2": 61861,
|
|
167
|
+
"side": 61862,
|
|
168
|
+
"sip": 61863,
|
|
169
|
+
"sms": 61864,
|
|
170
|
+
"sorter-filled": 61865,
|
|
171
|
+
"sorter": 61866,
|
|
172
|
+
"star-filled": 61867,
|
|
173
|
+
"star": 61868,
|
|
174
|
+
"statement": 61869,
|
|
175
|
+
"stop": 61870,
|
|
176
|
+
"street-address": 61871,
|
|
177
|
+
"subtract": 61872,
|
|
178
|
+
"success": 61873,
|
|
179
|
+
"support": 61874,
|
|
180
|
+
"taxnode": 61875,
|
|
181
|
+
"team": 61876,
|
|
182
|
+
"templates": 61877,
|
|
183
|
+
"term": 61878,
|
|
184
|
+
"tick": 61879,
|
|
185
|
+
"time": 61880,
|
|
186
|
+
"total-payable-lumpsum": 61881,
|
|
187
|
+
"trade-2": 61882,
|
|
188
|
+
"trash": 61883,
|
|
189
|
+
"trigger": 61884,
|
|
190
|
+
"trophy": 61885,
|
|
191
|
+
"unarchive": 61886,
|
|
192
|
+
"unlock": 61887,
|
|
193
|
+
"upi-landscape": 61888,
|
|
194
|
+
"upi": 61889,
|
|
195
|
+
"upload": 61890,
|
|
196
|
+
"upwards": 61891,
|
|
197
|
+
"voting-card": 61892,
|
|
198
|
+
"wallet": 61893,
|
|
199
|
+
"way-arrow": 61894,
|
|
200
|
+
"whitelisted": 61895,
|
|
201
|
+
"withdraw-simple": 61896,
|
|
202
|
+
"xpress": 61897,
|
|
203
|
+
"zip-code": 61898
|
|
202
204
|
}
|