@everymatrix/player-account-menu 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-menu",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/player-account-menu.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
  }
@@ -17,7 +17,7 @@
17
17
  export let userroles:string = '';
18
18
  export let clientstyling:string = '';
19
19
  export let clientstylingurl:string = '';
20
- export let translationUrl:string = '';
20
+ export let translationurl:string = '';
21
21
 
22
22
  let isLoading:boolean = false;
23
23
 
@@ -35,7 +35,7 @@
35
35
  const mediaQuery = window.matchMedia('(min-width: 768px)');
36
36
 
37
37
  const setTranslationUrl = ():void => {
38
- let url:string = translationUrl;
38
+ let url:string = translationurl;
39
39
 
40
40
  fetch(url).then((res:any) => res.json())
41
41
  .then((res) => {
@@ -150,7 +150,7 @@
150
150
  $: selecteditem && setSelectedItem();
151
151
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
152
152
  $: clientstyling && customStylingContainer && setClientStyling();
153
- $: translationUrl && setTranslationUrl();
153
+ $: translationurl && setTranslationUrl();
154
154
  </script>
155
155
 
156
156
  <div bind:this={customStylingContainer}>