@everymatrix/player-account-controller 0.0.123 → 0.0.124

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-controller",
3
- "version": "0.0.123",
3
+ "version": "0.0.124",
4
4
  "main": "dist/player-account-controller.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -29,8 +29,8 @@
29
29
  "typescript": "^3.9.3"
30
30
  },
31
31
  "dependencies": {
32
- "@everymatrix/player-account-menu": "^0.0.123",
33
- "@everymatrix/player-account-notifications": "^0.0.123",
32
+ "@everymatrix/player-account-menu": "^0.0.124",
33
+ "@everymatrix/player-account-notifications": "^0.0.124",
34
34
  "cross-env": "^7.0.3",
35
35
  "sirv-cli": "^1.0.0",
36
36
  "svelte": "^3.0.0"
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "43981994e6285515fd84d98449912f329fd77b1e"
41
+ "gitHead": "515aef2fcf52976ea1f8cd3aa96a9576fa4f03d9"
42
42
  }
@@ -91,7 +91,11 @@
91
91
  };
92
92
 
93
93
  fetch(`${profileUrl}${userId}/profile`, options)
94
- .then((data:any) => {});
94
+ .then((res:any) => {
95
+ if (res.status == 200) {
96
+ window.postMessage({ type: 'DisableProfileInfoButtons'}, window.location.href);
97
+ }
98
+ });
95
99
  break;
96
100
 
97
101
  case 'ChangePassword':
@@ -323,7 +327,7 @@ $: cmsendpoint && endpoint && accountpath && notificationpath && customnotificat
323
327
  width: 100%;
324
328
  grid-template-areas: "nav main aside";
325
329
  grid-template-rows: auto;
326
- grid-template-columns: ttp(15.625) 1fr ttp(13.75);
330
+ grid-template-columns: ttp(15.625) 1fr ttp(14.375);
327
331
  background: #F9F8F8;
328
332
  &.PlayerAccountMobilePage {
329
333
  display: block;
@@ -332,7 +336,6 @@ $: cmsendpoint && endpoint && accountpath && notificationpath && customnotificat
332
336
  .PlayerAccountPage > nav {
333
337
  grid-area: nav;
334
338
  background: #58586B;
335
- border-radius: ttp(0.3125);
336
339
  &.PlayerAccountMobile {
337
340
  background: transparent;
338
341
  color: #07072A;