@everymatrix/general-player-register-form 1.25.0 → 1.27.0
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/general-player-register-form",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"main": "dist/general-player-register-form.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "f6ec9c7a552b5acad22390148d440b8050572424"
|
|
39
39
|
}
|
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
}
|
|
206
206
|
userData.birthPlace = disabledFieldsList.indexOf('birthPlace') >= 0 ? retrieveDefaultData('birthPlace') ?? 'ngenge' : data.birthPlace;
|
|
207
207
|
userData.currency = retrieveDefaultData('currency') ?? data.currencySelected;
|
|
208
|
+
userData.personalId = disabledFieldsList.indexOf('personalId') >= 0 ? retrieveDefaultData('personalId') ?? 'dummy personal id' : data.personalId;
|
|
208
209
|
}
|
|
209
210
|
if (step === 'RegisterStepThree') {
|
|
210
211
|
userData.address1 = disabledFieldsList.indexOf('address') >= 0 ? retrieveDefaultData('address') ?? 'dummy address' : data.address;
|
|
@@ -514,7 +515,6 @@ $: translationurl && setTranslationUrl();
|
|
|
514
515
|
<style lang="scss">
|
|
515
516
|
|
|
516
517
|
|
|
517
|
-
|
|
518
518
|
.RegisterFormWrapper {
|
|
519
519
|
background: var(--emfe-w-registration-color-bg, var(--emfe-w-color-gray-50, #F9F8F8));
|
|
520
520
|
}
|
package/src/translations.js
CHANGED
|
@@ -26,8 +26,9 @@ export const TRANSLATIONS = {
|
|
|
26
26
|
"pt": {
|
|
27
27
|
"goToLoginButton": "Ir para o Login",
|
|
28
28
|
"error": "Encontramos um problema. Vá para Login para receber seu código SMS."
|
|
29
|
+
},
|
|
30
|
+
"hr": {
|
|
31
|
+
"goToLoginButton": "Idi na Prijava",
|
|
32
|
+
"error": "Naišli smo problem. Idite na Prijava kako biste primili svoj SMS kod."
|
|
29
33
|
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
+
}
|