@pinerohit11/testwidget 0.1.32 → 0.1.34

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.js CHANGED
@@ -23,12 +23,701 @@ import "bootstrap/dist/css/bootstrap.min.css";
23
23
 
24
24
  // src/app/components/Greet.tsx
25
25
  import axios from "axios";
26
- import React, { useEffect, useState } from "react";
26
+ import React2, { useEffect, useState } from "react";
27
27
  import { Button, Modal } from "react-bootstrap";
28
28
  import "bootstrap/dist/css/bootstrap.min.css";
29
29
 
30
- // src/app/components/pay.module.css
31
- var pay_default = {};
30
+ // src/app/components/CustomStyle.tsx
31
+ import React from "react";
32
+ var CustomStyle = (props) => {
33
+ return /* @__PURE__ */ React.createElement("style", null, `
34
+
35
+
36
+ body {
37
+ background: #d5d5d5;
38
+ font-family: 'Poppins', sans-serif;
39
+ }
40
+
41
+ input::placeholder {
42
+ font-weight: 500;
43
+ opacity: 0.5;
44
+ color: #35254D !important;
45
+ }
46
+
47
+ .bg-light {
48
+ background: #d5d5d5 !important;
49
+ height: 100vh;
50
+ }
51
+
52
+ .payment-popup {
53
+ /* padding: 35px 40px; */
54
+ padding: 0px;
55
+ background: #fff;
56
+ border-radius: 20px;
57
+ position: relative;
58
+ /* width: 400px; */
59
+ margin: 0 auto;
60
+ }
61
+
62
+ @media(max-width:460px) {
63
+ .payment-popup {
64
+ padding: 35px 25px;
65
+ width: 98%;
66
+ }
67
+ }
68
+
69
+ .close-pop {
70
+ position: absolute;
71
+ right: 8px;
72
+ top: 8px;
73
+ border: 0;
74
+ padding: 0;
75
+ background: none !important;
76
+ }
77
+
78
+ .amex {
79
+ /* background-image: url("./amex.svg"); */
80
+ }
81
+
82
+ .visa {
83
+ /* background-image: url("./visa.svg"); */
84
+ }
85
+
86
+ .mastercard {
87
+ /* background-image: url("./mastercard.svg"); */
88
+ }
89
+
90
+ .discover {
91
+ /* background-image: url("./discover.svg"); */
92
+ }
93
+
94
+ .expiry-date-group {
95
+ float: left;
96
+ width: 30%
97
+ }
98
+
99
+ .expiry-date-group input {
100
+ width: calc(100% + 1px);
101
+ border-top-right-radius: 0;
102
+ border-bottom-right-radius: 0;
103
+ }
104
+
105
+ .expiry-date-group input:focus {
106
+ position: relative;
107
+ z-index: 10;
108
+ }
109
+
110
+ .security-code-group {
111
+ float: right;
112
+ width: 40%;
113
+ position: relative;
114
+ }
115
+
116
+ .security-code-group input {
117
+ border-top-left-radius: 0;
118
+ border-bottom-left-radius: 0;
119
+ }
120
+
121
+ .zip-code-group {
122
+ clear: both;
123
+ }
124
+
125
+
126
+ #submitButton {
127
+ outline: 0 !important;
128
+ height: 46px;
129
+ font-size: 16px;
130
+ background-color: #161616 !important;
131
+ border: none;
132
+ display: block;
133
+ width: 100%;
134
+ border-radius: 180px;
135
+ }
136
+
137
+ #PayButton {
138
+ outline: 0 !important;
139
+ height: 46px;
140
+ font-size: 16px;
141
+ background-color: #161616 !important;
142
+ border: none;
143
+ display: block;
144
+ width: 100%;
145
+ border-radius: 180px;
146
+ }
147
+
148
+ #PayButton:hover {
149
+ background-color: #61C699 !important;
150
+ }
151
+
152
+ #PayButton:active {
153
+ background-color: #61C699 !important;
154
+ }
155
+
156
+ #PayButton:disabled {
157
+ background: rgb(172, 44, 170) !important;
158
+ color: #FFF !important;
159
+ }
160
+
161
+ .form-control {
162
+ color: #35254D;
163
+ }
164
+
165
+ .container {
166
+ margin-top: 10px;
167
+ }
168
+
169
+ #Checkout {
170
+ z-index: 100001;
171
+ width: 100%;
172
+ height: 100%;
173
+ min-height: 100%;
174
+ background: 0 0 #ffffff;
175
+ border-radius: 24px;
176
+ border: 1px solid #E0DFE2;
177
+ margin-left: auto;
178
+ margin-right: auto;
179
+ display: block;
180
+ }
181
+
182
+ #Checkout .header {
183
+ display: flex;
184
+ /* Enables Flexbox */
185
+ justify-content: center;
186
+ /* Centers content horizontally */
187
+ align-items: center;
188
+ /* Centers content vertically */
189
+ text-align: center;
190
+ padding: 8px;
191
+ border-bottom: 1px solid #DEDEDE;
192
+ margin: 0 10px 20px 10px;
193
+ }
194
+
195
+ #Checkout .header button {
196
+ border: 0;
197
+ background: none;
198
+ padding: 0;
199
+ }
200
+
201
+ #Checkout h1 {
202
+ margin: 0;
203
+ flex: 1;
204
+ padding: 10px;
205
+ /* Allows the title to grow and fill the space for centering */
206
+ font-size: 23px;
207
+ font-weight: 500;
208
+ color: #35254D;
209
+ /* align-items: start; */
210
+ display: flex;
211
+ }
212
+
213
+ #Checkout>form {
214
+ margin: 0 25px 10px 25px;
215
+ }
216
+
217
+ label {
218
+ color: rgba(53, 37, 77, 0.6);
219
+ margin-bottom: 2px;
220
+ text-transform: uppercase;
221
+ font-family: "IBM Plex Mono", monospace;
222
+ font-weight: 500;
223
+ font-size: 12px;
224
+ }
225
+
226
+ .input-container {
227
+ position: relative;
228
+ }
229
+
230
+ .input-container input {
231
+ padding-right: 25px;
232
+ }
233
+
234
+ #zipcode {
235
+ text-transform: capitalize !important;
236
+ }
237
+
238
+ #zipcode {
239
+ width: 18px;
240
+ position: absolute;
241
+ right: 8px;
242
+ top: 9px;
243
+ }
244
+
245
+ #zipcode .zip-tip {
246
+ display: none;
247
+ background-color: rgb(0, 0, 0, 0.4);
248
+ padding: 5px 8px;
249
+ border-radius: 6px;
250
+ position: absolute;
251
+ right: 26px;
252
+ top: -9px;
253
+ font-size: 12.5px;
254
+ text-transform: capitalize !important;
255
+ color: #fff;
256
+ width: 240px;
257
+ line-height: 16px;
258
+ }
259
+
260
+ #zipcode .zip-tip:before {
261
+ width: 0;
262
+ height: 0;
263
+ border-top: 7px solid transparent;
264
+ border-bottom: 7px solid transparent;
265
+ border-left: 7px solid #000;
266
+ opacity: 0.4;
267
+ position: absolute;
268
+ right: -7px;
269
+ top: 50%;
270
+ transform: translateY(-50%);
271
+ content: '';
272
+ }
273
+
274
+
275
+
276
+ #zipcode:hover .zip-tip {
277
+ display: block;
278
+ }
279
+
280
+
281
+ .input-container>i,
282
+ a[role="button"] {
283
+ color: #d3d3d3;
284
+ width: 25px;
285
+ height: 30px;
286
+ line-height: 30px;
287
+ font-size: 16px;
288
+ position: absolute;
289
+ top: 5px;
290
+ right: 6px;
291
+ cursor: pointer;
292
+ text-align: center;
293
+ }
294
+
295
+ .input-container>i:hover,
296
+ a[role="button"]:hover {
297
+ color: #777;
298
+ }
299
+
300
+ .amount-placeholder {
301
+ white-space: nowrap;
302
+ font-size: 44px;
303
+ /* height: 35px; */
304
+ font-weight: 600;
305
+ line-height: 40px;
306
+ }
307
+
308
+ .amount-placeholder>button {
309
+ float: right;
310
+ width: 60px;
311
+ }
312
+
313
+ .amount-placeholder>span {
314
+ line-height: 34px;
315
+ }
316
+
317
+ .top-amnt {
318
+ display: flex;
319
+ margin-bottom: 10px;
320
+ align-items: center;
321
+ justify-content: space-between;
322
+ }
323
+
324
+ .amtleft {
325
+ text-align: center;
326
+ }
327
+
328
+ .amtleft span {
329
+ color: #35254D;
330
+ margin: 0 -5px;
331
+ }
332
+
333
+ .card-row {
334
+ text-align: right;
335
+ margin: 8px 0 0 0;
336
+ max-width: 85px;
337
+ line-height: 20px;
338
+ }
339
+
340
+ .yer {
341
+ border-radius: 0;
342
+ }
343
+
344
+ .card-row span {
345
+ width: 33px;
346
+ height: 21px;
347
+ margin: 0 2px;
348
+ background-repeat: no-repeat;
349
+ display: inline-block;
350
+ background-size: contain;
351
+ }
352
+
353
+ .card-image {
354
+ background-repeat: no-repeat;
355
+ padding-right: 50px;
356
+ background-position: right 2px center;
357
+ background-size: auto 90%
358
+ }
359
+
360
+ /* .cvc-preview-container {
361
+ overflow: hidden;
362
+ } */
363
+
364
+ .cvc-preview-container {
365
+ /* overflow: hidden; */
366
+ position: absolute;
367
+ z-index: 9999;
368
+ right: -71px;
369
+ top: -54px;
370
+ width: 165px;
371
+ border-radius: 5px;
372
+ padding: 5px;
373
+ background-color: rgb(0, 0, 0, 0.3);
374
+ display: none;
375
+ }
376
+
377
+ .cvc-preview-container:before {
378
+ position: absolute;
379
+ left: 50%;
380
+ transform: translate(-50%);
381
+ bottom: -5px;
382
+ width: 0;
383
+ height: 0;
384
+ border-left: 5px solid transparent;
385
+ border-right: 5px solid transparent;
386
+ border-top: 5px solid #000;
387
+ opacity: 0.3;
388
+ content: '';
389
+ }
390
+
391
+ .security-code-group #cvc:hover .cvc-preview-container {
392
+ display: block;
393
+ }
394
+
395
+ .cvc-preview-container.two-card div {
396
+ width: 50%;
397
+ height: 45px;
398
+ }
399
+
400
+ .cvc-preview-container.two-card div.amex-cvc-preview {
401
+ float: right;
402
+ }
403
+
404
+ .cvc-preview-container.two-card div.visa-mc-dis-cvc-preview {
405
+ float: left;
406
+ }
407
+
408
+ /* .cvc-preview-container div {
409
+ height: 160px;
410
+ } */
411
+
412
+ .amex-cvc-preview {
413
+ background: url("data:image/png;base64,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") center center/contain no-repeat;
414
+ }
415
+
416
+ .visa-mc-dis-cvc-preview {
417
+ background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOYAAACOCAMAAAASE4S+AAAAAXNSR0IArs4c6QAAAadQTFRFAAAAzbFj+NyAyLNg+N2DzbRk+96CzrVj+96AzrNj+92By7Rl+92AzbRl/eCDzrRl/t+DzrVl/t+CzbVm/t+C3MFt3MFv/N2B/N6CzrRm/uCDzrRm/uCC7M93/N6CAAAAAQEBAgIBBAQCBQUDBwcECQgFDAsGDg0HEA4IEQ8JFRMLFxUMIBwQIR0RJSETKyYWLikYLyoYMCsZMSsZNC4bNzEcOTIdQDkhQTkhQzsiRT0jRj4kSkEmTEMnWE4tWU8uWk8uXFEvXVIwXlMwX1QxaV02bWA4bmE5cWQ6eGo+eWs+fW5Afm9Bi3pHjHtIkH9KmIZOmYdPnIlQnYpRo5BUppJVqJRWqpZXq5dYrJdYrZhZuaNfvaZhvqdiwKljwapjxK1lybFnyrJoy7NozrVm1Ltq171u2L5v2b9s2b9t2sBt3cNy3zEx3zIx38Rz4MVz4cZ04kI552NI6GVJ6Mx36s5368957dF674xb79J78NN78dV78tV789Z99Nd99dh+9rZv9th+9tl+99l/+duA+sx5+sx6+t2B+92B/N6B/d+C/uCD////AikOogAAAB90Uk5TACQkJSU9PT4+Q0NERJqav7/AwNjY4uLi4u7u8/P6+u6knPAAAAJkSURBVHja7d3pTxNBGMfxQbwAW06Pcj0tntQT8b7v+0JFxaserQcuKlQUFbFUaqvjH+1uG0lMfEETie4z39+bJ/tik/1kjt3MbDLGBFkWbeu0CtPZFq03v7KwxSpO04KKcmm7VZ32xeW2VK70nUF7tlj1afJnH+tA6k3UBWbUrHKBudJ0u8DsNtaJwIQJEyZMmDBhwoQJEyZMmPPCFCcCEyZMmDBhwoQJEyZMmDBhwoQJEyZMmDBhwoQJ010m+5swYcKECRMmTJgwYcKECRMmTJgwYcIMFfPHP8/vz5PLjnpzzmg2F07mxIhXVUYmwsjMVan0nbkQMrOeN1aY+zAsjHleNoRMf1x+rWa6KfjjM4RMvxdWN63+4QaYMGHC/EvM6b0HgpI6tvtoyq9vz+4/clcf89sJ2eiXIZGEyJD9sEl6RAa1MVPbpczsk8vT52SHHZCDUxelXxtzW/x4wPx+6cxn+0A2208PX9pB2aONef7xk3JrBjkth4Jysnf9fX1T0Czzmqx+6pcvcel/pJd5RRLXg1p6d0vWvdHKHJCeG2XljLVb5aZS5r2E3A6uTiUu2Km1klLK3CXxZDK5xd6RNYd3St+MTuaryr94G6y92iuy77X+b9rSi/d8usOEyZIXC5gsR7O5MN9bRexvwoQJEyZMmDBhwoQJEyZMmDBhwoT5vzNLLihLJu8CM2+6XGB2meUuMFeYyEf9ysmIqcsUtSuLmQZjGp8pdxafNxtjamIZ1f12MhOrDQ6uXhRLD4/nVb4/S/nx4XRsSeUY8prGtOI0186eKl8Xae3QSOxojTSUgT8BEvkXyqDHONgAAAAASUVORK5CYII=") center center/contain no-repeat;
418
+ }
419
+
420
+ .submit-button-lock {
421
+ height: 15px;
422
+ margin-top: -2px;
423
+ margin-right: 7px;
424
+ vertical-align: middle;
425
+ background: url("data:image/png;base64,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NQxdFfpzGC4sNKwm7Hm4VXh+eHcELWJFREPEu0iPyNLIR4uNFksWd0bJR8VF1UdNRXtFl0VLl1gsWbPkRoxajCCmPRYfGxV7JHZyqffS3UuH4+ziCuPuLjNclrPs2nK15anLz66QX8FZcSoeGx8d3xD/iRPCqeVMrvRfuXflBNeTu4f7kufGK+eN8V34ZfyRBJeEsoTRRJfEXYljSa5JFUnjAk9BteB1sl/ygeSplJCUoykzqdGpzWmEtPi000IlYYqwK10zPSe9L8M0ozBDuspp1e5VE6JA0ZFMKHNZZruYjv5M9UiMJJslg1kLs2qy3mdHZZ/KUcwR5vTkmuRuyx3J88n7fjVmNXd1Z752/ob8wTXuaw6thdauXNu5Tnddwbrh9b7rj20gbUjZ8MtGy41lG99uit7UUaBRsL5gaLPv5sZCuUJR4b0tzlsObMVsFWzt3WazrWrblyJe0fViy+KK4k8l3JLr31l9V/ndzPaE7b2l9qX7d+B2CHfc3em681iZYlle2dCu4F2t5czyovK3u1fsvlZhW3FgD2mPZI+0MqiyvUqvakfVp+qk6oEaj5rmvep7t+2d2sfb17/fbX/TAY0DxQc+HhQcvH/I91BrrUFtxWHc4azDz+ui6rq/Z39ff0TtSPGRz0eFR6XHwo911TvU1zeoN5Q2wo2SxrHjccdv/eD1Q3sTq+lQM6O5+AQ4ITnx4sf4H++eDDzZeYp9qukn/Z/2ttBailqh1tzWibakNml7THvf6YDTnR3OHS0/m/989Iz2mZqzymdLz5HOFZybOZ93fvJCxoXxi4kXhzpXdD66tOTSna6wrt7LgZevXvG5cqnbvfv8VZerZ645XTt9nX297Yb9jdYeu56WX+x+aem172296XCz/ZbjrY6+BX3n+l37L972un3ljv+dGwOLBvruLr57/17cPel93v3RB6kPXj/Mejj9aP1j7OOiJwpPKp6qP6391fjXZqm99Oyg12DPs4hnj4a4Qy//lfmvT8MFz6nPK0a0RupHrUfPjPmM3Xqx9MXwy4yX0+OFvyn+tveV0auffnf7vWdiycTwa9HrmT9K3qi+OfrW9m3nZOjk03dp76anit6rvj/2gf2h+2P0x5Hp7E/4T5WfjT93fAn88ngmbWbm3/eE8/syOll+AAAAYFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////98JRy6AAAAH3RSTlMAAgYMEyIzOUpTVFViY3N2gJmcnaipq7fX3ebx+Pn8eTEuDQAAAI9JREFUKM/N0UkOglAQRdFHDyK90n64+9+lAyQgookjuaNKTlJJpaQlO2n6sW8SW/uCjrku2EloWDLhi3gDa4O3pTtA5Tt+BXDbiDsBmSQpAyZ3pRhoLUmS1QLxSilQPOcCSFfKgfxgPgfZ9ch7Y21LCcdd5wVH5SckEzkXc0ylpPJnMpETmX/d9eUpH1/5AKrsQVrz7YPBAAAAAElFTkSuQmCC") center center/contain no-repeat;
426
+ width: 14px;
427
+ display: inline-block;
428
+ }
429
+
430
+ .align-middle {
431
+ vertical-align: middle;
432
+ }
433
+
434
+ input {
435
+ box-shadow: none !important;
436
+ }
437
+
438
+ .powerd-by-part {
439
+ display: flex;
440
+ font-size: 12px;
441
+ text-align: center;
442
+ align-items: center;
443
+ justify-content: center;
444
+ margin: 8px 0 20px 0;
445
+ }
446
+
447
+ .powered-logo {
448
+ width: 18px;
449
+ height: 18px;
450
+ float: right;
451
+ padding: 2px;
452
+ background: #000000;
453
+ border-radius: 4px;
454
+ margin-left: 5px;
455
+ }
456
+
457
+ .comp-name {
458
+ display: block;
459
+ margin-bottom: 8px;
460
+ }
461
+
462
+ .client-logo {
463
+ max-width: 140px;
464
+ display: block;
465
+ margin: auto;
466
+ padding: 5px;
467
+ }
468
+
469
+ #qrCode {
470
+ text-align: center;
471
+ }
472
+
473
+ #qrIcon {
474
+ cursor: pointer;
475
+ border: 1px solid rgb(252, 252, 252);
476
+ padding: 10px;
477
+ border-radius: 5px;
478
+ background: #ffffff;
479
+ }
480
+
481
+ #target {
482
+ display: none;
483
+ text-align: center;
484
+ transition: all 5s;
485
+ padding: 5px;
486
+ transition: max-height 0.5s, overflow 0.5s 0.5s;
487
+ }
488
+
489
+ /* input:focus {
490
+ border-color: #acc6db !important;
491
+ background-color: #acc6db !important;
492
+ } */
493
+
494
+
495
+
496
+
497
+
498
+
499
+
500
+ .payment-success {
501
+ border-radius: 24px;
502
+ padding: 160px 24px;
503
+ text-align: center;
504
+ background: linear-gradient(white, white) padding-box,
505
+ linear-gradient(to bottom, #B0E2CC, #DBFCEE) border-box;
506
+ border-radius: 24px;
507
+ border: 1px solid transparent;
508
+
509
+ }
510
+
511
+ .payment-icon {
512
+ width: 60px;
513
+ height: 60px;
514
+ border-radius: 180px;
515
+ border: #61C699 1px solid;
516
+ margin: 0 auto 15px auto;
517
+ display: flex;
518
+ align-items: center;
519
+ justify-content: center;
520
+ }
521
+
522
+ .payment-success h2 {
523
+ font-size: 24px;
524
+ color: #35254D;
525
+ line-height: 25px;
526
+ }
527
+
528
+ .payment-success p {
529
+ font-size: 14px;
530
+ color: #9A92A6;
531
+ line-height: 15px;
532
+ }
533
+
534
+
535
+ .bg-light {
536
+ background: #fff !important;
537
+ }
538
+
539
+ /* body {
540
+ overflow: hidden !important;
541
+ background: #fff !important;
542
+ } */
543
+
544
+ .app-pagination .page-item .page-link {
545
+ color: #2e2f2f;
546
+ }
547
+
548
+ .app-pagination .page-item.active .page-link {
549
+ background-color: #a9aeb3;
550
+ border-color: #ddd;
551
+ color: #2e2f2f;
552
+ }
553
+
554
+ .app-pagination .page-item.disabled .page-link {
555
+ color: #2e2f2f;
556
+ }
557
+
558
+ .app-pagination .page-item .page-link:hover {
559
+ text-decoration: none;
560
+ color: #2e2f2f;
561
+ }
562
+
563
+ .loader {
564
+ position: fixed;
565
+ /* Fixed position to cover the viewport */
566
+ top: 0;
567
+ left: 0;
568
+ width: 100%;
569
+ height: 100%;
570
+ display: flex;
571
+ justify-content: center;
572
+ align-items: center;
573
+ /* background: rgba(255, 255, 0, 0.01); Adjust the blur effect */
574
+ background-color: rgba(255, 255, 255, 0.521);
575
+ /* Semi-transparent black background */
576
+
577
+ backdrop-filter: blur(.5px);
578
+ /* Blur effect */
579
+ z-index: 9999;
580
+ /* Ensure it's on top of other elements */
581
+ }
582
+
583
+ .lds-ellipsis {
584
+ display: inline-block;
585
+ position: relative;
586
+ width: 80px;
587
+ height: 80px;
588
+ }
589
+
590
+ .lds-ellipsis div {
591
+ position: absolute;
592
+ top: 33px;
593
+ width: 13px;
594
+ height: 13px;
595
+ border-radius: 50%;
596
+ background: #000;
597
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
598
+ }
599
+
600
+ .lds-ellipsis div:nth-child(1) {
601
+ left: 8px;
602
+ animation: lds-ellipsis1 0.6s infinite;
603
+ }
604
+
605
+ .lds-ellipsis div:nth-child(2) {
606
+ left: 8px;
607
+ animation: lds-ellipsis2 0.6s infinite;
608
+ }
609
+
610
+ .lds-ellipsis div:nth-child(3) {
611
+ left: 32px;
612
+ animation: lds-ellipsis2 0.6s infinite;
613
+ }
614
+
615
+ .lds-ellipsis div:nth-child(4) {
616
+ left: 56px;
617
+ animation: lds-ellipsis3 0.6s infinite;
618
+ }
619
+
620
+ @keyframes lds-ellipsis1 {
621
+ 0% {
622
+ transform: scale(0);
623
+ }
624
+
625
+ 100% {
626
+ transform: scale(1);
627
+ }
628
+ }
629
+
630
+ @keyframes lds-ellipsis2 {
631
+ 0% {
632
+ transform: translate(0, 0);
633
+ }
634
+
635
+ 100% {
636
+ transform: translate(24px, 0);
637
+ }
638
+ }
639
+
640
+ @keyframes lds-ellipsis3 {
641
+ 0% {
642
+ transform: scale(1);
643
+ }
644
+
645
+ 100% {
646
+ transform: scale(0);
647
+ }
648
+ }
649
+
650
+ .requestPayment {
651
+ max-width: 420px;
652
+ }
653
+
654
+ .paymentBtn {
655
+ background-color: black;
656
+ border: none;
657
+ color: white;
658
+ padding: 15px 32px;
659
+ text-align: center;
660
+ text-decoration: none;
661
+ display: inline-block;
662
+ font-size: 16px;
663
+ margin: 4px 2px;
664
+ border-radius: 180px;
665
+ }
666
+
667
+ .PayButton {
668
+ outline: 0 !important;
669
+ height: 46px;
670
+ background-color: #161616 !important;
671
+ width: 100%;
672
+ color: #fff;
673
+ margin: 10px 0;
674
+ }
675
+
676
+
677
+
678
+
679
+
680
+ .requpay-main{
681
+ max-width: 400px;
682
+ width: 100%;
683
+ height: auto;
684
+ padding: 20px;
685
+ border-radius: 20px !important;
686
+ position: relative;
687
+ margin: 30px auto;
688
+ }
689
+ .requpay-main h3{
690
+ font-size: 20px;
691
+ padding-left: 10px;
692
+ }
693
+ .requpay-in{
694
+ width: 100%;
695
+ background: 0 0 #ffffff;
696
+ border-radius: 24px;
697
+ border: 1px solid #e0dfe2;
698
+ padding: 20px;
699
+ }
700
+
701
+ .requpay-in .mb-1{
702
+ margin-bottom: 10px;
703
+ }
704
+
705
+ .requpay-in .pay-amount {
706
+ position: relative;
707
+ }
708
+ .requpay-in .pay-amount input{padding-left: 20px;}
709
+ .requpay-in .pay-amount .dlr-sign {
710
+ position: absolute;
711
+ left: 10px;
712
+ top: 7px;
713
+ }
714
+ .requpay-in .PayButton {
715
+ border-radius: 4px;
716
+ border:0;
717
+ height: 43px;
718
+ }
719
+ `);
720
+ };
32
721
 
