@everymatrix/casino-header-controller 1.9.2 → 1.9.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/index.html
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/casino-header-controller",
|
3
|
-
"version": "1.9.
|
3
|
+
"version": "1.9.3",
|
4
4
|
"main": "dist/casino-header-controller.js",
|
5
5
|
"svelte": "src/index.ts",
|
6
6
|
"scripts": {
|
@@ -37,5 +37,5 @@
|
|
37
37
|
"publishConfig": {
|
38
38
|
"access": "public"
|
39
39
|
},
|
40
|
-
"gitHead": "
|
40
|
+
"gitHead": "3f14fba86d0d9439e751e4f14b8af31cd306edf5"
|
41
41
|
}
|
@@ -283,7 +283,7 @@
|
|
283
283
|
}
|
284
284
|
|
285
285
|
const navigationTrigger = (itemData:any) => {
|
286
|
-
window.postMessage({ type: actionevent, itemId: itemData.id, item: itemData, externalLink: itemData.externalLink, target: itemData.attrs?.target || null }, window.location.href);
|
286
|
+
window.postMessage({ type: actionevent, itemId: itemData.id, item: itemData, externalLink: itemData.externalLink || false, target: itemData.attrs?.target || null }, window.location.href);
|
287
287
|
}
|
288
288
|
|
289
289
|
const setClientStyling = ():void => {
|
@@ -713,9 +713,9 @@
|
|
713
713
|
|
714
714
|
.HeaderItemsMenuSecondary .ItemSecondary {
|
715
715
|
padding: 0 15px;
|
716
|
-
cursor: pointer;
|
717
716
|
font-weight: 600;
|
718
717
|
transition-duration: 0.15s;
|
718
|
+
cursor: pointer;
|
719
719
|
|
720
720
|
button {
|
721
721
|
color: var(--emfe-w-color-white, #FFFFFF);
|
@@ -725,12 +725,24 @@
|
|
725
725
|
font-size: 14px;
|
726
726
|
font-weight: 600;
|
727
727
|
text-transform: uppercase;
|
728
|
-
|
728
|
+
cursor: pointer;
|
729
|
+
|
730
|
+
&:hover {
|
731
|
+
color: var(--emfe-w-color-primary, #D0046C);
|
732
|
+
}
|
729
733
|
|
730
|
-
|
731
|
-
button {
|
734
|
+
&:focus {
|
732
735
|
color: var(--emfe-w-color-primary, #D0046C);
|
733
736
|
}
|
737
|
+
|
738
|
+
&:visited {
|
739
|
+
color: var(--emfe-w-color-white, #FFFFFF);
|
740
|
+
}
|
741
|
+
|
742
|
+
&:focus-visible {
|
743
|
+
color: var(--emfe-w-color-white, #FFFFFF);
|
744
|
+
outline: none;
|
745
|
+
}
|
734
746
|
}
|
735
747
|
}
|
736
748
|
|