@everymatrix/general-player-forgot-password-form 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/general-player-forgot-password-form",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/general-player-forgot-password-form.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
  }
@@ -14,7 +14,7 @@
14
14
  export let simplepasswordvalidation:string = 'false';
15
15
  export let clientstyling:string = '';
16
16
  export let clientstylingurl:string = '';
17
- export let translationUrl:string = '';
17
+ export let translationurl:string = '';
18
18
 
19
19
  let isLoading:boolean = false;
20
20
  let forgotPasswordScreen:boolean = true;
@@ -49,7 +49,7 @@
49
49
  // setupI18n({ withLocale: 'en', translations: {}});
50
50
 
51
51
  const setTranslationUrl = ():void => {
52
- let url:string = translationUrl;
52
+ let url:string = translationurl;
53
53
 
54
54
  fetch(url).then((res:any) => res.json())
55
55
  .then((res) => {
@@ -274,7 +274,7 @@
274
274
  $: lang && initialLoad();
275
275
  $: clientstyling && customStylingContainer && setClientStyling();
276
276
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
277
- $: translationUrl && setTranslationUrl();
277
+ $: translationurl && setTranslationUrl();
278
278
  </script>
279
279
 
280
280
  <svelte:head>