@everymatrix/casino-footer 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-footer",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "main": "dist/casino-footer.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
  }
@@ -15,7 +15,7 @@
15
15
  export let env:string = '';
16
16
  export let clientstyling:string = '';
17
17
  export let clientstylingurl:string = '';
18
- export let translationUrl:string = '';
18
+ export let translationurl:string = '';
19
19
  // Clock exposed attributes - If the clock is enabled, all attributes should be given a value, otherwise they can be ignored safely
20
20
  export let clockenabled:string = ''; // "true" to enable, anything to disable
21
21
  export let clocksecondsenabled:string = ''; // "true" to display seconds in our default format and to refresh the clock every 1000ms
@@ -74,7 +74,7 @@
74
74
  let timeString:string = '';
75
75
 
76
76
  const setTranslationUrl = ():void => {
77
- let url:string = translationUrl;
77
+ let url:string = translationurl;
78
78
 
79
79
  fetch(url).then((res:any) => res.json())
80
80
  .then((res) => {
@@ -306,7 +306,7 @@
306
306
  $: clientstyling && customStylingContainer && setClientStyling();
307
307
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
308
308
  $: endpoint && lang && env && userroles && getCmsData();
309
- $: translationUrl && setTranslationUrl();
309
+ $: translationurl && setTranslationUrl();
310
310
  $: clockenabled !== 'false' && clocksecondsenabled && clockcustomformat && clockDisplay();
311
311
  $: clockenabled !== 'false' && clocksecondsenabled && (refreshRate = clocksecondsenabled == "true" ? 1000 : 60000) && refreshClock();
312
312
  $: lang && (selectedLanguage = lang) && languages && (languages.length > 0) && updateLanguageDisplayName();