@everymatrix/casino-games-category-section 1.22.10 → 1.22.11

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.22.10",
3
+ "version": "1.22.11",
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": "38495c8b7fed86d85f3362fe6419369936e0a28a"
38
+ "gitHead": "1ec5c9d222dc5546dc0ef485ea93807daa2bb50c"
39
39
  }
@@ -220,7 +220,7 @@
220
220
  queryParamVendorId = queryParamVendorId + (queryParamVendorId ? `,games(vendor(id=${vendorId}))` : `games(vendor(id=${vendorId}))`);
221
221
  });
222
222
 
223
- url.searchParams.append('filter', ((vendorFilters && vendorFilters[categoryid].length < 2) ? `$and` : `$or`) + `(${queryParamVendorId})`);
223
+ url.searchParams.append('filter', `${queryParamVendorId}`);
224
224
  } else {
225
225
  presentFilters = false;
226
226
  }
@@ -662,6 +662,7 @@
662
662
  {/if}
663
663
  </div>
664
664
  {#if shownCategoryData}
665
+
665
666
  {#if !showItems}
666
667
  <p class="NoSearchResults NoRecentSearches NoRecentSearchesCenter {isMobile(userAgent) ? 'NoRecentSearchesMobile' : ''}">{$_('noRecentSearch')}</p>
667
668
  {/if}
@@ -678,6 +679,7 @@
678
679
  gamethumbnail={gameprops.thumbnail}
679
680
  gamename={gameprops.name}
680
681
  gamevendor={gameprops.vendor.name}
682
+ gameLaunchUrl={gameprops.launchUrl}
681
683
  gameisnew={gameprops.isNew}
682
684
  gametag={gameprops.advancedTags?.length > 0 && addGameTag(gameprops.advancedTags)}
683
685
  gamecellsize={gameprops.cellSize}
@@ -761,6 +763,7 @@
761
763
  gamethumbnail={gameprops.thumbnail}
762
764
  gamename={gameprops.name}
763
765
  gamevendor={gameprops.vendor.name}
766
+ gameLaunchUrl={gameprops.launchUrl}
764
767
  gameisnew={gameprops.isNew}
765
768
  gametag={gameprops.advancedTags?.length > 0 && addGameTag(gameprops.advancedTags)}
766
769
  gamecellsize={gameprops.cellSize}
@@ -821,6 +824,7 @@
821
824
  gamethumbnail={gameprops.gameModel.thumbnail}
822
825
  gamename={gameprops.gameModel.name}
823
826
  gamevendor={gameprops.gameModel.vendor.name}
827
+ gameLaunchUrl={gameprops.launchUrl}
824
828
  gameisnew={gameprops.gameModel.isNew}
825
829
  gametag={gameprops.gameModel.advancedTags?.length > 0 && addGameTag(gameprops.gameModel.advancedTags)}
826
830
  gamecellsize={gameprops.cellSize}
@@ -852,6 +856,7 @@
852
856
  gamethumbnail={gameprops.gameModel.thumbnail}
853
857
  gamename={gameprops.gameModel.name}
854
858
  gamevendor={gameprops.gameModel.vendor.name}
859
+ gameLaunchUrl={gameprops.launchUrl}
855
860
  gameisnew={gameprops.gameModel.isNew}
856
861
  gametag={gameprops.gameModel.advancedTags?.length > 0 && addGameTag(gameprops.gameModel.advancedTags)}
857
862
  gamecellsize={gameprops.cellSize}