@everymatrix/casino-lobby 0.0.395 → 0.0.397
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-lobby.js +4 -4
- package/dist/casino-lobby.js.map +1 -1
- package/index.html +5 -3
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +14 -4
package/index.html
CHANGED
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
favorites="true"
|
|
27
27
|
activecategory="LOBBY"
|
|
28
28
|
mostplayed="true"
|
|
29
|
-
mostplayedrounds="
|
|
29
|
+
mostplayedrounds="1"
|
|
30
|
+
lastplayed="true"
|
|
31
|
+
lastplayedperiod="Today"
|
|
30
32
|
lobbyid="casino"
|
|
31
33
|
clockformat="LTS"
|
|
32
34
|
containermaxwidth="1300"
|
|
@@ -35,8 +37,8 @@
|
|
|
35
37
|
livecasino="false"
|
|
36
38
|
playforfun="true"
|
|
37
39
|
playrandomgame="true"
|
|
38
|
-
userid="
|
|
39
|
-
session="
|
|
40
|
+
userid="3920216"
|
|
41
|
+
session="4aef9358-9e1e-430f-b0e5-d58f9da325ca"
|
|
40
42
|
integratedgameframedesktop="true"
|
|
41
43
|
integratedgameframemobile="true"
|
|
42
44
|
showsubgroups="true"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.397",
|
|
4
4
|
"main": "dist/casino-lobby.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": "0a8bd4da61d95ed7aa871757ea16bcc1a10955ce"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
export let clockformat:string = '';
|
|
25
25
|
export let lobbyid:string = '';
|
|
26
26
|
export let currency:string = '';
|
|
27
|
+
export let filteredcategories:string = '';
|
|
27
28
|
|
|
28
|
-
|
|
29
29
|
export let loginurl:string = '';
|
|
30
30
|
export let registerurl:string = '';
|
|
31
31
|
export let depositurl:string = '';
|
|
@@ -35,6 +35,8 @@
|
|
|
35
35
|
|
|
36
36
|
export let mostplayed:string = '';
|
|
37
37
|
export let mostplayedrounds:string = '';
|
|
38
|
+
export let lastplayed:string = 'false';
|
|
39
|
+
export let lastplayedperiod:string = 'Last30Days';
|
|
38
40
|
export let favorites:string = '';
|
|
39
41
|
|
|
40
42
|
export let desktopoffset:string = '0';
|
|
@@ -54,8 +56,7 @@
|
|
|
54
56
|
export let integratedgameframedesktop:string = 'false';
|
|
55
57
|
export let integratedgameframemobile:string = 'false';
|
|
56
58
|
export let gamepagemodalurl:string = 'false';
|
|
57
|
-
|
|
58
|
-
//Casino Winners
|
|
59
|
+
//Casino Winners
|
|
59
60
|
export let enablecasinowinners:string = '';
|
|
60
61
|
export let tabsorder:string = '';
|
|
61
62
|
export let enableautoscroll:string = '';
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
export let amountlimit:string = '';
|
|
69
70
|
export let defaultcurrency:string = '';
|
|
70
71
|
//Jackpot Banners
|
|
72
|
+
export let enablejackpotbanner:string = '';
|
|
71
73
|
export let caticon0:string = '';
|
|
72
74
|
export let caticon1:string = '';
|
|
73
75
|
export let caticon2:string = '';
|
|
@@ -102,6 +104,7 @@
|
|
|
102
104
|
let scrollTop:boolean = false;
|
|
103
105
|
let customStylingContainer:HTMLElement;
|
|
104
106
|
let mostPlayed;
|
|
107
|
+
let lastPlayed;
|
|
105
108
|
let fav;
|
|
106
109
|
|
|
107
110
|
setupI18n({ withLocale: 'en', translations: {}});
|
|
@@ -169,6 +172,7 @@
|
|
|
169
172
|
language = lang;
|
|
170
173
|
|
|
171
174
|
mostPlayed = mostplayed;
|
|
175
|
+
lastPlayed = lastplayed;
|
|
172
176
|
fav = favorites;
|
|
173
177
|
|
|
174
178
|
hasErrors = false;
|
|
@@ -228,7 +232,7 @@
|
|
|
228
232
|
|
|
229
233
|
$: lang && setActiveLanguage();
|
|
230
234
|
$: session && userid && endpoint && setSession();
|
|
231
|
-
$: endpoint && datasource && lang && mostplayed && favorites && initialSetup();
|
|
235
|
+
$: endpoint && datasource && lang && mostplayed && lastplayed && favorites && initialSetup();
|
|
232
236
|
$: opsession && setOpSession();
|
|
233
237
|
$: clientstyling && setClientStyling();
|
|
234
238
|
$: clientstylingurl && setClientStylingURL();
|
|
@@ -251,8 +255,11 @@
|
|
|
251
255
|
userid={userid}
|
|
252
256
|
sessioncheck="false"
|
|
253
257
|
{actionevent}
|
|
258
|
+
{filteredcategories}
|
|
254
259
|
{mostplayed}
|
|
255
260
|
{mostplayedrounds}
|
|
261
|
+
{lastplayed}
|
|
262
|
+
{lastplayedperiod}
|
|
256
263
|
{favorites}
|
|
257
264
|
{activecategory}
|
|
258
265
|
{clientstyling}
|
|
@@ -274,6 +281,8 @@
|
|
|
274
281
|
{favorites}
|
|
275
282
|
{mostplayedrounds}
|
|
276
283
|
{mostplayed}
|
|
284
|
+
{lastplayed}
|
|
285
|
+
{lastplayedperiod}
|
|
277
286
|
{clientstyling}
|
|
278
287
|
{clientstylingurl}
|
|
279
288
|
{lobbyid}
|
|
@@ -281,6 +290,7 @@
|
|
|
281
290
|
{haspanicbutton}
|
|
282
291
|
{livecasino}
|
|
283
292
|
{currency}
|
|
293
|
+
{filteredcategories}
|
|
284
294
|
{gamepagemodalurl}
|
|
285
295
|
{randombuttonicon}
|
|
286
296
|
{enablejackpotbanner}
|