@everymatrix/casino-tournaments-thumbnail-duration 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/casino-tournaments-thumbnail-duration",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/casino-tournmanets-thumbnail-duration.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
  }
@@ -11,7 +11,7 @@
11
11
  export let lang:string = 'en';
12
12
  export let clientstyling:string = '';
13
13
  export let clientstylingurl:string = '';
14
- export let translationUrl:string = '';
14
+ export let translationurl:string = '';
15
15
 
16
16
  let customStylingContainer: HTMLElement;
17
17
  let displayNone:boolean = false;
@@ -22,7 +22,7 @@
22
22
  let showRemain: string = ''
23
23
 
24
24
  const setTranslationUrl = ():void => {
25
- let url:string = translationUrl;
25
+ let url:string = translationurl;
26
26
 
27
27
  fetch(url).then((res:any) => res.json())
28
28
  .then((res) => {
@@ -114,7 +114,7 @@
114
114
 
115
115
  $: lang && getDuration() ;
116
116
  $: lang && getTextByDiff(tournamentLeftDays);
117
- $: translationUrl && setTranslationUrl();
117
+ $: translationurl && setTranslationUrl();
118
118
 
119
119
  onMount(() => {
120
120