@everymatrix/casino-games-category-section 1.40.0 → 1.42.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.
|
|
3
|
+
"version": "1.42.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": "
|
|
38
|
+
"gitHead": "59f256966699eecf6d6eced70feb8c6829808414"
|
|
39
39
|
}
|
|
@@ -677,15 +677,15 @@
|
|
|
677
677
|
// favoriteGamesData vs shownCategoryData
|
|
678
678
|
switch(categoryid) {
|
|
679
679
|
case 'FAVORITES':
|
|
680
|
-
|
|
680
|
+
if (userid && session) showFavGamesCategory = true;
|
|
681
681
|
break;
|
|
682
682
|
case 'MOSTPLAYED':
|
|
683
|
-
if(casinomygames === 'false') {
|
|
683
|
+
if(casinomygames === 'false' && userid && session) {
|
|
684
684
|
showFavGamesCategory = false;
|
|
685
685
|
}
|
|
686
686
|
break;
|
|
687
687
|
case 'LASTPLAYED':
|
|
688
|
-
if(casinomygames === 'false') {
|
|
688
|
+
if(casinomygames === 'false' && userid && session) {
|
|
689
689
|
showFavGamesCategory = false;
|
|
690
690
|
}
|
|
691
691
|
break;
|
|
@@ -755,7 +755,7 @@
|
|
|
755
755
|
//Call the fav. list fetch when widget is standalone
|
|
756
756
|
$: favorites === 'true' && endpoint && session && userid && getFavoritesGames(session, userid);
|
|
757
757
|
$: dataloaded && thumbnailContainer && setupObserver();
|
|
758
|
-
$: lang && categoryid &&
|
|
758
|
+
$: lang && categoryid && initialSetup();
|
|
759
759
|
$: translationurl && setTranslationUrl();
|
|
760
760
|
$: clientstyling && customStylingContainer && setClientStyling();
|
|
761
761
|
$: clientstylingurl && customStylingContainer && setClientStylingURL();
|
|
@@ -1234,6 +1234,7 @@
|
|
|
1234
1234
|
overflow-x: auto;
|
|
1235
1235
|
overflow-y: hidden;
|
|
1236
1236
|
padding-bottom: 5px;
|
|
1237
|
+
overscroll-behavior-x: none;
|
|
1237
1238
|
|
|
1238
1239
|
.game-tile-2x1 {
|
|
1239
1240
|
grid-row: span 2;
|