@everymatrix/casino-tournaments-controller 0.0.222 → 0.0.227

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-tournaments-controller",
3
- "version": "0.0.222",
3
+ "version": "0.0.227",
4
4
  "main": "dist/casino-tournaments-controller.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -29,11 +29,11 @@
29
29
  "typescript": "^3.9.3"
30
30
  },
31
31
  "dependencies": {
32
- "@everymatrix/casino-tournaments-details": "^0.0.222",
33
- "@everymatrix/casino-tournaments-filter-controller": "^0.0.222",
34
- "@everymatrix/casino-tournaments-list-controller": "^0.0.222",
35
- "@everymatrix/casino-tournaments-page-controller": "^0.0.222",
36
- "@everymatrix/casino-tournaments-thumbnail-controller": "^0.0.222",
32
+ "@everymatrix/casino-tournaments-details": "^0.0.227",
33
+ "@everymatrix/casino-tournaments-filter-controller": "^0.0.227",
34
+ "@everymatrix/casino-tournaments-list-controller": "^0.0.227",
35
+ "@everymatrix/casino-tournaments-page-controller": "^0.0.227",
36
+ "@everymatrix/casino-tournaments-thumbnail-controller": "^0.0.227",
37
37
  "cross-env": "^7.0.3",
38
38
  "sirv-cli": "^1.0.0",
39
39
  "svelte": "^3.0.0"
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "3f56a3b8fe7c6974efedb51c6584f188e1d31908"
44
+ "gitHead": "87c5d90286e7d4214a1e8f9ec974787cb1fd71a6"
45
45
  }
@@ -265,9 +265,9 @@
265
265
  <p>{$_('tournamentsController.500')}</p>
266
266
  <p>{error}</p>
267
267
  {:else}
268
- <div class="TournamentsWrapper">
269
- <div class="Tournaments" style="max-width: {containermaxwidth}px;">
270
- <div class="FirstRow">
268
+ <div class="TournamentsWrapper" part="TournamentsWrapper">
269
+ <div class="Tournaments" style="max-width: {containermaxwidth}px;" part="Tournaments">
270
+ <div class="FirstRow" part="FirstRow">
271
271
  {#if filtersLoaded}
272
272
  <casino-tournaments-filter-controller
273
273
  filters={filtersArray}
@@ -275,7 +275,7 @@
275
275
  ></casino-tournaments-filter-controller>
276
276
  {/if}
277
277
  </div>
278
- <div class="SecondRow">
278
+ <div class="SecondRow" part="SecondRow">
279
279
  {#if tournamentsNumber == 0}
280
280
  {#if isLoading}
281
281
  <p>{$_('tournamentsController.loading')}</p>
@@ -298,9 +298,9 @@
298
298
  {/if}
299
299
  </div>
300
300
  {#if !allTournamentsShown}
301
- <div class="ThirdRow">
302
- <div class="CenterButton">
303
- <button class="ShowMoreButton" on:click="{() => showMoreAction()}" title="Show More">{$_('tournamentsController.showMore')}</button>
301
+ <div class="ThirdRow" part="ThirdRow">
302
+ <div class="CenterButton" part="CenterButton">
303
+ <button class="ShowMoreButton" part="ShowMoreButton" on:click="{() => showMoreAction()}" title="Show More">{$_('tournamentsController.showMore')}</button>
304
304
  </div>
305
305
  </div>
306
306
  {/if}
@@ -309,9 +309,9 @@
309
309
  {/if}
310
310
 
311
311
  <style lang="scss">
312
- $primary-background-color: #00020f;
312
+ $primary-background-color: var(--emfe-w-color-contrast, #07072A);
313
313
  $font-stack: "Helvetica Neue", "Helvetica", sans-serif;
314
- $primary-font-color: #ffffff;
314
+ $primary-font-color: var(--emfe-w-color-white, #FFFFFF);
315
315
  $primary-font-size: 1rem;
316
316
 
317
317
  //This function does a multiplication
@@ -338,13 +338,13 @@
338
338
  }
339
339
 
340
340
  .ShowMoreButton {
341
- background: #0a0c19;
341
+ background: var(--emfe-w-color-contrast, #07072A);
342
342
  font-size: 18px;
343
343
  width: 280px;
344
344
  height: 60px;
345
345
  text-align: center;
346
- color: #48952a;
347
- border: solid #48952a 1px;
346
+ color: var(--emfe-w-color-green, #48952a);
347
+ border: solid var(--emfe-w-color-green, #48952a) 1px;
348
348
  text-transform: uppercase;
349
349
  margin-bottom: 20px;
350
350
  cursor: pointer;