@everymatrix/casino-promotions 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-promotions",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "main": "index.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
  }
@@ -11,7 +11,7 @@
11
11
  export let env:string = '';
12
12
  export let containermaxwidth:string = '';
13
13
  export let userroles: string = '';
14
- export let translationUrl:string = '';
14
+ export let translationurl:string = '';
15
15
  export let clientstyling:string = '';
16
16
  export let clientstylingurl:string = '';
17
17
 
@@ -55,7 +55,7 @@
55
55
  setupI18n({ withLocale: 'en', translations: {}});
56
56
 
57
57
  const setTranslationUrl = ():void => {
58
- let url:string = translationUrl;
58
+ let url:string = translationurl;
59
59
 
60
60
  fetch(url).then((res:any) => res.json())
61
61
  .then((res) => {
@@ -188,7 +188,7 @@
188
188
  .join(" ");
189
189
 
190
190
  $: lang && setActiveLanguage();
191
- $: translationUrl && setTranslationUrl();
191
+ $: translationurl && setTranslationUrl();
192
192
  $: endpoint && lang && env && userroles && getCmsData();
193
193
  $: clientstyling && customStylingContainer && setClientStyling();
194
194
  $: clientstylingurl && customStylingContainer && setClientStylingURL();