@everymatrix/casino-page 1.5.2 → 1.5.3
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-page.js +7 -5
- package/dist/casino-page.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoPage.svelte +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-page",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"main": "dist/casino-page.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": "455c9a0d14fef23d3698fbea37042c69e3aeed24"
|
|
40
40
|
}
|
package/src/CasinoPage.svelte
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
import '@everymatrix/casino-most-played-section';
|
|
23
23
|
import '@everymatrix/casino-my-games';
|
|
24
24
|
import '@everymatrix/casino-search';
|
|
25
|
+
import '@everymatrix/casino-calendar';
|
|
25
26
|
|
|
26
27
|
export let endpoint:string = '';
|
|
27
28
|
export let datasource:string = '';
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
export let clientstyling:string = '';
|
|
33
34
|
export let clientstylingurl:string = '';
|
|
34
35
|
export let translationurl:string = '';
|
|
36
|
+
export let cmsendpoint:string = '';
|
|
35
37
|
|
|
36
38
|
export let categorybackground:string = '';
|
|
37
39
|
export let visiblegames:string;
|
|
@@ -83,6 +85,8 @@
|
|
|
83
85
|
export let titletype:string = '';
|
|
84
86
|
export let casinomygames:string = 'false';
|
|
85
87
|
export let collectionprovidersgamenames:string = '';
|
|
88
|
+
//Casino Calendar
|
|
89
|
+
export let positioncasinocalendar = '';
|
|
86
90
|
|
|
87
91
|
// Button icon for random game widget
|
|
88
92
|
export let randombuttonicon:string = '';
|
|
@@ -816,6 +820,13 @@
|
|
|
816
820
|
/>
|
|
817
821
|
</div>
|
|
818
822
|
{/if}
|
|
823
|
+
{#if positioncasinocalendar && index == +positioncasinocalendar}
|
|
824
|
+
<br>
|
|
825
|
+
<casino-calendar
|
|
826
|
+
{cmsendpoint}
|
|
827
|
+
{lang}
|
|
828
|
+
/>
|
|
829
|
+
{/if}
|
|
819
830
|
{#if positionjackpotbanners && index == (positionjackpotbanners.split(',')[0] == '' ? shownCategories.length : +positionjackpotbanners.split(',')[0])}
|
|
820
831
|
<br>
|
|
821
832
|
<jackpot-banner
|