@everymatrix/casino-page 0.0.161 → 0.0.165
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/dist/casino-page.js +411 -393
- package/dist/casino-page.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoPage.svelte +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-page",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.165",
|
|
4
4
|
"main": "dist/casino-page.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": "
|
|
39
|
+
"gitHead": "69466f3f09b715237d9a3b1a78a8d2479dabe391"
|
|
40
40
|
}
|
package/src/CasinoPage.svelte
CHANGED
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
export let lobbyid:string = 'casinodefault'; // identifier for recent searched
|
|
31
31
|
|
|
32
32
|
export let containermaxwidth:string = '';
|
|
33
|
+
export let haspanicbutton:string = 'false';
|
|
33
34
|
|
|
34
35
|
// CasinoPage loading state
|
|
35
36
|
let isLoading:boolean = false;
|
|
@@ -147,6 +148,7 @@
|
|
|
147
148
|
|
|
148
149
|
activeCategory = '';
|
|
149
150
|
lobbyScreen = false;
|
|
151
|
+
favoritesScreen = false;
|
|
150
152
|
mostPlayedScreen = true;
|
|
151
153
|
}
|
|
152
154
|
break;
|
|
@@ -1033,7 +1035,7 @@
|
|
|
1033
1035
|
{/if}
|
|
1034
1036
|
{/if}
|
|
1035
1037
|
{/if}
|
|
1036
|
-
{#if isLoggedIn}
|
|
1038
|
+
{#if isLoggedIn && haspanicbutton === "true"}
|
|
1037
1039
|
<div class="PanicSection {(getDevice(userAgent) !== 'PC') ? 'PanicSectionMobile' : ''}">
|
|
1038
1040
|
<div class="PanicText">
|
|
1039
1041
|
<svg class="w-1 h-1" fill="none" stroke="white" width="34px" height="34px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|