@everymatrix/casino-tournament-banner 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 (49) hide show
  1. package/dist/casino-tournament-banner/casino-tournament-banner.esm.js +1 -0
  2. package/dist/casino-tournament-banner/index.esm.js +0 -0
  3. package/dist/casino-tournament-banner/p-465ac284.js +1 -0
  4. package/dist/casino-tournament-banner/p-e8e3dadf.entry.js +9 -0
  5. package/dist/cjs/casino-tournament-banner.cjs.js +19 -0
  6. package/dist/cjs/casino-tournament-banner_2.cjs.entry.js +6603 -0
  7. package/dist/cjs/index-743ee8f8.js +1245 -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 +19 -0
  11. package/dist/collection/components/casino-tournament-banner/casino-tournament-banner.css +120 -0
  12. package/dist/collection/components/casino-tournament-banner/casino-tournament-banner.js +605 -0
  13. package/dist/collection/index.js +1 -0
  14. package/dist/collection/utils/locale.utils.js +315 -0
  15. package/dist/collection/utils/utils.js +13 -0
  16. package/dist/components/casino-tournament-banner.d.ts +11 -0
  17. package/dist/components/casino-tournament-banner.js +6168 -0
  18. package/dist/components/casino-tournament-buttons.js +6 -0
  19. package/dist/components/casino-tournament-buttons2.js +522 -0
  20. package/dist/components/index.d.ts +26 -0
  21. package/dist/components/index.js +1 -0
  22. package/dist/esm/casino-tournament-banner.js +17 -0
  23. package/dist/esm/casino-tournament-banner_2.entry.js +6598 -0
  24. package/dist/esm/index-c76b1548.js +1220 -0
  25. package/dist/esm/index.js +1 -0
  26. package/dist/esm/loader.js +17 -0
  27. package/dist/esm/polyfills/core-js.js +11 -0
  28. package/dist/esm/polyfills/css-shim.js +1 -0
  29. package/dist/esm/polyfills/dom.js +79 -0
  30. package/dist/esm/polyfills/es5-html-element.js +1 -0
  31. package/dist/esm/polyfills/index.js +34 -0
  32. package/dist/esm/polyfills/system.js +6 -0
  33. package/dist/index.cjs.js +1 -0
  34. package/dist/index.js +1 -0
  35. package/dist/stencil.config.js +22 -0
  36. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/casino-tournament-banner/.stencil/packages/casino-tournament-banner/stencil.config.d.ts +2 -0
  37. package/dist/types/components/casino-tournament-banner/casino-tournament-banner.d.ts +41 -0
  38. package/dist/types/components.d.ts +87 -0
  39. package/dist/types/index.d.ts +1 -0
  40. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  41. package/dist/types/utils/locale.utils.d.ts +1 -0
  42. package/dist/types/utils/utils.d.ts +1 -0
  43. package/loader/cdn.js +3 -0
  44. package/loader/index.cjs.js +3 -0
  45. package/loader/index.d.ts +12 -0
  46. package/loader/index.es2017.js +3 -0
  47. package/loader/index.js +4 -0
  48. package/loader/package.json +10 -0
  49. package/package.json +19 -0
