@everymatrix/player-account-gaming-limits-wrapper-2 0.0.387 → 0.0.388

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
@@ -8,11 +8,6 @@
8
8
  player-account-gaming-limits-wrapper-2
9
9
  </title>
10
10
  <link rel="stylesheet" href="public/reset.css">
11
- <style>
12
- body {
13
- background: #E8E9EB;
14
- }
15
- </style>
16
11
  <script src='dist/player-account-gaming-limits-wrapper-2.js'></script>
17
12
  </head>
18
13
 
@@ -23,36 +18,11 @@
23
18
  .header__logo svg { height: 50px; width: 50px; margin-right: 5px; }
24
19
  .header__name { color: #fff; }
25
20
  .header__name span { margin-right: 10px; font-weight: bold; }
26
- .webcomponent { padding: 10px 20px; width: 740px; height: 440px }
21
+ .webcomponent { padding: 10px 20px; }
27
22
  </style>
28
23
 
29
24
  <div class="webcomponent">
30
- <player-account-gaming-limits-wrapper-2
31
- userid="4506704"
32
- session="aaa2d102-2b4a-44da-adfe-fec3cce02934"
33
- endpoint="https://betathome-de-stage-api.stage.norway.everymatrix.com/"
34
- apiversion="gm16"
35
- currency = 'EUR'
36
- lang="en"
37
-
38
- includedlimits = "lugas, stake"
39
- tablabels = 'Lugas Limit, Slots Limit, Other'
40
- historyenabled = "true"
41
-
42
- ></player-account-gaming-limits-wrapper-2>-->
43
- <player-account-gaming-limits-wrapper-2
44
- userid="4500790"
45
- session="f7442ef8-ef79-469b-aadd-01cf21c7f79e"
46
- endpoint="https://betathome-com-stage-api.stage.norway.everymatrix.com/"
47
- apiversion="gmcore"
48
- currency="EUR"
49
- lang="en"
50
- includedlimits="deposit"
51
- tablabels="Deposit"
52
- historyenabled="false"
53
- >
54
- </player-account-gaming-limits-wrapper-2>
55
-
25
+ <player-account-gaming-limits-wrapper-2 endpoint="https://betathome-de-stage-api.stage.norway.everymatrix.com/" session="499b548a-73fd-45d1-a56e-2256b609513e" userid="4229869" currency="EUR" includedlimits="deposit, wager, deposit wager loss" tablabels="Deposit limit, Slots limit, Other limits" historyenabled="true" apiversion="gm16" lang="en"></player-account-gaming-limits-wrapper-2>
56
26
  </div>
57
27
 
58
28
  </body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/player-account-gaming-limits-wrapper-2",
3
- "version": "0.0.387",
3
+ "version": "0.0.388",
4
4
  "main": "dist/player-account-gaming-limits-wrapper-2.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -29,9 +29,9 @@
29
29
  "typescript": "^3.9.3"
30
30
  },
31
31
  "dependencies": {
32
- "@everymatrix/player-account-gaming-limits-history-2": "^0.0.387",
33
- "@everymatrix/player-account-gaming-limits-page-2-gm16": "^0.0.387",
34
- "@everymatrix/player-account-gaming-limits-page-2-gmcore": "^0.0.387",
32
+ "@everymatrix/player-account-gaming-limits-history-2": "^0.0.388",
33
+ "@everymatrix/player-account-gaming-limits-page-2-gm16": "^0.0.388",
34
+ "@everymatrix/player-account-gaming-limits-page-2-gmcore": "^0.0.388",
35
35
  "cross-env": "^7.0.3",
36
36
  "sirv-cli": "^1.0.0",
37
37
  "svelte": "^3.0.0"
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "c51e312c8807f68d36a64a93632f4e7230a2414e"
42
+ "gitHead": "84db50c28b19402630231f365f7255804737565d"
43
43
  }
@@ -90,7 +90,7 @@
90
90
  {#if limitTabs.length > 1}
91
91
  <div class="TabsContainer" bind:this={tabsContainer}>
92
92
  {#each limitTabs as limit,i}
93
- <div class="LimitsTab" style="width: {100 / limitTabs.length}%" on:click={() => selectTab(i)}>{tabLabelArray[i] ?? limit}</div>
93
+ <div class="LimitsTab" on:click={() => selectTab(i)}>{tabLabelArray[i] ?? limit}</div>
94
94
  {/each}
95
95
  </div>
96
96
  {/if}
@@ -154,15 +154,18 @@
154
154
  margin-bottom: 12px;
155
155
  cursor: pointer;
156
156
  border-bottom: 1px solid #ccc;
157
+ justify-content: center;
157
158
  }
158
159
 
159
160
  .LimitsTab {
160
- font-size: 18px;
161
+ font-size: 1.3rem;
162
+ line-height: 1.4rem;
161
163
  margin-bottom: 3px;
162
164
 
163
165
  display: flex;
164
166
  justify-content: center;
165
167
  align-items: center;
168
+ padding: 0 1rem;
166
169
 
167
170
  box-sizing: content-box;
168
171
  }
@@ -172,7 +175,7 @@
172
175
  }
173
176
 
174
177
  .selected {
175
- border-bottom: 3px solid #7ac317;
178
+ border-bottom: 0.2rem solid #7ec51e;
176
179
  color: #7ac317;
177
180
  margin: 0;
178
181
  }