@everymatrix/casino-lobby 0.0.392 → 0.0.394
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 -1
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +12 -5
package/index.html
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
loginevent="OpenLoginRegisterModal"
|
|
24
24
|
registerevent="OpenLoginRegisterModal"
|
|
25
25
|
depositevent="OpenDepositModal"
|
|
26
|
-
showsubgroups="true"
|
|
27
26
|
favorites="true"
|
|
28
27
|
activecategory="LOBBY"
|
|
29
28
|
mostplayed="true"
|
|
@@ -40,6 +39,7 @@
|
|
|
40
39
|
session="b075a4b0-0e04-4fe0-9c1c-99be725b8134"
|
|
41
40
|
integratedgameframedesktop="true"
|
|
42
41
|
integratedgameframemobile="true"
|
|
42
|
+
showsubgroups="true"
|
|
43
43
|
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">
|
|
44
44
|
<style type="text/css">
|
|
45
45
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.394",
|
|
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": "74359bffcfcd357bb93adb3f4cbcd7badbc96fae"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import '@everymatrix/casino-categories-slider';
|
|
9
9
|
import '@everymatrix/casino-page';
|
|
10
10
|
import '@everymatrix/casino-modal';
|
|
11
|
-
// import '@everymatrix/casino-game-page-2';
|
|
12
11
|
import '@everymatrix/casino-game-page';
|
|
13
12
|
import '@everymatrix/casino-filter-modal';
|
|
14
13
|
import '@everymatrix/casino-filter-page';
|
|
@@ -25,6 +24,7 @@
|
|
|
25
24
|
export let clockformat:string = '';
|
|
26
25
|
export let lobbyid:string = '';
|
|
27
26
|
export let currency:string = '';
|
|
27
|
+
|
|
28
28
|
|
|
29
29
|
export let loginurl:string = '';
|
|
30
30
|
export let registerurl:string = '';
|
|
@@ -77,9 +77,11 @@
|
|
|
77
77
|
export let titlelogopath = '';
|
|
78
78
|
export let iconlabels:string = '';
|
|
79
79
|
export let visualstructure:string = '';
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
export let
|
|
80
|
+
export let showsubgroups:string = 'false';
|
|
81
|
+
//Casino Collections Providers
|
|
82
|
+
export let enablecollections:string = '';
|
|
83
|
+
export let type:string = '';
|
|
84
|
+
export let titletype:string = '';
|
|
83
85
|
|
|
84
86
|
// Button icon for random game widget
|
|
85
87
|
export let randombuttonicon:string = '';
|
|
@@ -230,6 +232,7 @@
|
|
|
230
232
|
$: opsession && setOpSession();
|
|
231
233
|
$: clientstyling && setClientStyling();
|
|
232
234
|
$: clientstylingurl && setClientStylingURL();
|
|
235
|
+
|
|
233
236
|
</script>
|
|
234
237
|
|
|
235
238
|
<div bind:this={customStylingContainer} class={displayNone ? 'DisplayNone' : ''} part="{displayNone ? 'DisplayNone' : ''}">
|
|
@@ -255,6 +258,7 @@
|
|
|
255
258
|
{clientstyling}
|
|
256
259
|
{clientstylingurl}
|
|
257
260
|
{containermaxwidth}
|
|
261
|
+
location="secondaryMenu"
|
|
258
262
|
{showsubgroups}
|
|
259
263
|
></casino-categories-slider>
|
|
260
264
|
<casino-page
|
|
@@ -301,7 +305,10 @@
|
|
|
301
305
|
{caticon2}
|
|
302
306
|
{caticon3}
|
|
303
307
|
{iconlabels}
|
|
304
|
-
|
|
308
|
+
{enablecollections}
|
|
309
|
+
{type}
|
|
310
|
+
{titletype}>
|
|
311
|
+
</casino-page>
|
|
305
312
|
{#if gamemodal == 'true'}
|
|
306
313
|
<casino-modal
|
|
307
314
|
session={sessionID}
|