@everymatrix/casino-tournament-slider 1.44.0 → 1.45.2

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 (50) hide show
  1. package/dist/casino-tournament-slider/casino-tournament-slider.esm.js +1 -1
  2. package/dist/casino-tournament-slider/p-01da553f.entry.js +1 -0
  3. package/dist/casino-tournament-slider/p-c541e3cd.js +2 -0
  4. package/dist/casino-tournament-slider/p-e1255160.js +1 -0
  5. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  6. package/dist/cjs/casino-tournament-slider.cjs.js +16 -10
  7. package/dist/cjs/casino-tournament-slider_2.cjs.entry.js +313 -330
  8. package/dist/cjs/index-e4a7f235.js +1279 -0
  9. package/dist/cjs/loader.cjs.js +6 -12
  10. package/dist/collection/collection-manifest.json +3 -3
  11. package/dist/collection/components/casino-tournament-slider/casino-tournament-slider.js +338 -328
  12. package/dist/collection/components/casino-tournament-slider/index.js +1 -0
  13. package/dist/collection/utils/locale.utils.js +34 -34
  14. package/dist/collection/utils/utils.js +1 -1
  15. package/dist/esm/app-globals-0f993ce5.js +3 -0
  16. package/dist/esm/casino-tournament-slider.js +13 -10
  17. package/dist/esm/casino-tournament-slider_2.entry.js +313 -330
  18. package/dist/esm/index-e38437e9.js +1252 -0
  19. package/dist/esm/loader.js +6 -12
  20. package/dist/stencil.config.dev.js +17 -0
  21. package/dist/stencil.config.js +14 -19
  22. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/casino-tournament-slider/.stencil/packages/stencil/casino-tournament-slider/stencil.config.d.ts +2 -0
  23. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/casino-tournament-slider/.stencil/packages/stencil/casino-tournament-slider/stencil.config.dev.d.ts +2 -0
  24. package/dist/types/components/casino-tournament-slider/casino-tournament-slider.d.ts +28 -28
  25. package/dist/types/components/casino-tournament-slider/index.d.ts +1 -0
  26. package/dist/types/stencil-public-runtime.d.ts +142 -33
  27. package/loader/cdn.js +1 -3
  28. package/loader/index.cjs.js +1 -3
  29. package/loader/index.d.ts +13 -1
  30. package/loader/index.es2017.js +1 -3
  31. package/loader/index.js +1 -3
  32. package/loader/package.json +1 -0
  33. package/package.json +11 -1
  34. package/dist/casino-tournament-slider/p-039bfb6a.entry.js +0 -1
  35. package/dist/casino-tournament-slider/p-7bade785.js +0 -1
  36. package/dist/cjs/index-f60eba31.js +0 -1263
  37. package/dist/components/casino-tournament-slider.d.ts +0 -11
  38. package/dist/components/casino-tournament-slider.js +0 -179
  39. package/dist/components/general-slider.js +0 -6
  40. package/dist/components/general-slider2.js +0 -257
  41. package/dist/components/index.d.ts +0 -26
  42. package/dist/components/index.js +0 -1
  43. package/dist/esm/index-c48feefa.js +0 -1237
  44. package/dist/esm/polyfills/core-js.js +0 -11
  45. package/dist/esm/polyfills/css-shim.js +0 -1
  46. package/dist/esm/polyfills/dom.js +0 -79
  47. package/dist/esm/polyfills/es5-html-element.js +0 -1
  48. package/dist/esm/polyfills/index.js +0 -34
  49. package/dist/esm/polyfills/system.js +0 -6
  50. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/casino-tournament-slider/.stencil/packages/casino-tournament-slider/stencil.config.d.ts +0 -2
