@everymatrix/user-deposit-withdrawal 1.54.11 → 1.55.0

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 (24) hide show
  1. package/dist/cjs/{index-bcd33d7f.js → index-43a33fec.js} +72 -175
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/user-deposit-withdrawal.cjs.entry.js +26 -27
  4. package/dist/cjs/user-deposit-withdrawal.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/components/user-deposit-withdrawal/user-deposit-withdrawal.js +26 -71
  7. package/dist/esm/{index-45f4006f.js → index-657e7a14.js} +72 -175
  8. package/dist/esm/loader.js +2 -2
  9. package/dist/esm/user-deposit-withdrawal.entry.js +26 -27
  10. package/dist/esm/user-deposit-withdrawal.js +3 -3
  11. 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
  12. 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
  13. package/dist/user-deposit-withdrawal/p-0913d346.entry.js +1 -0
  14. package/dist/user-deposit-withdrawal/p-8690bdb0.js +2 -0
  15. package/dist/user-deposit-withdrawal/user-deposit-withdrawal.esm.js +1 -1
  16. package/package.json +1 -1
  17. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/packages/stencil/user-deposit-withdrawal/stencil.config.d.ts +0 -2
  18. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/packages/stencil/user-deposit-withdrawal/stencil.config.dev.d.ts +0 -2
  19. package/dist/user-deposit-withdrawal/p-619e843b.entry.js +0 -1
  20. package/dist/user-deposit-withdrawal/p-d1658e2e.js +0 -2
  21. /package/dist/types/{builds/emfe-widgets → Users/maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/index.d.ts +0 -0
  22. /package/dist/types/{builds/emfe-widgets → Users/maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
  23. /package/dist/types/{builds/emfe-widgets → Users/maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
  24. /package/dist/types/{builds/emfe-widgets → Users/maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/user-deposit-withdrawal/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
@@ -7,32 +7,6 @@ dayjs.extend(utc);
7
7
  const emptyFunction = () => { };
8
8
  export class UserDepositWithdrawal {
9
9
  constructor() {
10
- /**
11
- * Client custom styling via inline style
12
- */
13
- this.clientStyling = '';
14
- /**
15
- * Client custom styling via url
16
- */
17
- this.clientStylingUrl = '';
18
- /**
19
- * Translations via URL
20
- */
21
- this.translationUrl = '';
22
- /*
23
- * Operator selected currency
24
- */
25
- this.currency = '';
26
- /*
27
- * Display bonus dropdown
28
- */
29
- this.showBonusSelectionInput = 'true';
30
- /*
31
- * State of deposit - short cashier enabled or not
32
- */
33
- this.isShortCashier = false;
34
- this.beforeRedirect = emptyFunction;
35
- this.limitStylingAppends = false;
36
10
  this.bindedHandler = this.handleMessage.bind(this);
37
11
  this.userAgent = window.navigator.userAgent;
38
12
  this.isMobile = isMobile(this.userAgent);
@@ -55,6 +29,31 @@ export class UserDepositWithdrawal {
55
29
  console.log('error ', err);
56
30
  });
57
31
  };
32
+ this.clientStyling = '';
33
+ this.clientStylingUrl = '';
34
+ this.translationUrl = '';
35
+ this.endpoint = undefined;
36
+ this.type = undefined;
37
+ this.channel = undefined;
38
+ this.language = undefined;
39
+ this.productType = undefined;
40
+ this.userId = undefined;
41
+ this.session = undefined;
42
+ this.successUrl = undefined;
43
+ this.cancelUrl = undefined;
44
+ this.failUrl = undefined;
45
+ this.sportsUrl = undefined;
46
+ this.casinoUrl = undefined;
47
+ this.contactUrl = undefined;
48
+ this.depositUrl = undefined;
49
+ this.currency = '';
50
+ this.showBonusSelectionInput = 'true';
51
+ this.isShortCashier = false;
52
+ this.homeUrl = undefined;
53
+ this.beforeRedirect = emptyFunction;
54
+ this.limitStylingAppends = false;
55
+ this.dynamicHeight = undefined;
56
+ this.cashierInfoUrl = undefined;
58
57
  }
59
58
  get typeParameter() {
60
59
  if (this.type === 'deposit') {
@@ -228,8 +227,6 @@ export class UserDepositWithdrawal {
228
227
  "tags": [],
229
228
  "text": "Client custom styling via inline style"
230
229
  },
231
- "getter": false,
232
- "setter": false,
233
230
  "attribute": "client-styling",
234
231
  "reflect": true,
235
232
  "defaultValue": "''"
@@ -248,8 +245,6 @@ export class UserDepositWithdrawal {
248
245
  "tags": [],
249
246
  "text": "Client custom styling via url"
250
247
  },
251
- "getter": false,
252
- "setter": false,
253
248
  "attribute": "client-styling-url",
254
249
  "reflect": true,
255
250
  "defaultValue": "''"
@@ -268,8 +263,6 @@ export class UserDepositWithdrawal {
268
263
  "tags": [],
269
264
  "text": "Translations via URL"
270
265
  },
271
- "getter": false,
272
- "setter": false,
273
266
  "attribute": "translation-url",
274
267
  "reflect": true,
275
268
  "defaultValue": "''"
@@ -288,8 +281,6 @@ export class UserDepositWithdrawal {
288
281
  "tags": [],
289
282
  "text": "Endpoint"
290
283
  },
291
- "getter": false,
292
- "setter": false,
293
284
  "attribute": "endpoint",
294
285
  "reflect": true
295
286
  },
@@ -307,8 +298,6 @@ export class UserDepositWithdrawal {
307
298
  "tags": [],
308
299
  "text": ""
309
300
  },
310
- "getter": false,
311
- "setter": false,
312
301
  "attribute": "type",
313
302
  "reflect": true
314
303
  },
@@ -326,8 +315,6 @@ export class UserDepositWithdrawal {
326
315
  "tags": [],
327
316
  "text": ""
328
317
  },
329
- "getter": false,
330
- "setter": false,
331
318
  "attribute": "channel",
332
319
  "reflect": true
333
320
  },
@@ -345,8 +332,6 @@ export class UserDepositWithdrawal {
345
332
  "tags": [],
346
333
  "text": ""
347
334
  },
348
- "getter": false,
349
- "setter": false,
350
335
  "attribute": "language",
351
336
  "reflect": true
352
337
  },
@@ -364,8 +349,6 @@ export class UserDepositWithdrawal {
364
349
  "tags": [],
365
350
  "text": ""
366
351
  },
367
- "getter": false,
368
- "setter": false,
369
352
  "attribute": "product-type",
370
353
  "reflect": true
371
354
  },
