@everymatrix/casino-lobby 1.3.4 → 1.4.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/dist/casino-lobby.js +10 -10
- package/dist/casino-lobby.js.map +1 -1
- package/index.html +1 -1
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +6 -1
package/index.html
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
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": "be1fa07132bd9efec772e8532a8bc54c82eb1cb6"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -84,10 +84,13 @@
|
|
|
84
84
|
export let positioncollections:string = '';
|
|
85
85
|
export let type:string = '';
|
|
86
86
|
export let titletype:string = '';
|
|
87
|
+
export let collectionprovidersgamenames:string = '';
|
|
87
88
|
|
|
88
89
|
// Button icon for random game widget
|
|
89
90
|
export let randombuttonicon:string = '';
|
|
90
91
|
export let filteredrandomgamecategories:string = '';
|
|
92
|
+
|
|
93
|
+
let casinomygames:string = 'false';
|
|
91
94
|
|
|
92
95
|
let endpointURL:string;
|
|
93
96
|
let DS:string;
|
|
@@ -306,6 +309,7 @@
|
|
|
306
309
|
{integratedgameframemobile}
|
|
307
310
|
{defaultcurrency}
|
|
308
311
|
{enableautoscroll}
|
|
312
|
+
{collectionprovidersgamenames}
|
|
309
313
|
{tabsorder}
|
|
310
314
|
{positionjackpotbanners}
|
|
311
315
|
{backgroundsrc}
|
|
@@ -318,7 +322,8 @@
|
|
|
318
322
|
{iconlabels}
|
|
319
323
|
{positioncollections}
|
|
320
324
|
{type}
|
|
321
|
-
{titletype}
|
|
325
|
+
{titletype}
|
|
326
|
+
{casinomygames}>
|
|
322
327
|
</casino-page>
|
|
323
328
|
{#if gamemodal == 'true'}
|
|
324
329
|
<casino-modal
|