@@ -1,335 +1,345 @@
1
- import { Component, Prop, h, State, Listen, Element } from '@stencil/core';
2
- import '@everymatrix/general-slider';
3
- import { translate } from '../../utils/locale.utils';
1
+ import { h } from "@stencil/core";
2
+ import "../../../../../general-slider/dist/types/index";
3
+ import { translate } from "../../utils/locale.utils";
4
4
  export class CasinoTournamentSlider {
5
- constructor() {
6
- this.gamesLimit = 30;
7
- this.offset = 0;
8
- this.slideNumber = 3;
9
- this.slideShow = 3;
10
- this.clientStyling = '';
11
- this.clientStylingUrl = '';
12
- this.showTitle = false;
13
- this.limitStylingAppends = false;
14
- this.enter = (index) => {
15
- this.hover = true;
16
- this.hoverIndex = index;
17
- };
18
- this.leave = () => {
19
- this.hover = false;
20
- this.hoverIndex = -1;
21
- };
22
- this.gameClicked = (item) => {
23
- window.postMessage({ type: 'TournamentGameAction', gameId: item.id, name: item.name }, window.location.href);
24
- };
25
- }
26
- todoCompletedHandler(event) {
27
- if (event.detail && this.useEvent) {
28
- if (!event.detail.games)
29
- return;
30
- this.games = event.detail.games.items;
5
+ constructor() {
6
+ this.enter = (index) => {
7
+ this.hover = true;
8
+ this.hoverIndex = index;
9
+ };
10
+ this.leave = () => {
11
+ this.hover = false;
12
+ this.hoverIndex = -1;
13
+ };
14
+ this.gameClicked = (item) => {
15
+ window.postMessage({ type: 'TournamentGameAction', gameId: item.id, name: item.name }, window.location.href);
16
+ };
17
+ this.useEvent = undefined;
18
+ this.endpoint = undefined;
19
+ this.tournamentId = undefined;
20
+ this.session = undefined;
21
+ this.language = undefined;
22
+ this.gamesLimit = 30;
23
+ this.offset = 0;
24
+ this.slideNumber = 3;
25
+ this.slideShow = 3;
26
+ this.clientStyling = '';
27
+ this.clientStylingUrl = '';
28
+ this.showTitle = false;
29
+ this.limitStylingAppends = false;
30
+ this.games = undefined;
31
+ this.hover = undefined;
32
+ this.hoverIndex = undefined;
31
33
  }
32
- }
33
- getTournamentInfo() {
34
- let url = new URL(this.endpoint + `/v1/tournaments/${this.tournamentId}`);
35
- let reqHeaders = new Headers();
36
- url.searchParams.append('expand', 'games');
37
- url.searchParams.append('language', this.language);
38
- url.searchParams.append('pagination', `games(limit=${this.gamesLimit},offset=${this.offset})`);
39
- url.searchParams.append('fields', 'games(id,name,thumbnail)');
40
- if (this.session) {
41
- reqHeaders.append('X-SessionId', this.session);
34
+ todoCompletedHandler(event) {
35
+ if (event.detail && this.useEvent) {
36
+ if (!event.detail.games)
37
+ return;
38
+ this.games = event.detail.games.items;
39
+ }
42
40
  }
43
- let requestOptions = {
44
- method: 'GET',
45
- headers: reqHeaders,
46
- };
47
- fetch(url.href, requestOptions).then((res) => res.json())
48
- .then((res) => {
49
- this.games = res.item.games.items;
50
- });
51
- }
52
- componentWillLoad() {
53
- if (!this.useEvent && this.endpoint && this.tournamentId) {
54
- this.getTournamentInfo();
41
+ getTournamentInfo() {
42
+ let url = new URL(this.endpoint + `/v1/tournaments/${this.tournamentId}`);
43
+ let reqHeaders = new Headers();
44
+ url.searchParams.append('expand', 'games');
45
+ url.searchParams.append('language', this.language);
46
+ url.searchParams.append('pagination', `games(limit=${this.gamesLimit},offset=${this.offset})`);
47
+ url.searchParams.append('fields', 'games(id,name,thumbnail)');
48
+ if (this.session) {
49
+ reqHeaders.append('X-SessionId', this.session);
50
+ }
51
+ let requestOptions = {
52
+ method: 'GET',
53
+ headers: reqHeaders,
54
+ };
55
+ fetch(url.href, requestOptions).then((res) => res.json())
56
+ .then((res) => {
57
+ this.games = res.item.games.items;
58
+ });
55
59
  }
56
- }
57
- componentDidRender() {
58
- if (!this.limitStylingAppends && this.host) {
59
- if (this.clientStyling)
60
- this.setClientStyling();
61
- if (this.clientStylingUrl)
62
- this.setClientStylingURL();
63
- this.limitStylingAppends = true;
60
+ componentWillLoad() {
61
+ if (!this.useEvent && this.endpoint && this.tournamentId) {
62
+ this.getTournamentInfo();
63
+ }
64
64
  }
65
- }
66
- setClientStyling() {
67
- const sheet = new CSSStyleSheet();
68
- // @ts-ignore
69
- sheet.replace(this.clientStyling);
70
- // @ts-ignore
71
- this.host.shadowRoot.adoptedStyleSheets = [...this.host.shadowRoot.adoptedStyleSheets, sheet];
72
- }
73
- setClientStylingURL() {
74
- let url = new URL(this.clientStylingUrl);
75
- fetch(url.href)
76
- .then((res) => res.text())
77
- .then((data) => {
78
- const sheet = new CSSStyleSheet();
79
- // @ts-ignore
80
- sheet.replace(data);
81
- // @ts-ignore
82
- this.host.shadowRoot.adoptedStyleSheets = [...this.host.shadowRoot.adoptedStyleSheets, sheet];
83
- });
84
- }
85
- render() {
86
- return h("div", { class: "TournamentSliderWrap" },
87
- h("div", { class: "TournamentSlider" },
88
- this.showTitle && this.games &&
89
- h("div", { class: "SliderTitle" },
90
- h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "21", height: "25", viewBox: "0 0 21 25", fill: "none" },
91
- h("path", { d: "M6.1774 22.1728C6.36493 22.2725 6.56274 22.0566 6.44793 21.8779C5.82475 20.908 5.23463 19.2759 6.17483 17.174C7.74273 13.6689 8.6968 11.8535 8.6968 11.8535C8.6968 11.8535 9.20426 13.9721 10.5799 15.8558C11.9038 17.6687 12.6285 19.9488 11.4602 21.8482C11.3506 22.0265 11.5439 22.2368 11.7302 22.1415C13.1763 21.4017 14.7983 19.9179 14.9813 16.965C15.0488 16.0627 14.9476 14.7995 14.4416 13.2054C13.791 11.185 12.9911 10.2423 12.5283 9.83741C12.3899 9.71629 12.1746 9.82363 12.1859 10.0072C12.3208 12.1872 11.5007 12.7404 11.0339 11.4937C10.8474 10.9957 10.7387 10.1344 10.7387 9.08558C10.7387 7.3394 10.2321 5.54188 9.1152 4.0812C8.82475 3.70134 8.4849 3.3464 8.09498 3.04372C7.95382 2.93411 7.74919 3.04428 7.76212 3.22252C7.84788 4.40628 7.77018 7.79884 4.79383 11.8519C2.09515 15.6115 3.14088 18.4989 3.51195 19.281C4.2214 20.7791 5.21098 21.6589 6.1774 22.1728Z", fill: "white" })),
92
- h("span", { class: "Title" }, translate('sliderTitle', this.language))),
93
- h("div", { class: "Items" }, this.games &&
94
- h("general-slider", { "slide-number": this.slideNumber, "slide-show": this.slideShow }, this.games && this.games.map((game, i) => {
95
- return h("li", { class: "Item", onMouseEnter: () => this.enter(i), onMouseLeave: () => this.leave() },
96
- h("span", { class: `PlayNowButton ${this.hoverIndex == i ? 'ItemHover' : ''}`, onClick: () => { this.gameClicked(game); } }, translate('playNow', this.language)),
97
- h("img", { class: "Img", src: game.thumbnail, alt: game.name, title: game.name }));
98
- })))));
99
- }
100
- static get is() { return "casino-tournament-slider"; }
101
- static get encapsulation() { return "shadow"; }
102
- static get originalStyleUrls() { return {
103
- "$": ["casino-tournament-slider.scss"]
104
- }; }
105
- static get styleUrls() { return {
106
- "$": ["casino-tournament-slider.css"]
107
- }; }
108
- static get properties() { return {
109
- "useEvent": {
110
- "type": "string",
111
- "mutable": false,
112
- "complexType": {
113
- "original": "string",
114
- "resolved": "string",
115
- "references": {}
116
- },
117
- "required": false,
118
- "optional": false,
119
- "docs": {
120
- "tags": [],
121
- "text": ""
122
- },
123
- "attribute": "use-event",
124
- "reflect": false
125
- },
126
- "endpoint": {
127
- "type": "string",
128
- "mutable": false,
129
- "complexType": {
130
- "original": "string",
131
- "resolved": "string",
132
- "references": {}
133
- },
134
- "required": false,
135
- "optional": false,
136
- "docs": {
137
- "tags": [],
138
- "text": ""
139
- },
140
- "attribute": "endpoint",
141
- "reflect": false
142
- },
143
- "tournamentId": {
144
- "type": "string",
145
- "mutable": false,
146
- "complexType": {
147
- "original": "string",
148
- "resolved": "string",
149
- "references": {}
150
- },
151
- "required": false,
152
- "optional": false,
153
- "docs": {
154
- "tags": [],
155
- "text": ""
156
- },
157
- "attribute": "tournament-id",
158
- "reflect": false
159
- },
160
- "session": {
161
- "type": "string",
162
- "mutable": false,
163
- "complexType": {
164
- "original": "string",
165
- "resolved": "string",
166
- "references": {}
167
- },
168
- "required": false,
169
- "optional": false,
170
- "docs": {
171
- "tags": [],
172
- "text": ""
173
- },
174
- "attribute": "session",
175
- "reflect": false
176
- },
177
- "language": {
178
- "type": "string",
179
- "mutable": false,
180
- "complexType": {
181
- "original": "string",
182
- "resolved": "string",
183
- "references": {}
184
- },
185
- "required": false,
186
- "optional": false,
187
- "docs": {
188
- "tags": [],
189
- "text": ""
190
- },
191
- "attribute": "language",
192
- "reflect": false
193
- },
194
- "gamesLimit": {
195
- "type": "number",
196
- "mutable": false,
197
- "complexType": {
198
- "original": "number",
199
- "resolved": "number",
200
- "references": {}
201
- },
202
- "required": false,
203
- "optional": false,
204
- "docs": {
205
- "tags": [],
206
- "text": ""
207
- },
208
- "attribute": "games-limit",
209
- "reflect": false,
210
- "defaultValue": "30"
211
- },
212
- "offset": {
213
- "type": "number",
214
- "mutable": false,
215
- "complexType": {
216
- "original": "number",
217
- "resolved": "number",
218
- "references": {}
219
- },
220
- "required": false,
221
- "optional": false,
222
- "docs": {
223
- "tags": [],
224
- "text": ""
225
- },
226
- "attribute": "offset",
227
- "reflect": false,
228
- "defaultValue": "0"
229
- },
230
- "slideNumber": {
231
- "type": "number",
232
- "mutable": false,
233
- "complexType": {
234
- "original": "number",
235
- "resolved": "number",
236
- "references": {}
237
- },
238
- "required": false,
239
- "optional": false,
240
- "docs": {
241
- "tags": [],
242
- "text": ""
243
- },
244
- "attribute": "slide-number",
245
- "reflect": false,
246
- "defaultValue": "3"
247
- },
248
- "slideShow": {
249
- "type": "number",
250
- "mutable": false,
251
- "complexType": {
252
- "original": "number",
253
- "resolved": "number",
254
- "references": {}
255
- },
256
- "required": false,
257
- "optional": false,
258
- "docs": {
259
- "tags": [],
260
- "text": ""
261
- },
262
- "attribute": "slide-show",
263
- "reflect": false,
264
- "defaultValue": "3"
265
- },
266
- "clientStyling": {
267
- "type": "string",
268
- "mutable": false,
269
- "complexType": {
270
- "original": "string",
271
- "resolved": "string",
272
- "references": {}
273
- },
274
- "required": false,
275
- "optional": false,
276
- "docs": {
277
- "tags": [],
278
- "text": ""
279
- },
280
- "attribute": "client-styling",
281
- "reflect": false,
282
- "defaultValue": "''"
283
- },
284
- "clientStylingUrl": {
285
- "type": "string",
286
- "mutable": false,
287
- "complexType": {
288
- "original": "string",
289
- "resolved": "string",
290
- "references": {}
291
- },
292
- "required": false,
293
- "optional": false,
294
- "docs": {
295
- "tags": [],
296
- "text": ""
297
- },
298
- "attribute": "client-styling-url",
299
- "reflect": false,
300
- "defaultValue": "''"
301
- },
302
- "showTitle": {
303
- "type": "boolean",
304
- "mutable": false,
305
- "complexType": {
306
- "original": "boolean",
307
- "resolved": "boolean",
308
- "references": {}
309
- },
310
- "required": false,
311
- "optional": false,
312
- "docs": {
313
- "tags": [],
314
- "text": ""
315
- },
316
- "attribute": "show-title",
317
- "reflect": false,
318
- "defaultValue": "false"
65
+ componentDidRender() {
66
+ if (!this.limitStylingAppends && this.host) {
67
+ if (this.clientStyling)
68
+ this.setClientStyling();
69
+ if (this.clientStylingUrl)
70
+ this.setClientStylingURL();
71
+ this.limitStylingAppends = true;
72
+ }
73
+ }
74
+ setClientStyling() {
75
+ const sheet = new CSSStyleSheet();
76
+ // @ts-ignore
77
+ sheet.replace(this.clientStyling);
78
+ // @ts-ignore
79
+ this.host.shadowRoot.adoptedStyleSheets = [...this.host.shadowRoot.adoptedStyleSheets, sheet];
80
+ }
81
+ setClientStylingURL() {
82
+ let url = new URL(this.clientStylingUrl);
83
+ fetch(url.href)
84
+ .then((res) => res.text())
85
+ .then((data) => {
86
+ const sheet = new CSSStyleSheet();
87
+ // @ts-ignore
88
+ sheet.replace(data);
89
+ // @ts-ignore
90
+ this.host.shadowRoot.adoptedStyleSheets = [...this.host.shadowRoot.adoptedStyleSheets, sheet];
91
+ });
92
+ }
93
+ render() {
94
+ return h("div", { key: 'f16db0fd04952457c6e637e34e3295de9f2ab00e', class: "TournamentSliderWrap" }, h("div", { key: '246d6bae2b600ebc97e8cfbdf707ae284f0cef20', class: "TournamentSlider" }, this.showTitle && this.games &&
95
+ h("div", { key: 'd9760b0b053aa103a8bb1d24e860d83225aba17b', class: "SliderTitle" }, h("svg", { key: '47e2a1441fa2eb68510eb9a775ff14e6b5221afd', xmlns: "http://www.w3.org/2000/svg", width: "21", height: "25", viewBox: "0 0 21 25", fill: "none" }, h("path", { key: '566c04c19cbd24b79fba1c87f9872e28689178e3', d: "M6.1774 22.1728C6.36493 22.2725 6.56274 22.0566 6.44793 21.8779C5.82475 20.908 5.23463 19.2759 6.17483 17.174C7.74273 13.6689 8.6968 11.8535 8.6968 11.8535C8.6968 11.8535 9.20426 13.9721 10.5799 15.8558C11.9038 17.6687 12.6285 19.9488 11.4602 21.8482C11.3506 22.0265 11.5439 22.2368 11.7302 22.1415C13.1763 21.4017 14.7983 19.9179 14.9813 16.965C15.0488 16.0627 14.9476 14.7995 14.4416 13.2054C13.791 11.185 12.9911 10.2423 12.5283 9.83741C12.3899 9.71629 12.1746 9.82363 12.1859 10.0072C12.3208 12.1872 11.5007 12.7404 11.0339 11.4937C10.8474 10.9957 10.7387 10.1344 10.7387 9.08558C10.7387 7.3394 10.2321 5.54188 9.1152 4.0812C8.82475 3.70134 8.4849 3.3464 8.09498 3.04372C7.95382 2.93411 7.74919 3.04428 7.76212 3.22252C7.84788 4.40628 7.77018 7.79884 4.79383 11.8519C2.09515 15.6115 3.14088 18.4989 3.51195 19.281C4.2214 20.7791 5.21098 21.6589 6.1774 22.1728Z", fill: "white" })), h("span", { key: '6a6e5fc1e888de1ace0b0c577cc96b98c55a65bd', class: "Title" }, translate('sliderTitle', this.language))), h("div", { key: '0d18223f0d9603ba8e94a87725bfc52592f5a120', class: "Items" }, this.games &&
96
+ h("general-slider", { key: 'd56409e9730aeae803bb2a54951d9ba0912dbf51', "slide-number": this.slideNumber, "slide-show": this.slideShow }, this.games && this.games.map((game, i) => {
97
+ return h("li", { class: "Item", onMouseEnter: () => this.enter(i), onMouseLeave: () => this.leave() }, h("span", { class: `PlayNowButton ${this.hoverIndex == i ? 'ItemHover' : ''}`, onClick: () => { this.gameClicked(game); } }, translate('playNow', this.language)), h("img", { class: "Img", src: game.thumbnail, alt: game.name, title: game.name }));
98
+ })))));
99
+ }
100
+ static get is() { return "casino-tournament-slider"; }
101
+ static get encapsulation() { return "shadow"; }
102
+ static get originalStyleUrls() {
103
+ return {
104
+ "$": ["casino-tournament-slider.scss"]
105
+ };
106
+ }
107
+ static get styleUrls() {
108
+ return {
109
+ "$": ["casino-tournament-slider.css"]
110
+ };
111
+ }
112
+ static get properties() {
113
+ return {
114
+ "useEvent": {
115
+ "type": "string",
116
+ "mutable": false,
117
+ "complexType": {
118
+ "original": "string",
119
+ "resolved": "string",
120
+ "references": {}
121
+ },
122
+ "required": false,
123
+ "optional": false,
124
+ "docs": {
125
+ "tags": [],
126
+ "text": ""
127
+ },
128
+ "attribute": "use-event",
129
+ "reflect": false
130
+ },
131
+ "endpoint": {
132
+ "type": "string",
133
+ "mutable": false,
134
+ "complexType": {
135
+ "original": "string",
136
+ "resolved": "string",
137
+ "references": {}
138
+ },
139
+ "required": false,
140
+ "optional": false,
141
+ "docs": {
142
+ "tags": [],
143
+ "text": ""
144
+ },
145
+ "attribute": "endpoint",
146
+ "reflect": false
147
+ },
148
+ "tournamentId": {
149
+ "type": "string",
150
+ "mutable": false,
151
+ "complexType": {
152
+ "original": "string",
153
+ "resolved": "string",
154
+ "references": {}
155
+ },
156
+ "required": false,
157
+ "optional": false,
158
+ "docs": {
159
+ "tags": [],
160
+ "text": ""
161
+ },
162
+ "attribute": "tournament-id",
163
+ "reflect": false
164
+ },
165
+ "session": {
166
+ "type": "string",
167
+ "mutable": false,
168
+ "complexType": {
169
+ "original": "string",
170
+ "resolved": "string",
171
+ "references": {}
172
+ },
173
+ "required": false,
174
+ "optional": false,
175
+ "docs": {
176
+ "tags": [],
177
+ "text": ""
178
+ },
179
+ "attribute": "session",
180
+ "reflect": false
181
+ },
182
+ "language": {
183
+ "type": "string",
184
+ "mutable": false,
185
+ "complexType": {
186
+ "original": "string",
187
+ "resolved": "string",
188
+ "references": {}
189
+ },
190
+ "required": false,
191
+ "optional": false,
192
+ "docs": {
193
+ "tags": [],
194
+ "text": ""
195
+ },
196
+ "attribute": "language",
197
+ "reflect": false
198
+ },
199
+ "gamesLimit": {
200
+ "type": "number",
201
+ "mutable": false,
202
+ "complexType": {
203
+ "original": "number",
204
+ "resolved": "number",
205
+ "references": {}
206
+ },
207
+ "required": false,
208
+ "optional": false,
209
+ "docs": {
210
+ "tags": [],
211
+ "text": ""
212
+ },
213
+ "attribute": "games-limit",
214
+ "reflect": false,
215
+ "defaultValue": "30"
216
+ },
217
+ "offset": {
218
+ "type": "number",
219
+ "mutable": false,
220
+ "complexType": {
221
+ "original": "number",
222
+ "resolved": "number",
223
+ "references": {}
224
+ },
225
+ "required": false,
226
+ "optional": false,
227
+ "docs": {
228
+ "tags": [],
229
+ "text": ""
230
+ },
231
+ "attribute": "offset",
232
+ "reflect": false,
233
+ "defaultValue": "0"
234
+ },
235
+ "slideNumber": {
236
+ "type": "number",
237
+ "mutable": false,
238
+ "complexType": {
239
+ "original": "number",
240
+ "resolved": "number",
241
+ "references": {}
242
+ },
243
+ "required": false,
244
+ "optional": false,
245
+ "docs": {
246
+ "tags": [],
247
+ "text": ""
248
+ },
249
+ "attribute": "slide-number",
250
+ "reflect": false,
251
+ "defaultValue": "3"
252
+ },
253
+ "slideShow": {
254
+ "type": "number",
255
+ "mutable": false,
256
+ "complexType": {
257
+ "original": "number",
258
+ "resolved": "number",
259
+ "references": {}
260
+ },
261
+ "required": false,
262
+ "optional": false,
263
+ "docs": {
264
+ "tags": [],
265
+ "text": ""
266
+ },
267
+ "attribute": "slide-show",
268
+ "reflect": false,
269
+ "defaultValue": "3"
270
+ },
271
+ "clientStyling": {
272
+ "type": "string",
273
+ "mutable": false,
274
+ "complexType": {
275
+ "original": "string",
276
+ "resolved": "string",
277
+ "references": {}
278
+ },
279
+ "required": false,
280
+ "optional": false,
281
+ "docs": {
282
+ "tags": [],
283
+ "text": ""
284
+ },
285
+ "attribute": "client-styling",
286
+ "reflect": false,
287
+ "defaultValue": "''"
288
+ },
289
+ "clientStylingUrl": {
290
+ "type": "string",
291
+ "mutable": false,
292
+ "complexType": {
293
+ "original": "string",
294
+ "resolved": "string",
295
+ "references": {}
296
+ },
297
+ "required": false,
298
+ "optional": false,
299
+ "docs": {
300
+ "tags": [],
301
+ "text": ""
302
+ },
303
+ "attribute": "client-styling-url",
304
+ "reflect": false,
305
+ "defaultValue": "''"
306
+ },
307
+ "showTitle": {
308
+ "type": "boolean",
309
+ "mutable": false,
310
+ "complexType": {
311
+ "original": "boolean",
312
+ "resolved": "boolean",
313
+ "references": {}
314
+ },
315
+ "required": false,
316
+ "optional": false,
317
+ "docs": {
318
+ "tags": [],
319
+ "text": ""
320
+ },
321
+ "attribute": "show-title",
322
+ "reflect": false,
323
+ "defaultValue": "false"
324
+ }
325
+ };
326
+ }
327
+ static get states() {
328
+ return {
329
+ "limitStylingAppends": {},
330
+ "games": {},
331
+ "hover": {},
332
+ "hoverIndex": {}
333
+ };
334
+ }
335
+ static get elementRef() { return "host"; }
336
+ static get listeners() {
337
+ return [{
338
+ "name": "getTournamentInfoCompleted",
339
+ "method": "todoCompletedHandler",
340
+ "target": "window",
341
+ "capture": false,
342
+ "passive": false
343
+ }];
319
344
  }
320
- }; }
321
- static get states() { return {
322
- "limitStylingAppends": {},
323
- "games": {},
324
- "hover": {},
325
- "hoverIndex": {}
326
- }; }
327
- static get elementRef() { return "host"; }
328
- static get listeners() { return [{
329
- "name": "getTournamentInfoCompleted",
330
- "method": "todoCompletedHandler",
331
- "target": "window",
332
- "capture": false,
333
- "passive": false
334
- }]; }
335
345
  }