@everymatrix/casino-search 1.17.2 → 1.17.3

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-search",
3
- "version": "1.17.2",
3
+ "version": "1.17.3",
4
4
  "main": "index.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": "462a557bf7dab099fad999a6d0998f5155877620"
38
+ "gitHead": "89baba5648f1fb1c1ff4fbe9369eb83965480ce7"
39
39
  }
@@ -95,7 +95,7 @@
95
95
 
96
96
  if (length > 0) {
97
97
  for (index = 0; index < length; index++) {
98
- let url:any = new URL(`${endpoint}/casino/games/${recentSearchedGamesArray[index]}`);
98
+ let url:any = new URL(`${endpoint}/v1/casino/games/${recentSearchedGamesArray[index]}`);
99
99
 
100
100
  url.searchParams.append('language', lang);
101
101
  url.searchParams.append('datasource', datasource);
@@ -179,7 +179,7 @@
179
179
 
180
180
  const getFavoriteGames = ():void => {
181
181
 
182
- const url:URL = new URL(`${endpoint}/player/${playerID}/favorites/`);
182
+ const url:URL = new URL(`${endpoint}/v1/player/${playerID}/favorites/`);
183
183
 
184
184
  isLoading = true;
185
185
 
@@ -301,7 +301,7 @@
301
301
  }
302
302
 
303
303
  $: if (searchValue.length >= 2) {
304
- const searchUrl:URL = new URL(`${endpoint}/casino/games`);
304
+ const searchUrl:URL = new URL(`${endpoint}/v1/casino/games`);
305
305
 
306
306
  searchUrl.searchParams.append("datasource", datasource);
307
307
  searchUrl.searchParams.append("expand", "vendor");
@@ -493,7 +493,7 @@
493
493
  }
494
494
 
495
495
  &CancelButton {
496
- color: var(--emfe-w-color-gray-100, #E6E6E6);
496
+ color: var(--emfe-w-color-contrast, #E6E6E6);
497
497
  font-weight: 300;
498
498
  margin-left: 8px;
499
499
  cursor: pointer;
@@ -503,7 +503,7 @@
503
503
  font-size: 18px;
504
504
  font-weight: 600;
505
505
  margin: 24px 0;
506
- color: var(--emfe-w-color-black, #000000);
506
+ color: var(--emfe-w-color-contrast, #000000);
507
507
  }
508
508
 
509
509
 
@@ -548,7 +548,7 @@
548
548
  .ResultsContainerError {
549
549
  text-align: center;
550
550
  width: 300px;
551
- color: var(--emfe-w-color-gray-150, #828282);
551
+ color: var(--emfe-w-color-contrast, #828282);
552
552
  font-weight: 300;
553
553
  position: absolute;
554
554
  top: 50%;