@@ -383,8 +366,6 @@ export class UserDepositWithdrawal {
383
366
  "tags": [],
384
367
  "text": ""
385
368
  },
386
- "getter": false,
387
- "setter": false,
388
369
  "attribute": "user-id",
389
370
  "reflect": true
390
371
  },
@@ -402,8 +383,6 @@ export class UserDepositWithdrawal {
402
383
  "tags": [],
403
384
  "text": ""
404
385
  },
405
- "getter": false,
406
- "setter": false,
407
386
  "attribute": "session",
408
387
  "reflect": true
409
388
  },
@@ -421,8 +400,6 @@ export class UserDepositWithdrawal {
421
400
  "tags": [],
422
401
  "text": ""
423
402
  },
424
- "getter": false,
425
- "setter": false,
426
403
  "attribute": "success-url",
427
404
  "reflect": true
428
405
  },
@@ -440,8 +417,6 @@ export class UserDepositWithdrawal {
440
417
  "tags": [],
441
418
  "text": ""
442
419
  },
443
- "getter": false,
444
- "setter": false,
445
420
  "attribute": "cancel-url",
446
421
  "reflect": true
447
422
  },
@@ -459,8 +434,6 @@ export class UserDepositWithdrawal {
459
434
  "tags": [],
460
435
  "text": ""
461
436
  },
