@everymatrix/casino-lobby 0.0.359 → 0.0.361
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 +2 -2
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +9 -1
package/index.html
CHANGED
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
livecasino="false"
|
|
36
36
|
playforfun="true"
|
|
37
37
|
playrandomgame="true"
|
|
38
|
-
userid="
|
|
39
|
-
session="
|
|
38
|
+
userid="3997218"
|
|
39
|
+
session="39d4b8c3-ea36-414f-b779-cc771ece6a5f"
|
|
40
40
|
integratedgameframe="true"
|
|
41
41
|
randombuttonicon='<svg width=35 height=35 part="RandomButtonSvg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
|
42
42
|
<style type="text/css">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.361",
|
|
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": "0fe9249cd4a3ea07ecc6ea0f11bee32a4d259c7b"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
import '@everymatrix/casino-filter-modal';
|
|
14
14
|
import '@everymatrix/casino-filter-page';
|
|
15
15
|
import '@everymatrix/casino-integrated-game-page';
|
|
16
|
-
import '@everymatrix/casino-winners';
|
|
17
16
|
|
|
18
17
|
export let endpoint:string = '';
|
|
19
18
|
export let datasource:string = '';
|
|
@@ -57,6 +56,11 @@
|
|
|
57
56
|
export let enablecasinowinners:string = 'true';
|
|
58
57
|
export let enablejackpotbanner:string = 'true';
|
|
59
58
|
|
|
59
|
+
export let tabsorder:string = '';
|
|
60
|
+
export let enableautoscroll:string = '';
|
|
61
|
+
export let istopavailable:string = '';
|
|
62
|
+
export let isrecentavailable:string = '';
|
|
63
|
+
|
|
60
64
|
// Button icon for random game widget
|
|
61
65
|
export let randombuttonicon:string = '';
|
|
62
66
|
|
|
@@ -257,6 +261,10 @@
|
|
|
257
261
|
{randombuttonicon}
|
|
258
262
|
{enablecasinowinners}
|
|
259
263
|
{enablejackpotbanner}
|
|
264
|
+
{enableautoscroll}
|
|
265
|
+
{tabsorder}
|
|
266
|
+
{isrecentavailable}
|
|
267
|
+
{istopavailable}
|
|
260
268
|
></casino-page>
|
|
261
269
|
{#if gamemodal == 'true'}
|
|
262
270
|
<casino-modal
|