@everymatrix/casino-tournament-info 1.16.1

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 (53) hide show
  1. package/dist/casino-tournament-info/casino-tournament-info.esm.js +1 -0
  2. package/dist/casino-tournament-info/index.esm.js +0 -0
  3. package/dist/casino-tournament-info/p-cac5951c.js +1 -0
  4. package/dist/casino-tournament-info/p-d686dcae.entry.js +9 -0
  5. package/dist/cjs/casino-tournament-buttons_4.cjs.entry.js +6883 -0
  6. package/dist/cjs/casino-tournament-info.cjs.js +19 -0
  7. package/dist/cjs/index-1b45a643.js +1274 -0
  8. package/dist/cjs/index.cjs.js +2 -0
  9. package/dist/cjs/loader.cjs.js +21 -0
  10. package/dist/collection/collection-manifest.json +31 -0
  11. package/dist/collection/components/casino-tournament-info/casino-tournament-info.css +70 -0
  12. package/dist/collection/components/casino-tournament-info/casino-tournament-info.js +714 -0
  13. package/dist/collection/index.js +1 -0
  14. package/dist/collection/utils/locale.utils.js +274 -0
  15. package/dist/collection/utils/utils.js +3 -0
  16. package/dist/components/casino-tournament-buttons.js +6 -0
  17. package/dist/components/casino-tournament-buttons2.js +522 -0
  18. package/dist/components/casino-tournament-duration.js +6 -0
  19. package/dist/components/casino-tournament-duration2.js +203 -0
  20. package/dist/components/casino-tournament-info.d.ts +11 -0
  21. package/dist/components/casino-tournament-info.js +6135 -0
  22. package/dist/components/casino-tournament-prizes.js +6 -0
  23. package/dist/components/casino-tournament-prizes2.js +190 -0
  24. package/dist/components/index.d.ts +26 -0
  25. package/dist/components/index.js +1 -0
  26. package/dist/esm/casino-tournament-buttons_4.entry.js +6876 -0
  27. package/dist/esm/casino-tournament-info.js +17 -0
  28. package/dist/esm/index-770c7750.js +1249 -0
  29. package/dist/esm/index.js +1 -0
  30. package/dist/esm/loader.js +17 -0
  31. package/dist/esm/polyfills/core-js.js +11 -0
  32. package/dist/esm/polyfills/css-shim.js +1 -0
  33. package/dist/esm/polyfills/dom.js +79 -0
  34. package/dist/esm/polyfills/es5-html-element.js +1 -0
  35. package/dist/esm/polyfills/index.js +34 -0
  36. package/dist/esm/polyfills/system.js +6 -0
  37. package/dist/index.cjs.js +1 -0
  38. package/dist/index.js +1 -0
  39. package/dist/stencil.config.js +22 -0
  40. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/casino-tournament-info/.stencil/packages/casino-tournament-info/stencil.config.d.ts +2 -0
  41. package/dist/types/components/casino-tournament-info/casino-tournament-info.d.ts +50 -0
  42. package/dist/types/components.d.ts +101 -0
  43. package/dist/types/index.d.ts +1 -0
  44. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  45. package/dist/types/utils/locale.utils.d.ts +1 -0
  46. package/dist/types/utils/utils.d.ts +1 -0
  47. package/loader/cdn.js +3 -0
  48. package/loader/index.cjs.js +3 -0
  49. package/loader/index.d.ts +12 -0
  50. package/loader/index.es2017.js +3 -0
  51. package/loader/index.js +4 -0
  52. package/loader/package.json +10 -0
  53. package/package.json +19 -0
