@everymatrix/casino-providers 1.2.1 → 1.3.0

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/index.html CHANGED
@@ -94,7 +94,7 @@
94
94
  <div class="webcomponent">
95
95
  <casino-providers
96
96
  datasource="RNG"
97
- endpoint="https://demo-api.stage.norway.everymatrix.com/v1"
97
+ endpoint="https://demo-api.stage.norway.everymatrix.com/v2"
98
98
  ></casino-providers>
99
99
  </div>
100
100
  </body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-providers",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "main": "dist/casino-providers.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": "ac0e71f6ea97bb7428ee75f5667c1408cbdc3146"
40
40
  }
@@ -8,7 +8,7 @@
8
8
  export let lang:string = 'en';
9
9
  export let clientstyling:string = '';
10
10
  export let clientstylingurl:string = '';
11
- export let translationUrl:string = '';
11
+ export let translationurl:string = '';
12
12
 
13
13
  let providers:Array<any> = [];
14
14
  let topProviders:Array<any> = [];
@@ -17,7 +17,7 @@
17
17
  let customStylingContainer:HTMLElement;
18
18
 
19
19
  const setTranslationUrl = ():void => {
20
- let url:string = translationUrl;
20
+ let url:string = translationurl;
21
21
 
22
22
  fetch(url).then((res:any) => res.json())
23
23
  .then((res) => {
@@ -88,7 +88,7 @@
88
88
 
89
89
  $: endpoint && lang && datasource && getProviders();
90
90
  $: lang && setActiveLanguage();
91
- $: translationUrl && setTranslationUrl();
91
+ $: translationurl && setTranslationUrl();
92
92
  $: clientstyling && customStylingContainer && setClientStyling();
93
93
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
94
94
  </script>