33
722
  // src/app/components/Greet.tsx
34
723
  function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
@@ -247,7 +936,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
247
936
  setShow(true);
248
937
  };
249
938
  console.log(show, "open");
250
- return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "w-100 text-center" }, /* @__PURE__ */ React.createElement(Button, { onClick: handleOpen }, "Show")), /* @__PURE__ */ React.createElement(
939
+ return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(CustomStyle, null), /* @__PURE__ */ React2.createElement("div", { className: "w-100 text-center" }, /* @__PURE__ */ React2.createElement(Button, { onClick: handleOpen }, "Show")), /* @__PURE__ */ React2.createElement(
251
940
  Modal,
252
941
  {
253
942
  show,
@@ -256,7 +945,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
256
945
  keyboard: false,
257
946
  size: "lg"
258
947
  },
259
- /* @__PURE__ */ React.createElement(Modal.Body, null, /* @__PURE__ */ React.createElement("div", { className: "bg-black" }, /* @__PURE__ */ React.createElement("div", { className: "container bg-black" }, /* @__PURE__ */ React.createElement("div", { className: "row bg-light no-gutters" }, /* @__PURE__ */ React.createElement("div", { className: "col-sm-12" }, /* @__PURE__ */ React.createElement("div", { className: "bd-example bd-example-tabs right-tabs mttabs m-3 " }, /* @__PURE__ */ React.createElement("div", { className: pay_default.paymentpopup }, /* @__PURE__ */ React.createElement(
948
+ /* @__PURE__ */ React2.createElement(Modal.Body, null, /* @__PURE__ */ React2.createElement("div", { className: "bg-black" }, /* @__PURE__ */ React2.createElement("div", { className: "container bg-black" }, /* @__PURE__ */ React2.createElement("div", { className: "row bg-light no-gutters" }, /* @__PURE__ */ React2.createElement("div", { className: "col-sm-12" }, /* @__PURE__ */ React2.createElement("div", { className: "bd-example bd-example-tabs right-tabs mttabs m-3 " }, /* @__PURE__ */ React2.createElement("div", { className: "payment-popup" }, /* @__PURE__ */ React2.createElement(
260
949
  "button",
261
950
  {
262
951
  className: "close-pop",
@@ -264,7 +953,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
264
953
  setShow(false);
265
954
  }
266
955
  },
267
- /* @__PURE__ */ React.createElement(
956
+ /* @__PURE__ */ React2.createElement(
268
957
  "svg",
269
958
  {
270
959
  xmlns: "http://www.w3.org/2000/svg",
@@ -272,7 +961,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
272
961
  height: 37,
273
962
  viewBox: "0 0 21 21"
274
963
  },
275
- /* @__PURE__ */ React.createElement(
964
+ /* @__PURE__ */ React2.createElement(
276
965
  "path",
277
966
  {
278
967
  fill: "none",
@@ -283,14 +972,14 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
283
972
  }
284
973
  )
285
974
  )
286
- ), /* @__PURE__ */ React.createElement("div", { className: "row" }, /* @__PURE__ */ React.createElement("div", { className: "comp-name" }, /* @__PURE__ */ React.createElement(
975
+ ), /* @__PURE__ */ React2.createElement("div", { className: "row" }, /* @__PURE__ */ React2.createElement("div", { className: "comp-name" }, /* @__PURE__ */ React2.createElement(
287
976
  "img",
288
977
  {
289
978
  src: "https://invoicestaging.skysystemz.com/assets/products/65c49a2740ff1.png",
290
979
  alt: "",
291
980
  className: "client-logo"
292
981
  }
293
- )), /* @__PURE__ */ React.createElement("div", { className: "" }, /* @__PURE__ */ React.createElement("div", { id: "Checkout", className: "inline" }, /* @__PURE__ */ React.createElement("div", { className: "header" }, /* @__PURE__ */ React.createElement("h1", null, "Pay"), /* @__PURE__ */ React.createElement(
982
+ )), /* @__PURE__ */ React2.createElement("div", { className: "" }, /* @__PURE__ */ React2.createElement("div", { id: "Checkout", className: "inline" }, /* @__PURE__ */ React2.createElement("div", { className: "header" }, /* @__PURE__ */ React2.createElement("h1", null, "Pay"), /* @__PURE__ */ React2.createElement(
294
983
  "i",
295
984
  {
296
985
  className: "fa fa-qrcode fa-2x",
@@ -298,23 +987,23 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
298
987
  title: "Show QR Code",
299
988
  onClick: () => setToggleQr(!toggleQr)
300
989
  }
301
- )), /* @__PURE__ */ React.createElement("div", { id: "qrCode", style: {
990
+ )), /* @__PURE__ */ React2.createElement("div", { id: "qrCode", style: {
302
991
  display: toggleQr ? "block" : "none"
303
- } }, /* @__PURE__ */ React.createElement(
992
+ } }, /* @__PURE__ */ React2.createElement(
304
993
  "img",
305
994
  {
306
995
  src: "data:image/png;base64,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",
307
996
  alt: "QRCode",
308
997
  srcSet: ""
309
998
  }
310
- )), /* @__PURE__ */ React.createElement(
999
+ )), /* @__PURE__ */ React2.createElement(
311
1000
  "form",
312
1001
  {
313
1002
  id: "PaymentForm",
314
1003
  className: "payment-form",
315
1004
  onSubmit: handleSubmit
316
1005
  },
317
- /* @__PURE__ */ React.createElement(
1006
+ /* @__PURE__ */ React2.createElement(
318
1007
  "input",
319
1008
  {
320
1009
  type: "hidden",
@@ -323,8 +1012,8 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
323
1012
  name: "dctoken"
324
1013
  }
325
1014
  ),
326
- /* @__PURE__ */ React.createElement("div", { className: "form-group top-amnt" }, /* @__PURE__ */ React.createElement("div", { className: "amtleft" }, /* @__PURE__ */ React.createElement("label", { htmlFor: "Amount" }, "Payment amount"), /* @__PURE__ */ React.createElement("div", { className: "amount-placeholder" }, /* @__PURE__ */ React.createElement("span", null, "$"), /* @__PURE__ */ React.createElement("span", null, " ", amount || 1, " "))), /* @__PURE__ */ React.createElement("div", { className: "card-row" }, /* @__PURE__ */ React.createElement("span", { className: "visa" }), /* @__PURE__ */ React.createElement("span", { className: "mastercard" }), /* @__PURE__ */ React.createElement("span", { className: "amex" }), /* @__PURE__ */ React.createElement("span", { className: "discover" }))),
327
- /* @__PURE__ */ React.createElement("div", { className: "form-group" }, /* @__PURE__ */ React.createElement("label", { htmlFor: "NameOnCard" }, "Name on card"), /* @__PURE__ */ React.createElement(
1015
+ /* @__PURE__ */ React2.createElement("div", { className: "form-group top-amnt" }, /* @__PURE__ */ React2.createElement("div", { className: "amtleft" }, /* @__PURE__ */ React2.createElement("label", { htmlFor: "Amount" }, "Payment amount"), /* @__PURE__ */ React2.createElement("div", { className: "amount-placeholder" }, /* @__PURE__ */ React2.createElement("span", null, "$"), /* @__PURE__ */ React2.createElement("span", null, " ", amount || 1, " "))), /* @__PURE__ */ React2.createElement("div", { className: "card-row" }, /* @__PURE__ */ React2.createElement("span", { className: "visa" }), /* @__PURE__ */ React2.createElement("span", { className: "mastercard" }), /* @__PURE__ */ React2.createElement("span", { className: "amex" }), /* @__PURE__ */ React2.createElement("span", { className: "discover" }))),
1016
+ /* @__PURE__ */ React2.createElement("div", { className: "form-group" }, /* @__PURE__ */ React2.createElement("label", { htmlFor: "NameOnCard" }, "Name on card"), /* @__PURE__ */ React2.createElement(
328
1017
  "input",
329
1018
  {
330
1019
  "data-token": "name",
@@ -336,14 +1025,14 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
336
1025
  value: formData == null ? void 0 : formData.name,
337
1026
  onChange: handleChange
338
1027
  }
339
- ), /* @__PURE__ */ React.createElement(
1028
+ ), /* @__PURE__ */ React2.createElement(
340
1029
  "span",
341
1030
  {
342
1031
  id: "NameOnCard-error",
343
1032
  style: { color: "red" }
344
1033
  }
345
1034
  )),
346
- /* @__PURE__ */ React.createElement("div", { className: "form-group" }, /* @__PURE__ */ React.createElement(
1035
+ /* @__PURE__ */ React2.createElement("div", { className: "form-group" }, /* @__PURE__ */ React2.createElement(
347
1036
  "input",
348
1037
  {
349
1038
  "data-token": "card_number",
@@ -354,7 +1043,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
354
1043
  value: handleCardFormat(formData == null ? void 0 : formData.card_number),
355
1044
  onChange: handleChange
356
1045
  }
357
- ), error.card_number && /* @__PURE__ */ React.createElement(
1046
+ ), error.card_number && /* @__PURE__ */ React2.createElement(
358
1047
  "span",
359
1048
  {
360
1049
  id: "card_number-error",
@@ -362,7 +1051,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
362
1051
  },
363
1052
  error.card_number
364
1053
  )),
365
- /* @__PURE__ */ React.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React.createElement(
1054
+ /* @__PURE__ */ React2.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React2.createElement(
366
1055
  "input",
367
1056
  {
368
1057
  "data-token": "exp_month",
@@ -373,7 +1062,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
373
1062
  value: formData == null ? void 0 : formData.exp_month,
374
1063
  onChange: handleChange
375
1064
  }
376
- ), error.exp_month && /* @__PURE__ */ React.createElement(
1065
+ ), error.exp_month && /* @__PURE__ */ React2.createElement(
377
1066
  "span",
378
1067
  {
379
1068
  id: "exp_month-error",
@@ -381,7 +1070,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
381
1070
  },
382
1071
  error.exp_month
383
1072
  )),
384
- /* @__PURE__ */ React.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React.createElement(
1073
+ /* @__PURE__ */ React2.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React2.createElement(
385
1074
  "input",
386
1075
  {
387
1076
  "data-token": "exp_year",
@@ -392,7 +1081,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
392
1081
  value: formData == null ? void 0 : formData.exp_year,
393
1082
  onChange: handleChange
394
1083
  }
395
- ), error.exp_year && /* @__PURE__ */ React.createElement(
1084
+ ), error.exp_year && /* @__PURE__ */ React2.createElement(
396
1085
  "span",
397
1086
  {
398
1087
  id: "exp_year-error",
@@ -400,7 +1089,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
400
1089
  },
401
1090
  error.exp_year
402
1091
  )),
403
- /* @__PURE__ */ React.createElement("div", { className: "security-code-group form-group" }, /* @__PURE__ */ React.createElement("div", { className: "input-container" }, /* @__PURE__ */ React.createElement(
1092
+ /* @__PURE__ */ React2.createElement("div", { className: "security-code-group form-group" }, /* @__PURE__ */ React2.createElement("div", { className: "input-container" }, /* @__PURE__ */ React2.createElement(
404
1093
  "input",
405
1094
  {
406
1095
  "data-token": "cvv",
@@ -411,15 +1100,15 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
411
1100
  value: formData == null ? void 0 : formData.cvv,
412
1101
  onChange: handleChange
413
1102
  }
414
- ), /* @__PURE__ */ React.createElement("i", { id: "cvc", className: "fa fa-question-circle" })), error.cvv && /* @__PURE__ */ React.createElement(
1103
+ ), /* @__PURE__ */ React2.createElement("i", { id: "cvc", className: "fa fa-question-circle" })), error.cvv && /* @__PURE__ */ React2.createElement(
415
1104
  "span",
416
1105
  {
417
1106
  id: "cvv-error",
418
1107
  style: { color: "red" }
419
1108
  },
420
1109
  error.cvv
421
- ), /* @__PURE__ */ React.createElement("div", { className: "cvc-preview-container two-card hide" }, /* @__PURE__ */ React.createElement("div", { className: "amex-cvc-preview" }), /* @__PURE__ */ React.createElement("div", { className: "visa-mc-dis-cvc-preview" }))),
422
- /* @__PURE__ */ React.createElement("div", { className: "zip-code-group form-group" }, /* @__PURE__ */ React.createElement("label", { htmlFor: "ZIPCode" }, "Postal code"), /* @__PURE__ */ React.createElement("div", { className: "input-container" }, /* @__PURE__ */ React.createElement(
1110
+ ), /* @__PURE__ */ React2.createElement("div", { className: "cvc-preview-container two-card hide" }, /* @__PURE__ */ React2.createElement("div", { className: "amex-cvc-preview" }), /* @__PURE__ */ React2.createElement("div", { className: "visa-mc-dis-cvc-preview" }))),
1111
+ /* @__PURE__ */ React2.createElement("div", { className: "zip-code-group form-group" }, /* @__PURE__ */ React2.createElement("label", { htmlFor: "ZIPCode" }, "Postal code"), /* @__PURE__ */ React2.createElement("div", { className: "input-container" }, /* @__PURE__ */ React2.createElement(
423
1112
  "input",
424
1113
  {
425
1114
  id: "ZIPCode",
@@ -431,7 +1120,7 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
431
1120
  value: formData == null ? void 0 : formData.zip,
432
1121
  onChange: handleChange
433
1122
  }
434
- ), /* @__PURE__ */ React.createElement(
1123
+ ), /* @__PURE__ */ React2.createElement(
435
1124
  "a",
436
1125
  {
437
1126
  tabIndex: 0,
@@ -441,8 +1130,8 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
441
1130
  "data-placement": "left",
442
1131
  "data-content": "Enter the ZIP/Postal code for your credit card billing address."
443
1132
  },
444
- /* @__PURE__ */ React.createElement("i", { className: "fa fa-question-circle" })
445
- ), /* @__PURE__ */ React.createElement(
1133
+ /* @__PURE__ */ React2.createElement("i", { className: "fa fa-question-circle" })
1134
+ ), /* @__PURE__ */ React2.createElement(
446
1135
  "span",
447
1136
  {
448
1137
  id: "ZIPCode-error",
@@ -450,24 +1139,24 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
450
1139
  },
451
1140
  "This field is required"
452
1141
  ))),
453
- /* @__PURE__ */ React.createElement(
1142
+ /* @__PURE__ */ React2.createElement(
454
1143
  "button",
455
1144
  {
456
1145
  id: "PayButton",
457
1146
  className: "btn btn-block btn-success submit-button",
458
1147
  type: "submit"
459
1148
  },
460
- /* @__PURE__ */ React.createElement("span", { className: "submit-button-lock" }),
461
- /* @__PURE__ */ React.createElement("span", { className: "align-middle" }, "Pay $", amount || 1)
1149
+ /* @__PURE__ */ React2.createElement("span", { className: "submit-button-lock" }),
1150
+ /* @__PURE__ */ React2.createElement("span", { className: "align-middle" }, "Pay $", amount || 1)
462
1151
  )
463
- ), /* @__PURE__ */ React.createElement("div", { className: "powerd-by-part", style: {
1152
+ ), /* @__PURE__ */ React2.createElement("div", { className: "powerd-by-part", style: {
464
1153
  display: "flex",
465
1154
  fontSize: "12px",
466
1155
  textAlign: "center",
467
1156
  alignItems: "center",
468
1157
  justifyContent: "center",
469
1158
  margin: "8px 0 20px 0"
470
- } }, /* @__PURE__ */ React.createElement(
1159
+ } }, /* @__PURE__ */ React2.createElement(
471
1160
  "svg",
472
1161
  {
473
1162
  xmlns: "http://www.w3.org/2000/svg",
@@ -475,14 +1164,14 @@ function PaywithFractal({ name, amount, orderId, fractalPayClientKey }) {
475
1164
  height: 20,
476
1165
  viewBox: "0 0 26 26"
477
1166
  },
478
- /* @__PURE__ */ React.createElement(
1167
+ /* @__PURE__ */ React2.createElement(
479
1168
  "path",
480
1169
  {
481
1170
  fill: "currentColor",
482
1171
  d: "M23.633 5.028a1.074 1.074 0 0 0-.777-.366c-2.295-.06-5.199-2.514-7.119-3.477C14.551.592 13.768.201 13.18.098a1.225 1.225 0 0 0-.36.001c-.588.103-1.371.494-2.556 1.087c-1.92.962-4.824 3.416-7.119 3.476a1.08 1.08 0 0 0-.778.366a1.167 1.167 0 0 0-.291.834c.493 10.023 4.088 16.226 10.396 19.831c.164.093.346.141.527.141s.363-.048.528-.141c6.308-3.605 9.902-9.808 10.396-19.831a1.161 1.161 0 0 0-.29-.834zM18.617 8.97l-5.323 7.855c-.191.282-.491.469-.788.469c-.298 0-.629-.163-.838-.372l-3.752-3.753a.656.656 0 0 1 0-.926l.927-.929a.658.658 0 0 1 .926 0l2.44 2.44l4.239-6.257a.657.657 0 0 1 .91-.173l1.085.736a.657.657 0 0 1 .174.91z"
483
1172
  }
484
1173
  )
485
- ), "Secure payments powered by Fractal", /* @__PURE__ */ React.createElement(
1174
+ ), "Secure payments powered by Fractal", /* @__PURE__ */ React2.createElement(
486
1175
  "img",
487
1176
  {
488
1177
  src: "https://ui.fractalpay.com/favicon.ico",