@everymatrix/player-account-gaming-limits-wrapper-2 0.0.388 → 0.0.389
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-account-gaming-limits-wrapper-2",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.389",
|
|
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.
|
|
33
|
-
"@everymatrix/player-account-gaming-limits-page-2-gm16": "^0.0.
|
|
34
|
-
"@everymatrix/player-account-gaming-limits-page-2-gmcore": "^0.0.
|
|
32
|
+
"@everymatrix/player-account-gaming-limits-history-2": "^0.0.389",
|
|
33
|
+
"@everymatrix/player-account-gaming-limits-page-2-gm16": "^0.0.389",
|
|
34
|
+
"@everymatrix/player-account-gaming-limits-page-2-gmcore": "^0.0.389",
|
|
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": "
|
|
42
|
+
"gitHead": "2b565e2e539a72c0d78cdcfc1ffc87929474ff44"
|
|
43
43
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
const selectTab = (index:number):void => {
|
|
39
|
-
if (mainContainer.children.length > 0){
|
|
39
|
+
if (mainContainer.children.length > 0) {
|
|
40
40
|
for (let i:number = 0; i < mainContainer.children.length; i++) {
|
|
41
41
|
if (index === i) {
|
|
42
42
|
mainContainer.children[i].classList.remove('hidden');
|
|
@@ -83,6 +83,10 @@
|
|
|
83
83
|
$: clientstyling && setClientStyling();
|
|
84
84
|
</script>
|
|
85
85
|
|
|
86
|
+
<svelte:head>
|
|
87
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
88
|
+
</svelte:head>
|
|
89
|
+
|
|
86
90
|
<div bind:this={customStylingContainer}>
|
|
87
91
|
{#if isLoading}
|
|
88
92
|
<!-- Just show nothing, this is loading exposed attributes, not making a fetch. It takes an instant, but prevents nested widgets from rendering with empty attributes -->
|
|
@@ -149,12 +153,14 @@
|
|
|
149
153
|
}
|
|
150
154
|
|
|
151
155
|
.TabsContainer {
|
|
152
|
-
height:
|
|
156
|
+
height: 50px;
|
|
153
157
|
display: flex;
|
|
154
158
|
margin-bottom: 12px;
|
|
155
159
|
cursor: pointer;
|
|
156
160
|
border-bottom: 1px solid #ccc;
|
|
157
161
|
justify-content: center;
|
|
162
|
+
background: #fff;
|
|
163
|
+
box-shadow: 0 0.15rem 0.2rem 0 rgba(0, 0, 0, 0.12);
|
|
158
164
|
}
|
|
159
165
|
|
|
160
166
|
.LimitsTab {
|
|
@@ -175,8 +181,8 @@
|
|
|
175
181
|
}
|
|
176
182
|
|
|
177
183
|
.selected {
|
|
178
|
-
border-bottom: 0.2rem solid #
|
|
179
|
-
color: #
|
|
184
|
+
border-bottom: 0.2rem solid #002554;
|
|
185
|
+
color: #002554;
|
|
180
186
|
margin: 0;
|
|
181
187
|
}
|
|
182
188
|
</style>
|