@everymatrix/user-deposit-withdrawal 1.56.0 → 1.56.3
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/dist/cjs/{index-8df72484.js → index-ef2818c5.js} +71 -208
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/user-deposit-withdrawal.cjs.entry.js +23 -23
- package/dist/cjs/user-deposit-withdrawal.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/components/user-deposit-withdrawal/user-deposit-withdrawal.js +23 -69
- package/dist/esm/{index-c7e52808.js → index-1ef3a64c.js} +71 -208
- package/dist/esm/loader.js +2 -2
- package/dist/esm/user-deposit-withdrawal.entry.js +23 -23
- package/dist/esm/user-deposit-withdrawal.js +3 -3
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/packages/stencil/user-deposit-withdrawal/stencil.config.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/packages/stencil/user-deposit-withdrawal/stencil.config.dev.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/dist/user-deposit-withdrawal/p-28da125c.js +2 -0
- package/dist/user-deposit-withdrawal/p-cfe9e501.entry.js +1 -0
- package/dist/user-deposit-withdrawal/user-deposit-withdrawal.esm.js +1 -1
- package/package.json +1 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/packages/stencil/user-deposit-withdrawal/stencil.config.d.ts +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/packages/stencil/user-deposit-withdrawal/stencil.config.dev.d.ts +0 -2
- package/dist/user-deposit-withdrawal/p-0522d925.entry.js +0 -1
- package/dist/user-deposit-withdrawal/p-2ae4c897.js +0 -2
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -8,35 +8,35 @@ dayjs.extend(utc);
|
|
|
8
8
|
const emptyFunction = () => { };
|
|
9
9
|
export class UserDepositWithdrawal {
|
|
10
10
|
constructor() {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
this.bindedHandler = this.handleMessage.bind(this);
|
|
12
|
+
this.userAgent = window.navigator.userAgent;
|
|
13
|
+
this.isMobile = isMobile(this.userAgent);
|
|
14
|
+
this.errorCodes = ["21123", "21122"];
|
|
15
|
+
this.mbSource = undefined;
|
|
14
16
|
this.clientStyling = '';
|
|
15
|
-
/**
|
|
16
|
-
* Client custom styling via url
|
|
17
|
-
*/
|
|
18
17
|
this.clientStylingUrl = '';
|
|
19
|
-
/**
|
|
20
|
-
* Translations via URL
|
|
21
|
-
*/
|
|
22
18
|
this.translationUrl = '';
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
this.endpoint = undefined;
|
|
20
|
+
this.type = undefined;
|
|
21
|
+
this.channel = undefined;
|
|
22
|
+
this.language = undefined;
|
|
23
|
+
this.productType = undefined;
|
|
24
|
+
this.userId = undefined;
|
|
25
|
+
this.session = undefined;
|
|
26
|
+
this.successUrl = undefined;
|
|
27
|
+
this.cancelUrl = undefined;
|
|
28
|
+
this.failUrl = undefined;
|
|
29
|
+
this.sportsUrl = undefined;
|
|
30
|
+
this.casinoUrl = undefined;
|
|
31
|
+
this.contactUrl = undefined;
|
|
32
|
+
this.depositUrl = undefined;
|
|
26
33
|
this.currency = '';
|
|
27
|
-
/*
|
|
28
|
-
* Display bonus dropdown
|
|
29
|
-
*/
|
|
30
34
|
this.showBonusSelectionInput = 'true';
|
|
31
|
-
/*
|
|
32
|
-
* State of deposit - short cashier enabled or not
|
|
33
|
-
*/
|
|
34
35
|
this.isShortCashier = false;
|
|
36
|
+
this.homeUrl = undefined;
|
|
35
37
|
this.beforeRedirect = emptyFunction;
|
|
36
|
-
this.
|
|
37
|
-
this.
|
|
38
|
-
this.isMobile = isMobile(this.userAgent);
|
|
39
|
-
this.errorCodes = ["21123", "21122"];
|
|
38
|
+
this.dynamicHeight = undefined;
|
|
39
|
+
this.cashierInfoUrl = undefined;
|
|
40
40
|
}
|
|
41
41
|
get typeParameter() {
|
|
42
42
|
if (this.type === 'deposit') {
|
|
@@ -222,8 +222,6 @@ export class UserDepositWithdrawal {
|
|
|
222
222
|
"tags": [],
|
|
223
223
|
"text": "Client custom styling via streamStyling"
|
|
224
224
|
},
|
|
225
|
-
"getter": false,
|
|
226
|
-
"setter": false,
|
|
227
225
|
"attribute": "mb-source",
|
|
228
226
|
"reflect": true
|
|
229
227
|
},
|
|
@@ -241,8 +239,6 @@ export class UserDepositWithdrawal {
|
|
|
241
239
|
"tags": [],
|
|
242
240
|
"text": "Client custom styling via inline style"
|
|
243
241
|
},
|
|
244
|
-
"getter": false,
|
|
245
|
-
"setter": false,
|
|
246
242
|
"attribute": "client-styling",
|
|
247
243
|
"reflect": true,
|
|
248
244
|
"defaultValue": "''"
|
|
@@ -261,8 +257,6 @@ export class UserDepositWithdrawal {
|
|
|
261
257
|
"tags": [],
|
|
262
258
|
"text": "Client custom styling via url"
|
|
263
259
|
},
|
|
264
|
-
"getter": false,
|
|
265
|
-
"setter": false,
|
|
266
260
|
"attribute": "client-styling-url",
|
|
267
261
|
"reflect": true,
|
|
268
262
|
"defaultValue": "''"
|
|
@@ -281,8 +275,6 @@ export class UserDepositWithdrawal {
|
|
|
281
275
|
"tags": [],
|
|
282
276
|
"text": "Translations via URL"
|
|
283
277
|
},
|
|
284
|
-
"getter": false,
|
|
285
|
-
"setter": false,
|
|
286
278
|
"attribute": "translation-url",
|
|
287
279
|
"reflect": true,
|
|
288
280
|
"defaultValue": "''"
|
|
@@ -301,8 +293,6 @@ export class UserDepositWithdrawal {
|
|
|
301
293
|
"tags": [],
|
|
302
294
|
"text": "Endpoint"
|
|
303
295
|
},
|
|
304
|
-
"getter": false,
|
|
305
|
-
"setter": false,
|
|
306
296
|
"attribute": "endpoint",
|
|
307
297
|
"reflect": true
|
|
308
298
|
},
|
|
@@ -320,8 +310,6 @@ export class UserDepositWithdrawal {
|
|
|
320
310
|
"tags": [],
|
|
321
311
|
"text": ""
|
|
322
312
|
},
|
|
323
|
-
"getter": false,
|
|
324
|
-
"setter": false,
|
|
325
313
|
"attribute": "type",
|
|
326
314
|
"reflect": true
|
|
327
315
|
},
|
|
@@ -339,8 +327,6 @@ export class UserDepositWithdrawal {
|
|
|
339
327
|
"tags": [],
|
|
340
328
|
"text": ""
|
|
341
329
|
},
|
|
342
|
-
"getter": false,
|
|
343
|
-
"setter": false,
|
|
344
330
|
"attribute": "channel",
|
|
345
331
|
"reflect": true
|
|
346
332
|
},
|
|
@@ -358,8 +344,6 @@ export class UserDepositWithdrawal {
|
|
|
358
344
|
"tags": [],
|
|
359
345
|
"text": ""
|
|
360
346
|
},
|
|
361
|
-
"getter": false,
|
|
362
|
-
"setter": false,
|
|
363
347
|
"attribute": "language",
|
|
364
348
|
"reflect": true
|
|
365
349
|
},
|
|
@@ -377,8 +361,6 @@ export class UserDepositWithdrawal {
|
|
|
377
361
|
"tags": [],
|
|
378
362
|
"text": ""
|
|
379
363
|
},
|
|
380
|
-
"getter": false,
|
|
381
|
-
"setter": false,
|
|
382
364
|
"attribute": "product-type",
|
|
383
365
|
"reflect": true
|
|
384
366
|
},
|
|
@@ -396,8 +378,6 @@ export class UserDepositWithdrawal {
|
|
|
396
378
|
"tags": [],
|
|
397
379
|
"text": ""
|
|
398
380
|
},
|
|
399
|
-
"getter": false,
|
|
400
|
-
"setter": false,
|
|
401
381
|
"attribute": "user-id",
|
|
402
382
|
"reflect": true
|
|
403
383
|
},
|
|
@@ -415,8 +395,6 @@ export class UserDepositWithdrawal {
|
|
|
415
395
|
"tags": [],
|
|
416
396
|
"text": ""
|
|
417
397
|
},
|
|
418
|
-
"getter": false,
|
|
419
|
-
"setter": false,
|
|
420
398
|
"attribute": "session",
|
|
421
399
|
"reflect": true
|
|
422
400
|
},
|
|
@@ -434,8 +412,6 @@ export class UserDepositWithdrawal {
|
|
|
434
412
|
"tags": [],
|
|
435
413
|
"text": ""
|
|
436
414
|
},
|
|
437
|
-
"getter": false,
|
|
438
|
-
"setter": false,
|
|
439
415
|
"attribute": "success-url",
|
|
440
416
|
"reflect": true
|
|
441
417
|
},
|
|
@@ -453,8 +429,6 @@ export class UserDepositWithdrawal {
|
|
|
453
429
|
"tags": [],
|
|
454
430
|
"text": ""
|
|
455
431
|
},
|
|
456
|
-
"getter": false,
|
|
457
|
-
"setter": false,
|
|
458
432
|
"attribute": "cancel-url",
|
|
459
433
|
"reflect": true
|
|
460
434
|
},
|
|
@@ -472,8 +446,6 @@ export class UserDepositWithdrawal {
|
|
|
472
446
|
"tags": [],
|
|
473
447
|
"text": ""
|
|
474
448
|
},
|
|
475
|
-
"getter": false,
|
|
476
|
-
"setter": false,
|
|
477
449
|
"attribute": "fail-url",
|
|
478
450
|
"reflect": true
|
|
479
451
|
},
|
|
@@ -491,8 +463,6 @@ export class UserDepositWithdrawal {
|
|
|
491
463
|
"tags": [],
|
|
492
464
|
"text": ""
|
|
493
465
|
},
|
|
494
|
-
"getter": false,
|
|
495
|
-
"setter": false,
|
|
496
466
|
"attribute": "sports-url",
|
|
497
467
|
"reflect": true
|
|
498
468
|
},
|
|
@@ -510,8 +480,6 @@ export class UserDepositWithdrawal {
|
|
|
510
480
|
"tags": [],
|
|
511
481
|
"text": ""
|
|
512
482
|
},
|
|
513
|
-
"getter": false,
|
|
514
|
-
"setter": false,
|
|
515
483
|
"attribute": "casino-url",
|
|
516
484
|
"reflect": true
|
|
517
485
|
},
|
|
@@ -529,8 +497,6 @@ export class UserDepositWithdrawal {
|
|
|
529
497
|
"tags": [],
|
|
530
498
|
"text": ""
|
|
531
499
|
},
|
|
532
|
-
"getter": false,
|
|
533
|
-
"setter": false,
|
|
534
500
|
"attribute": "contact-url",
|
|
535
501
|
"reflect": true
|
|
536
502
|
},
|
|
@@ -548,8 +514,6 @@ export class UserDepositWithdrawal {
|
|
|
548
514
|
"tags": [],
|
|
549
515
|
"text": ""
|
|
550
516
|
},
|
|
551
|
-
"getter": false,
|
|
552
|
-
"setter": false,
|
|
553
517
|
"attribute": "deposit-url",
|
|
554
518
|
"reflect": true
|
|
555
519
|
},
|
|
@@ -567,8 +531,6 @@ export class UserDepositWithdrawal {
|
|
|
567
531
|
"tags": [],
|
|
568
532
|
"text": ""
|
|
569
533
|
},
|
|
570
|
-
"getter": false,
|
|
571
|
-
"setter": false,
|
|
572
534
|
"attribute": "currency",
|
|
573
535
|
"reflect": true,
|
|
574
536
|
"defaultValue": "''"
|
|
@@ -587,8 +549,6 @@ export class UserDepositWithdrawal {
|
|
|
587
549
|
"tags": [],
|
|
588
550
|
"text": ""
|
|
589
551
|
},
|
|
590
|
-
"getter": false,
|
|
591
|
-
"setter": false,
|
|
592
552
|
"attribute": "show-bonus-selection-input",
|
|
593
553
|
"reflect": true,
|
|
594
554
|
"defaultValue": "'true'"
|
|
@@ -607,8 +567,6 @@ export class UserDepositWithdrawal {
|
|
|
607
567
|
"tags": [],
|
|
608
568
|
"text": ""
|
|
609
569
|
},
|
|
610
|
-
"getter": false,
|
|
611
|
-
"setter": false,
|
|
612
570
|
"attribute": "is-short-cashier",
|
|
613
571
|
"reflect": true,
|
|
614
572
|
"defaultValue": "false"
|
|
@@ -627,8 +585,6 @@ export class UserDepositWithdrawal {
|
|
|
627
585
|
"tags": [],
|
|
628
586
|
"text": ""
|
|
629
587
|
},
|
|
630
|
-
"getter": false,
|
|
631
|
-
"setter": false,
|
|
632
588
|
"attribute": "home-url",
|
|
633
589
|
"reflect": true
|
|
634
590
|
},
|
|
@@ -641,7 +597,7 @@ export class UserDepositWithdrawal {
|
|
|
641
597
|
"references": {
|
|
642
598
|
"RedirectCallbackArgs": {
|
|
643
599
|
"location": "local",
|
|
644
|
-
"path": "/Users/
|
|
600
|
+
"path": "/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/user-deposit-withdrawal/src/components/user-deposit-withdrawal/user-deposit-withdrawal.tsx",
|
|
645
601
|
"id": "../../../../packages/stencil/user-deposit-withdrawal/src/components/user-deposit-withdrawal/user-deposit-withdrawal.tsx::RedirectCallbackArgs"
|
|
646
602
|
}
|
|
647
603
|
}
|
|
@@ -652,8 +608,6 @@ export class UserDepositWithdrawal {
|
|
|
652
608
|
"tags": [],
|
|
653
609
|
"text": ""
|
|
654
610
|
},
|
|
655
|
-
"getter": false,
|
|
656
|
-
"setter": false,
|
|
657
611
|
"defaultValue": "emptyFunction"
|
|
658
612
|
}
|
|
659
613
|
};
|