@everymatrix/casino-winners 1.2.1 → 1.2.2

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-winners",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "main": "dist/casino-winners.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": "de8b2a024255bd2ed76c13501c5a6dc858263dcb"
39
+ "gitHead": "02dbae5b4d167acdb57c72905b756343a318870a"
40
40
  }
@@ -21,7 +21,7 @@
21
21
  export let clientstylingurl:string = '';
22
22
  export let enableautoscroll:string = "";
23
23
  export let tabsorder:string = '';
24
- export let translationUrl:string = '';
24
+ export let translationurl:string = '';
25
25
 
26
26
  const CARD_WRAPPER_WIDTH:number = 225;
27
27
 
@@ -46,7 +46,7 @@
46
46
  let currency:string;
47
47
 
48
48
  const setTranslationUrl = ():void => {
49
- let url:string = translationUrl;
49
+ let url:string = translationurl;
50
50
 
51
51
  fetch(url).then((res:any) => res.json())
52
52
  .then((res) => {
@@ -255,7 +255,7 @@
255
255
  $: endpoint && setSession();
256
256
  $: endpoint && currency && enableautoscroll && getWinners();
257
257
  $: lang && setActiveLanguage();
258
- $: translationUrl && setTranslationUrl();
258
+ $: translationurl && setTranslationUrl();
259
259
  $: clientstyling && customStylingContainer && setClientStyling();
260
260
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
261
261