462
- "getter": false,
463
- "setter": false,
464
437
  "attribute": "fail-url",
465
438
  "reflect": true
466
439
  },
@@ -478,8 +451,6 @@ export class UserDepositWithdrawal {
478
451
  "tags": [],
479
452
  "text": ""
480
453
  },
481
- "getter": false,
482
- "setter": false,
483
454
  "attribute": "sports-url",
484
455
  "reflect": true
485
456
  },
@@ -497,8 +468,6 @@ export class UserDepositWithdrawal {
497
468
  "tags": [],
498
469
  "text": ""
499
470
  },
500
- "getter": false,
501
- "setter": false,
502
471
  "attribute": "casino-url",
503
472
  "reflect": true
504
473
  },
@@ -516,8 +485,6 @@ export class UserDepositWithdrawal {
516
485
  "tags": [],
517
486
  "text": ""
518
487
  },
519
- "getter": false,
520
- "setter": false,
521
488
  "attribute": "contact-url",
522
489
  "reflect": true
523
490
  },
@@ -535,8 +502,6 @@ export class UserDepositWithdrawal {
535
502
  "tags": [],
536
503
  "text": ""
537
504
  },
538
- "getter": false,
539
- "setter": false,
540
505
  "attribute": "deposit-url",
541
506
  "reflect": true
542
507
  },
@@ -554,8 +519,6 @@ export class UserDepositWithdrawal {
554
519
  "tags": [],
555
520
  "text": ""
556
521
  },
557
- "getter": false,
558
- "setter": false,
559
522
  "attribute": "currency",
560
523
  "reflect": true,
561
524
  "defaultValue": "''"
@@ -574,8 +537,6 @@ export class UserDepositWithdrawal {
574
537
  "tags": [],
575
538
  "text": ""
576
539
  },
577
- "getter": false,
578
- "setter": false,
579
540
  "attribute": "show-bonus-selection-input",
580
541
  "reflect": true,
581
542
  "defaultValue": "'true'"
@@ -594,8 +555,6 @@ export class UserDepositWithdrawal {
594
555
  "tags": [],
595
556
  "text": ""
596
557
  },
597
- "getter": false,
598
- "setter": false,
599
558
  "attribute": "is-short-cashier",
600
559
  "reflect": true,
601
560
  "defaultValue": "false"
@@ -614,8 +573,6 @@ export class UserDepositWithdrawal {
614
573
  "tags": [],
615
574
  "text": ""
616
575
  },
617
- "getter": false,
618
- "setter": false,
619
576
  "attribute": "home-url",
620
577
  "reflect": true
621
578
  },
@@ -628,7 +585,7 @@ export class UserDepositWithdrawal {
628
585
  "references": {
629
586
  "RedirectCallbackArgs": {
630
587
  "location": "local",
631
- "path": "/builds/emfe-widgets/widgets-monorepo/packages/stencil/user-deposit-withdrawal/src/components/user-deposit-withdrawal/user-deposit-withdrawal.tsx",
588
+ "path": "/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/user-deposit-withdrawal/src/components/user-deposit-withdrawal/user-deposit-withdrawal.tsx",
632
589
  "id": "../../../../packages/stencil/user-deposit-withdrawal/src/components/user-deposit-withdrawal/user-deposit-withdrawal.tsx::RedirectCallbackArgs"
633
590
  }
634
591
  }
@@ -639,8 +596,6 @@ export class UserDepositWithdrawal {
639
596
  "tags": [],
640
597
  "text": ""
641
598
  },
642
- "getter": false,
643
- "setter": false,
644
599
  "defaultValue": "emptyFunction"
645
600
  }
646
601
  };