@everymatrix/casino-footer-v2 0.0.414 → 0.0.416
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/dist/casino-footer-v2.js +129 -129
- package/dist/casino-footer-v2.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoFooterV2.svelte +15 -9
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/casino-footer-v2",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.416",
|
4
4
|
"main": "dist/casino-footer-v2.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": "ada5a114acf72cf5b34a7ca915bcb2205dc59463"
|
40
40
|
}
|
@@ -51,7 +51,6 @@
|
|
51
51
|
let hasErrors:boolean = false;
|
52
52
|
let isLoading:boolean = false;
|
53
53
|
let receivedFooterData:any;
|
54
|
-
let customStyling:string = '';
|
55
54
|
let headScript:boolean = false;
|
56
55
|
let licenseScriptSrc:string = '';
|
57
56
|
let licenseScript:string = '';
|
@@ -329,8 +328,8 @@
|
|
329
328
|
$: clockenabled !== 'false' && clocksecondsenabled && clockcustomformat && clockDisplay();
|
330
329
|
$: clockenabled !== 'false' && clocksecondsenabled && (refreshRate = clocksecondsenabled == "true" ? 1000 : 60000) && refreshClock();
|
331
330
|
$: lang && (selectedLanguage = lang) && languages && (languages.length > 0) && updateLanguageDisplayName();
|
332
|
-
$: clientstyling && setClientStyling();
|
333
|
-
$: clientstylingurl && setClientStylingURL();
|
331
|
+
$: clientstyling && customStylingContainer && setClientStyling();
|
332
|
+
$: clientstylingurl && customStylingContainer && setClientStylingURL();
|
334
333
|
|
335
334
|
</script>
|
336
335
|
|
@@ -358,7 +357,8 @@
|
|
358
357
|
{/if}
|
359
358
|
<casino-footer-section
|
360
359
|
helperflag="1"
|
361
|
-
clientstyling
|
360
|
+
{clientstyling}
|
361
|
+
{clientstylingurl}
|
362
362
|
category={category.key}
|
363
363
|
displaycolumn="true"
|
364
364
|
{baseurl}
|
@@ -378,7 +378,8 @@
|
|
378
378
|
{/if}
|
379
379
|
<casino-footer-section
|
380
380
|
vendorflag="1"
|
381
|
-
clientstyling
|
381
|
+
{clientstyling}
|
382
|
+
{clientstylingurl}
|
382
383
|
{baseurl}
|
383
384
|
{lang}>
|
384
385
|
</casino-footer-section>
|
@@ -395,7 +396,8 @@
|
|
395
396
|
{/if}
|
396
397
|
<casino-footer-section
|
397
398
|
paymentflag="1"
|
398
|
-
clientstyling
|
399
|
+
{clientstyling}
|
400
|
+
{clientstylingurl}
|
399
401
|
{baseurl}
|
400
402
|
{lang}>
|
401
403
|
</casino-footer-section>
|
@@ -411,6 +413,7 @@
|
|
411
413
|
alternativestyling="true"
|
412
414
|
{lang}
|
413
415
|
{clientstyling}
|
416
|
+
{clientstylingurl}
|
414
417
|
></panic-button>
|
415
418
|
{/if}
|
416
419
|
<!-- end panic button -->
|
@@ -423,7 +426,8 @@
|
|
423
426
|
{/if}
|
424
427
|
<casino-footer-section
|
425
428
|
licenseFlag="1"
|
426
|
-
clientstyling
|
429
|
+
{clientstyling}
|
430
|
+
{clientstylingurl}
|
427
431
|
{baseurl}
|
428
432
|
{lang}>
|
429
433
|
</casino-footer-section>
|
@@ -450,7 +454,8 @@
|
|
450
454
|
{/if}
|
451
455
|
<casino-footer-section
|
452
456
|
sponsorflag="1"
|
453
|
-
clientstyling
|
457
|
+
{clientstyling}
|
458
|
+
{clientstylingurl}
|
454
459
|
{baseurl}
|
455
460
|
{lang}>
|
456
461
|
</casino-footer-section>
|
@@ -468,7 +473,8 @@
|
|
468
473
|
{/if}
|
469
474
|
<casino-footer-section
|
470
475
|
socialflag="1"
|
471
|
-
clientstyling
|
476
|
+
{clientstyling}
|
477
|
+
{clientstylingurl}
|
472
478
|
{baseurl}
|
473
479
|
{lang}>
|
474
480
|
</casino-footer-section>
|