@everymatrix/casino-header-controller 1.37.3 → 1.37.4
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/CHANGELOG.md +0 -1
- package/dist/casino-header-controller.js +3 -1
- package/dist/casino-header-controller.js.map +1 -1
- package/index.html +19 -24
- package/package.json +3 -8
- package/src/CasinoHeaderController.svelte +384 -976
package/index.html
CHANGED
|
@@ -8,44 +8,39 @@
|
|
|
8
8
|
casino-header-controller
|
|
9
9
|
</title>
|
|
10
10
|
<link rel="stylesheet" href="public/reset.css">
|
|
11
|
-
<link href="https://fonts.cdnfonts.com/css/pf-beausans-pro" rel="stylesheet">
|
|
12
11
|
|
|
13
12
|
<script src='dist/casino-header-controller.js'></script>
|
|
14
13
|
</head>
|
|
15
14
|
|
|
16
15
|
<body>
|
|
17
16
|
<style>
|
|
18
|
-
html,body { margin: 0; padding: 0; height: 100%; font-family:
|
|
17
|
+
html,body { margin: 0; padding: 0; height: 100%; font-family: "Helvetica Neue", "Helvetica", sans-serif; }
|
|
19
18
|
.header { display: flex; justify-content: center; align-items: center; padding: 10px 20px; margin-bottom: 20px; background: #42a3e2; box-shadow: 3px 4px 5px 0px rgba(0,0,0, .2); }
|
|
20
19
|
.header__logo svg { height: 50px; width: 50px; margin-right: 5px; }
|
|
21
20
|
.header__name { color: #fff; }
|
|
22
21
|
.header__name span { margin-right: 10px; font-weight: bold; }
|
|
23
|
-
:root {
|
|
24
|
-
--emw-color-primary: #22B04F;
|
|
25
|
-
--emw-color-background: black;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
22
|
</style>
|
|
29
23
|
|
|
30
24
|
<div class="webcomponent">
|
|
31
|
-
<casino-header-controller
|
|
32
|
-
session="31124550-3b07-4687-a92d-55919f1caa41" userid="3856617"
|
|
25
|
+
<casino-header-controller _ngcontent-mup-c29="" session="01347826-ed6c-4305-80c7-1dab6b2fc151" userid="3920216"
|
|
33
26
|
userroles="everyone,loggedIn,TestDemoCosmin" cmsendpoint="https://wt1-stage.everymatrix.com/apijson" env="stage"
|
|
34
|
-
lang="en" languageslist="es,en,ro
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
27
|
+
lang="en" languageslist="es,en,ro" endpoint="https://demo-api.stage.norway.everymatrix.com/v1"
|
|
28
|
+
actionevent="HeaderMenuItemClicked" activecategory="/casino/RNG$new-sub-category$new-sub-category-1" clientstyling="
|
|
29
|
+
.HeaderWrapper{
|
|
30
|
+
position: fixed;
|
|
31
|
+
top: 0;
|
|
32
|
+
left: 0;
|
|
33
|
+
right: 0;
|
|
34
|
+
z-index: 99;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.HeaderMobileWrapper {
|
|
38
|
+
.HeaderContainer {
|
|
39
|
+
height: 55px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
" currencyseparator="." currencydecimal="," currencyprecision="2" gmversion="gmcore"
|
|
43
|
+
countryflagheader="true" countryflaghamburger='true'customlocaleidentifier=""></casino-header-controller>
|
|
49
44
|
|
|
50
45
|
</div>
|
|
51
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-header-controller",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.4",
|
|
4
4
|
"main": "dist/casino-header-controller.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -29,18 +29,13 @@
|
|
|
29
29
|
"typescript": "^3.9.3"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"country-flag-icons": "^1.5.12",
|
|
33
|
-
"country-flags-svg": "^2.0.0-beta.1",
|
|
34
32
|
"cross-env": "^7.0.3",
|
|
35
33
|
"event-source-polyfill": "^1.0.25",
|
|
36
|
-
"flag-icons": "^7.2.3",
|
|
37
34
|
"sirv-cli": "^1.0.0",
|
|
38
|
-
"
|
|
39
|
-
"svelte": "^3.0.0",
|
|
40
|
-
"svelte-flagpack": "^1.0.0"
|
|
35
|
+
"svelte": "^3.0.0"
|
|
41
36
|
},
|
|
42
37
|
"publishConfig": {
|
|
43
38
|
"access": "public"
|
|
44
39
|
},
|
|
45
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "863252ebf7c846696d9b388f0d288993dbd5065c"
|
|
46
41
|
}
|