@everymatrix/casino-lobby 0.0.391 → 0.0.393
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 +3 -3
- package/dist/casino-lobby.js.map +1 -1
- package/index.html +1 -1
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +11 -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.393",
|
|
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": "133ecc91a57336f219798fcee9ac4e4694a1722e"
|
|
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';
|
|
@@ -77,9 +76,11 @@
|
|
|
77
76
|
export let titlelogopath = '';
|
|
78
77
|
export let iconlabels:string = '';
|
|
79
78
|
export let visualstructure:string = '';
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
export let
|
|
79
|
+
export let showsubgroups:string = 'false';
|
|
80
|
+
//Casino Collections Providers
|
|
81
|
+
export let enablecollections:string = '';
|
|
82
|
+
export let type:string = '';
|
|
83
|
+
export let titletype:string = '';
|
|
83
84
|
|
|
84
85
|
// Button icon for random game widget
|
|
85
86
|
export let randombuttonicon:string = '';
|
|
@@ -230,6 +231,7 @@
|
|
|
230
231
|
$: opsession && setOpSession();
|
|
231
232
|
$: clientstyling && setClientStyling();
|
|
232
233
|
$: clientstylingurl && setClientStylingURL();
|
|
234
|
+
|
|
233
235
|
</script>
|
|
234
236
|
|
|
235
237
|
<div bind:this={customStylingContainer} class={displayNone ? 'DisplayNone' : ''} part="{displayNone ? 'DisplayNone' : ''}">
|
|
@@ -255,6 +257,7 @@
|
|
|
255
257
|
{clientstyling}
|
|
256
258
|
{clientstylingurl}
|
|
257
259
|
{containermaxwidth}
|
|
260
|
+
location="secondaryMenu"
|
|
258
261
|
{showsubgroups}
|
|
259
262
|
></casino-categories-slider>
|
|
260
263
|
<casino-page
|
|
@@ -301,7 +304,10 @@
|
|
|
301
304
|
{caticon2}
|
|
302
305
|
{caticon3}
|
|
303
306
|
{iconlabels}
|
|
304
|
-
|
|
307
|
+
{enablecollections}
|
|
308
|
+
{type}
|
|
309
|
+
{titletype}>
|
|
310
|
+
</casino-page>
|
|
305
311
|
{#if gamemodal == 'true'}
|
|
306
312
|
<casino-modal
|
|
307
313
|
session={sessionID}
|