@@ -0,0 +1,714 @@
1
+ import { Component, Prop, h, State, Listen } from '@stencil/core';
2
+ import '@everymatrix/casino-tournament-duration';
3
+ import '@everymatrix/casino-tournament-prizes';
4
+ import '@everymatrix/casino-tournament-buttons';
5
+ import { translate } from '../../utils/locale.utils';
6
+ import moment from 'moment';
7
+ export class CasinoTournamentInfo {
8
+ constructor() {
9
+ this.termsUrl = '#';
10
+ this.keepContext = false;
11
+ this.useGroup = false;
12
+ this.align = 'center';
13
+ this.showDates = false;
14
+ this.showPrizes = false;
15
+ this.showButton = false;
16
+ this.shortStart = false;
17
+ this.seeGames = false;
18
+ this.useEvent = false;
19
+ this.shortStartFormat = 'DD MMM YYYY';
20
+ this.clientStyling = '';
21
+ this.clientStylingUrl = '';
22
+ this.enrolled = false;
23
+ this.showReadMore = false;
24
+ this.limitStylingAppends = false;
25
+ this.formatDate = () => {
26
+ const dateOptions = { month: 'long' };
27
+ const startTime = this.tournamentInfo.startTime;
28
+ const state = this.tournamentInfo.state;
29
+ let currentDate = new Date(startTime);
30
+ const setTranslation = () => {
31
+ return (state === 'Running' || state == 'Closing' || state == 'Closed') ?
32
+ translate('startedAt', this.language) :
33
+ translate('startingAt', this.language);
34
+ };
35
+ if (this.shortStart) {
36
+ let startTimeAsString = moment(currentDate).format(this.shortStartFormat);
37
+ this.startDate = (state === 'Running' || state == 'Closing' || state == 'Closed') ?
38
+ translate('startedAtWithTime', this.language) + startTimeAsString :
39
+ translate('startingAtWithTime', this.language) + startTimeAsString;
40
+ }
41
+ else {
42
+ let currentMonthKey = new Intl.DateTimeFormat('en', dateOptions).format(currentDate);
43
+ let currentDay = currentDate.getDate();
44
+ let currentHour = currentDate.toLocaleString('en-GB', { hour: 'numeric', minute: 'numeric', hour12: false });
45
+ this.startDate =
46
+ `${currentDay}` + ' ' +
47
+ translate(`${currentMonthKey}`, this.language) + ', ' +
48
+ setTranslation() +
49
+ ` ${currentHour}`;
50
+ }
51
+ };
52
+ this.setClientStyling = () => {
53
+ let sheet = document.createElement('style');
54
+ sheet.innerHTML = this.clientStyling;
55
+ this.stylingContainer.prepend(sheet);
56
+ };
57
+ this.setClientStylingURL = () => {
58
+ let cssFile = document.createElement('style');
59
+ setTimeout(() => {
60
+ cssFile.innerHTML = this.clientStylingUrl;
61
+ this.stylingContainer.prepend(cssFile);
62
+ }, 1);
63
+ };
64
+ this.detailsAction = (tournamentId) => {
65
+ window.postMessage({ type: 'TournamentDetailsClicked', tournamentId }, window.location.href);
66
+ };
67
+ }
68
+ infoCompletedHandler(event) {
69
+ if (event.detail && this.useEvent) {
70
+ if (this.tournamentId && this.tournamentId != event.detail.id)
71
+ return;
72
+ this.tournamentInfo = event.detail;
73
+ if (this.tournamentInfo.startTime) {
74
+ this.formatDate();
75
+ }
76
+ }
77
+ }
78
+ componentWillLoad() {
79
+ if (!this.useEvent) {
80
+ this.tournamentInfo = {
81
+ nameOrTitle: this.nameOrTitle,
82
+ scoreCriteria: this.scoreCriteria,
83
+ termsUrl: this.termsUrl,
84
+ startTime: this.startTime,
85
+ endTime: this.endTime,
86
+ prizes: this.prizes,
87
+ minBetCount: this.minBetCount
88
+ };
89
+ }
90
+ }
91
+ componentDidRender() {
92
+ if (!this.limitStylingAppends && this.stylingContainer) {
93
+ if (this.clientStyling)
94
+ this.setClientStyling();
95
+ if (this.clientStylingUrl)
96
+ this.setClientStylingURL();
97
+ this.limitStylingAppends = true;
98
+ }
99
+ }
100
+ tournamentGamesClicked(id) {
101
+ window.postMessage({ type: 'tournamentGamesClicked', id }, window.location.href);
102
+ }
103
+ render() {
104
+ if (this.tournamentInfo) {
105
+ return h("div", { ref: el => this.stylingContainer = el },
106
+ h("div", { class: `TournamentInfo ${this.align}`, part: "TournamentInfo" },
107
+ h("h1", { class: "Title" }, this.tournamentInfo.nameOrTitle),
108
+ h("div", { class: "Details" },
109
+ h("p", { class: "Score" },
110
+ translate('scoreCriteria', this.language),
111
+ ":",
112
+ this.tournamentInfo.scoreCriteria,
113
+ " (",
114
+ translate('minbet', this.language),
115
+ ":",
116
+ this.tournamentInfo.minBetCount,
117
+ ")"),
118
+ this.showDates && h("p", { class: "Dates" }, this.startDate),
119
+ this.seeGames && h("p", { class: "SeeGames" },
120
+ translate('seegames', this.language),
121
+ ":",
122
+ h("a", { class: "GameLink", href: this.tournamentInfo.termsUrl || '#', target: this.keepContext == true ? '_self' : '_blank', onClick: () => this.tournamentGamesClicked(this.tournamentId) },
123
+ " ",
124
+ translate('here', this.language))),
125
+ this.showButton &&
126
+ h("div", { class: "InfoButtons" },
127
+ h("casino-tournament-buttons", { enrolled: this.enrolled, session: this.session, endpoint: this.endpoint, language: this.language, "tournament-id": this.tournamentId, "login-event": this.loginEvent, "login-url": this.loginUrl, "register-event": this.registerEvent, "register-url": this.registerUrl, currency: this.currency, "bonus-code": this.bonusCode, "show-read-more": this.showReadMore }))),
128
+ this.showPrizes && h("casino-tournament-prizes", { "raw-prizes": JSON.stringify(this.tournamentInfo.prizes), "use-event": "false", "use-group": this.useGroup, language: this.language }),
129
+ h("casino-tournament-duration", { exportparts: "Remaining,ProgressBar,ProgressBarFill,StartDate,EndDate", "start-date": this.tournamentInfo.startTime, "end-date": this.tournamentInfo.endTime, language: this.language })));
130
+ }
131
+ }
132
+ static get is() { return "casino-tournament-info"; }
133
+ static get encapsulation() { return "shadow"; }
134
+ static get originalStyleUrls() { return {
135
+ "$": ["casino-tournament-info.scss"]
136
+ }; }
137
+ static get styleUrls() { return {
138
+ "$": ["casino-tournament-info.css"]
139
+ }; }
140
+ static get properties() { return {
141
+ "endpoint": {
142
+ "type": "string",
143
+ "mutable": false,
144
+ "complexType": {
145
+ "original": "string",
146
+ "resolved": "string",
147
+ "references": {}
148
+ },
149
+ "required": false,
150
+ "optional": false,
151
+ "docs": {
152
+ "tags": [],
153
+ "text": ""
154
+ },
155
+ "attribute": "endpoint",
156
+ "reflect": false
157
+ },
158
+ "nameOrTitle": {
159
+ "type": "string",
160
+ "mutable": false,
161
+ "complexType": {
162
+ "original": "string",
163
+ "resolved": "string",
164
+ "references": {}
165
+ },
166
+ "required": false,
167
+ "optional": false,
168
+ "docs": {
169
+ "tags": [],
170
+ "text": ""
171
+ },
172
+ "attribute": "name-or-title",
173
+ "reflect": false
174
+ },
175
+ "scoreCriteria": {
176
+ "type": "string",
177
+ "mutable": false,
178
+ "complexType": {
179
+ "original": "string",
180
+ "resolved": "string",
181
+ "references": {}
182
+ },
183
+ "required": false,
184
+ "optional": false,
185
+ "docs": {
186
+ "tags": [],
187
+ "text": ""
188
+ },
189
+ "attribute": "score-criteria",
190
+ "reflect": false
191
+ },
192
+ "tournamentId": {
193
+ "type": "string",
194
+ "mutable": false,
195
+ "complexType": {
196
+ "original": "string",
197
+ "resolved": "string",
198
+ "references": {}
199
+ },
200
+ "required": false,
201
+ "optional": false,
202
+ "docs": {
203
+ "tags": [],
204
+ "text": ""
205
+ },
206
+ "attribute": "tournament-id",
207
+ "reflect": false
208
+ },
209
+ "session": {
210
+ "type": "string",
211
+ "mutable": false,
212
+ "complexType": {
213
+ "original": "string",
214
+ "resolved": "string",
215
+ "references": {}
216
+ },
217
+ "required": false,
218
+ "optional": false,
219
+ "docs": {
220
+ "tags": [],
221
+ "text": ""
222
+ },
223
+ "attribute": "session",
224
+ "reflect": false
225
+ },
226
+ "userId": {
227
+ "type": "string",
228
+ "mutable": false,
229
+ "complexType": {
230
+ "original": "string",
231
+ "resolved": "string",
232
+ "references": {}
233
+ },
234
+ "required": false,
235
+ "optional": false,
236
+ "docs": {
237
+ "tags": [],
238
+ "text": ""
239
+ },
240
+ "attribute": "user-id",
241
+ "reflect": false
242
+ },
243
+ "language": {
244
+ "type": "string",
245
+ "mutable": false,
246
+ "complexType": {
247
+ "original": "string",
248
+ "resolved": "string",
249
+ "references": {}
250
+ },
251
+ "required": false,
252
+ "optional": false,
253
+ "docs": {
254
+ "tags": [],
255
+ "text": ""
256
+ },
257
+ "attribute": "language",
258
+ "reflect": false
259
+ },
260
+ "termsUrl": {
261
+ "type": "string",
262
+ "mutable": false,
263
+ "complexType": {
264
+ "original": "string",
265
+ "resolved": "string",
266
+ "references": {}
267
+ },
268
+ "required": false,
269
+ "optional": false,
270
+ "docs": {
271
+ "tags": [],
272
+ "text": ""
273
+ },
274
+ "attribute": "terms-url",
275
+ "reflect": false,
276
+ "defaultValue": "'#'"
277
+ },
278
+ "keepContext": {
279
+ "type": "boolean",
280
+ "mutable": false,
281
+ "complexType": {
282
+ "original": "boolean",
283
+ "resolved": "boolean",
284
+ "references": {}
285
+ },
286
+ "required": false,
287
+ "optional": false,
288
+ "docs": {
289
+ "tags": [],
290
+ "text": ""
291
+ },
292
+ "attribute": "keep-context",
293
+ "reflect": false,
294
+ "defaultValue": "false"
295
+ },
296
+ "useGroup": {
297
+ "type": "boolean",
298
+ "mutable": false,
299
+ "complexType": {
300
+ "original": "boolean",
301
+ "resolved": "boolean",
302
+ "references": {}
303
+ },
304
+ "required": false,
305
+ "optional": false,
306
+ "docs": {
307
+ "tags": [],
308
+ "text": ""
309
+ },
310
+ "attribute": "use-group",
311
+ "reflect": false,
312
+ "defaultValue": "false"
313
+ },
314
+ "align": {
315
+ "type": "string",
316
+ "mutable": false,
317
+ "complexType": {
318
+ "original": "string",
319
+ "resolved": "string",
320
+ "references": {}
321
+ },
322
+ "required": false,
323
+ "optional": false,
324
+ "docs": {
325
+ "tags": [],
326
+ "text": ""
327
+ },
328
+ "attribute": "align",
329
+ "reflect": false,
330
+ "defaultValue": "'center'"
331
+ },
332
+ "showDates": {
333
+ "type": "boolean",
334
+ "mutable": false,
335
+ "complexType": {
336
+ "original": "boolean",
337
+ "resolved": "boolean",
338
+ "references": {}
339
+ },
340
+ "required": false,
341
+ "optional": false,
342
+ "docs": {
343
+ "tags": [],
344
+ "text": ""
345
+ },
346
+ "attribute": "show-dates",
347
+ "reflect": false,
348
+ "defaultValue": "false"
349
+ },
350
+ "showPrizes": {
351
+ "type": "boolean",
352
+ "mutable": false,
353
+ "complexType": {
354
+ "original": "boolean",
355
+ "resolved": "boolean",
356
+ "references": {}
357
+ },
358
+ "required": false,
359
+ "optional": false,
360
+ "docs": {
361
+ "tags": [],
362
+ "text": ""
363
+ },
364
+ "attribute": "show-prizes",
365
+ "reflect": false,
366
+ "defaultValue": "false"
367
+ },
368
+ "showButton": {
369
+ "type": "boolean",
370
+ "mutable": false,
371
+ "complexType": {
372
+ "original": "boolean",
373
+ "resolved": "boolean",
374
+ "references": {}
375
+ },
376
+ "required": false,
377
+ "optional": false,
378
+ "docs": {
379
+ "tags": [],
380
+ "text": ""
381
+ },
382
+ "attribute": "show-button",
383
+ "reflect": false,
384
+ "defaultValue": "false"
385
+ },
386
+ "shortStart": {
387
+ "type": "boolean",
388
+ "mutable": false,
389
+ "complexType": {
390
+ "original": "boolean",
391
+ "resolved": "boolean",
392
+ "references": {}
393
+ },
394
+ "required": false,
395
+ "optional": false,
396
+ "docs": {
397
+ "tags": [],
398
+ "text": ""
399
+ },
400
+ "attribute": "short-start",
401
+ "reflect": false,
402
+ "defaultValue": "false"
403
+ },
404
+ "seeGames": {
405
+ "type": "boolean",
406
+ "mutable": false,
407
+ "complexType": {
408
+ "original": "boolean",
409
+ "resolved": "boolean",
410
+ "references": {}
411
+ },
412
+ "required": false,
413
+ "optional": false,
414
+ "docs": {
415
+ "tags": [],
416
+ "text": ""
417
+ },
418
+ "attribute": "see-games",
419
+ "reflect": false,
420
+ "defaultValue": "false"
421
+ },
422
+ "useEvent": {
423
+ "type": "boolean",
424
+ "mutable": false,
425
+ "complexType": {
426
+ "original": "boolean",
427
+ "resolved": "boolean",
428
+ "references": {}
429
+ },
430
+ "required": false,
431
+ "optional": false,
432
+ "docs": {
433
+ "tags": [],
434
+ "text": ""
435
+ },
436
+ "attribute": "use-event",
437
+ "reflect": false,
438
+ "defaultValue": "false"
439
+ },
440
+ "startTime": {
441
+ "type": "string",
442
+ "mutable": false,
443
+ "complexType": {
444
+ "original": "string",
445
+ "resolved": "string",
446
+ "references": {}
447
+ },
448
+ "required": false,
449
+ "optional": false,
450
+ "docs": {
451
+ "tags": [],
452
+ "text": ""
453
+ },
454
+ "attribute": "start-time",
455
+ "reflect": false
456
+ },
457
+ "endTime": {
458
+ "type": "string",
459
+ "mutable": false,
460
+ "complexType": {
461
+ "original": "string",
462
+ "resolved": "string",
463
+ "references": {}
464
+ },
465
+ "required": false,
466
+ "optional": false,
467
+ "docs": {
468
+ "tags": [],
469
+ "text": ""
470
+ },
471
+ "attribute": "end-time",
472
+ "reflect": false
473
+ },
474
+ "minBetCount": {
475
+ "type": "number",
476
+ "mutable": false,
477
+ "complexType": {
478
+ "original": "number",
479
+ "resolved": "number",
480
+ "references": {}
481
+ },
482
+ "required": false,
483
+ "optional": false,
484
+ "docs": {
485
+ "tags": [],
486
+ "text": ""
487
+ },
488
+ "attribute": "min-bet-count",
489
+ "reflect": false
490
+ },
491
+ "prizes": {
492
+ "type": "any",
493
+ "mutable": false,
494
+ "complexType": {
495
+ "original": "any",
496
+ "resolved": "any",
497
+ "references": {}
498
+ },
499
+ "required": false,
500
+ "optional": false,
501
+ "docs": {
502
+ "tags": [],
503
+ "text": ""
504
+ },
505
+ "attribute": "prizes",
506
+ "reflect": false
507
+ },
508
+ "shortStartFormat": {
509
+ "type": "string",
510
+ "mutable": false,
511
+ "complexType": {
512
+ "original": "string",
513
+ "resolved": "string",
514
+ "references": {}
515
+ },
516
+ "required": false,
517
+ "optional": false,
518
+ "docs": {
519
+ "tags": [],
520
+ "text": ""
521
+ },
522
+ "attribute": "short-start-format",
523
+ "reflect": false,
524
+ "defaultValue": "'DD MMM YYYY'"
525
+ },
526
+ "clientStyling": {
527
+ "type": "string",
528
+ "mutable": false,
529
+ "complexType": {
530
+ "original": "string",
531
+ "resolved": "string",
532
+ "references": {}
533
+ },
534
+ "required": false,
535
+ "optional": false,
536
+ "docs": {
537
+ "tags": [],
538
+ "text": ""
539
+ },
540
+ "attribute": "client-styling",
541
+ "reflect": false,
542
+ "defaultValue": "''"
543
+ },
544
+ "clientStylingUrl": {
545
+ "type": "string",
546
+ "mutable": false,
547
+ "complexType": {
548
+ "original": "string",
549
+ "resolved": "string",
550
+ "references": {}
551
+ },
552
+ "required": false,
553
+ "optional": false,
554
+ "docs": {
555
+ "tags": [],
556
+ "text": ""
557
+ },
558
+ "attribute": "client-styling-url",
559
+ "reflect": false,
560
+ "defaultValue": "''"
561
+ },
562
+ "enrolled": {
563
+ "type": "boolean",
564
+ "mutable": false,
565
+ "complexType": {
566
+ "original": "boolean",
567
+ "resolved": "boolean",
568
+ "references": {}
569
+ },
570
+ "required": false,
571
+ "optional": false,
572
+ "docs": {
573
+ "tags": [],
574
+ "text": ""
575
+ },
576
+ "attribute": "enrolled",
577
+ "reflect": false,
578
+ "defaultValue": "false"
579
+ },
580
+ "loginEvent": {
581
+ "type": "string",
582
+ "mutable": false,
583
+ "complexType": {
584
+ "original": "string",
585
+ "resolved": "string",
586
+ "references": {}
587
+ },
588
+ "required": false,
589
+ "optional": false,
590
+ "docs": {
591
+ "tags": [],
592
+ "text": ""
593
+ },
594
+ "attribute": "login-event",
595
+ "reflect": false
596
+ },
597
+ "loginUrl": {
598
+ "type": "string",
599
+ "mutable": false,
600
+ "complexType": {
601
+ "original": "string",
602
+ "resolved": "string",
603
+ "references": {}
604
+ },
605
+ "required": false,
606
+ "optional": false,
607
+ "docs": {
608
+ "tags": [],
609
+ "text": ""
610
+ },
611
+ "attribute": "login-url",
612
+ "reflect": false
613
+ },
614
+ "registerEvent": {
615
+ "type": "string",
616
+ "mutable": false,
617
+ "complexType": {
618
+ "original": "string",
619
+ "resolved": "string",
620
+ "references": {}
621
+ },
622
+ "required": false,
623
+ "optional": false,
624
+ "docs": {
625
+ "tags": [],
626
+ "text": ""
627
+ },
628
+ "attribute": "register-event",
629
+ "reflect": false
630
+ },
631
+ "registerUrl": {
632
+ "type": "string",
633
+ "mutable": false,
634
+ "complexType": {
635
+ "original": "string",
636
+ "resolved": "string",
637
+ "references": {}
638
+ },
639
+ "required": false,
640
+ "optional": false,
641
+ "docs": {
642
+ "tags": [],
643
+ "text": ""
644
+ },
645
+ "attribute": "register-url",
646
+ "reflect": false
647
+ },
648
+ "currency": {
649
+ "type": "string",
650
+ "mutable": false,
651
+ "complexType": {
652
+ "original": "string",
653
+ "resolved": "string",
654
+ "references": {}
655
+ },
656
+ "required": false,
657
+ "optional": false,
658
+ "docs": {
659
+ "tags": [],
660
+ "text": ""
661
+ },
662
+ "attribute": "currency",
663
+ "reflect": false
664
+ },
665
+ "bonusCode": {
666
+ "type": "string",
667
+ "mutable": false,
668
+ "complexType": {
669
+ "original": "string",
670
+ "resolved": "string",
671
+ "references": {}
672
+ },
673
+ "required": false,
674
+ "optional": false,
675
+ "docs": {
676
+ "tags": [],
677
+ "text": ""
678
+ },
679
+ "attribute": "bonus-code",
680
+ "reflect": false
681
+ },
682
+ "showReadMore": {
683
+ "type": "boolean",
684
+ "mutable": false,
685
+ "complexType": {
686
+ "original": "boolean",
687
+ "resolved": "boolean",
688
+ "references": {}
689
+ },
690
+ "required": false,
691
+ "optional": false,
692
+ "docs": {
693
+ "tags": [],
694
+ "text": ""
695
+ },
696
+ "attribute": "show-read-more",
697
+ "reflect": false,
698
+ "defaultValue": "false"
699
+ }
700
+ }; }
701
+ static get states() { return {
702
+ "limitStylingAppends": {},
703
+ "stylingContainer": {},
704
+ "startDate": {},
705
+ "tournamentInfo": {}
706
+ }; }
707
+ static get listeners() { return [{
708
+ "name": "getTournamentInfoCompleted",
709
+ "method": "infoCompletedHandler",
710
+ "target": "window",
711
+ "capture": false,
712
+ "passive": false
713
+ }]; }
714
+ }
@@ -0,0 +1 @@
1
+ export * from './components';