@@ -0,0 +1,605 @@
1
+ import { Component, Prop, h, Listen, State } from '@stencil/core';
2
+ import { translate } from '../../utils/locale.utils';
3
+ import moment from 'moment';
4
+ import '@everymatrix/casino-tournament-buttons';
5
+ export class CasinoTournamentBanner {
6
+ constructor() {
7
+ this.shortstartformat = 'DD MMM YYYY';
8
+ this.showDate = true;
9
+ this.showCheck = false;
10
+ this.cardMode = false;
11
+ this.showReadMore = false;
12
+ this.clientStyling = '';
13
+ this.clientStylingUrl = '';
14
+ this.limitStylingAppends = false;
15
+ this.setClientStyling = () => {
16
+ let sheet = document.createElement('style');
17
+ sheet.innerHTML = this.clientStyling;
18
+ this.stylingContainer.prepend(sheet);
19
+ };
20
+ this.setClientStylingURL = () => {
21
+ let cssFile = document.createElement('style');
22
+ setTimeout(() => {
23
+ cssFile.innerHTML = this.clientStylingUrl;
24
+ this.stylingContainer.prepend(cssFile);
25
+ }, 1);
26
+ };
27
+ this.formatDate = () => {
28
+ const dateOptions = { month: 'long' };
29
+ let currentDate = new Date(this.startTime);
30
+ const setTranslation = () => {
31
+ return (this.state === 'Running' || this.state == 'Closing' || this.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 = (this.state === 'Running' || this.state == 'Closing' || this.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
+ }
53
+ infoCompletedHandler(event) {
54
+ if (event.detail && this.useEvent) {
55
+ this.state = event.detail.state;
56
+ this.stateText = this.getStateText(this.state);
57
+ this.enrolled = event.detail.playerEnrolled;
58
+ this.startTime = event.detail.startTime;
59
+ this.thumbnail = event.detail.thumbnail;
60
+ this.tournamentId = event.detail.id;
61
+ if (this.startTime) {
62
+ this.formatDate();
63
+ }
64
+ }
65
+ }
66
+ getStateText(state) {
67
+ let text = '';
68
+ switch (state) {
69
+ case 'Upcoming':
70
+ text = translate('scheduled', this.language);
71
+ break;
72
+ case 'Unstarted':
73
+ text = translate('scheduled', this.language);
74
+ break;
75
+ case 'Running':
76
+ text = translate('ongoing', this.language);
77
+ break;
78
+ default:
79
+ text = translate('finished', this.language);
80
+ break;
81
+ }
82
+ return text;
83
+ }
84
+ componentDidRender() {
85
+ if (!this.limitStylingAppends && this.stylingContainer) {
86
+ if (this.clientStyling)
87
+ this.setClientStyling();
88
+ if (this.clientStylingUrl)
89
+ this.setClientStylingURL();
90
+ this.limitStylingAppends = true;
91
+ }
92
+ }
93
+ componentWillLoad() {
94
+ if (!this.useEvent && this.startTime) {
95
+ this.formatDate();
96
+ }
97
+ if (this.state) {
98
+ this.stateText = this.getStateText(this.state);
99
+ }
100
+ }
101
+ termsClick(tournamentId) {
102
+ window.postMessage({ type: 'termsAndConditionsClicked', tournamentId: tournamentId }, window.location.href);
103
+ }
104
+ render() {
105
+ return h("div", { ref: el => this.stylingContainer = el, class: "TournamentBannerWrap" }, this.thumbnail && h("div", { class: "TournamentBanner", part: "TournamentBanner" },
106
+ h("img", { src: this.thumbnail, alt: "", class: `TournamentBannerBg ${this.cardMode && this.state ? this.state : ''}` }),
107
+ !this.cardMode &&
108
+ h("div", { class: "TournamentBannerInfo", part: "TournamentBannerInfo" },
109
+ h("div", { class: "BannerInfo", part: "BannerInfo" },
110
+ h("span", { class: `Tag State ${this.state}` }, this.stateText)),
111
+ h("div", { class: "BannerInfo", part: "BannerInfo" }, this.showDate &&
112
+ h("span", { class: "Tag Date" },
113
+ this.showCalendar &&
114
+ h("svg", { class: "CalendarIcon", width: "9", height: "11", viewBox: "0 0 9 11", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
115
+ h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.1 1.4H7.65V0.5H6.75V1.4H2.25V0.5H1.35V1.4H0.9C0.405 1.4 0 1.805 0 2.3V9.5C0 9.995 0.405 10.4 0.9 10.4H8.1C8.595 10.4 9 9.995 9 9.5V2.3C9 1.805 8.595 1.4 8.1 1.4ZM8.10003 9.5H0.900027V4.55H8.10003V9.5ZM0.900027 3.65005H8.10003V2.30005H0.900027V3.65005Z", fill: "#1E1616" })),
116
+ this.startdate)),
117
+ h("div", { class: "BannerInfo", part: "BannerInfo" }, this.enrolled &&
118
+ h("span", { class: "Tag Enroll" },
119
+ this.showCheck &&
120
+ h("svg", { class: "EnrollCheck", xmlns: "http://www.w3.org/2000/svg", width: "12", height: "12", viewBox: "0 0 12 12", fill: "none" },
121
+ h("path", { d: "M4.50008 8.08492L2.41508 5.99992L1.70508 6.70492L4.50008 9.49992L10.5001 3.49992L9.79508 2.79492L4.50008 8.08492Z", fill: "white" })),
122
+ translate('enrolled', this.language)))),
123
+ this.cardMode && h("div", { class: "TournamentBannerThumb", part: "TournamentBannerThumb" },
124
+ h("div", { class: "ThumbTitle", part: "ThumbTitle" }, translate('tournament', this.language)),
125
+ h("div", { class: "ThumbName", part: "ThumbName" }, this.nameOrTitle),
126
+ h("div", { class: "ThumbState" },
127
+ this.enrolled ?
128
+ h("span", { class: "Tag Join" },
129
+ h("svg", { class: "EnrollCheck", xmlns: "http://www.w3.org/2000/svg", width: "12", height: "12", viewBox: "0 0 12 12", fill: "none" },
130
+ h("path", { d: "M4.50008 8.08492L2.41508 5.99992L1.70508 6.70492L4.50008 9.49992L10.5001 3.49992L9.79508 2.79492L4.50008 8.08492Z", fill: "white" })),
131
+ translate('joined', this.language))
132
+ :
133
+ this.state != 'Closed' &&
134
+ h("span", { class: "Tag Join" },
135
+ h("svg", { class: "JoinPlus", xmlns: "http://www.w3.org/2000/svg", width: "12", height: "13", viewBox: "0 0 12 13", fill: "none" },
136
+ h("path", { d: "M9.5 6.8335H6.5V9.8335H5.5V6.8335H2.5V5.8335H5.5V2.8335H6.5V5.8335H9.5V6.8335Z", fill: "white" })),
137
+ translate('join', this.language)),
138
+ this.state == 'Running' && h("span", { class: `Tag State ${this.state}` }, this.stateText),
139
+ (this.state == 'Unstarted' || this.state == 'Upcoming' || this.state == 'Closed') &&
140
+ h("span", { class: `Tag Date ${this.state}` },
141
+ this.showCalendar &&
142
+ h("svg", { class: "CalendarIcon", width: "9", height: "11", viewBox: "0 0 9 11", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
143
+ h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.1 1.4H7.65V0.5H6.75V1.4H2.25V0.5H1.35V1.4H0.9C0.405 1.4 0 1.805 0 2.3V9.5C0 9.995 0.405 10.4 0.9 10.4H8.1C8.595 10.4 9 9.995 9 9.5V2.3C9 1.805 8.595 1.4 8.1 1.4ZM8.10003 9.5H0.900027V4.55H8.10003V9.5ZM0.900027 3.65005H8.10003V2.30005H0.900027V3.65005Z", fill: "#1E1616" })),
144
+ this.startdate)),
145
+ h("div", { class: "ThumbButtons" },
146
+ 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 })),
147
+ h("div", { class: "ThumbTC" },
148
+ h("span", { onClick: this.termsClick.bind(this, this.tournamentId) }, translate('terms', this.language))))));
149
+ }
150
+ static get is() { return "casino-tournament-banner"; }
151
+ static get encapsulation() { return "shadow"; }
152
+ static get originalStyleUrls() { return {
153
+ "$": ["casino-tournament-banner.scss"]
154
+ }; }
155
+ static get styleUrls() { return {
156
+ "$": ["casino-tournament-banner.css"]
157
+ }; }
158
+ static get properties() { return {
159
+ "useEvent": {
160
+ "type": "string",
161
+ "mutable": false,
162
+ "complexType": {
163
+ "original": "string",
164
+ "resolved": "string",
165
+ "references": {}
166
+ },
167
+ "required": false,
168
+ "optional": false,
169
+ "docs": {
170
+ "tags": [],
171
+ "text": ""
172
+ },
173
+ "attribute": "use-event",
174
+ "reflect": false
175
+ },
176
+ "state": {
177
+ "type": "string",
178
+ "mutable": false,
179
+ "complexType": {
180
+ "original": "string",
181
+ "resolved": "string",
182
+ "references": {}
183
+ },
184
+ "required": false,
185
+ "optional": false,
186
+ "docs": {
187
+ "tags": [],
188
+ "text": ""
189
+ },
190
+ "attribute": "state",
191
+ "reflect": false
192
+ },
193
+ "enrolled": {
194
+ "type": "boolean",
195
+ "mutable": false,
196
+ "complexType": {
197
+ "original": "boolean",
198
+ "resolved": "boolean",
199
+ "references": {}
200
+ },
201
+ "required": false,
202
+ "optional": false,
203
+ "docs": {
204
+ "tags": [],
205
+ "text": ""
206
+ },
207
+ "attribute": "enrolled",
208
+ "reflect": false
209
+ },
210
+ "startTime": {
211
+ "type": "string",
212
+ "mutable": false,
213
+ "complexType": {
214
+ "original": "string",
215
+ "resolved": "string",
216
+ "references": {}
217
+ },
218
+ "required": false,
219
+ "optional": false,
220
+ "docs": {
221
+ "tags": [],
222
+ "text": ""
223
+ },
224
+ "attribute": "start-time",
225
+ "reflect": false
226
+ },
227
+ "thumbnail": {
228
+ "type": "string",
229
+ "mutable": false,
230
+ "complexType": {
231
+ "original": "string",
232
+ "resolved": "string",
233
+ "references": {}
234
+ },
235
+ "required": false,
236
+ "optional": false,
237
+ "docs": {
238
+ "tags": [],
239
+ "text": ""
240
+ },
241
+ "attribute": "thumbnail",
242
+ "reflect": false
243
+ },
244
+ "language": {
245
+ "type": "string",
246
+ "mutable": false,
247
+ "complexType": {
248
+ "original": "string",
249
+ "resolved": "string",
250
+ "references": {}
251
+ },
252
+ "required": false,
253
+ "optional": false,
254
+ "docs": {
255
+ "tags": [],
256
+ "text": ""
257
+ },
258
+ "attribute": "language",
259
+ "reflect": false
260
+ },
261
+ "showCalendar": {
262
+ "type": "boolean",
263
+ "mutable": false,
264
+ "complexType": {
265
+ "original": "boolean",
266
+ "resolved": "boolean",
267
+ "references": {}
268
+ },
269
+ "required": false,
270
+ "optional": false,
271
+ "docs": {
272
+ "tags": [],
273
+ "text": ""
274
+ },
275
+ "attribute": "show-calendar",
276
+ "reflect": false
277
+ },
278
+ "shortStart": {
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": "short-start",
293
+ "reflect": false
294
+ },
295
+ "shortstartformat": {
296
+ "type": "string",
297
+ "mutable": false,
298
+ "complexType": {
299
+ "original": "string",
300
+ "resolved": "string",
301
+ "references": {}
302
+ },
303
+ "required": false,
304
+ "optional": false,
305
+ "docs": {
306
+ "tags": [],
307
+ "text": ""
308
+ },
309
+ "attribute": "shortstartformat",
310
+ "reflect": false,
311
+ "defaultValue": "'DD MMM YYYY'"
312
+ },
313
+ "showDate": {
314
+ "type": "boolean",
315
+ "mutable": false,
316
+ "complexType": {
317
+ "original": "boolean",
318
+ "resolved": "boolean",
319
+ "references": {}
320
+ },
321
+ "required": false,
322
+ "optional": false,
323
+ "docs": {
324
+ "tags": [],
325
+ "text": ""
326
+ },
327
+ "attribute": "show-date",
328
+ "reflect": false,
329
+ "defaultValue": "true"
330
+ },
331
+ "showCheck": {
332
+ "type": "boolean",
333
+ "mutable": false,
334
+ "complexType": {
335
+ "original": "boolean",
336
+ "resolved": "boolean",
337
+ "references": {}
338
+ },
339
+ "required": false,
340
+ "optional": false,
341
+ "docs": {
342
+ "tags": [],
343
+ "text": ""
344
+ },
345
+ "attribute": "show-check",
346
+ "reflect": false,
347
+ "defaultValue": "false"
348
+ },
349
+ "cardMode": {
350
+ "type": "boolean",
351
+ "mutable": false,
352
+ "complexType": {
353
+ "original": "boolean",
354
+ "resolved": "boolean",
355
+ "references": {}
356
+ },
357
+ "required": false,
358
+ "optional": false,
359
+ "docs": {
360
+ "tags": [],
361
+ "text": ""
362
+ },
363
+ "attribute": "card-mode",
364
+ "reflect": false,
365
+ "defaultValue": "false"
366
+ },
367
+ "nameOrTitle": {
368
+ "type": "string",
369
+ "mutable": false,
370
+ "complexType": {
371
+ "original": "string",
372
+ "resolved": "string",
373
+ "references": {}
374
+ },
375
+ "required": false,
376
+ "optional": false,
377
+ "docs": {
378
+ "tags": [],
379
+ "text": ""
380
+ },
381
+ "attribute": "name-or-title",
382
+ "reflect": false
383
+ },
384
+ "tournamentId": {
385
+ "type": "string",
386
+ "mutable": false,
387
+ "complexType": {
388
+ "original": "string",
389
+ "resolved": "string",
390
+ "references": {}
391
+ },
392
+ "required": false,
393
+ "optional": false,
394
+ "docs": {
395
+ "tags": [],
396
+ "text": ""
397
+ },
398
+ "attribute": "tournament-id",
399
+ "reflect": false
400
+ },
401
+ "session": {
402
+ "type": "string",
403
+ "mutable": false,
404
+ "complexType": {
405
+ "original": "string",
406
+ "resolved": "string",
407
+ "references": {}
408
+ },
409
+ "required": false,
410
+ "optional": false,
411
+ "docs": {
412
+ "tags": [],
413
+ "text": ""
414
+ },
415
+ "attribute": "session",
416
+ "reflect": false
417
+ },
418
+ "loginEvent": {
419
+ "type": "string",
420
+ "mutable": false,
421
+ "complexType": {
422
+ "original": "string",
423
+ "resolved": "string",
424
+ "references": {}
425
+ },
426
+ "required": false,
427
+ "optional": false,
428
+ "docs": {
429
+ "tags": [],
430
+ "text": ""
431
+ },
432
+ "attribute": "login-event",
433
+ "reflect": false
434
+ },
435
+ "loginUrl": {
436
+ "type": "string",
437
+ "mutable": false,
438
+ "complexType": {
439
+ "original": "string",
440
+ "resolved": "string",
441
+ "references": {}
442
+ },
443
+ "required": false,
444
+ "optional": false,
445
+ "docs": {
446
+ "tags": [],
447
+ "text": ""
448
+ },
449
+ "attribute": "login-url",
450
+ "reflect": false
451
+ },
452
+ "registerEvent": {
453
+ "type": "string",
454
+ "mutable": false,
455
+ "complexType": {
456
+ "original": "string",
457
+ "resolved": "string",
458
+ "references": {}
459
+ },
460
+ "required": false,
461
+ "optional": false,
462
+ "docs": {
463
+ "tags": [],
464
+ "text": ""
465
+ },
466
+ "attribute": "register-event",
467
+ "reflect": false
468
+ },
469
+ "registerUrl": {
470
+ "type": "string",
471
+ "mutable": false,
472
+ "complexType": {
473
+ "original": "string",
474
+ "resolved": "string",
475
+ "references": {}
476
+ },
477
+ "required": false,
478
+ "optional": false,
479
+ "docs": {
480
+ "tags": [],
481
+ "text": ""
482
+ },
483
+ "attribute": "register-url",
484
+ "reflect": false
485
+ },
486
+ "endpoint": {
487
+ "type": "string",
488
+ "mutable": false,
489
+ "complexType": {
490
+ "original": "string",
491
+ "resolved": "string",
492
+ "references": {}
493
+ },
494
+ "required": false,
495
+ "optional": false,
496
+ "docs": {
497
+ "tags": [],
498
+ "text": ""
499
+ },
500
+ "attribute": "endpoint",
501
+ "reflect": false
502
+ },
503
+ "currency": {
504
+ "type": "string",
505
+ "mutable": false,
506
+ "complexType": {
507
+ "original": "string",
508
+ "resolved": "string",
509
+ "references": {}
510
+ },
511
+ "required": false,
512
+ "optional": false,
513
+ "docs": {
514
+ "tags": [],
515
+ "text": ""
516
+ },
517
+ "attribute": "currency",
518
+ "reflect": false
519
+ },
520
+ "bonusCode": {
521
+ "type": "string",
522
+ "mutable": false,
523
+ "complexType": {
524
+ "original": "string",
525
+ "resolved": "string",
526
+ "references": {}
527
+ },
528
+ "required": false,
529
+ "optional": false,
530
+ "docs": {
531
+ "tags": [],
532
+ "text": ""
533
+ },
534
+ "attribute": "bonus-code",
535
+ "reflect": false
536
+ },
537
+ "showReadMore": {
538
+ "type": "boolean",
539
+ "mutable": false,
540
+ "complexType": {
541
+ "original": "boolean",
542
+ "resolved": "boolean",
543
+ "references": {}
544
+ },
545
+ "required": false,
546
+ "optional": false,
547
+ "docs": {
548
+ "tags": [],
549
+ "text": ""
550
+ },
551
+ "attribute": "show-read-more",
552
+ "reflect": false,
553
+ "defaultValue": "false"
554
+ },
555
+ "clientStyling": {
556
+ "type": "string",
557
+ "mutable": false,
558
+ "complexType": {
559
+ "original": "string",
560
+ "resolved": "string",
561
+ "references": {}
562
+ },
563
+ "required": false,
564
+ "optional": false,
565
+ "docs": {
566
+ "tags": [],
567
+ "text": ""
568
+ },
569
+ "attribute": "client-styling",
570
+ "reflect": false,
571
+ "defaultValue": "''"
572
+ },
573
+ "clientStylingUrl": {
574
+ "type": "string",
575
+ "mutable": false,
576
+ "complexType": {
577
+ "original": "string",
578
+ "resolved": "string",
579
+ "references": {}
580
+ },
581
+ "required": false,
582
+ "optional": false,
583
+ "docs": {
584
+ "tags": [],
585
+ "text": ""
586
+ },
587
+ "attribute": "client-styling-url",
588
+ "reflect": false,
589
+ "defaultValue": "''"
590
+ }
591
+ }; }
592
+ static get states() { return {
593
+ "stateText": {},
594
+ "limitStylingAppends": {},
595
+ "stylingContainer": {},
596
+ "startdate": {}
597
+ }; }
598
+ static get listeners() { return [{
599
+ "name": "getTournamentInfoCompleted",
600
+ "method": "infoCompletedHandler",
601
+ "target": "window",
602
+ "capture": false,
603
+ "passive": false
604
+ }]; }
605
+ }
@@ -0,0 +1 @@
1
+ export * from './components';