@everymatrix/casino-games-category-section 1.23.0 → 1.24.0

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": "1.23.0",
3
+ "version": "1.24.0",
4
4
  "main": "dist/casino-games-category-section.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "e1f96f1273bd4af5ca8e311c90006f51ca00a642"
38
+ "gitHead": "88308bab2d4819ec71d025befe5d4165e8c092ca"
39
39
  }
@@ -27,6 +27,7 @@
27
27
  export let currency:string = '';
28
28
 
29
29
  export let categoryid:string = '';
30
+ export let showgamename:string = '';
30
31
  export let categorygames:number = 0;
31
32
  export let livecasino:string = 'false';
32
33
  export let visiblegames:string = '';
@@ -685,6 +686,7 @@
685
686
  gamecellsize={gameprops.cellSize}
686
687
  gameid={gameprops.id}
687
688
  gamefunmode={gameprops.hasFunMode}
689
+ {showgamename}
688
690
  gamefavorite={gameprops.isFavorite}
689
691
  {currency}
690
692
  livelobbyendpoint={gameprops.details ? gameprops.href : ''}
@@ -770,6 +772,7 @@
770
772
  gameid={gameprops.id}
771
773
  gamefunmode={gameprops.hasFunMode}
772
774
  gamefavorite={gameprops.isFavorite}
775
+ {showgamename}
773
776
  bind:this={thumbnailContainer[index]}
774
777
  connectlive={intersectingIndexes[gameprops.id] == 1 ? 'connect' : 'disconnect'}
775
778
  visibilityconnect={visibilityconnect}
@@ -830,6 +833,7 @@
830
833
  gamecellsize={gameprops.cellSize}
831
834
  gameid={gameprops.gameModel.id}
832
835
  gamefunmode={gameprops.gameModel.hasFunMode}
836
+ {showgamename}
833
837
  gamefavorite={gameprops.gameModel.isFavorite}
834
838
  showfavoredcategory={showFavGamesCategory}
835
839
  connectlive={intersectingIndexes[gameprops.id] == 1 ? 'connect' : 'disconnect'}
@@ -862,6 +866,7 @@
862
866
  gamecellsize={gameprops.cellSize}
863
867
  gameid={gameprops.gameModel.id}
864
868
  gamefunmode={gameprops.gameModel.hasFunMode}
869
+ {showgamename}
865
870
  gamefavorite={gameprops.gameModel.isFavorite}
866
871
  showfavoredcategory={showFavGamesCategory}
867
872
  connectlive={intersectingIndexes[gameprops.id] == 1 ? 'connect' : 'disconnect'}