@everymatrix/player-profile-info 0.0.250 → 0.0.253
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-profile-info",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.253",
|
|
4
4
|
"main": "dist/player-profile-info.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": "1a780c42a4b30b6886e6e01c8c74129698591c2d"
|
|
40
40
|
}
|
|
@@ -466,7 +466,7 @@
|
|
|
466
466
|
</div>
|
|
467
467
|
<div class="PlayerInfoBox {invalidPostalCode ? 'InvalidField' : ''}" part="PlayerInfoBox {invalidPostalCode ? 'InvalidField' : ''}">
|
|
468
468
|
<label>{$_('playerProfile.userPostalCode')}</label>
|
|
469
|
-
<input bind:this={playerPostalCode} type="
|
|
469
|
+
<input bind:this={playerPostalCode} type="text" on:blur={validatePostalCode} on:keyup={() => checkForChanges()} placeholder={noPlayerData ? postalCode : ''} value={noPlayerData ? '' : initialValuesArray.postalCode} />
|
|
470
470
|
{#if invalidPostalCode}
|
|
471
471
|
<p class="InvalidInput" part="InvalidInput">{$_('playerProfile.userPostalCodeError')}</p>
|
|
472
472
|
{/if}
|
|
@@ -713,7 +713,6 @@
|
|
|
713
713
|
}
|
|
714
714
|
|
|
715
715
|
.PlayerDetailsButtonsArea {
|
|
716
|
-
display: grid;
|
|
717
716
|
grid-column-gap: ttp(0.625);
|
|
718
717
|
grid-template-rows: auto;
|
|
719
718
|
grid-template-columns: 1fr;
|
package/src/translations.js
CHANGED
|
@@ -3,17 +3,17 @@ export const PlayerProfileTranslations = {
|
|
|
3
3
|
playerProfile: {
|
|
4
4
|
title: `Profile Info`,
|
|
5
5
|
personalDetails: `Personal Details`,
|
|
6
|
-
userName: `
|
|
6
|
+
userName: `Username:`,
|
|
7
7
|
userPhone: `Phone:`,
|
|
8
8
|
userPhoneError: 'Mobile must be at least 5 character long and 20 characters maximum.',
|
|
9
9
|
userEmail: `Email:`,
|
|
10
10
|
securityQuestion: `Security Question:`,
|
|
11
11
|
securityQuestionError: 'Security question must be at least 1 character long and maximum 120 characters.',
|
|
12
|
-
firstName: `First
|
|
12
|
+
firstName: `First Name:`,
|
|
13
13
|
securityAnswer: `Security Answer:`,
|
|
14
14
|
securityAnswerError: 'Security answer must be at least 1 character long and maximum 120 characters.',
|
|
15
15
|
lastName: `Last Name:`,
|
|
16
|
-
dateOfBirth: `Date of
|
|
16
|
+
dateOfBirth: `Date of Birth:`,
|
|
17
17
|
currency: `Currency:`,
|
|
18
18
|
userTitle: `Title:`,
|
|
19
19
|
locationDetails: `Location Details`,
|