@everymatrix/casino-header-controller-nd 1.43.3 → 1.44.0
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/casino-header-controller-nd",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.0",
|
|
4
4
|
"main": "dist/casino-header-controller-nd.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "701410f2b76dfe1ee4038f799b1e8e340c85cdb5"
|
|
46
46
|
}
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
export let currencyprecision: string = '';
|
|
57
57
|
|
|
58
58
|
export let gamification: string = 'false';
|
|
59
|
+
export let totalcalculationmode = '';
|
|
60
|
+
|
|
59
61
|
|
|
60
62
|
let activeIndex: number;
|
|
61
63
|
let customStylingContainer: HTMLElement;
|
|
@@ -216,8 +218,8 @@
|
|
|
216
218
|
adaptDepositBackground(isBalanceOpened);
|
|
217
219
|
break;
|
|
218
220
|
|
|
219
|
-
case '
|
|
220
|
-
|
|
221
|
+
case 'UpdateBalanceBackground':
|
|
222
|
+
adaptDepositBackground(isBalanceOpened);
|
|
221
223
|
break;
|
|
222
224
|
}
|
|
223
225
|
}
|
|
@@ -489,7 +491,7 @@
|
|
|
489
491
|
{/if}
|
|
490
492
|
<div class="BalanceDepositWrapper">
|
|
491
493
|
<div class="Balance {isBalanceOpened ? 'Open' : ''}" bind:this={balanceContainer}>
|
|
492
|
-
<player-account-balance-modal-nd {session} {userid} {endpoint} {lang} {clientstyling} {clientstylingurl} {customlocaleidentifier} {gmversion} {displaybalanceoption} {currencyseparator} {currencydecimal} {currencyprecision} />
|
|
494
|
+
<player-account-balance-modal-nd {session} {userid} {endpoint} {lang} {clientstyling} {clientstylingurl} {customlocaleidentifier} {gmversion} {displaybalanceoption} {totalcalculationmode} {currencyseparator} {currencydecimal} {currencyprecision} />
|
|
493
495
|
</div>
|
|
494
496
|
<div class="Deposit {isBalanceOpened ? 'Open' : ''}" bind:this={depositContainer}>
|
|
495
497
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
@@ -774,7 +776,7 @@
|
|
|
774
776
|
.HeaderContainer {
|
|
775
777
|
position: fixed;
|
|
776
778
|
width: 100%;
|
|
777
|
-
z-index:
|
|
779
|
+
z-index: 100;
|
|
778
780
|
background-color: var(--emw-header-color-background, var(--emw-color-background, #000000));
|
|
779
781
|
display: flex;
|
|
780
782
|
flex-direction: column;
|