@everymatrix/casino-lobby 0.0.246 → 0.0.250
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.250",
|
|
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": "a6d1510ec4bbfb0c340f1528b6c6636b9552705c"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
export let haspanicbutton:string = 'false';
|
|
44
44
|
|
|
45
45
|
export let activecategory:string = 'LOBBY';
|
|
46
|
-
export let actionevent:string = '';
|
|
46
|
+
export let actionevent:string = 'CategoryChange';
|
|
47
47
|
export let livecasino:string = 'false';
|
|
48
48
|
|
|
49
49
|
let endpointURL:string;
|
|
@@ -193,14 +193,14 @@
|
|
|
193
193
|
$: clientstylingurl && setClientStylingURL();
|
|
194
194
|
</script>
|
|
195
195
|
|
|
196
|
-
<div bind:this={customStylingContainer} class={displayNone ? 'DisplayNone' : ''}>
|
|
196
|
+
<div bind:this={customStylingContainer} class={displayNone ? 'DisplayNone' : ''} part="{displayNone ? 'DisplayNone' : ''}">
|
|
197
197
|
{#if hasErrors}
|
|
198
198
|
<p style="color:var(--emfe-w-color-white, #FFFFFF)">{error}</p>
|
|
199
199
|
{:else}
|
|
200
|
-
<div class="CasinoLobby">
|
|
201
|
-
<div class="WidgetsSection">
|
|
202
|
-
<div class="HeaderPlaceholder" style="height:{headerPlaceholderSize}px"></div>
|
|
203
|
-
<div class="ScrollTop"></div>
|
|
200
|
+
<div class="CasinoLobby" part="CasinoLobby">
|
|
201
|
+
<div class="WidgetsSection" part="WidgetsSection">
|
|
202
|
+
<div class="HeaderPlaceholder" part="HeaderPlaceholder" style="height:{headerPlaceholderSize}px"></div>
|
|
203
|
+
<div class="ScrollTop" part="ScrollTop"></div>
|
|
204
204
|
<casino-categories-slider
|
|
205
205
|
endpoint={endpointURL}
|
|
206
206
|
datasource={DS}
|
|
@@ -234,6 +234,7 @@
|
|
|
234
234
|
{containermaxwidth}
|
|
235
235
|
{haspanicbutton}
|
|
236
236
|
{livecasino}
|
|
237
|
+
{currency}
|
|
237
238
|
></casino-page>
|
|
238
239
|
<casino-modal
|
|
239
240
|
session={session}
|
|
@@ -257,6 +258,7 @@
|
|
|
257
258
|
{clientstylingurl}
|
|
258
259
|
{clockformat}
|
|
259
260
|
{haspanicbutton}
|
|
261
|
+
{currency}
|
|
260
262
|
/>
|
|
261
263
|
</casino-modal>
|
|
262
264
|
<casino-filter-modal
|