@everymatrix/player-account-timeout 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/player-account-timeout",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.248",
|
|
4
4
|
"main": "dist/player-account-timeout.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": "
|
|
39
|
+
"gitHead": "77f6efa473daab4dd62004b893c587558bf4511c"
|
|
40
40
|
}
|
|
@@ -38,31 +38,31 @@
|
|
|
38
38
|
$: lang && initialLoad();
|
|
39
39
|
</script>
|
|
40
40
|
|
|
41
|
-
<div class="TimeoutWrapper {isMobile ? 'TimeoutWrapperMobile' : ''}">
|
|
41
|
+
<div class="TimeoutWrapper {isMobile ? 'TimeoutWrapperMobile' : ''}" part="TimeoutWrapper {isMobile ? 'TimeoutWrapperMobile' : ''}">
|
|
42
42
|
{#if isMobile}
|
|
43
|
-
<div class="MenuReturnButton" on:click={() => toggleScreen()}>
|
|
43
|
+
<div class="MenuReturnButton" part="MenuReturnButton" on:click={() => toggleScreen()}>
|
|
44
44
|
<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)">
|
|
45
45
|
<g transform="translate(20 158)">
|
|
46
46
|
<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)"/>
|
|
47
47
|
</g></g>
|
|
48
48
|
</svg>
|
|
49
|
-
<h2 class="TimeoutTitleMobile">{$_('timeout.title')}</h2>
|
|
49
|
+
<h2 class="TimeoutTitleMobile" part="TimeoutTitleMobile">{$_('timeout.title')}</h2>
|
|
50
50
|
</div>
|
|
51
51
|
{/if}
|
|
52
|
-
<h2 class="TimeoutTitle {isMobile ? 'TimeoutTitleNone' : ''}">{$_('timeout.title')}</h2>
|
|
53
|
-
<div class="TimeoutDescription {isMobile ? 'TimeoutDescriptionMobile' : ''}">
|
|
52
|
+
<h2 class="TimeoutTitle {isMobile ? 'TimeoutTitleNone' : ''}" part="TimeoutTitle {isMobile ? 'TimeoutTitleNone' : ''}">{$_('timeout.title')}</h2>
|
|
53
|
+
<div class="TimeoutDescription {isMobile ? 'TimeoutDescriptionMobile' : ''}" part="TimeoutDescription {isMobile ? 'TimeoutDescriptionMobile' : ''}">
|
|
54
54
|
<p>{$_('timeout.timeoutTextFirst', { values: { operatorname: operator}})}</p>
|
|
55
55
|
<p>{$_('timeout.timeoutTextSecondary')}</p>
|
|
56
56
|
</div>
|
|
57
|
-
<div class="TimeoutSelectWrapper">
|
|
58
|
-
<select bind:value={timeoutSelected} class="TimeoutSelect {isMobile ? 'TimeoutSelectMobile' : ''}">
|
|
57
|
+
<div class="TimeoutSelectWrapper" part="TimeoutSelectWrapper">
|
|
58
|
+
<select bind:value={timeoutSelected} class="TimeoutSelect {isMobile ? 'TimeoutSelectMobile' : ''}" part="TimeoutSelect {isMobile ? 'TimeoutSelectMobile' : ''}">
|
|
59
59
|
{#each timeoutOptions as {value, text}}
|
|
60
60
|
<option value={value}>{text}</option>
|
|
61
61
|
{/each}
|
|
62
62
|
</select>
|
|
63
63
|
</div>
|
|
64
|
-
<div class="TimeoutActionButtons {isMobile ? 'TimeoutActionButtonsMobile' : ''}">
|
|
65
|
-
<button class="TimeoutSave" on:click={() => saveTimeout()}>{$_('timeout.save')}</button>
|
|
64
|
+
<div class="TimeoutActionButtons {isMobile ? 'TimeoutActionButtonsMobile' : ''}" part="TimeoutActionButtons {isMobile ? 'TimeoutActionButtonsMobile' : ''}">
|
|
65
|
+
<button class="TimeoutSave" part="TimeoutSave" on:click={() => saveTimeout()}>{$_('timeout.save')}</button>
|
|
66
66
|
</div>
|
|
67
67
|
</div>
|
|
68
68
|
|