@everymatrix/player-account-controller 1.2.0 → 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/player-account-controller",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/player-account-controller.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": "3800c3e93fdc948c5bc48101acce6cd81ce65706"
39
+ "gitHead": "02dbae5b4d167acdb57c72905b756343a318870a"
40
40
  }
@@ -43,7 +43,7 @@
43
43
  export let simplepasswordvalidation:string = 'false';
44
44
  export let clientstyling:string = '';
45
45
  export let clientstylingurl:string = '';
46
- export let translationUrl:string = '';
46
+ export let translationurl:string = '';
47
47
 
48
48
  setupI18n({ withLocale: 'en', translations: {}});
49
49
 
@@ -123,7 +123,7 @@
123
123
  }
124
124
 
125
125
  const setTranslationUrl = ():void => {
126
- let url:string = translationUrl;
126
+ let url:string = translationurl;
127
127
 
128
128
  fetch(url).then((res:any) => res.json())
129
129
  .then((res) => {
@@ -816,7 +816,7 @@
816
816
  $: depositlimit && wageringlimit && losslimit && timelimit;
817
817
  $: clientstyling && customStylingContainer && setClientStyling();
818
818
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
819
- $: translationUrl && setTranslationUrl();
819
+ $: translationurl && setTranslationUrl();
820
820
 
821
821
  </script>
822
822