@everymatrix/casino-footer-v2 0.0.407 → 0.0.409
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 +160 -160
- package/dist/casino-footer-v2.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoFooterV2.svelte +38 -8
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.409",
|
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": "9c1c3fb8c2942cecd4325eb5d4c8918496160976"
|
40
40
|
}
|
@@ -15,8 +15,6 @@
|
|
15
15
|
export let env:string = '';
|
16
16
|
export let clientstyling:string = '';
|
17
17
|
export let clientstylingurl:string = '';
|
18
|
-
export let target:string = '';
|
19
|
-
|
20
18
|
// Clock exposed attributes - If the clock is enabled, all attributes should be given a value, otherwise they can be ignored safely
|
21
19
|
export let clockenabled:string = ''; // "true" to enable, anything to disable
|
22
20
|
export let clocksecondsenabled:string = ''; // "true" to display seconds in our default format and to refresh the clock every 1000ms
|
@@ -358,7 +356,14 @@
|
|
358
356
|
{#if category.key}
|
359
357
|
<p class="FooterTitle">{category.key}</p>
|
360
358
|
{/if}
|
361
|
-
<casino-footer-section
|
359
|
+
<casino-footer-section
|
360
|
+
helperflag="1"
|
361
|
+
clientstyling={customStyling}
|
362
|
+
category={category.key}
|
363
|
+
displaycolumn="true"
|
364
|
+
{baseurl}
|
365
|
+
{lang}>
|
366
|
+
</casino-footer-section>
|
362
367
|
{/each}
|
363
368
|
{/if}
|
364
369
|
</div>
|
@@ -371,7 +376,12 @@
|
|
371
376
|
{#if gameVendorsLinksTitle}
|
372
377
|
<p class="FooterTitle">{gameVendorsLinksTitle}</p>
|
373
378
|
{/if}
|
374
|
-
<casino-footer-section
|
379
|
+
<casino-footer-section
|
380
|
+
vendorflag="1"
|
381
|
+
clientstyling={customStyling}
|
382
|
+
{baseurl}
|
383
|
+
{lang}>
|
384
|
+
</casino-footer-section>
|
375
385
|
</div>
|
376
386
|
</div>
|
377
387
|
{/if}
|
@@ -383,7 +393,12 @@
|
|
383
393
|
{#if paymentLinksTitle}
|
384
394
|
<p class="FooterTitle">{paymentLinksTitle}</p>
|
385
395
|
{/if}
|
386
|
-
<casino-footer-section
|
396
|
+
<casino-footer-section
|
397
|
+
paymentflag="1"
|
398
|
+
clientstyling={customStyling}
|
399
|
+
{baseurl}
|
400
|
+
{lang}>
|
401
|
+
</casino-footer-section>
|
387
402
|
</div>
|
388
403
|
</div>
|
389
404
|
{/if}
|
@@ -406,7 +421,12 @@
|
|
406
421
|
{#if licensesLinksTitle}
|
407
422
|
<p class="FooterTitle">{licensesLinksTitle}</p>
|
408
423
|
{/if}
|
409
|
-
<casino-footer-section
|
424
|
+
<casino-footer-section
|
425
|
+
licenseFlag="1"
|
426
|
+
clientstyling={customStyling}
|
427
|
+
{baseurl}
|
428
|
+
{lang}>
|
429
|
+
</casino-footer-section>
|
410
430
|
</div>
|
411
431
|
<!-- start detailed licenses section -->
|
412
432
|
<div class="LicenseDesc">
|
@@ -428,7 +448,12 @@
|
|
428
448
|
{#if sponsorsLinksTitle}
|
429
449
|
<p class="FooterTitle">{sponsorsLinksTitle}</p>
|
430
450
|
{/if}
|
431
|
-
<casino-footer-section
|
451
|
+
<casino-footer-section
|
452
|
+
sponsorflag="1"
|
453
|
+
clientstyling={customStyling}
|
454
|
+
{baseurl}
|
455
|
+
{lang}>
|
456
|
+
</casino-footer-section>
|
432
457
|
</div>
|
433
458
|
{/if}
|
434
459
|
</div>
|
@@ -441,7 +466,12 @@
|
|
441
466
|
{#if socialLinksTitle}
|
442
467
|
<p class="FooterTitle">{socialLinksTitle}</p>
|
443
468
|
{/if}
|
444
|
-
<casino-footer-section
|
469
|
+
<casino-footer-section
|
470
|
+
socialflag="1"
|
471
|
+
clientstyling={customStyling}
|
472
|
+
{baseurl}
|
473
|
+
{lang}>
|
474
|
+
</casino-footer-section>
|
445
475
|
</div>
|
446
476
|
{/if}
|
447
477
|
<!-- end social section -->
|