@everymatrix/casino-lobby 1.4.1 → 1.5.3
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 +6 -6
- package/dist/casino-lobby.js.map +1 -1
- package/index.html +1 -0
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +7 -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.5.3",
|
|
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": "455c9a0d14fef23d3698fbea37042c69e3aeed24"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
import '@everymatrix/casino-integrated-game-page';
|
|
15
15
|
|
|
16
16
|
export let endpoint:string = '';
|
|
17
|
+
export let cmsendpoint: string = 'https://wt1-stage.everymatrix.com/apijson';
|
|
17
18
|
export let datasource:string = '';
|
|
18
19
|
export let lang:string = ''; // Language
|
|
19
20
|
export let session:string = ''; // Value for sessionID
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
export let lobbyid:string = '';
|
|
26
27
|
export let currency:string = '';
|
|
27
28
|
export let filteredcategories:string = '';
|
|
28
|
-
|
|
29
|
+
|
|
29
30
|
export let loginurl:string = '';
|
|
30
31
|
export let registerurl:string = '';
|
|
31
32
|
export let depositurl:string = '';
|
|
@@ -85,6 +86,8 @@
|
|
|
85
86
|
export let type:string = '';
|
|
86
87
|
export let titletype:string = '';
|
|
87
88
|
export let collectionprovidersgamenames:string = '';
|
|
89
|
+
//Casino Calendar
|
|
90
|
+
export let positioncasinocalendar = '';
|
|
88
91
|
|
|
89
92
|
// Button icon for random game widget
|
|
90
93
|
export let randombuttonicon:string = '';
|
|
@@ -277,6 +280,7 @@
|
|
|
277
280
|
endpoint={endpointURL}
|
|
278
281
|
datasource={DS}
|
|
279
282
|
lang={language}
|
|
283
|
+
{cmsendpoint}
|
|
280
284
|
{visiblegames}
|
|
281
285
|
{playrandomgame}
|
|
282
286
|
{activecategory}
|
|
@@ -296,6 +300,7 @@
|
|
|
296
300
|
{filteredcategories}
|
|
297
301
|
{gamepagemodalurl}
|
|
298
302
|
{randombuttonicon}
|
|
303
|
+
{positioncasinocalendar}
|
|
299
304
|
{filteredrandomgamecategories}
|
|
300
305
|
{positionwinnerswidget}
|
|
301
306
|
{periodrecent}
|
|
@@ -337,6 +342,7 @@
|
|
|
337
342
|
{clientstylingurl}
|
|
338
343
|
{gamepagemodalurl}
|
|
339
344
|
{haspanicbutton}
|
|
345
|
+
{integratedgameframedesktop}
|
|
340
346
|
>
|
|
341
347
|
<casino-game-page
|
|
342
348
|
session={sessionID}
|