@everymatrix/casino-lobby 0.0.158 → 0.0.162
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 +832 -713
- package/dist/casino-lobby.js.map +1 -1
- package/index.html +1 -0
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +4 -0
package/index.html
CHANGED
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
mostplayed="true"
|
|
27
27
|
lobbyid="casino"
|
|
28
28
|
clockformat="LTS"
|
|
29
|
+
containermaxwidth="1300"
|
|
29
30
|
></casino-lobby>
|
|
30
31
|
<!--<casino-lobby
|
|
31
32
|
clientstylingurl="https://gist.githubusercontent.com/raulvasile/839f53316c98a4061441474bed11f552/raw/f20e6bb03e84273ae72d8939463ea4497c707471/gistfile1.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.162",
|
|
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": "f0ae2ffa2c984a3f90ab2eea42992f92e6acf725"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
export let mobileoffset:string = '0';
|
|
38
38
|
export let alternativesearch:string = 'false';
|
|
39
39
|
|
|
40
|
+
export let containermaxwidth:string = '';
|
|
41
|
+
|
|
40
42
|
let endpointURL:string;
|
|
41
43
|
let DS:string;
|
|
42
44
|
let language:string;
|
|
@@ -201,6 +203,7 @@
|
|
|
201
203
|
favorites={fav}
|
|
202
204
|
{clientstyling}
|
|
203
205
|
{clientstylingurl}
|
|
206
|
+
{containermaxwidth}
|
|
204
207
|
></casino-categories-slider>
|
|
205
208
|
<casino-page
|
|
206
209
|
session={session}
|
|
@@ -215,6 +218,7 @@
|
|
|
215
218
|
{clientstyling}
|
|
216
219
|
{clientstylingurl}
|
|
217
220
|
{lobbyid}
|
|
221
|
+
{containermaxwidth}
|
|
218
222
|
></casino-page>
|
|
219
223
|
<casino-modal
|
|
220
224
|
session={session}
|