@everymatrix/casino-lobby 1.37.4 → 1.37.5

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-lobby",
3
- "version": "1.37.4",
3
+ "version": "1.37.5",
4
4
  "main": "dist/casino-lobby.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": "863252ebf7c846696d9b388f0d288993dbd5065c"
38
+ "gitHead": "8617c4720af5eb376480fe868deae89a86f14ebd"
39
39
  }
@@ -5,12 +5,11 @@
5
5
  import { getDevice, isMobile, checkSession } from 'rvhelper';
6
6
  import { setupI18n, setLocale, addNewMessages } from './i18n';
7
7
 
8
-
9
8
  import '@everymatrix/casino-categories-slider';
10
9
  import '@everymatrix/casino-page';
11
10
  import '@everymatrix/casino-modal';
12
11
  import '@everymatrix/casino-game-page';
13
-
12
+
14
13
  export let endpoint:string = '';
15
14
  export let cmsendpoint: string = 'https://wt1-stage.everymatrix.com/apijson';
16
15
  export let env:string = '';
@@ -34,12 +33,12 @@
34
33
  export let shortcashierenabled: string = '';
35
34
 
36
35
  export let favorites:string = '';
37
-
36
+
38
37
  export let desktopoffset:string = '0';
39
38
  export let mobileoffset:string = '0';
40
-
39
+
41
40
  export let haspanicbutton:string = 'false';
42
-
41
+
43
42
  export let activecategory:string = 'LOBBY';
44
43
  export let actionevent:string = 'CategoryChange';
45
44
  export let livecasino:string = 'false';
@@ -112,7 +111,7 @@
112
111
  export let addsortingselector:string = 'false';
113
112
  export let filterbylogo:string = 'false';
114
113
  export let winnersdatasources:string = '';
115
-
114
+
116
115
  let casinomygames:string = 'false';
117
116
 
118
117
  let endpointURL:string;
@@ -140,7 +139,7 @@
140
139
  const messageHandler = (e:any):void => {
141
140
  if (e.data) {
142
141
  switch(e.data.type) {
143
- case 'searchCancelled':
142
+ case 'searchCancelled':
144
143
  searchClosed = true;
145
144
  break;
146
145
 
@@ -165,7 +164,7 @@
165
164
  sessionID = e.data.session;
166
165
  playerID = e.data.userID;
167
166
  break;
168
-
167
+
169
168
  case 'CategoryChange':
170
169
  activecategory = e.data.itemId;
171
170
  break;