@everymatrix/casino-lobby 0.0.244 → 0.0.248
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 +32 -1
- package/dist/casino-lobby.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.248",
|
|
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": "77f6efa473daab4dd62004b893c587558bf4511c"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
|
@@ -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}
|