@everymatrix/player-profile-info 0.0.250 → 0.0.251

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.250",
3
+ "version": "0.0.251",
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": "a6d1510ec4bbfb0c340f1528b6c6636b9552705c"
39
+ "gitHead": "d39a0752d3212dfa393748d70c01eb211ac4c902"
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="number" on:blur={validatePostalCode} on:keyup={() => checkForChanges()} placeholder={noPlayerData ? postalCode : ''} value={noPlayerData ? '' : initialValuesArray.postalCode} />
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}