@everymatrix/casino-categories-slider 0.0.392 → 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-categories-slider",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.393",
|
|
4
4
|
"main": "dist/casino-categories-slider.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
|
}
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
export let activecategory:string = '';
|
|
23
23
|
export let actionevent:string = '';
|
|
24
24
|
export let sessioncheck:string = '';
|
|
25
|
-
export let
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
export let location:string = "secondaryMenu";
|
|
26
|
+
export let showsubgroups:string = 'false';
|
|
27
|
+
|
|
28
28
|
|
|
29
29
|
let identity:string = 'CasinoSliderData'
|
|
30
30
|
|
|
@@ -267,10 +267,10 @@
|
|
|
267
267
|
});
|
|
268
268
|
|
|
269
269
|
$: endpoint && datasource && lang && initialLoad();
|
|
270
|
-
$: !isLoading && activecategory && setActiveCategory();
|
|
271
270
|
$: session && endpoint && setSession();
|
|
272
271
|
$: session && favorites && !isLoading && addFavoritesCategory();
|
|
273
272
|
$: session && endpoint && userid && mostplayed && addMostPlayedCategory();
|
|
273
|
+
$: !isLoading && activecategory && setActiveCategory();
|
|
274
274
|
$: clientstyling && setClientStyling();
|
|
275
275
|
$: clientstylingurl && setClientStylingURL();
|
|
276
276
|
</script>
|
|
@@ -283,7 +283,20 @@
|
|
|
283
283
|
<p class="SearchLoading" part="SearchLoading">500 Error - Internal Server Error.</p>
|
|
284
284
|
{:else}
|
|
285
285
|
<div class="CasinoCategoriesContainer" part="CasinoCategoriesContainer">
|
|
286
|
-
<casino-slider
|
|
286
|
+
<casino-slider
|
|
287
|
+
{lang}
|
|
288
|
+
{datasource}
|
|
289
|
+
{endpoint}
|
|
290
|
+
{identity}
|
|
291
|
+
favoritesnumber={numberOfFavoredGames}
|
|
292
|
+
use:sendSliderData
|
|
293
|
+
{showsubgroups}
|
|
294
|
+
{clientstyling}
|
|
295
|
+
{clientstylingurl}
|
|
296
|
+
{containermaxwidth}
|
|
297
|
+
activeindex={activeIndex}
|
|
298
|
+
{actionevent}
|
|
299
|
+
{location}/>
|
|
287
300
|
</div>
|
|
288
301
|
{/if}
|
|
289
302
|
{/if}
|