@everymatrix/casino-tournament-banner 1.55.0 → 1.56.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.
- package/dist/casino-tournament-banner/casino-tournament-banner.esm.js +1 -1
- package/dist/casino-tournament-banner/{p-cf75bb37.entry.js → p-84129bcd.entry.js} +3 -3
- package/dist/casino-tournament-banner/p-91da2a22.js +2 -0
- package/dist/cjs/casino-tournament-banner.cjs.js +2 -2
- package/dist/cjs/casino-tournament-banner_2.cjs.entry.js +37 -38
- package/dist/cjs/{index-ceec4c54.js → index-0b07ce8b.js} +173 -70
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/casino-tournament-banner/casino-tournament-banner.js +82 -26
- package/dist/esm/casino-tournament-banner.js +3 -3
- package/dist/esm/casino-tournament-banner_2.entry.js +37 -38
- package/dist/esm/{index-4d03c228.js → index-35b94b68.js} +173 -70
- package/dist/esm/loader.js +2 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/packages/stencil/casino-tournament-banner/stencil.config.d.ts +2 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/packages/stencil/casino-tournament-banner/stencil.config.dev.d.ts +2 -0
- package/package.json +1 -1
- package/dist/casino-tournament-banner/p-890a4a7f.js +0 -2
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/packages/stencil/casino-tournament-banner/stencil.config.d.ts +0 -2
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/packages/stencil/casino-tournament-banner/stencil.config.dev.d.ts +0 -2
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/casino-tournament-banner/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -4,41 +4,39 @@ import moment from "moment";
|
|
|
4
4
|
import "../../../../../casino-tournament-buttons/dist/types/index";
|
|
5
5
|
export class CasinoTournamentBanner {
|
|
6
6
|
constructor() {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.enrolled = undefined;
|
|
11
|
-
this.startTime = undefined;
|
|
12
|
-
this.endTime = undefined;
|
|
13
|
-
this.thumbnail = undefined;
|
|
14
|
-
this.language = undefined;
|
|
15
|
-
this.showCalendar = undefined;
|
|
16
|
-
this.shortStart = undefined;
|
|
7
|
+
/**
|
|
8
|
+
* Short start time format
|
|
9
|
+
*/
|
|
17
10
|
this.shortstartformat = 'DD MMM YYYY';
|
|
11
|
+
/**
|
|
12
|
+
* Show date on widget
|
|
13
|
+
*/
|
|
18
14
|
this.showDate = true;
|
|
15
|
+
/**
|
|
16
|
+
* Show date on running state tournament tag
|
|
17
|
+
*/
|
|
19
18
|
this.showRunningDate = false;
|
|
19
|
+
/**
|
|
20
|
+
* Show check icon on enrolled tag
|
|
21
|
+
*/
|
|
20
22
|
this.showCheck = false;
|
|
23
|
+
/**
|
|
24
|
+
* Widget display as a card
|
|
25
|
+
*/
|
|
21
26
|
this.cardMode = false;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
this.session = undefined;
|
|
26
|
-
this.loginEvent = undefined;
|
|
27
|
-
this.loginUrl = undefined;
|
|
28
|
-
this.registerEvent = undefined;
|
|
29
|
-
this.registerUrl = undefined;
|
|
30
|
-
this.currency = undefined;
|
|
31
|
-
this.bonusCode = undefined;
|
|
27
|
+
/**
|
|
28
|
+
* Show read more button
|
|
29
|
+
*/
|
|
32
30
|
this.showReadMore = false;
|
|
31
|
+
/**
|
|
32
|
+
* Client custom styling via inline styles
|
|
33
|
+
*/
|
|
33
34
|
this.clientStyling = '';
|
|
35
|
+
/**
|
|
36
|
+
* Client custom styling via url
|
|
37
|
+
*/
|
|
34
38
|
this.clientStylingUrl = '';
|
|
35
|
-
this.translationData = undefined;
|
|
36
|
-
this.stateText = undefined;
|
|
37
39
|
this.limitStylingAppends = false;
|
|
38
|
-
this.startdate = undefined;
|
|
39
|
-
this.tournamentLeftDays = undefined;
|
|
40
|
-
this.showRemain = undefined;
|
|
41
|
-
this.durationInterval = undefined;
|
|
42
40
|
}
|
|
43
41
|
watchLanguage(newValue, oldValue) {
|
|
44
42
|
if (newValue && newValue != oldValue) {
|
|
@@ -235,6 +233,8 @@ export class CasinoTournamentBanner {
|
|
|
235
233
|
"tags": [],
|
|
236
234
|
"text": "Use event to load data"
|
|
237
235
|
},
|
|
236
|
+
"getter": false,
|
|
237
|
+
"setter": false,
|
|
238
238
|
"attribute": "use-event",
|
|
239
239
|
"reflect": false
|
|
240
240
|
},
|
|
@@ -252,6 +252,8 @@ export class CasinoTournamentBanner {
|
|
|
252
252
|
"tags": [],
|
|
253
253
|
"text": "The NWA endpoint"
|
|
254
254
|
},
|
|
255
|
+
"getter": false,
|
|
256
|
+
"setter": false,
|
|
255
257
|
"attribute": "endpoint",
|
|
256
258
|
"reflect": false
|
|
257
259
|
},
|
|
@@ -269,6 +271,8 @@ export class CasinoTournamentBanner {
|
|
|
269
271
|
"tags": [],
|
|
270
272
|
"text": "The tournament state"
|
|
271
273
|
},
|
|
274
|
+
"getter": false,
|
|
275
|
+
"setter": false,
|
|
272
276
|
"attribute": "state",
|
|
273
277
|
"reflect": false
|
|
274
278
|
},
|
|
@@ -286,6 +290,8 @@ export class CasinoTournamentBanner {
|
|
|
286
290
|
"tags": [],
|
|
287
291
|
"text": "Player enrolled"
|
|
288
292
|
},
|
|
293
|
+
"getter": false,
|
|
294
|
+
"setter": false,
|
|
289
295
|
"attribute": "enrolled",
|
|
290
296
|
"reflect": false
|
|
291
297
|
},
|
|
@@ -303,6 +309,8 @@ export class CasinoTournamentBanner {
|
|
|
303
309
|
"tags": [],
|
|
304
310
|
"text": "Tournament start time"
|
|
305
311
|
},
|
|
312
|
+
"getter": false,
|
|
313
|
+
"setter": false,
|
|
306
314
|
"attribute": "start-time",
|
|
307
315
|
"reflect": false
|
|
308
316
|
},
|
|
@@ -320,6 +328,8 @@ export class CasinoTournamentBanner {
|
|
|
320
328
|
"tags": [],
|
|
321
329
|
"text": "Tournament end time"
|
|
322
330
|
},
|
|
331
|
+
"getter": false,
|
|
332
|
+
"setter": false,
|
|
323
333
|
"attribute": "end-time",
|
|
324
334
|
"reflect": false
|
|
325
335
|
},
|
|
@@ -337,6 +347,8 @@ export class CasinoTournamentBanner {
|
|
|
337
347
|
"tags": [],
|
|
338
348
|
"text": "Tournament thumbnail"
|
|
339
349
|
},
|
|
350
|
+
"getter": false,
|
|
351
|
+
"setter": false,
|
|
340
352
|
"attribute": "thumbnail",
|
|
341
353
|
"reflect": false
|
|
342
354
|
},
|
|
@@ -354,6 +366,8 @@ export class CasinoTournamentBanner {
|
|
|
354
366
|
"tags": [],
|
|
355
367
|
"text": "Widget Language to show"
|
|
356
368
|
},
|
|
369
|
+
"getter": false,
|
|
370
|
+
"setter": false,
|
|
357
371
|
"attribute": "language",
|
|
358
372
|
"reflect": false
|
|
359
373
|
},
|
|
@@ -371,6 +385,8 @@ export class CasinoTournamentBanner {
|
|
|
371
385
|
"tags": [],
|
|
372
386
|
"text": "Show calendar icon"
|
|
373
387
|
},
|
|
388
|
+
"getter": false,
|
|
389
|
+
"setter": false,
|
|
374
390
|
"attribute": "show-calendar",
|
|
375
391
|
"reflect": false
|
|
376
392
|
},
|
|
@@ -388,6 +404,8 @@ export class CasinoTournamentBanner {
|
|
|
388
404
|
"tags": [],
|
|
389
405
|
"text": "Show short start time on tag"
|
|
390
406
|
},
|
|
407
|
+
"getter": false,
|
|
408
|
+
"setter": false,
|
|
391
409
|
"attribute": "short-start",
|
|
392
410
|
"reflect": false
|
|
393
411
|
},
|
|
@@ -405,6 +423,8 @@ export class CasinoTournamentBanner {
|
|
|
405
423
|
"tags": [],
|
|
406
424
|
"text": "Short start time format"
|
|
407
425
|
},
|
|
426
|
+
"getter": false,
|
|
427
|
+
"setter": false,
|
|
408
428
|
"attribute": "shortstartformat",
|
|
409
429
|
"reflect": false,
|
|
410
430
|
"defaultValue": "'DD MMM YYYY'"
|
|
@@ -423,6 +443,8 @@ export class CasinoTournamentBanner {
|
|
|
423
443
|
"tags": [],
|
|
424
444
|
"text": "Show date on widget"
|
|
425
445
|
},
|
|
446
|
+
"getter": false,
|
|
447
|
+
"setter": false,
|
|
426
448
|
"attribute": "show-date",
|
|
427
449
|
"reflect": false,
|
|
428
450
|
"defaultValue": "true"
|
|
@@ -441,6 +463,8 @@ export class CasinoTournamentBanner {
|
|
|
441
463
|
"tags": [],
|
|
442
464
|
"text": "Show date on running state tournament tag"
|
|
443
465
|
},
|
|
466
|
+
"getter": false,
|
|
467
|
+
"setter": false,
|
|
444
468
|
"attribute": "show-running-date",
|
|
445
469
|
"reflect": false,
|
|
446
470
|
"defaultValue": "false"
|
|
@@ -459,6 +483,8 @@ export class CasinoTournamentBanner {
|
|
|
459
483
|
"tags": [],
|
|
460
484
|
"text": "Show check icon on enrolled tag"
|
|
461
485
|
},
|
|
486
|
+
"getter": false,
|
|
487
|
+
"setter": false,
|
|
462
488
|
"attribute": "show-check",
|
|
463
489
|
"reflect": false,
|
|
464
490
|
"defaultValue": "false"
|
|
@@ -477,6 +503,8 @@ export class CasinoTournamentBanner {
|
|
|
477
503
|
"tags": [],
|
|
478
504
|
"text": "Widget display as a card"
|
|
479
505
|
},
|
|
506
|
+
"getter": false,
|
|
507
|
+
"setter": false,
|
|
480
508
|
"attribute": "card-mode",
|
|
481
509
|
"reflect": false,
|
|
482
510
|
"defaultValue": "false"
|
|
@@ -495,6 +523,8 @@ export class CasinoTournamentBanner {
|
|
|
495
523
|
"tags": [],
|
|
496
524
|
"text": "Widget name or title"
|
|
497
525
|
},
|
|
526
|
+
"getter": false,
|
|
527
|
+
"setter": false,
|
|
498
528
|
"attribute": "name-or-title",
|
|
499
529
|
"reflect": false
|
|
500
530
|
},
|
|
@@ -512,6 +542,8 @@ export class CasinoTournamentBanner {
|
|
|
512
542
|
"tags": [],
|
|
513
543
|
"text": "Tournament description"
|
|
514
544
|
},
|
|
545
|
+
"getter": false,
|
|
546
|
+
"setter": false,
|
|
515
547
|
"attribute": "description",
|
|
516
548
|
"reflect": false
|
|
517
549
|
},
|
|
@@ -529,6 +561,8 @@ export class CasinoTournamentBanner {
|
|
|
529
561
|
"tags": [],
|
|
530
562
|
"text": "Tournament ID"
|
|
531
563
|
},
|
|
564
|
+
"getter": false,
|
|
565
|
+
"setter": false,
|
|
532
566
|
"attribute": "tournament-id",
|
|
533
567
|
"reflect": false
|
|
534
568
|
},
|
|
@@ -546,6 +580,8 @@ export class CasinoTournamentBanner {
|
|
|
546
580
|
"tags": [],
|
|
547
581
|
"text": "The NWA Session"
|
|
548
582
|
},
|
|
583
|
+
"getter": false,
|
|
584
|
+
"setter": false,
|
|
549
585
|
"attribute": "session",
|
|
550
586
|
"reflect": false
|
|
551
587
|
},
|
|
@@ -563,6 +599,8 @@ export class CasinoTournamentBanner {
|
|
|
563
599
|
"tags": [],
|
|
564
600
|
"text": "Login event"
|
|
565
601
|
},
|
|
602
|
+
"getter": false,
|
|
603
|
+
"setter": false,
|
|
566
604
|
"attribute": "login-event",
|
|
567
605
|
"reflect": false
|
|
568
606
|
},
|
|
@@ -580,6 +618,8 @@ export class CasinoTournamentBanner {
|
|
|
580
618
|
"tags": [],
|
|
581
619
|
"text": "Login url"
|
|
582
620
|
},
|
|
621
|
+
"getter": false,
|
|
622
|
+
"setter": false,
|
|
583
623
|
"attribute": "login-url",
|
|
584
624
|
"reflect": false
|
|
585
625
|
},
|
|
@@ -597,6 +637,8 @@ export class CasinoTournamentBanner {
|
|
|
597
637
|
"tags": [],
|
|
598
638
|
"text": "Register Event"
|
|
599
639
|
},
|
|
640
|
+
"getter": false,
|
|
641
|
+
"setter": false,
|
|
600
642
|
"attribute": "register-event",
|
|
601
643
|
"reflect": false
|
|
602
644
|
},
|
|
@@ -614,6 +656,8 @@ export class CasinoTournamentBanner {
|
|
|
614
656
|
"tags": [],
|
|
615
657
|
"text": "Register url"
|
|
616
658
|
},
|
|
659
|
+
"getter": false,
|
|
660
|
+
"setter": false,
|
|
617
661
|
"attribute": "register-url",
|
|
618
662
|
"reflect": false
|
|
619
663
|
},
|
|
@@ -631,6 +675,8 @@ export class CasinoTournamentBanner {
|
|
|
631
675
|
"tags": [],
|
|
632
676
|
"text": "Player currency"
|
|
633
677
|
},
|
|
678
|
+
"getter": false,
|
|
679
|
+
"setter": false,
|
|
634
680
|
"attribute": "currency",
|
|
635
681
|
"reflect": false
|
|
636
682
|
},
|
|
@@ -648,6 +694,8 @@ export class CasinoTournamentBanner {
|
|
|
648
694
|
"tags": [],
|
|
649
695
|
"text": "Bonus Code"
|
|
650
696
|
},
|
|
697
|
+
"getter": false,
|
|
698
|
+
"setter": false,
|
|
651
699
|
"attribute": "bonus-code",
|
|
652
700
|
"reflect": false
|
|
653
701
|
},
|
|
@@ -665,6 +713,8 @@ export class CasinoTournamentBanner {
|
|
|
665
713
|
"tags": [],
|
|
666
714
|
"text": "Show read more button"
|
|
667
715
|
},
|
|
716
|
+
"getter": false,
|
|
717
|
+
"setter": false,
|
|
668
718
|
"attribute": "show-read-more",
|
|
669
719
|
"reflect": false,
|
|
670
720
|
"defaultValue": "false"
|
|
@@ -683,6 +733,8 @@ export class CasinoTournamentBanner {
|
|
|
683
733
|
"tags": [],
|
|
684
734
|
"text": "Client custom styling via inline styles"
|
|
685
735
|
},
|
|
736
|
+
"getter": false,
|
|
737
|
+
"setter": false,
|
|
686
738
|
"attribute": "client-styling",
|
|
687
739
|
"reflect": false,
|
|
688
740
|
"defaultValue": "''"
|
|
@@ -701,6 +753,8 @@ export class CasinoTournamentBanner {
|
|
|
701
753
|
"tags": [],
|
|
702
754
|
"text": "Client custom styling via url"
|
|
703
755
|
},
|
|
756
|
+
"getter": false,
|
|
757
|
+
"setter": false,
|
|
704
758
|
"attribute": "client-styling-url",
|
|
705
759
|
"reflect": false,
|
|
706
760
|
"defaultValue": "''"
|
|
@@ -719,6 +773,8 @@ export class CasinoTournamentBanner {
|
|
|
719
773
|
"tags": [],
|
|
720
774
|
"text": "Translations via parent component"
|
|
721
775
|
},
|
|
776
|
+
"getter": false,
|
|
777
|
+
"setter": false,
|
|
722
778
|
"attribute": "translation-data",
|
|
723
779
|
"reflect": true
|
|
724
780
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-35b94b68.js';
|
|
2
|
+
export { s as setNonce } from './index-35b94b68.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.26.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, g as getElement, c as createEvent } from './index-
|
|
1
|
+
import { r as registerInstance, h, g as getElement, c as createEvent } from './index-35b94b68.js';
|
|
2
2
|
|
|
3
3
|
const DEFAULT_LANGUAGE$1 = 'en';
|
|
4
4
|
const TRANSLATIONS$1 = {
|
|
@@ -6085,41 +6085,39 @@ const CasinoTournamentBannerStyle0 = casinoTournamentBannerCss;
|
|
|
6085
6085
|
const CasinoTournamentBanner = class {
|
|
6086
6086
|
constructor(hostRef) {
|
|
6087
6087
|
registerInstance(this, hostRef);
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
this.enrolled = undefined;
|
|
6092
|
-
this.startTime = undefined;
|
|
6093
|
-
this.endTime = undefined;
|
|
6094
|
-
this.thumbnail = undefined;
|
|
6095
|
-
this.language = undefined;
|
|
6096
|
-
this.showCalendar = undefined;
|
|
6097
|
-
this.shortStart = undefined;
|
|
6088
|
+
/**
|
|
6089
|
+
* Short start time format
|
|
6090
|
+
*/
|
|
6098
6091
|
this.shortstartformat = 'DD MMM YYYY';
|
|
6092
|
+
/**
|
|
6093
|
+
* Show date on widget
|
|
6094
|
+
*/
|
|
6099
6095
|
this.showDate = true;
|
|
6096
|
+
/**
|
|
6097
|
+
* Show date on running state tournament tag
|
|
6098
|
+
*/
|
|
6100
6099
|
this.showRunningDate = false;
|
|
6100
|
+
/**
|
|
6101
|
+
* Show check icon on enrolled tag
|
|
6102
|
+
*/
|
|
6101
6103
|
this.showCheck = false;
|
|
6104
|
+
/**
|
|
6105
|
+
* Widget display as a card
|
|
6106
|
+
*/
|
|
6102
6107
|
this.cardMode = false;
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
this.session = undefined;
|
|
6107
|
-
this.loginEvent = undefined;
|
|
6108
|
-
this.loginUrl = undefined;
|
|
6109
|
-
this.registerEvent = undefined;
|
|
6110
|
-
this.registerUrl = undefined;
|
|
6111
|
-
this.currency = undefined;
|
|
6112
|
-
this.bonusCode = undefined;
|
|
6108
|
+
/**
|
|
6109
|
+
* Show read more button
|
|
6110
|
+
*/
|
|
6113
6111
|
this.showReadMore = false;
|
|
6112
|
+
/**
|
|
6113
|
+
* Client custom styling via inline styles
|
|
6114
|
+
*/
|
|
6114
6115
|
this.clientStyling = '';
|
|
6116
|
+
/**
|
|
6117
|
+
* Client custom styling via url
|
|
6118
|
+
*/
|
|
6115
6119
|
this.clientStylingUrl = '';
|
|
6116
|
-
this.translationData = undefined;
|
|
6117
|
-
this.stateText = undefined;
|
|
6118
6120
|
this.limitStylingAppends = false;
|
|
6119
|
-
this.startdate = undefined;
|
|
6120
|
-
this.tournamentLeftDays = undefined;
|
|
6121
|
-
this.showRemain = undefined;
|
|
6122
|
-
this.durationInterval = undefined;
|
|
6123
6121
|
}
|
|
6124
6122
|
watchLanguage(newValue, oldValue) {
|
|
6125
6123
|
if (newValue && newValue != oldValue) {
|
|
@@ -6677,21 +6675,22 @@ const CasinoTournamentButtons = class {
|
|
|
6677
6675
|
constructor(hostRef) {
|
|
6678
6676
|
registerInstance(this, hostRef);
|
|
6679
6677
|
this.userEnrolled = createEvent(this, "TournamentUserEnrolled", 7);
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
this.loginEvent = undefined;
|
|
6684
|
-
this.loginUrl = undefined;
|
|
6685
|
-
this.registerEvent = undefined;
|
|
6686
|
-
this.registerUrl = undefined;
|
|
6687
|
-
this.endpoint = undefined;
|
|
6688
|
-
this.currency = undefined;
|
|
6689
|
-
this.bonusCode = undefined;
|
|
6678
|
+
/**
|
|
6679
|
+
* Player enrolled
|
|
6680
|
+
*/
|
|
6690
6681
|
this.enrolled = false;
|
|
6682
|
+
/**
|
|
6683
|
+
* Show read more button
|
|
6684
|
+
*/
|
|
6691
6685
|
this.showReadMore = false;
|
|
6686
|
+
/**
|
|
6687
|
+
* Client custom styling via inline styles
|
|
6688
|
+
*/
|
|
6692
6689
|
this.clientStyling = '';
|
|
6690
|
+
/**
|
|
6691
|
+
* Client custom styling via url
|
|
6692
|
+
*/
|
|
6693
6693
|
this.clientStylingUrl = '';
|
|
6694
|
-
this.translationData = undefined;
|
|
6695
6694
|
this.limitStylingAppends = false;
|
|
6696
6695
|
this.joinButtonLoading = false;
|
|
6697
6696
|
this.errorJoin = false;
|