@everymatrix/casino-games-category-section 0.0.370 → 0.0.372

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-games-category-section",
3
- "version": "0.0.370",
3
+ "version": "0.0.372",
4
4
  "main": "dist/casino-games-category-section.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "0a7c511332ea6be9685fb8191900cb92f310daba"
39
+ "gitHead": "5612b26ae9b59681de1e96fae53e69e4dd94f3cf"
40
40
  }
@@ -7,7 +7,6 @@
7
7
  import type { CategoryData } from './CasinoGamesCategorySection.type';
8
8
  import { GamesCategorySectionTranslations } from './translations';
9
9
 
10
- import '@everymatrix/casino-winners';
11
10
  import '@everymatrix/casino-game-thumbnail';
12
11
 
13
12
  const MASONRY_CLASS_PREFIX = 'game-tile-';
@@ -28,10 +27,6 @@
28
27
  export let livecasino:string = 'false';
29
28
  export let visiblegames:string = '';
30
29
  export let gamepagemodalurl:string = 'false';
31
- export let enablecasinowinners:string = 'true';
32
-
33
- export let tabsorder:string = '';
34
- export let enableautoscroll:string = '';
35
30
 
36
31
  export let once = true;
37
32
  export let top = 0;
@@ -39,20 +34,6 @@
39
34
  export let left = 0;
40
35
  export let right = 0;
41
36
 
42
- //CasinoWinners Widget
43
- let periodrecent:string = 'Today';
44
- let periodtop:string = 'Last7Days';
45
- let numberusersrecent:string = '20';
46
- let numberuserstop:string = '20';
47
- let amountlimit:string = '1';
48
- let isrecentavailable:string = 'true';
49
- let istopavailable:string = 'true';
50
- let defaultcurrency:string = 'EUR';
51
- let winners: any[] = [];
52
- let winnersType:string;
53
- let isLoggedIn:boolean = false;
54
- let userCurrency:string;
55
-
56
37
  // CasinoPage loading state
57
38
  let isLoading:boolean = false;
58
39
  let hasErrors:boolean = false;
@@ -353,7 +334,6 @@
353
334
  item.isFavorite = checkFavorite(item.id);
354
335
  });
355
336
 
356
- showLoadCategory = true;
357
337
  break;
358
338
 
359
339
  // Start favorite category section
@@ -576,27 +556,6 @@
576
556
  {:else}
577
557
  <div>
578
558
  {#if categoryData}
579
- {#if (enablecasinowinners === 'true') && lobbyView && categoryindex == '1'}
580
- <div class="CasinoWinners">
581
- <casino-winners
582
- {session}
583
- {periodrecent}
584
- {periodtop}
585
- {numberusersrecent}
586
- {numberuserstop}
587
- {amountlimit}
588
- {lang}
589
- {isrecentavailable}
590
- {istopavailable}
591
- {defaultcurrency}
592
- {clientstyling}
593
- {clientstylingurl}
594
- {tabsorder}
595
- {enableautoscroll}
596
- {endpoint}
597
- ></casino-winners>
598
- </div>
599
- {/if}
600
559
  <div class="CasinoGamesContainer" part="CasinoGamesContainer">
601
560
  <div class="CasinoGamesHeader" part="CasinoGamesHeader">
602
561
  <h3 class="CategoryName" part="CategoryName" bind:this={categoryName}>
@@ -774,11 +733,6 @@
774
733
  $grid-cell-size-small: 110px;
775
734
  $grid-cell-size-medium: 122px;
776
735
 
777
- .CasinoWinners {
778
- background: transparent;
779
- width: 100%;
780
- min-height: 200px;
781
- }
782
736
  .CategoryName,
783
737
  .StatusText {
784
738
  color: var(--emfe-w-color-white, #FFFFFF);