@everymatrix/player-deposit 0.0.247 → 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/player-deposit",
3
- "version": "0.0.247",
3
+ "version": "0.0.248",
4
4
  "main": "dist/player-deposit",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "a5b796f4cea4507671829ccf33489c7c93dc3709"
39
+ "gitHead": "77f6efa473daab4dd62004b893c587558bf4511c"
40
40
  }
@@ -103,22 +103,22 @@
103
103
  $: session && playerid && endpoint && getDepositIframe();
104
104
  </script>
105
105
 
106
- <div class="DepositWrapper {isMobile ? 'DepositWrapperMobile' : ''}">
106
+ <div class="DepositWrapper {isMobile ? 'DepositWrapperMobile' : ''}" part="DepositWrapper {isMobile ? 'DepositWrapperMobile' : ''}">
107
107
  {#if isMobile}
108
- <div class="MenuReturnButton" on:click={() => toggleScreen()}>
108
+ <div class="MenuReturnButton" part="MenuReturnButton" on:click={() => toggleScreen()}>
109
109
  <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15"><defs><style>.aaa{fill:var(--emfe-w-color-primary, #D0046C);}</style></defs><g transform="translate(-20 -158)">
110
110
  <g transform="translate(20 158)">
111
111
  <path class="aaa" d="M7.5,0,6.136,1.364,11.3,6.526H0V8.474H11.3L6.136,13.636,7.5,15,15,7.5Z" transform="translate(15 15) rotate(180)"/>
112
112
  </g></g>
113
113
  </svg>
114
- <h2 class="DepositTitleMobile">{$_('deposit.title')}</h2>
114
+ <h2 class="DepositTitleMobile" part="DepositTitleMobile">{$_('deposit.title')}</h2>
115
115
  </div>
116
116
  {/if}
117
- <h2 class="DepositTitle {isMobile ? 'DepositTitleNone' : ''}">{$_('deposit.title')}</h2>
117
+ <h2 class="DepositTitle {isMobile ? 'DepositTitleNone' : ''}" part="DepositTitle {isMobile ? 'DepositTitleNone' : ''}">{$_('deposit.title')}</h2>
118
118
  {#if isLoading}
119
119
  <p>{$_('deposit.loading')}</p>
120
120
  {:else}
121
- <div class="DepositIframeWrapper">
121
+ <div class="DepositIframeWrapper" part="DepositIframeWrapper">
122
122
  <iframe src={iframeUrl} title="Deposit Iframe"></iframe>
123
123
  </div>
124
124
  {/if}