@everymatrix/casino-categories-slider 0.0.362 → 0.0.363

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.362",
3
+ "version": "0.0.363",
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": "154d1b620474e61bee3507cc52d40bfd33236024"
39
+ "gitHead": "c387eff5f038dffc7fde68f7e15e1ca719f4f209"
40
40
  }
@@ -23,6 +23,8 @@
23
23
  export let actionevent:string = '';
24
24
  export let sessioncheck:string = '';
25
25
 
26
+ export let subgroups: string= '';
27
+
26
28
  let identity:string = 'CasinoSliderData'
27
29
 
28
30
  // Player logged-in/logged-out status & session
@@ -262,7 +264,7 @@
262
264
  window.removeEventListener('message', messageHandler);
263
265
  }
264
266
  });
265
-
267
+
266
268
  $: endpoint && datasource && lang && initialLoad();
267
269
  $: !isLoading && activecategory && setActiveCategory();
268
270
  $: session && endpoint && setSession();
@@ -280,7 +282,7 @@
280
282
  <p class="SearchLoading" part="SearchLoading">500 Error - Internal Server Error.</p>
281
283
  {:else}
282
284
  <div class="CasinoCategoriesContainer" part="CasinoCategoriesContainer">
283
- <casino-slider {identity} favoritesnumber={numberOfFavoredGames} use:sendSliderData {clientstyling} {clientstylingurl} {containermaxwidth} activeindex={activeIndex} {actionevent} />
285
+ <casino-slider {identity} favoritesnumber={numberOfFavoredGames} use:sendSliderData {subgroups} {clientstyling} {clientstylingurl} {containermaxwidth} activeindex={activeIndex} {actionevent} />
284
286
  </div>
285
287
  {/if}
286
288
  {/if}
@@ -301,6 +303,6 @@
301
303
  }
302
304
 
303
305
  .CasinoCategoriesContainer {
304
- background: black;
306
+ background: var(--emfe-w-color-black, #000000);
305
307
  }
306
308
  </style>