@everymatrix/casino-collections-providers 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-collections-providers",
|
3
|
-
"version": "1.2.
|
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": "
|
39
|
+
"gitHead": "02dbae5b4d167acdb57c72905b756343a318870a"
|
40
40
|
}
|
@@ -12,7 +12,7 @@
|
|
12
12
|
export let titletype:string = '';
|
13
13
|
export let clientstyling:string = '';
|
14
14
|
export let clientstylingurl:string = '';
|
15
|
-
export let
|
15
|
+
export let translationurl:string = '';
|
16
16
|
|
17
17
|
let gameCategories:Array<any> = [];
|
18
18
|
let isLoading:boolean = true;
|
@@ -30,7 +30,7 @@
|
|
30
30
|
let mobile:boolean;
|
31
31
|
|
32
32
|
const setTranslationUrl = ():void => {
|
33
|
-
let url:string =
|
33
|
+
let url:string = translationurl;
|
34
34
|
|
35
35
|
fetch(url).then((res:any) => res.json())
|
36
36
|
.then((res) => {
|
@@ -174,7 +174,7 @@
|
|
174
174
|
$: lang && setActiveLanguage();
|
175
175
|
$: clientstyling && customStylingContainer && setClientStyling();
|
176
176
|
$: clientstylingurl && customStylingContainer && setClientStylingURL();
|
177
|
-
$:
|
177
|
+
$: translationurl && setTranslationUrl();
|
178
178
|
|
179
179
|
</script>
|
180
180
|
|