@everymatrix/general-logout 0.0.244 → 0.0.248

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/general-logout",
3
- "version": "0.0.244",
3
+ "version": "0.0.248",
4
4
  "main": "dist/general-logout.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": "23ca6a1db8e19fea0b5f18176f0d846ed03c43f4"
39
+ "gitHead": "77f6efa473daab4dd62004b893c587558bf4511c"
40
40
  }
@@ -67,16 +67,16 @@
67
67
  </script>
68
68
 
69
69
  {#if buttonlocation === 'PlayerAccountMenu'}
70
- <p class="PlayerAccountMenuItemBox {isMobile ? 'PlayerAccountMenuItemBoxMobile' : ''} {mediaQuery.matches && isMobile ? 'PlayerAccountMenuItemBoxTablet' : ''}" on:click={() => logout()}>
70
+ <p class="PlayerAccountMenuItemBox {isMobile ? 'PlayerAccountMenuItemBoxMobile' : ''} {mediaQuery.matches && isMobile ? 'PlayerAccountMenuItemBoxTablet' : ''}" part="PlayerAccountMenuItemBox {isMobile ? 'PlayerAccountMenuItemBoxMobile' : ''} {mediaQuery.matches && isMobile ? 'PlayerAccountMenuItemBoxTablet' : ''}" on:click={() => logout()}>
71
71
  <span style="width: {!isMobile ? '20px' : (mediaQuery.matches ? '50px' : '24px')}">
72
72
  <svg id="bbfaf345-72af-4296-bf4b-2fd41fc03d5d" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.a88316b4-2478-4a69-b2eb-d32a5fb419dd{fill:var(--emfe-w-color-white, #FFFFFF);}</style></defs><path class="a88316b4-2478-4a69-b2eb-d32a5fb419dd" d="M147.16,67.69,115.42,36a9.6,9.6,0,1,0-13.58,13.58l15.32,15.31H49.58a9.63,9.63,0,1,0,0,19.26h67.58L101.84,99.42a9.64,9.64,0,0,0,6.79,16.43,9.41,9.41,0,0,0,6.79-2.85l31.74-31.73a9.53,9.53,0,0,0,0-13.58Z"/><path class="a88316b4-2478-4a69-b2eb-d32a5fb419dd" d="M45.16,122.16H19.26V26.79H45.32a9.63,9.63,0,1,0,0-19.26H9.63A9.56,9.56,0,0,0,0,17.16V131.63a9.57,9.57,0,0,0,9.63,9.64H45.32A9.57,9.57,0,0,0,55,131.63a9.78,9.78,0,0,0-9.79-9.47Z"/></svg>
73
73
  </span>
74
74
  {#if !isMobile}
75
- <span class="PlayerLogoutText">{$_('logout.logoutButton')}</span>
75
+ <span class="PlayerLogoutText" part="PlayerLogoutText">{$_('logout.logoutButton')}</span>
76
76
  {/if}
77
77
  </p>
78
78
  {:else}
79
- <div class="GeneralLogout">
79
+ <div class="GeneralLogout" part="GeneralLogout">
80
80
  <button on:click={() => logout()}><span>{$_('logout.logoutButton')}</span></button>
81
81
  </div>
82
82
  {/if}