@everymatrix/casino-categories-slider 1.13.15 → 1.13.16

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": "1.13.15",
3
+ "version": "1.13.16",
4
4
  "main": "dist/casino-categories-slider.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "64d94eb05d1cff11bf0cfd2bb8079bec43797d28"
38
+ "gitHead": "586fd8038cd1f675aab3c6a81922c36e5d8faa34"
39
39
  }
@@ -207,12 +207,12 @@
207
207
 
208
208
  </script>
209
209
 
210
- <div bind:this={customStylingContainer} part="CustomStylingContainer">
210
+ <div bind:this={customStylingContainer}>
211
211
  {#if isLoading || isLoadingMostPlayed || isLoadingLastPlayed}
212
- <div class="CasinoCategoriesLoading" part="CasinoCategoriesLoading"></div>
212
+ <div class="CasinoCategoriesLoading"></div>
213
213
  {:else}
214
214
  {#if hasErrors}
215
- <p class="SearchLoading" part="SearchLoading">500 Error - Internal Server Error.</p>
215
+ <p class="SearchLoading">500 Error - Internal Server Error.</p>
216
216
  {:else}
217
217
  <div class="CasinoCategoriesContainer" part="CasinoCategoriesContainer">
218
218
  <casino-slider
@@ -242,11 +242,11 @@
242
242
  }
243
243
 
244
244
  p {
245
- color: var(--emfe-w-color-white, #FFFFFF);
245
+ color: var( --emfe-w-categories-typography, var(--emfe-w-color-white) #FFFFFF);
246
246
  text-align: center;
247
247
  }
248
248
 
249
249
  .CasinoCategoriesContainer {
250
- background: var(--emfe-w-color-black, #000000);
250
+ background: var( --emfe-w-categories-color-primary, var(--emfe-w-color-pink-500, #D0046C));
251
251
  }
252
252
  </style>