@everymatrix/player-profile-info 1.43.3 → 1.44.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/player-profile-info",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.44.0",
|
4
4
|
"main": "dist/player-profile-info.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": "701410f2b76dfe1ee4038f799b1e8e340c85cdb5"
|
39
39
|
}
|
@@ -79,7 +79,7 @@
|
|
79
79
|
readOnlyValues.iban = profileInfo.iban;
|
80
80
|
readOnlyValues.userTitles = profileInfo.title;
|
81
81
|
readOnlyValues.countryCode = profileInfo.country;
|
82
|
-
readOnlyValues.countryName = countriesArray.find((country:any) => country.Alpha2Code === profileInfo.country)
|
82
|
+
readOnlyValues.countryName = countriesArray.find((country:any) => country.Alpha2Code === profileInfo.country)?.Name || 'I.E. Ireland';
|
83
83
|
|
84
84
|
updatedEditableValues.address1 = profileInfo.address1;
|
85
85
|
updatedEditableValues.city = profileInfo.city;
|
@@ -614,7 +614,7 @@
|
|
614
614
|
color: var(--emw--pam-typography, var(--emw-color-contrast, #07072A));
|
615
615
|
background: var(--emw-color-pale, var(--emw--color-gray-50, #F1F1F1));
|
616
616
|
padding: 50px;
|
617
|
-
|
617
|
+
height: 100%;
|
618
618
|
border-radius: 20px;
|
619
619
|
}
|
620
620
|
|
@@ -790,8 +790,6 @@
|
|
790
790
|
.PlayerDetailsSaveButton, .PlayerDetailsCancelButton {
|
791
791
|
cursor: pointer;
|
792
792
|
border-radius: 5px;
|
793
|
-
width: 100%;
|
794
|
-
height: 50px;
|
795
793
|
display: flex;
|
796
794
|
align-items: center;
|
797
795
|
justify-content: center;
|
@@ -800,12 +798,19 @@
|
|
800
798
|
text-transform: uppercase;
|
801
799
|
transition-duration: 0.3s;
|
802
800
|
box-sizing: border-box;
|
801
|
+
max-width: 400px;
|
802
|
+
min-width: 200px;
|
803
803
|
}
|
804
804
|
.PlayerDetailsSaveButton {
|
805
805
|
background-image: linear-gradient(to bottom, color-mix(in srgb, var(--emw--color-primary, #22B04E) 80%, black 20%), var(--emw--color-primary, #22B04E), color-mix(in srgb, var(--emw--color-primary, #22B04E) 80%, white 30%));
|
806
806
|
border: 2px solid var(--emw--button-border-color, #0E5924);
|
807
807
|
color: var(--emw--button-text-color, #FFFFFF);
|
808
808
|
border-radius: var(--emw--button-border-radius, 50px);
|
809
|
+
max-width: 400px;
|
810
|
+
min-width: 200px;
|
811
|
+
padding: 13px 0;
|
812
|
+
width: 100%;
|
813
|
+
|
809
814
|
&:active {
|
810
815
|
background: var(--emw--pam-color-primary, var(--emw--color-primary, #22B04E));
|
811
816
|
}
|
@@ -846,6 +851,7 @@
|
|
846
851
|
padding: 20px 15px;
|
847
852
|
background: var(--emw-color-gray-50, #F9F8F8);
|
848
853
|
max-width: unset;
|
854
|
+
border-radius: 0;
|
849
855
|
.PlayerDetailsContent {
|
850
856
|
grid-template-columns: 1fr;
|
851
857
|
}
|