@everymatrix/general-logout 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-logout",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/general-logout.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
  }
@@ -12,7 +12,7 @@
12
12
  export let lang:string = '';
13
13
  export let clientstyling:string = '';
14
14
  export let clientstylingurl:string = '';
15
- export let translationUrl:string = '';
15
+ export let translationurl:string = '';
16
16
 
17
17
  let error = '';
18
18
  let hasErrors:Boolean = false;
@@ -26,7 +26,7 @@
26
26
  // setupI18n({ withLocale: 'en', translations: {}});
27
27
 
28
28
  const setTranslationUrl = ():void => {
29
- let url:string = translationUrl;
29
+ let url:string = translationurl;
30
30
 
31
31
  fetch(url).then((res:any) => res.json())
32
32
  .then((res) => {
@@ -107,7 +107,7 @@
107
107
  $: lang && initialLoad();
108
108
  $: clientstyling && customStylingContainer && setClientStyling();
109
109
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
110
- $: translationUrl && setTranslationUrl();
110
+ $: translationurl && setTranslationUrl();
111
111
  </script>
112
112
 
113
113
  <div bind:this={customStylingContainer}>