@everymatrix/casino-header-controller 1.9.2 → 1.9.3

Sign up to get free protection for your applications and to get access to all the features.
package/index.html CHANGED
@@ -38,6 +38,8 @@
38
38
  positiontag="center-main-slider"
39
39
  userroles="everyone"
40
40
  ></casino-header-controller>
41
+
42
+
41
43
  </div>
42
44
 
43
45
  </body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-header-controller",
3
- "version": "1.9.2",
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": "c6cac429dd6c7cee4304007d5a41a9fed7e78217"
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
- &:hover {
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